3.9.6
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
RootModule = 'CloudAPIPowerShellManagement.psm1'
|
RootModule = 'CloudAPIPowerShellManagement.psm1'
|
||||||
|
|
||||||
# Version number of this module.
|
# Version number of this module.
|
||||||
ModuleVersion = '3.9.5'
|
ModuleVersion = '3.9.6'
|
||||||
|
|
||||||
# Supported PSEditions
|
# Supported PSEditions
|
||||||
# CompatiblePSEditions = @()
|
# CompatiblePSEditions = @()
|
||||||
|
|||||||
@@ -88,6 +88,8 @@ function Initialize-CloudAPIManagement
|
|||||||
$certificate
|
$certificate
|
||||||
)
|
)
|
||||||
|
|
||||||
|
$PSModuleAutoloadingPreference = "none"
|
||||||
|
|
||||||
$global:wpfNS = "xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'"
|
$global:wpfNS = "xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'"
|
||||||
|
|
||||||
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
|
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ This module handles the WPF UI
|
|||||||
|
|
||||||
function Get-ModuleVersion
|
function Get-ModuleVersion
|
||||||
{
|
{
|
||||||
'3.9.5'
|
'3.9.6'
|
||||||
}
|
}
|
||||||
|
|
||||||
function Initialize-Window
|
function Initialize-Window
|
||||||
@@ -1535,7 +1535,7 @@ function Add-RegKeyToSettings
|
|||||||
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
$keyObj = Get-Item -Path $regKey
|
$keyObj = Get-Item -Path $regKey -ErrorAction SilentlyContinue
|
||||||
foreach($keyValue in ($keyObj.GetValueNames() | Sort))
|
foreach($keyValue in ($keyObj.GetValueNames() | Sort))
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
@@ -2463,6 +2463,7 @@ function Get-MainWindow
|
|||||||
|
|
||||||
Add-XamlEvent $script:welcomeForm "gitHubLink" "Add_RequestNavigate" ({ [System.Diagnostics.Process]::Start($_.Uri.AbsoluteUri); $_.Handled = $true })
|
Add-XamlEvent $script:welcomeForm "gitHubLink" "Add_RequestNavigate" ({ [System.Diagnostics.Process]::Start($_.Uri.AbsoluteUri); $_.Handled = $true })
|
||||||
Add-XamlEvent $script:welcomeForm "licenseLink" "Add_RequestNavigate" ({ [System.Diagnostics.Process]::Start($_.Uri.AbsoluteUri); $_.Handled = $true })
|
Add-XamlEvent $script:welcomeForm "licenseLink" "Add_RequestNavigate" ({ [System.Diagnostics.Process]::Start($_.Uri.AbsoluteUri); $_.Handled = $true })
|
||||||
|
Add-XamlEvent $script:welcomeForm "addCustomApp" "Add_RequestNavigate" ({ [System.Diagnostics.Process]::Start($_.Uri.AbsoluteUri); $_.Handled = $true })
|
||||||
|
|
||||||
Add-XamlEvent $script:welcomeForm "chkAcceptConditions" "add_click" {
|
Add-XamlEvent $script:welcomeForm "chkAcceptConditions" "add_click" {
|
||||||
$global:btnAcceptConditions.IsEnabled = ($this.IsChecked -eq $true)
|
$global:btnAcceptConditions.IsEnabled = ($this.IsChecked -eq $true)
|
||||||
@@ -2471,6 +2472,7 @@ function Get-MainWindow
|
|||||||
Add-XamlEvent $script:welcomeForm "btnAcceptConditions" "add_click" {
|
Add-XamlEvent $script:welcomeForm "btnAcceptConditions" "add_click" {
|
||||||
Save-Setting "" "LicenseAccepted" "True"
|
Save-Setting "" "LicenseAccepted" "True"
|
||||||
Save-Setting "" "FirstTimeRunning" "False"
|
Save-Setting "" "FirstTimeRunning" "False"
|
||||||
|
Save-Setting "" "AppChangeInformed" "true"
|
||||||
Show-ModalObject
|
Show-ModalObject
|
||||||
|
|
||||||
if($global:currentViewObject.ViewInfo.Authentication.ShowErrors)
|
if($global:currentViewObject.ViewInfo.Authentication.ShowErrors)
|
||||||
@@ -2490,6 +2492,35 @@ function Get-MainWindow
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
if($global:informOldAzureApp -eq $true)
|
||||||
|
{
|
||||||
|
$appIdChangeInformed = Get-Setting "" "AppChangeInformed" "false"
|
||||||
|
if($appIdChangeInformed -ne "true") {
|
||||||
|
$script:oldAzureAppForm = Get-XamlObject ($global:AppRootFolder + "\Xaml\OldAzureApp.xaml")
|
||||||
|
|
||||||
|
Add-XamlEvent $script:oldAzureAppForm "addCustomApp" "Add_RequestNavigate" ({ [System.Diagnostics.Process]::Start($_.Uri.AbsoluteUri); $_.Handled = $true })
|
||||||
|
|
||||||
|
Add-XamlEvent $script:oldAzureAppForm "btnOK" "add_click" {
|
||||||
|
if((Get-XamlProperty $script:oldAzureAppForm "chkChangeApp" "IsChecked") -eq $true) {
|
||||||
|
Write-Log "Set default app ID to $($global:DefaultAzureApp)"
|
||||||
|
Save-Setting "EndpointManager" "EMAzureApp" $global:DefaultAzureApp
|
||||||
|
$script:azureAppChanged = $true
|
||||||
|
}
|
||||||
|
|
||||||
|
if((Get-XamlProperty $script:oldAzureAppForm "chkSkippMessage" "IsChecked") -eq $true) {
|
||||||
|
Save-Setting "" "AppChangeInformed" "true"
|
||||||
|
}
|
||||||
|
Show-ModalObject
|
||||||
|
if($script:azureAppChanged -eq $true -and $global:currentViewObject) {
|
||||||
|
[System.Windows.Forms.Application]::DoEvents()
|
||||||
|
& $global:currentViewObject.ViewInfo.Authenticate
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Show-ModalForm $window.Title $script:oldAzureAppForm -HideButtons
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
###!!! Force login here
|
###!!! Force login here
|
||||||
if($global:currentViewObject.ViewInfo.Authenticate)
|
if($global:currentViewObject.ViewInfo.Authenticate)
|
||||||
{
|
{
|
||||||
|
|||||||
Binary file not shown.
@@ -66,11 +66,69 @@
|
|||||||
{
|
{
|
||||||
"nameResourceKey": "androidPlayIntegrityVerdictBasicIntegrity",
|
"nameResourceKey": "androidPlayIntegrityVerdictBasicIntegrity",
|
||||||
"value": "basicIntegrity",
|
"value": "basicIntegrity",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 39,
|
||||||
|
"nameResourceKey": "requiredAndroidPlayIntegrityVerdictEvaluationTypeName",
|
||||||
|
"descriptionResourceKey": "requiredAndroidPlayIntegrityVerdictEvaluationTypeDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "requiredAndroidPlayIntegrityVerdictEvaluationTypeBasic",
|
||||||
|
"value": "basic",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "requiredAndroidPlayIntegrityVerdictEvaluationTypeHardwareBacked",
|
||||||
|
"value": "hardwareBacked",
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "securityRequiredAndroidSafetyNetEvaluationType",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"defaultValue": "basic",
|
||||||
|
"unconfiguredValue": "basic",
|
||||||
|
"policyType": 31,
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
],
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"nameResourceKey": "androidPlayIntegrityVerdictBasicAndDeviceIntegrity",
|
"nameResourceKey": "androidPlayIntegrityVerdictBasicAndDeviceIntegrity",
|
||||||
"value": "basicIntegrityAndCertified",
|
"value": "basicIntegrityAndCertified",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 39,
|
||||||
|
"nameResourceKey": "requiredAndroidPlayIntegrityVerdictEvaluationTypeName",
|
||||||
|
"descriptionResourceKey": "requiredAndroidPlayIntegrityVerdictEvaluationTypeDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "requiredAndroidPlayIntegrityVerdictEvaluationTypeBasic",
|
||||||
|
"value": "basic",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "requiredAndroidPlayIntegrityVerdictEvaluationTypeHardwareBacked",
|
||||||
|
"value": "hardwareBacked",
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "securityRequiredAndroidSafetyNetEvaluationType",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"defaultValue": "basic",
|
||||||
|
"unconfiguredValue": "basic",
|
||||||
|
"policyType": 31,
|
||||||
|
"enabled": false
|
||||||
|
}
|
||||||
|
],
|
||||||
"enabled": true
|
"enabled": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -53,6 +53,23 @@
|
|||||||
"booleanActions": 0,
|
"booleanActions": 0,
|
||||||
"policyType": 31,
|
"policyType": 31,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 0,
|
||||||
|
"category": 43,
|
||||||
|
"nameResourceKey": "complianceNoPendingSystemUpdatesName",
|
||||||
|
"descriptionResourceKey": "complianceNoPendingSystemUpdatesDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "requireNoPendingSystemUpdates",
|
||||||
|
"booleanActions": 1,
|
||||||
|
"defaultValue": false,
|
||||||
|
"policyType": 31,
|
||||||
|
"enabled": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"options": [
|
"options": [
|
||||||
|
|||||||
@@ -917,6 +917,39 @@
|
|||||||
"booleanActions": 0,
|
"booleanActions": 0,
|
||||||
"policyType": 2,
|
"policyType": 2,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 0,
|
||||||
|
"category": 44,
|
||||||
|
"nameResourceKey": "disableDeviceLocationName",
|
||||||
|
"descriptionResourceKey": "disableDeviceLocationDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "disableDeviceLocation",
|
||||||
|
"booleanActions": 3,
|
||||||
|
"defaultValue": false,
|
||||||
|
"policyType": 2,
|
||||||
|
"enabled": false
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 0,
|
||||||
|
"category": 44,
|
||||||
|
"nameResourceKey": "disableDeviceLocationSharingName",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "shareDeviceLocationDisabled",
|
||||||
|
"booleanActions": 3,
|
||||||
|
"defaultValue": false,
|
||||||
|
"policyType": 2,
|
||||||
|
"enabled": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"options": [
|
"options": [
|
||||||
|
|||||||
@@ -277,6 +277,35 @@
|
|||||||
"unconfiguredValue": "noneOption",
|
"unconfiguredValue": "noneOption",
|
||||||
"policyType": 9,
|
"policyType": 9,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 44,
|
||||||
|
"nameResourceKey": "MacAddressRandomizationModeTitleAndroid",
|
||||||
|
"descriptionResourceKey": "MacAddressRandomizationModeDescriptionAndroid",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "MacAddressRandomizationModeDefaultAndroid",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "MacAddressRandomizationModeAutomaticAndroid",
|
||||||
|
"value": "automatic",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "MacAddressRandomizationModeHardwareAndroid",
|
||||||
|
"value": "hardware",
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "macAddressRandomizationMode",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 9,
|
||||||
|
"enabled": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"enabled": true
|
"enabled": true
|
||||||
@@ -1395,6 +1424,35 @@
|
|||||||
"unconfiguredValue": "noneOption",
|
"unconfiguredValue": "noneOption",
|
||||||
"policyType": 9,
|
"policyType": 9,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 44,
|
||||||
|
"nameResourceKey": "MacAddressRandomizationModeTitleAndroid",
|
||||||
|
"descriptionResourceKey": "MacAddressRandomizationModeDescriptionAndroid",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "MacAddressRandomizationModeDefaultAndroid",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "MacAddressRandomizationModeAutomaticAndroid",
|
||||||
|
"value": "automatic",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "MacAddressRandomizationModeHardwareAndroid",
|
||||||
|
"value": "hardware",
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "macAddressRandomizationMode",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 9,
|
||||||
|
"enabled": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
"showAsSectionHeader": false,
|
"showAsSectionHeader": false,
|
||||||
"dataType": 8,
|
"dataType": 8,
|
||||||
"category": 72,
|
"category": 72,
|
||||||
"nameResourceKey": "androidGeneralKiosk",
|
"nameResourceKey": "androidRestrictedKiosk",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
|
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -32,20 +32,6 @@
|
|||||||
"policyType": 13,
|
"policyType": 13,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"dataType": 10,
|
|
||||||
"category": 90,
|
|
||||||
"nameResourceKey": "androidTwelveDeprecationInfoBox",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 13,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
|
|||||||
@@ -453,7 +453,7 @@
|
|||||||
"nameResourceKey": "",
|
"nameResourceKey": "",
|
||||||
"displayText": "4096",
|
"displayText": "4096",
|
||||||
"value": "size4096",
|
"value": "size4096",
|
||||||
"enabled": false
|
"enabled": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"entityKey": "keySize",
|
"entityKey": "keySize",
|
||||||
@@ -521,6 +521,22 @@
|
|||||||
"policyType": 6,
|
"policyType": 6,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 103,
|
||||||
|
"nameResourceKey": "sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 6,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"columns": [
|
"columns": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -423,7 +423,7 @@
|
|||||||
"nameResourceKey": "",
|
"nameResourceKey": "",
|
||||||
"displayText": "4096",
|
"displayText": "4096",
|
||||||
"value": "size4096",
|
"value": "size4096",
|
||||||
"enabled": false
|
"enabled": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"entityKey": "keySize",
|
"entityKey": "keySize",
|
||||||
@@ -491,6 +491,22 @@
|
|||||||
"policyType": 17,
|
"policyType": 17,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 103,
|
||||||
|
"nameResourceKey": "sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 17,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"columns": [
|
"columns": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -200,7 +200,7 @@
|
|||||||
"nameResourceKey": "",
|
"nameResourceKey": "",
|
||||||
"displayText": "4096",
|
"displayText": "4096",
|
||||||
"value": "size4096",
|
"value": "size4096",
|
||||||
"enabled": false
|
"enabled": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"entityKey": "keySize",
|
"entityKey": "keySize",
|
||||||
@@ -268,6 +268,22 @@
|
|||||||
"policyType": 23,
|
"policyType": 23,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 103,
|
||||||
|
"nameResourceKey": "sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 23,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"columns": [
|
"columns": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -423,7 +423,7 @@
|
|||||||
"nameResourceKey": "",
|
"nameResourceKey": "",
|
||||||
"displayText": "4096",
|
"displayText": "4096",
|
||||||
"value": "size4096",
|
"value": "size4096",
|
||||||
"enabled": false
|
"enabled": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"entityKey": "keySize",
|
"entityKey": "keySize",
|
||||||
@@ -491,6 +491,22 @@
|
|||||||
"policyType": 122,
|
"policyType": 122,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 103,
|
||||||
|
"nameResourceKey": "sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 122,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"columns": [
|
"columns": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -587,6 +587,22 @@
|
|||||||
"policyType": 50,
|
"policyType": 50,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 103,
|
||||||
|
"nameResourceKey": "sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 50,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"columns": [
|
"columns": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -587,6 +587,22 @@
|
|||||||
"policyType": 63,
|
"policyType": 63,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 103,
|
||||||
|
"nameResourceKey": "sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 63,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"columns": [
|
"columns": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -462,7 +462,7 @@
|
|||||||
"nameResourceKey": "",
|
"nameResourceKey": "",
|
||||||
"displayText": "4096",
|
"displayText": "4096",
|
||||||
"value": "size4096",
|
"value": "size4096",
|
||||||
"enabled": false
|
"enabled": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"entityKey": "keySize",
|
"entityKey": "keySize",
|
||||||
@@ -530,6 +530,22 @@
|
|||||||
"policyType": 84,
|
"policyType": 84,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 103,
|
||||||
|
"nameResourceKey": "sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 84,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"columns": [
|
"columns": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -462,7 +462,7 @@
|
|||||||
"nameResourceKey": "",
|
"nameResourceKey": "",
|
||||||
"displayText": "4096",
|
"displayText": "4096",
|
||||||
"value": "size4096",
|
"value": "size4096",
|
||||||
"enabled": false
|
"enabled": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"entityKey": "keySize",
|
"entityKey": "keySize",
|
||||||
@@ -530,6 +530,22 @@
|
|||||||
"policyType": 93,
|
"policyType": 93,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 103,
|
||||||
|
"nameResourceKey": "sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 93,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"columns": [
|
"columns": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -239,7 +239,7 @@
|
|||||||
"nameResourceKey": "",
|
"nameResourceKey": "",
|
||||||
"displayText": "4096",
|
"displayText": "4096",
|
||||||
"value": "size4096",
|
"value": "size4096",
|
||||||
"enabled": false
|
"enabled": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"entityKey": "keySize",
|
"entityKey": "keySize",
|
||||||
@@ -307,6 +307,22 @@
|
|||||||
"policyType": 103,
|
"policyType": 103,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 103,
|
||||||
|
"nameResourceKey": "sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 103,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"columns": [
|
"columns": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -137,20 +137,6 @@
|
|||||||
"nameResourceKey": "compliancePasswordRequirementName",
|
"nameResourceKey": "compliancePasswordRequirementName",
|
||||||
"descriptionResourceKey": "compliancePasswordRequirementDescription",
|
"descriptionResourceKey": "compliancePasswordRequirementDescription",
|
||||||
"childSettings": [
|
"childSettings": [
|
||||||
{
|
|
||||||
"dataType": 10,
|
|
||||||
"category": 113,
|
|
||||||
"nameResourceKey": "androidTwelveDeprecationInfoBox",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 30,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
@@ -534,6 +520,410 @@
|
|||||||
"defaultValue": false,
|
"defaultValue": false,
|
||||||
"policyType": 30,
|
"policyType": 30,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "complianceWorkProfileSecurityHeader",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 0,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "complianceWorkProfilePasswordRequirementName",
|
||||||
|
"childSettings": [
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": true,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "allAndroidVersionsPasswordHeader",
|
||||||
|
"childSettings": [
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "allAndroidVersionsPasswordHeaderDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 14,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "passwordExpirationName",
|
||||||
|
"descriptionResourceKey": "workProfilePasswordExpirationInDaysTooltipText",
|
||||||
|
"emptyValueResourceKey": "passwordExpirationInDaysEmptyValueOneYearKey",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "workProfilePasswordExpirationInDays",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 14,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "complianceNumberOfPreviousPasswordsToBlockName",
|
||||||
|
"descriptionResourceKey": "complianceNumberOfPreviousPasswordsToBlockTrimmedDescription",
|
||||||
|
"emptyValueResourceKey": "numberOfPreviousPasswordsToBlockEmptyValueKey",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "workProfilePreviousPasswordBlockCount",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "complianceMinutesOfInactivityBeforePasswordRequiredName",
|
||||||
|
"descriptionResourceKey": "complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "notConfigured",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "oneMinuteOption",
|
||||||
|
"value": 1,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "fiveMinutesOption",
|
||||||
|
"value": 5,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "tenMinutesOption",
|
||||||
|
"value": 10,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "fifteenMinutesOption",
|
||||||
|
"value": 15,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "thirtyMinutesOption",
|
||||||
|
"value": 30,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "oneHourOption",
|
||||||
|
"value": 60,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "fourHoursOption",
|
||||||
|
"value": 240,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "eightHoursOption",
|
||||||
|
"value": 480,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "workProfileInactiveBeforeScreenLockInMinutes",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": true,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "androidTwelveAndAbovePasswordHeader",
|
||||||
|
"childSettings": [
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "androidTwelveAndAbovePasswordHeaderDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "requiredPasswordComplexityName",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "none",
|
||||||
|
"value": "none",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "low",
|
||||||
|
"value": "low",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "medium",
|
||||||
|
"value": "medium",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "high",
|
||||||
|
"value": "high",
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "workProfileRequiredPasswordComplexity",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"defaultValue": "none",
|
||||||
|
"unconfiguredValue": "none",
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": true,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "androidElevenAndBelowPasswordHeader",
|
||||||
|
"childSettings": [
|
||||||
|
{
|
||||||
|
"isSettingDescription": false,
|
||||||
|
"showAsSectionHeader": false,
|
||||||
|
"dataType": 8,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "androidElevenAndBelowPasswordHeaderDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "workProfileRequiredPasswordTypeName",
|
||||||
|
"descriptionResourceKey": "complianceRequiredPasswordTypeTrimmedDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "selectTypeOption",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "deviceDefault",
|
||||||
|
"value": "deviceDefault",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "lowSecurityBiometricOption",
|
||||||
|
"value": "lowSecurityBiometric",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "atLeastNumericOption",
|
||||||
|
"value": "atLeastNumeric",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 14,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "workProfileMinimumPasswordLengthName",
|
||||||
|
"descriptionResourceKey": "minimumPasswordLengthTooltipText",
|
||||||
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "workProfilePasswordMinimumLength",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "numericComplex",
|
||||||
|
"value": "numericComplex",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 14,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "workProfileMinimumPasswordLengthName",
|
||||||
|
"descriptionResourceKey": "minimumPasswordLengthTooltipText",
|
||||||
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "workProfilePasswordMinimumLength",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "atLeastAlphabeticOption",
|
||||||
|
"value": "atLeastAlphabetic",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 14,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "workProfileMinimumPasswordLengthName",
|
||||||
|
"descriptionResourceKey": "minimumPasswordLengthTooltipText",
|
||||||
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "workProfilePasswordMinimumLength",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "atLeastAlphanumericOption",
|
||||||
|
"value": "atLeastAlphanumeric",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 14,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "workProfileMinimumPasswordLengthName",
|
||||||
|
"descriptionResourceKey": "minimumPasswordLengthTooltipText",
|
||||||
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "workProfilePasswordMinimumLength",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "atLeastAlphanumericWithSymbolsOption",
|
||||||
|
"value": "alphanumericWithSymbols",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 14,
|
||||||
|
"category": 113,
|
||||||
|
"nameResourceKey": "workProfileMinimumPasswordLengthName",
|
||||||
|
"descriptionResourceKey": "minimumPasswordLengthTooltipText",
|
||||||
|
"emptyValueResourceKey": "minimumPasswordLengthEmptyValueKeyFourToSixteen",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "workProfilePasswordMinimumLength",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "workProfilePasswordRequiredType",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"defaultValue": "deviceDefault",
|
||||||
|
"unconfiguredValue": "deviceDefault",
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "workProfileRequirePassword",
|
||||||
|
"booleanActions": 1,
|
||||||
|
"defaultValue": false,
|
||||||
|
"policyType": 30,
|
||||||
|
"enabled": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1587,6 +1587,46 @@
|
|||||||
"booleanActions": 0,
|
"booleanActions": 0,
|
||||||
"policyType": 8,
|
"policyType": 8,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"complexOptions": [
|
||||||
|
{
|
||||||
|
"dataType": 25,
|
||||||
|
"category": 129,
|
||||||
|
"nameResourceKey": "vPNPolicyProxyExclListManage",
|
||||||
|
"emptyValueResourceKey": "vPNPolicyProxyExclListManage",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "proxyExclusionList",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"unconfiguredValue": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"policyType": 8,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dataType": 5,
|
||||||
|
"category": 129,
|
||||||
|
"nameResourceKey": "vPNPolicyProxyExclListName",
|
||||||
|
"descriptionResourceKey": "vPNPolicyProxyExclListDescription2",
|
||||||
|
"emptyValueResourceKey": "vPNPolicyProxyExclListManage",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"unconfiguredValue": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"policyType": 8,
|
||||||
|
"enabled": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
|
|||||||
@@ -1563,6 +1563,46 @@
|
|||||||
"booleanActions": 0,
|
"booleanActions": 0,
|
||||||
"policyType": 12,
|
"policyType": 12,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"complexOptions": [
|
||||||
|
{
|
||||||
|
"dataType": 25,
|
||||||
|
"category": 129,
|
||||||
|
"nameResourceKey": "vPNPolicyProxyExclListManage",
|
||||||
|
"emptyValueResourceKey": "vPNPolicyProxyExclListManage",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "proxyExclusionList",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"unconfiguredValue": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"policyType": 12,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"dataType": 5,
|
||||||
|
"category": 129,
|
||||||
|
"nameResourceKey": "vPNPolicyProxyExclListName",
|
||||||
|
"descriptionResourceKey": "vPNPolicyProxyExclListDescription2",
|
||||||
|
"emptyValueResourceKey": "vPNPolicyProxyExclListManage",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"booleanActions": 0,
|
||||||
|
"unconfiguredValue": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"policyType": 12,
|
||||||
|
"enabled": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"dataType": 5,
|
"dataType": 5,
|
||||||
|
|||||||
@@ -173,6 +173,110 @@
|
|||||||
"booleanActions": 0,
|
"booleanActions": 0,
|
||||||
"policyType": 124,
|
"policyType": 124,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 121,
|
||||||
|
"nameResourceKey": "wiFiPolicyProxySettingsName",
|
||||||
|
"descriptionResourceKey": "wiFiPolicyProxySettingsDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "noneOption",
|
||||||
|
"value": "none",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "manualOption",
|
||||||
|
"value": "manual",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 20,
|
||||||
|
"category": 121,
|
||||||
|
"nameResourceKey": "proxyServerAddressName",
|
||||||
|
"descriptionResourceKey": "proxyServerAddressDescription",
|
||||||
|
"emptyValueResourceKey": "proxyAddressExample",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "proxyManualAddress",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 124,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 14,
|
||||||
|
"category": 121,
|
||||||
|
"nameResourceKey": "portNumberName",
|
||||||
|
"descriptionResourceKey": "portNumberDescription",
|
||||||
|
"emptyValueResourceKey": "proxyPortExample",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "proxyManualPort",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 124,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 12,
|
||||||
|
"category": 121,
|
||||||
|
"nameResourceKey": "proxyExclusionListName",
|
||||||
|
"descriptionResourceKey": "proxyExclusionListDescription",
|
||||||
|
"emptyValueResourceKey": "proxyExclusionListExample",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "proxyExclusionList",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 124,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "automaticOption",
|
||||||
|
"value": "automatic",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 20,
|
||||||
|
"category": 121,
|
||||||
|
"nameResourceKey": "proxyServerURLName",
|
||||||
|
"descriptionResourceKey": "proxyServerURLDescription",
|
||||||
|
"emptyValueResourceKey": "proxyUrlExample",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "proxyAutomaticConfigurationUrl",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 124,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "proxySetting",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"defaultValue": "none",
|
||||||
|
"unconfiguredValue": "noneOption",
|
||||||
|
"policyType": 124,
|
||||||
|
"enabled": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"enabled": true
|
"enabled": true
|
||||||
@@ -901,6 +1005,110 @@
|
|||||||
"booleanActions": 0,
|
"booleanActions": 0,
|
||||||
"policyType": 124,
|
"policyType": 124,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 16,
|
||||||
|
"category": 121,
|
||||||
|
"nameResourceKey": "wiFiPolicyProxySettingsName",
|
||||||
|
"descriptionResourceKey": "wiFiPolicyProxySettingsDescription",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
{
|
||||||
|
"nameResourceKey": "noneOption",
|
||||||
|
"value": "none",
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "manualOption",
|
||||||
|
"value": "manual",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 20,
|
||||||
|
"category": 121,
|
||||||
|
"nameResourceKey": "proxyServerAddressName",
|
||||||
|
"descriptionResourceKey": "proxyServerAddressDescription",
|
||||||
|
"emptyValueResourceKey": "proxyAddressExample",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "proxyManualAddress",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 124,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 14,
|
||||||
|
"category": 121,
|
||||||
|
"nameResourceKey": "portNumberName",
|
||||||
|
"descriptionResourceKey": "portNumberDescription",
|
||||||
|
"emptyValueResourceKey": "proxyPortExample",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "proxyManualPort",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 124,
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"dataType": 12,
|
||||||
|
"category": 121,
|
||||||
|
"nameResourceKey": "proxyExclusionListName",
|
||||||
|
"descriptionResourceKey": "proxyExclusionListDescription",
|
||||||
|
"emptyValueResourceKey": "proxyExclusionListExample",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "proxyExclusionList",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 124,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"nameResourceKey": "automaticOption",
|
||||||
|
"value": "automatic",
|
||||||
|
"children": [
|
||||||
|
{
|
||||||
|
"dataType": 20,
|
||||||
|
"category": 121,
|
||||||
|
"nameResourceKey": "proxyServerURLName",
|
||||||
|
"descriptionResourceKey": "proxyServerURLDescription",
|
||||||
|
"emptyValueResourceKey": "proxyUrlExample",
|
||||||
|
"childSettings": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"options": [
|
||||||
|
|
||||||
|
],
|
||||||
|
"entityKey": "proxyAutomaticConfigurationUrl",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"policyType": 124,
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"enabled": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"entityKey": "proxySetting",
|
||||||
|
"booleanActions": 0,
|
||||||
|
"defaultValue": "none",
|
||||||
|
"unconfiguredValue": "noneOption",
|
||||||
|
"policyType": 124,
|
||||||
|
"enabled": false
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"enabled": true
|
"enabled": true
|
||||||
|
|||||||
@@ -794,749 +794,7 @@
|
|||||||
"entityKey": "eapType",
|
"entityKey": "eapType",
|
||||||
"booleanActions": 0,
|
"booleanActions": 0,
|
||||||
"policyType": 68,
|
"policyType": 68,
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"dataType": 16,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "eAPTypeName",
|
|
||||||
"descriptionResourceKey": "eAPTypeDescription",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
{
|
|
||||||
"nameResourceKey": "selectEAP",
|
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "eAPFASTName",
|
|
||||||
"value": "eapFast",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"value": "certificate",
|
|
||||||
"dataType": 9,
|
|
||||||
"category": 149,
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "authenticationMethod",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"dataType": 16,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "pACHeading",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
{
|
|
||||||
"nameResourceKey": "dontUsePACName",
|
|
||||||
"value": "noProtectedAccessCredential",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "usePACName",
|
|
||||||
"value": "useProtectedAccessCredential",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "provisionPACName",
|
|
||||||
"value": "useProtectedAccessCredentialAndProvision",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "provisionPACAnonName",
|
|
||||||
"value": "useProtectedAccessCredentialAndProvisionAnonymously",
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityKey": "eapFastConfiguration",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"defaultValue": "noProtectedAccessCredential",
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "eAPTLSName",
|
|
||||||
"value": "eapTls",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"isSettingDescription": false,
|
|
||||||
"showAsSectionHeader": false,
|
|
||||||
"dataType": 8,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "trust",
|
|
||||||
"descriptionResourceKey": "trustDescription",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"columns": [
|
|
||||||
{
|
|
||||||
"metadata": {
|
|
||||||
"dataType": 20,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "empty",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"emptyValueResourceKey": "trustedServerCertificateNameExample",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "trustedServerCertificateNamesName",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dataType": 21,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "trustedServerCertificateNamesName",
|
|
||||||
"descriptionResourceKey": "trustedServerCertificateNamesDescription",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "trustedServerCertificateNames",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"complexOptions": [
|
|
||||||
{
|
|
||||||
"dataType": 4,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
|
||||||
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "rootCertificateForServerValidation",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"unconfiguredValue": "notConfigured",
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dataType": 5,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "selectRootCertificateForServerValidationName",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isSettingDescription": false,
|
|
||||||
"showAsSectionHeader": false,
|
|
||||||
"dataType": 8,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "authentication",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"value": "certificate",
|
|
||||||
"dataType": 9,
|
|
||||||
"category": 149,
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "authenticationMethod",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"complexOptions": [
|
|
||||||
{
|
|
||||||
"dataType": 4,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "identityCertificateForClientAuthentication",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dataType": 5,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "certificatesOption",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"dataType": 20,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "enableIdentityPrivacyName",
|
|
||||||
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
|
||||||
"emptyValueResourceKey": "identityPrivacyExample",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "enableOuterIdentityPrivacy",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "eAPTTLSName",
|
|
||||||
"value": "eapTtls",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"isSettingDescription": false,
|
|
||||||
"showAsSectionHeader": false,
|
|
||||||
"dataType": 8,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "trust",
|
|
||||||
"descriptionResourceKey": "trustDescription",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"columns": [
|
|
||||||
{
|
|
||||||
"metadata": {
|
|
||||||
"dataType": 20,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "empty",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"emptyValueResourceKey": "trustedServerCertificateNameExample",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "trustedServerCertificateNamesName",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dataType": 21,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "trustedServerCertificateNamesName",
|
|
||||||
"descriptionResourceKey": "trustedServerCertificateNamesDescription",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "trustedServerCertificateNames",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"complexOptions": [
|
|
||||||
{
|
|
||||||
"dataType": 4,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
|
||||||
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "rootCertificateForServerValidation",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"unconfiguredValue": "notConfigured",
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dataType": 5,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "selectRootCertificateForServerValidationName",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isSettingDescription": false,
|
|
||||||
"showAsSectionHeader": false,
|
|
||||||
"dataType": 8,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "authentication",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"dataType": 16,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "authenticationMethodName",
|
|
||||||
"descriptionResourceKey": "authenticationMethodTTLSDescription",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
{
|
|
||||||
"nameResourceKey": "notConfigured",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "usernameAndPasswordOption",
|
|
||||||
"value": "usernameAndPassword",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"dataType": 16,
|
|
||||||
"category": 149,
|
|
||||||
"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": "nonEapAuthenticationMethodForEapTtls",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"dataType": 20,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "enableIdentityPrivacyName",
|
|
||||||
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
|
||||||
"emptyValueResourceKey": "identityPrivacyExample",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "enableOuterIdentityPrivacy",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "certificatesOption",
|
|
||||||
"value": "certificate",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"complexOptions": [
|
|
||||||
{
|
|
||||||
"dataType": 4,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "identityCertificateForClientAuthentication",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dataType": 5,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "certificatesOption",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"dataType": 20,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "enableIdentityPrivacyName",
|
|
||||||
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
|
||||||
"emptyValueResourceKey": "identityPrivacyExample",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "enableOuterIdentityPrivacy",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityKey": "authenticationMethod",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "lEAPName",
|
|
||||||
"value": "leap",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"value": "certificate",
|
|
||||||
"dataType": 9,
|
|
||||||
"category": 149,
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "authenticationMethod",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "pEAPName",
|
|
||||||
"value": "peap",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"isSettingDescription": false,
|
|
||||||
"showAsSectionHeader": false,
|
|
||||||
"dataType": 8,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "trust",
|
|
||||||
"descriptionResourceKey": "trustDescription",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"columns": [
|
|
||||||
{
|
|
||||||
"metadata": {
|
|
||||||
"dataType": 20,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "empty",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"emptyValueResourceKey": "trustedServerCertificateNameExample",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "trustedServerCertificateNamesName",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dataType": 21,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "trustedServerCertificateNamesName",
|
|
||||||
"descriptionResourceKey": "trustedServerCertificateNamesDescription",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "trustedServerCertificateNames",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"complexOptions": [
|
|
||||||
{
|
|
||||||
"dataType": 4,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
|
||||||
"descriptionResourceKey": "selectRootCertificateForServerValidationName",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "rootCertificateForServerValidation",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"unconfiguredValue": "notConfigured",
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dataType": 5,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "selectRootCertificateForServerValidationName",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"isSettingDescription": false,
|
|
||||||
"showAsSectionHeader": false,
|
|
||||||
"dataType": 8,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "authentication",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"dataType": 16,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "authenticationMethodName",
|
|
||||||
"descriptionResourceKey": "authenticationMethodName",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
{
|
|
||||||
"nameResourceKey": "notConfigured",
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "usernameAndPasswordOption",
|
|
||||||
"value": "usernameAndPassword",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"dataType": 20,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "enableIdentityPrivacyName",
|
|
||||||
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
|
||||||
"emptyValueResourceKey": "identityPrivacyExample",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "enableOuterIdentityPrivacy",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"nameResourceKey": "certificatesOption",
|
|
||||||
"value": "certificate",
|
|
||||||
"children": [
|
|
||||||
{
|
|
||||||
"complexOptions": [
|
|
||||||
{
|
|
||||||
"dataType": 4,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "selectCertificateProfile",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "identityCertificateForClientAuthentication",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"dataType": 5,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "certificatesOption",
|
|
||||||
"descriptionResourceKey": "empty",
|
|
||||||
"emptyValueResourceKey": "selectCertificate",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"dataType": 20,
|
|
||||||
"category": 149,
|
|
||||||
"nameResourceKey": "enableIdentityPrivacyName",
|
|
||||||
"descriptionResourceKey": "enableIdentityPrivacyDescription",
|
|
||||||
"emptyValueResourceKey": "identityPrivacyExample",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"entityKey": "enableOuterIdentityPrivacy",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityKey": "authenticationMethod",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"enabled": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"entityKey": "eapType",
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 68,
|
|
||||||
"enabled": false
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -373,20 +373,6 @@
|
|||||||
"policyType": 13,
|
"policyType": 13,
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
{
|
|
||||||
"dataType": 10,
|
|
||||||
"category": 127,
|
|
||||||
"nameResourceKey": "androidTwelveDeprecationInfoBox",
|
|
||||||
"childSettings": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"options": [
|
|
||||||
|
|
||||||
],
|
|
||||||
"booleanActions": 0,
|
|
||||||
"policyType": 13,
|
|
||||||
"enabled": true
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
"isSettingDescription": false,
|
"isSettingDescription": false,
|
||||||
"showAsSectionHeader": true,
|
"showAsSectionHeader": true,
|
||||||
|
|||||||
+137
-98
@@ -227,7 +227,6 @@
|
|||||||
"co": "Korsičtina (Francie)",
|
"co": "Korsičtina (Francie)",
|
||||||
"cs": "čeština (Česká republika)",
|
"cs": "čeština (Česká republika)",
|
||||||
"da": "dánština (Dánsko)",
|
"da": "dánština (Dánsko)",
|
||||||
"prs": "Dáríština (Afghánistán)",
|
|
||||||
"dv": "Divehština (Maledivy)",
|
"dv": "Divehština (Maledivy)",
|
||||||
"et": "estonština (Estonsko)",
|
"et": "estonština (Estonsko)",
|
||||||
"fo": "Faerština (Faerské ostrovy)",
|
"fo": "Faerština (Faerské ostrovy)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Antivirová ochrana v programu Microsoft Defender",
|
"defender": "Antivirová ochrana v programu Microsoft Defender",
|
||||||
"defenderAntivirus": "Antivirová ochrana v programu Microsoft Defender",
|
"defenderAntivirus": "Antivirová ochrana v programu Microsoft Defender",
|
||||||
"defenderExploitGuard": "Ochrana Exploit Guard v programu Microsoft Defender",
|
"defenderExploitGuard": "Ochrana Exploit Guard v programu Microsoft Defender",
|
||||||
"defenderFirewall": "Firewall v programu Microsoft Defender",
|
"defenderFirewall": "Brána firewall systému Windows",
|
||||||
"defenderLocalSecurityOptions": "Možnosti zabezpečení místního zařízení",
|
"defenderLocalSecurityOptions": "Možnosti zabezpečení místního zařízení",
|
||||||
"defenderSecurityCenter": "Centrum zabezpečení v programu Microsoft Defender",
|
"defenderSecurityCenter": "Centrum zabezpečení v programu Microsoft Defender",
|
||||||
"deliveryOptimization": "Optimalizace doručení",
|
"deliveryOptimization": "Optimalizace doručení",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Zakázáno",
|
"disabled": "Zakázáno",
|
||||||
"enabled": "Povoleno",
|
"enabled": "Povoleno",
|
||||||
"infoBalloonContent": "Určete, jestli se mají instalovat nejnovější aktualizace funkcí Windows 10 na zařízení, která nemají nárok na Windows 11.",
|
"infoBalloonContent": "Určete, jestli se mají instalovat nejnovější aktualizace funkcí Windows 10 na zařízení, která nemají nárok na Windows 11.",
|
||||||
"label": "Pokud zařízení nemůže používat Windows 11, nainstalujte nejnovější aktualizaci funkcí Windows 10",
|
"label": "Pokud zařízení není oprávněné používat Windows 11, nainstalujte nejnovější aktualizaci funkcí Windows 10",
|
||||||
"notApplicable": "Není k dispozici",
|
"notApplicable": "Není k dispozici",
|
||||||
"summaryLabel": "Instalace Windows 10 na zařízeních, která nejsou schopná používat Windows 11"
|
"summaryLabel": "Instalace Windows 10 na zařízeních, která nejsou oprávněná používat Windows 11"
|
||||||
},
|
},
|
||||||
"bladeTitle": "Nasazení aktualizací funkcí",
|
"bladeTitle": "Nasazení aktualizací funkcí",
|
||||||
"deploymentSettingsTitle": "Nastavení nasazení",
|
"deploymentSettingsTitle": "Nastavení nasazení",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"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í:",
|
"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.",
|
"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.",
|
"appSharingFromLevel3": "{0}: Povolí přijímat v dokumentech a účtech organizace data z jakékoli aplikace.",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Zadejte jazyk a oblast, které se použijí.",
|
"languageInfo": "Zadejte jazyk a oblast, které se použijí.",
|
||||||
"licenseAgreement": "Licenční podmínky pro software společnosti Microsoft",
|
"licenseAgreement": "Licenční podmínky pro software společnosti Microsoft",
|
||||||
"licenseAgreementInfo": "Zadejte, jestli se uživatelům má zobrazovat smlouva EULA.",
|
"licenseAgreementInfo": "Zadejte, jestli se uživatelům má zobrazovat smlouva EULA.",
|
||||||
"plugAndForgetDevice": "Nasazení sebou samým (Preview)",
|
"plugAndForgetDevice": "Automatické nasazení",
|
||||||
"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. ",
|
"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í",
|
"privacySettings": "Nastavení soukromí",
|
||||||
"privacySettingsInfo": "Zadejte, jestli se uživatelům mají zobrazovat nastavení ochrany osobních údajů.",
|
"privacySettingsInfo": "Zadejte, jestli se uživatelům mají zobrazovat nastavení ochrany osobních údajů.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Označit vybrané blokovací aplikace jako neúspěšné pouze ve fázi technika (Preview)",
|
"allowNonBlockingAppInstallation": "Označit vybrané blokovací aplikace jako neúspěšné pouze ve fázi technika",
|
||||||
"apps": "aplikace",
|
"apps": "aplikace",
|
||||||
"appsListName": "Seznam aplikací",
|
"appsListName": "Seznam aplikací",
|
||||||
"blockingApps": "Blokovací aplikace",
|
"blockingApps": "Blokovací aplikace",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Aktivita",
|
"activity": "Aktivita",
|
||||||
|
"activityName": "Název aktivity",
|
||||||
"actor": "Iniciátor (actor)",
|
"actor": "Iniciátor (actor)",
|
||||||
|
"actorType": "Typ objektu actor",
|
||||||
"app": "Aplikace",
|
"app": "Aplikace",
|
||||||
"appName": "Název aplikace",
|
"appName": "Název aplikace",
|
||||||
"applicationName": "Název aplikace",
|
"applicationName": "Název aplikace",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "Konektor ochrany před mobilními hrozbami",
|
"mtdConnector": "Konektor ochrany před mobilními hrozbami",
|
||||||
"name": "Název profilu",
|
"name": "Název profilu",
|
||||||
"oSVersion": "Verze OS",
|
"oSVersion": "Verze OS",
|
||||||
|
"operationType": "Typ operace",
|
||||||
"os": "Operační systém",
|
"os": "Operační systém",
|
||||||
"packageName": "Název balíčku",
|
"packageName": "Název balíčku",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"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."
|
"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."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Název aplikace zasílání zpráv"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "ID balíčku aplikace zasílání zpráv"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "Schéma adresy URL aplikace zasílání zpráv"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Oznámení dat organizace",
|
"label": "Oznámení dat organizace",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "Pokud se tato možnost zablokuje, aplikace nebude moct tisknout chráněná data."
|
"tooltip": "Pokud se tato možnost zablokuje, aplikace nebude moct tisknout chráněná data."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Když uživatel v aplikaci vybere odkaz pro zasílání zpráv s hypertextovými odkazy, obvykle se otevře aplikace pro zasílání zpráv s předvyplněným telefonním číslem připraveným k odeslání. Pro toto nastavení zvolte, jak se má zpracovat tento typ přenosu obsahu, když se iniciuje z aplikace spravované zásadami. Aby se toto nastavení projevilo, můžou být zapotřebí další kroky. Nejprve ověřte, že byla odebrána zpráva SMS ze seznamu Vybrat aplikace k vyloučení. Pak se ujistěte, že aplikace používá novější verzi sady Intune SDK (verzi novější než 19.0.0).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Přenos dat zasílání zpráv do",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Když uživatel v aplikaci vybere odkaz pro zasílání zpráv s hypertextovými odkazy, obvykle se otevře aplikace pro zasílání zpráv s předvyplněným telefonním číslem připraveným k odeslání. Pro toto nastavení zvolte, jak se má zpracovat tento typ přenosu obsahu, když se iniciuje z aplikace spravované zásadami."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Přijímat data z jiných aplikací",
|
"label": "Přijímat data z jiných aplikací",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "Povolí přihlašování pomocí webového poskytovatele přihlašovacích údajů.",
|
"authenticationWebSignInDescription": "Povolí přihlašování pomocí webového poskytovatele přihlašovacích údajů.",
|
||||||
"authenticationWebSignInName": "Webové přihlášení (zastaralé nastavení)",
|
"authenticationWebSignInName": "Webové přihlášení (zastaralé nastavení)",
|
||||||
"authorizedAppRulesDescription": "Bude používat a vynucovat autorizovaná pravidla brány firewall v místním úložišti.",
|
"authorizedAppRulesDescription": "Bude používat a vynucovat autorizovaná pravidla brány firewall v místním úložišti.",
|
||||||
"authorizedAppRulesName": "Pravidla Firewallu v programu Microsoft Defender pro autorizované aplikace z místního úložiště",
|
"authorizedAppRulesName": "Pravidla brány firewall systému Windows pro autorizované aplikace z místního úložiště",
|
||||||
"authorizedUsersListHideAdminUsersName": "Skrýt správce počítače",
|
"authorizedUsersListHideAdminUsersName": "Skrýt správce počítače",
|
||||||
"authorizedUsersListHideLocalUsersName": "Skrýt místní uživatele",
|
"authorizedUsersListHideLocalUsersName": "Skrýt místní uživatele",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Skrýt mobilní účty",
|
"authorizedUsersListHideMobileAccountsName": "Skrýt mobilní účty",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Toto nastavení určuje dobu nečinnosti uživatele, po které se zamkne obrazovka mobilního zařízení. Doporučená hodnota: 15 minut",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Toto nastavení určuje dobu nečinnosti uživatele, po které se zamkne obrazovka mobilního zařízení. Doporučená hodnota: 15 minut",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Toto nastavení určuje dobu, za kterou se zařízení uzamkne, když uživatel nezadá žádný vstup. Doporučená hodnota: 15 min.",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Toto nastavení určuje dobu, za kterou se zařízení uzamkne, když uživatel nezadá žádný vstup. Doporučená hodnota: 15 min.",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximální počet minut nečinnosti, po kterém bude nutné zadat heslo",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximální počet minut nečinnosti, po kterém bude nutné zadat heslo",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Doporučená hodnota: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Vyberte nejnovější verzi operačního systému, kterou mobilní zařízení může mít.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Vyberte nejnovější verzi operačního systému, kterou mobilní zařízení může mít.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Maximální verze operačního systému pro mobilní zařízení",
|
"complianceMobileOsVersionRestrictionMaximumName": "Maximální verze operačního systému pro mobilní zařízení",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Vyberte nejstarší verzi operačního systému, kterou mobilní zařízení může mít.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Vyberte nejstarší verzi operačního systému, kterou mobilní zařízení může mít.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "Toto nastavení určuje počet posledních hesel, která nejde použít znovu. Doporučená hodnota: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "Toto nastavení určuje počet posledních hesel, která nejde použít znovu. Doporučená hodnota: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Počet předchozích hesel, která se nesmí použít znovu",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Počet předchozích hesel, která se nesmí použít znovu",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Doporučená hodnota: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Zadejte nejnovější verzi buildu operačního systému, kterou může zařízení mít. Například: 20E252.<br>Pokud chcete nastavit aktualizaci Apple Rapid Security Response jako maximální build operačního systému, zadejte dodatečnou verzi buildu. Například: 20E772520a.",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Zadejte nejnovější verzi buildu operačního systému, kterou může zařízení mít. Například: 20E252.<br>Pokud chcete nastavit aktualizaci Apple Rapid Security Response jako maximální build operačního systému, zadejte dodatečnou verzi buildu. Například: 20E772520a.",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Maximální verze buildu operačního systému",
|
"complianceOsBuildVersionRestrictionMaximumName": "Maximální verze buildu operačního systému",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Zadejte nejstarší verzi buildu operačního systému, kterou může zařízení mít. Například: 20E252.<br>Pokud chcete nastavit aktualizaci Apple Rapid Security Response jako minimální build operačního systému, zadejte dodatečnou verzi buildu. Například: 20E772520a.",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Zadejte nejstarší verzi buildu operačního systému, kterou může zařízení mít. Například: 20E252.<br>Pokud chcete nastavit aktualizaci Apple Rapid Security Response jako minimální build operačního systému, zadejte dodatečnou verzi buildu. Například: 20E772520a.",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Umožňuje vyžadovat, aby bezpečnostní informace Microsoft Defenderu byly aktuální.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Umožňuje vyžadovat, aby bezpečnostní informace Microsoft Defenderu byly aktuální.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Aktuální bezpečnostní informace Antimalwaru v programu Microsoft Defender",
|
"complianceRequireWindowsDefenderSignatureName": "Aktuální bezpečnostní informace Antimalwaru v programu Microsoft Defender",
|
||||||
"complianceRequiredPasswordTypeDescription": "Toto nastavení určuje, jestli se hesla můžou skládat jenom z číslic nebo jestli musí obsahovat i jiné znaky než číslice. Doporučení: Požadovaný typ hesla: Alfanumerický, Minimální počet znakových sad: 1",
|
"complianceRequiredPasswordTypeDescription": "Toto nastavení určuje, jestli se hesla můžou skládat jenom z číslic nebo jestli musí obsahovat i jiné znaky než číslice. Doporučení: Požadovaný typ hesla: Alfanumerický, Minimální počet znakových sad: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Doporučení: Požadovaný typ hesla: Alfanumerické, Minimální počet znakových sad: 1",
|
||||||
"complianceRootedAllowedDescription": "Zabrání zařízením s rootem mít podnikový přístup.",
|
"complianceRootedAllowedDescription": "Zabrání zařízením s rootem mít podnikový přístup.",
|
||||||
"complianceRootedAllowedName": "Zařízení s rootem",
|
"complianceRootedAllowedName": "Zařízení s rootem",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "Toto nastavení určuje, jestli se v zařízení znemožní použití funkce ladění USB.",
|
"complianceSecurityDisableUSBDebuggingDescription": "Toto nastavení určuje, jestli se v zařízení znemožní použití funkce ladění USB.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Vyberte nejstarší verzi operačního systému, kterou může zařízení používat. Verze operačního systému se definuje jako hlavníVerze.podverze.build.revize. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Vyberte nejstarší verzi operačního systému, kterou může zařízení používat. Verze operačního systému se definuje jako hlavníVerze.podverze.build.revize. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Vyberte typ hesla, které se bude na zařízení používat.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Vyberte typ hesla, které se bude na zařízení používat.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Typ hesla",
|
"complianceWindowsRequiredPasswordTypeName": "Typ hesla",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Vyžadovat heslo k odemknutí pracovního profilu",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Zabezpečení pracovního profilu",
|
||||||
"compliantAppsOption": "Seznam aplikací vyhovujících předpisům – ohlásit nedodržení předpisů u všech nainstalovaných aplikací mimo tento seznam",
|
"compliantAppsOption": "Seznam aplikací vyhovujících předpisům – ohlásit nedodržení předpisů u všech nainstalovaných aplikací mimo tento seznam",
|
||||||
"computerNameStaticPrefixDescription": "Počítače mají přiřazené názvy o 15 znacích. Zadejte předponu, zbytek do 15 znaků bude náhodný.",
|
"computerNameStaticPrefixDescription": "Počítače mají přiřazené názvy o 15 znacích. Zadejte předponu, zbytek do 15 znaků bude náhodný.",
|
||||||
"computerNameStaticPrefixName": "Předpona názvu počítače",
|
"computerNameStaticPrefixName": "Předpona názvu počítače",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Seznam povolených domén Google",
|
"domainAllowListName": "Seznam povolených domén Google",
|
||||||
"domainAllowListTableEmptyValueExample": "Zadejte doménu.",
|
"domainAllowListTableEmptyValueExample": "Zadejte doménu.",
|
||||||
"domainAllowListTableName": "Doména",
|
"domainAllowListTableName": "Doména",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Pravidla brány firewall v programu Microsoft Defender pro autorizované aplikace z místního úložiště (Doménové sítě)",
|
"domainAuthorizedAppRulesSummaryLabel": "Pravidla firewallu systému Windows pro autorizované aplikace z místního úložiště (doménové sítě)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Brána firewall programu Microsoft Defender (Doménové sítě)",
|
"domainFirewallEnabledSummaryLabel": "Brána firewall systému Windows (doménové sítě)",
|
||||||
"domainGlobalRulesSummaryLabel": "Globální pravidla brány firewall v programu Microsoft Defender pro porty z místního úložiště (Doménové sítě)",
|
"domainGlobalRulesSummaryLabel": "Globální pravidla firewallu systému Windows pro porty z místního úložiště (doménové sítě)",
|
||||||
"domainIPsecRulesSummaryLabel": "Pravidla IPsec z místního úložiště (Doménové sítě)",
|
"domainIPsecRulesSummaryLabel": "Pravidla IPsec z místního úložiště (Doménové sítě)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "Výjimka zabezpečených paketů protokolu IPsec s neviditelným režimem (Doménové sítě)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "Výjimka zabezpečených paketů protokolu IPsec s neviditelným režimem (Doménové sítě)",
|
||||||
"domainInboundConnectionsSummaryLabel": "Výchozí akce pro příchozí připojení (Doménové sítě)",
|
"domainInboundConnectionsSummaryLabel": "Výchozí akce pro příchozí připojení (Doménové sítě)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Příchozí oznámení (Doménové sítě)",
|
"domainInboundNotificationsSummaryLabel": "Příchozí oznámení (Doménové sítě)",
|
||||||
"domainLocalStoreSummaryLabel": "Pravidla brány firewall programu Microsoft Defender z místního úložiště (Doménové sítě)",
|
"domainLocalStoreSummaryLabel": "Pravidla firewallu systému Windows z místního úložiště (doménové sítě)",
|
||||||
"domainNameSourceOption": "Zdroj názvu domény uživatele",
|
"domainNameSourceOption": "Zdroj názvu domény uživatele",
|
||||||
"domainNetworkName": "Doménová (firemní) síť",
|
"domainNetworkName": "Doménová (firemní) síť",
|
||||||
"domainOutboundConnectionsSummaryLabel": "Výchozí akce pro odchozí připojení (Doménové sítě)",
|
"domainOutboundConnectionsSummaryLabel": "Výchozí akce pro odchozí připojení (Doménové sítě)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Jednotné přihlašování s alternativním certifikátem",
|
"enableSingleSignOnName": "Jednotné přihlašování s alternativním certifikátem",
|
||||||
"enableUsePrivateStoreOnly": "Použít pouze privátní úložiště",
|
"enableUsePrivateStoreOnly": "Použít pouze privátní úložiště",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Povolí stahování aplikací pouze z privátního úložiště, ne z veřejného úložiště.",
|
"enableUsePrivateStoreOnlyDescription": "Povolí stahování aplikací pouze z privátního úložiště, ne z veřejného úložiště.",
|
||||||
"enableWindowsDefenderFirewallName": "Firewall v programu Microsoft Defender",
|
"enableWindowsDefenderFirewallName": "Brána firewall systému Windows",
|
||||||
"enableWithUEFILock": "Povolit se zámkem UEFI",
|
"enableWithUEFILock": "Povolit se zámkem UEFI",
|
||||||
"enableWithoutUEFILock": "Povolit bez zámku UEFI",
|
"enableWithoutUEFILock": "Povolit bez zámku UEFI",
|
||||||
"enabledForAzureAdAndHybridOption": "Rotace klíčů povolená pro zařízení připojená k Microsoft Entra a zařízení připojená hybridně",
|
"enabledForAzureAdAndHybridOption": "Rotace klíčů povolená pro zařízení připojená k Microsoft Entra a zařízení připojená hybridně",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Zablokovat příchozí připojení pro následující aplikace",
|
"firewallAppsBlockedHeader": "Zablokovat příchozí připojení pro následující aplikace",
|
||||||
"firewallAppsBlockedPageDescription": "Vyberte aplikace, které by měly blokovat příchozí připojení.",
|
"firewallAppsBlockedPageDescription": "Vyberte aplikace, které by měly blokovat příchozí připojení.",
|
||||||
"firewallAppsBlockedPageName": "Blokované aplikace",
|
"firewallAppsBlockedPageName": "Blokované aplikace",
|
||||||
"firewallCreateRules": "Vytvořte pravidla Firewallu v programu Microsoft Defender. Jeden profil Endpoint Protection může obsahovat až 150 pravidel.",
|
"firewallCreateRules": "Vytvořte pravidla brány firewall systému Windows. Jeden profil Endpoint Protection může obsahovat až 150 pravidel.",
|
||||||
"firewallRequiredDescription": "Vyžaduje, aby byl zapnutý firewall.",
|
"firewallRequiredDescription": "Vyžaduje, aby byl zapnutý firewall.",
|
||||||
"firewallRequiredName": "Firewall",
|
"firewallRequiredName": "Firewall",
|
||||||
"firewallRuleAction": "Akce",
|
"firewallRuleAction": "Akce",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Kanál obecné dostupnosti",
|
"generalAvailabilityChannel": "Kanál obecné dostupnosti",
|
||||||
"generalNetworkSettingsHeader": "Obecné",
|
"generalNetworkSettingsHeader": "Obecné",
|
||||||
"genericLocalUsersOrGroupsName": "Obecní místní uživatelé nebo skupiny",
|
"genericLocalUsersOrGroupsName": "Obecní místní uživatelé nebo skupiny",
|
||||||
"globalConfigurationsDescription": "Nakonfiguruje nastavení Firewallu v programu Microsoft Defender, která budou platit pro všechny typy sítě.",
|
"globalConfigurationsDescription": "Nakonfiguruje nastavení brány firewall systému Windows, která budou platit pro všechny typy sítí.",
|
||||||
"globalConfigurationsName": "Globální nastavení",
|
"globalConfigurationsName": "Globální nastavení",
|
||||||
"globalRulesDescription": "Bude používat a vynucovat globální pravidla brány firewall portu v místním úložišti.",
|
"globalRulesDescription": "Bude používat a vynucovat globální pravidla brány firewall portu v místním úložišti.",
|
||||||
"globalRulesName": "Globální pravidla Firewallu v programu Microsoft Defender pro porty z místního úložiště",
|
"globalRulesName": "Globální pravidla brány firewall systému Windows pro porty z místního úložiště",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "E-mailové adresy účtů Google",
|
"googleAccountEmailAddresses": "E-mailové adresy účtů Google",
|
||||||
"googleAccountEmailAddressesDescription": "Středníkem oddělený seznam e-mailových adres",
|
"googleAccountEmailAddressesDescription": "Středníkem oddělený seznam e-mailových adres",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Požádat o přihlašovací údaje na zabezpečené ploše",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Požádat o přihlašovací údaje na zabezpečené ploše",
|
||||||
"localServerCachingHeader": "Ukládání do mezipaměti místního serveru",
|
"localServerCachingHeader": "Ukládání do mezipaměti místního serveru",
|
||||||
"localStoreDescription": "Bude používat a vynucovat globální pravidla brány firewall z místního úložiště.",
|
"localStoreDescription": "Bude používat a vynucovat globální pravidla brány firewall z místního úložiště.",
|
||||||
"localStoreName": "Pravidla Firewallu v programu Microsoft Defender z místního úložiště",
|
"localStoreName": "Pravidla brány firewall systému Windows z místního úložiště",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Zadejte, jestli se má zobrazit uživatelem konfigurovatelné nastavení, které ovládá časový limit obrazovky, když se zobrazuje zamykací obrazovka zařízení s Windows 10 Mobile. Pokud se tyto zásady nastaví na Povolit, hodnota nastavená položkou Časový limit obrazovky se ignoruje.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Zadejte, jestli se má zobrazit uživatelem konfigurovatelné nastavení, které ovládá časový limit obrazovky, když se zobrazuje zamykací obrazovka zařízení s Windows 10 Mobile. Pokud se tyto zásady nastaví na Povolit, hodnota nastavená položkou Časový limit obrazovky se ignoruje.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Uživatelem konfigurovatelný časový limit obrazovky (jenom mobilní verze)",
|
"lockScreenAllowTimeoutConfigurationName": "Uživatelem konfigurovatelný časový limit obrazovky (jenom mobilní verze)",
|
||||||
"lockScreenBackgroundImageURLDescription": "Adresa URL vlastního obrázku na pozadí úvodní obrazovky. Musí to být soubor .png s koncovým bodem https://.",
|
"lockScreenBackgroundImageURLDescription": "Adresa URL vlastního obrázku na pozadí úvodní obrazovky. Musí to být soubor .png s koncovým bodem https://.",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "Hodnota MTU musí spadat do rozsahu od 1280 do 1400 bajtů.",
|
"mTUSizeInBytesBounds": "Hodnota MTU musí spadat do rozsahu od 1280 do 1400 bajtů.",
|
||||||
"mTUSizeInBytesName": "Maximální velikost paketu",
|
"mTUSizeInBytesName": "Maximální velikost paketu",
|
||||||
"mTUSizeInBytesToolTip": "Největší datový paket v bajtech, který se dá přenášet v síti. Když není nakonfigurovaná, je výchozí velikost Apple 1280 bajtů. Použije se na iOS 14 a novější.",
|
"mTUSizeInBytesToolTip": "Největší datový paket v bajtech, který se dá přenášet v síti. Když není nakonfigurovaná, je výchozí velikost Apple 1280 bajtů. Použije se na iOS 14 a novější.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Používat náhodné adresy MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Používat výchozí nastavení zařízení",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Náhodné adresy MAC používejte jen v případě potřeby, například pro podporu NAC. Uživatelé můžou toto nastavení změnit. Platí pro Android 13 a novější.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Používat adresu MAC zařízení",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "Randomizace adres MAC",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store a identifikovaní vývojáři",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store a identifikovaní vývojáři",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Blokuje AirPlay, sdílení obrazovky na jiná zařízení a funkci aplikace Classroom, kterou učitelé používají ke zobrazení obrazovek studentů. Toto nastavení není k dispozici, pokud blokujete snímky obrazovky.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Blokuje AirPlay, sdílení obrazovky na jiná zařízení a funkci aplikace Classroom, kterou učitelé používají ke zobrazení obrazovek studentů. Toto nastavení není k dispozici, pokud blokujete snímky obrazovky.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Zadejte číslo (4–16).",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Zadejte číslo (4–16).",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Zadejte číslo (6–16).",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Zadejte číslo (6–16).",
|
||||||
"minimumPasswordLengthName": "Minimální délka hesla",
|
"minimumPasswordLengthName": "Minimální délka hesla",
|
||||||
|
"minimumPasswordLengthTooltipText": "Zadejte číslo.",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Chybějící aktualizace se nainstalují automaticky.",
|
"minimumUpdateAutoInstallClassificationDescription": "Chybějící aktualizace se nainstalují automaticky.",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Nainstalovat zadanou klasifikaci aktualizací",
|
"minimumUpdateAutoInstallClassificationName": "Nainstalovat zadanou klasifikaci aktualizací",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Důležité",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Důležité",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Použít ruční proxy server",
|
"networkProxyUseManualServerName": "Použít ruční proxy server",
|
||||||
"networkProxyUseScriptUrlName": "Použít skript proxy serveru",
|
"networkProxyUseScriptUrlName": "Použít skript proxy serveru",
|
||||||
"networkSettingsName": "Nastavení sítě",
|
"networkSettingsName": "Nastavení sítě",
|
||||||
"networkSettingsSubtitle": "Nakonfiguruje nastavení Firewallu v programu Microsoft Defender, která budou platit pro konkrétní typy sítě.",
|
"networkSettingsSubtitle": "Nakonfiguruje nastavení brány firewall systému Windows, která budou platit pro konkrétní typy sítí.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Přidá spravované aplikace pro iOS, kterým by se nemělo povolit používat mobilní data.",
|
"networkUsageRulesBlockCellularHeaderName": "Přidá spravované aplikace pro iOS, kterým by se nemělo povolit používat mobilní data.",
|
||||||
"networkUsageRulesBlockCellularName": "Zablokovat používání mobilních dat",
|
"networkUsageRulesBlockCellularName": "Zablokovat používání mobilních dat",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Přidá spravované aplikace pro iOS, kterým by se nemělo povolit používat mobilní data při roamingu.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Přidá spravované aplikace pro iOS, kterým by se nemělo povolit používat mobilní data při roamingu.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "Aplikace a procesy",
|
"privacyPreferencesTableName": "Aplikace a procesy",
|
||||||
"privacyPublishUserActivitiesDescription": "Zablokuje sdílená prostředí nebo zjišťování naposledy použitých prostředků v přepínání úloh atd.",
|
"privacyPublishUserActivitiesDescription": "Zablokuje sdílená prostředí nebo zjišťování naposledy použitých prostředků v přepínání úloh atd.",
|
||||||
"privacyPublishUserActivitiesName": "Publikovat aktivity uživatele",
|
"privacyPublishUserActivitiesName": "Publikovat aktivity uživatele",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Pravidla brány firewall v programu Microsoft Defender pro autorizované aplikace z místního úložiště (Privátní sítě)",
|
"privateAuthorizedAppRulesSummaryLabel": "Pravidla firewallu systému Windows pro autorizované aplikace z místního úložiště (privátní sítě)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Brána firewall programu Microsoft Defender (Privátní sítě)",
|
"privateFirewallEnabledSummaryLabel": "Brána firewall systému Windows (privátní sítě)",
|
||||||
"privateGlobalRulesSummaryLabel": "Globální pravidla brány firewall v programu Microsoft Defender pro porty z místního úložiště (Privátní sítě)",
|
"privateGlobalRulesSummaryLabel": "Globální pravidla firewallu systému Windows pro porty z místního úložiště (privátní sítě)",
|
||||||
"privateIPsecRulesSummaryLabel": "Pravidla IPsec z místního úložiště (Privátní sítě)",
|
"privateIPsecRulesSummaryLabel": "Pravidla IPsec z místního úložiště (Privátní sítě)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "Výjimka zabezpečených paketů protokolu IPsec s neviditelným režimem (Privátní sítě)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "Výjimka zabezpečených paketů protokolu IPsec s neviditelným režimem (Privátní sítě)",
|
||||||
"privateInboundConnectionsSummaryLabel": "Výchozí akce pro příchozí připojení (Privátní sítě)",
|
"privateInboundConnectionsSummaryLabel": "Výchozí akce pro příchozí připojení (Privátní sítě)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Příchozí oznámení (Privátní sítě)",
|
"privateInboundNotificationsSummaryLabel": "Příchozí oznámení (Privátní sítě)",
|
||||||
"privateLocalStoreSummaryLabel": "Pravidla brány firewall programu Microsoft Defender z místního úložiště (Privátní sítě)",
|
"privateLocalStoreSummaryLabel": "Pravidla firewallu systému Windows z místního úložiště (privátní sítě)",
|
||||||
"privateNetworkName": "Privátní (zjistitelná) síť",
|
"privateNetworkName": "Privátní (zjistitelná) síť",
|
||||||
"privateOutboundConnectionsSummaryLabel": "Výchozí akce pro odchozí připojení (Privátní sítě)",
|
"privateOutboundConnectionsSummaryLabel": "Výchozí akce pro odchozí připojení (Privátní sítě)",
|
||||||
"privateShieldedSummaryLabel": "Chráněné (Privátní sítě)",
|
"privateShieldedSummaryLabel": "Chráněné (Privátní sítě)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "Adresa URL proxy serveru",
|
"proxyServerURLName": "Adresa URL proxy serveru",
|
||||||
"proxyServersAutoDetectionName": "Automatická detekce ostatních podnikových proxy serverů",
|
"proxyServersAutoDetectionName": "Automatická detekce ostatních podnikových proxy serverů",
|
||||||
"proxyUrlExample": "třeba itgproxy.contoso.com",
|
"proxyUrlExample": "třeba itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Pravidla brány firewall v programu Microsoft Defender pro autorizované aplikace z místního úložiště (Veřejné sítě)",
|
"publicAuthorizedAppRulesSummaryLabel": "Pravidla firewallu systému Windows pro autorizované aplikace z místního úložiště (veřejné sítě)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Brána firewall programu Microsoft Defender (Veřejné sítě)",
|
"publicFirewallEnabledSummaryLabel": "Brána firewall systému Windows (veřejné sítě)",
|
||||||
"publicGlobalRulesSummaryLabel": "Globální pravidla brány firewall v programu Microsoft Defender pro porty z místního úložiště (Veřejné sítě)",
|
"publicGlobalRulesSummaryLabel": "Globální pravidla firewallu systému Windows pro porty z místního úložiště (veřejné sítě)",
|
||||||
"publicIPsecRulesSummaryLabel": "Pravidla IPsec z místního úložiště (Veřejné sítě)",
|
"publicIPsecRulesSummaryLabel": "Pravidla IPsec z místního úložiště (Veřejné sítě)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "Výjimka zabezpečených paketů protokolu IPsec s neviditelným režimem (Veřejné sítě)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "Výjimka zabezpečených paketů protokolu IPsec s neviditelným režimem (Veřejné sítě)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Výchozí akce pro příchozí připojení (Veřejné sítě)",
|
"publicInboundConnectionsSummaryLabel": "Výchozí akce pro příchozí připojení (Veřejné sítě)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Příchozí oznámení (Veřejné sítě)",
|
"publicInboundNotificationsSummaryLabel": "Příchozí oznámení (Veřejné sítě)",
|
||||||
"publicLocalStoreSummaryLabel": "Pravidla brány firewall programu Microsoft Defender z místního úložiště (Veřejné sítě)",
|
"publicLocalStoreSummaryLabel": "Pravidla firewallu systému Windows z místního úložiště (veřejné sítě)",
|
||||||
"publicNetworkName": "Veřejná (nezjistitelná) síť",
|
"publicNetworkName": "Veřejná (nezjistitelná) síť",
|
||||||
"publicOutboundConnectionsSummaryLabel": "Výchozí akce pro odchozí připojení (Veřejné sítě)",
|
"publicOutboundConnectionsSummaryLabel": "Výchozí akce pro odchozí připojení (Veřejné sítě)",
|
||||||
"publicPlayStoreEnabledDescription": "Uživatelé získají přístup ke všem aplikacím kromě těch, které jste v Klientských aplikacích vyžadovali odinstalovat. Pokud pro toto nastavení zvolíte možnost Nenakonfigurováno, uživatelé budou moct přistupovat jen k aplikacím, které jste v Klientských aplikacích uvedli jako dostupné nebo požadované.",
|
"publicPlayStoreEnabledDescription": "Uživatelé získají přístup ke všem aplikacím kromě těch, které jste v Klientských aplikacích vyžadovali odinstalovat. Pokud pro toto nastavení zvolíte možnost Nenakonfigurováno, uživatelé budou moct přistupovat jen k aplikacím, které jste v Klientských aplikacích uvedli jako dostupné nebo požadované.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Zapsat do softwarového KSP",
|
"sCEPPolicyEnrollToSoftwareKSP": "Zapsat do softwarového KSP",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Zapsat do KSP na čipu TPM (Trusted Platform Module), jinak chyba",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Zapsat do KSP na čipu TPM (Trusted Platform Module), jinak chyba",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Zapsat do KSP na čipu TPM (Trusted Platform Module), pokud existuje, jinak zapsat do softwarového KSP",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Zapsat do KSP na čipu TPM (Trusted Platform Module), pokud existuje, jinak zapsat do softwarového KSP",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "UPOZORNĚNÍ: Rozšířené použití klíče pro libovolný účel (OID 2.5.29.37.0) ani rozšířené použití klíče pro libovolné zásady aplikace (OID 1.3.6.1.4.1.311.10.12.1) nelze použít s certifikační autoritou vytvořenou v Microsoft Cloud PKI.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "Ve většině případů certifikát vyžaduje alespoň ověření klienta, aby se uživatel nebo zařízení mohli ověřit u serveru. Můžete ale zadat další využití a dále tak definovat účel daného klíče.",
|
"sCEPPolicyExtendedKeyUsageDescription": "Ve většině případů certifikát vyžaduje alespoň ověření klienta, aby se uživatel nebo zařízení mohli ověřit u serveru. Můžete ale zadat další využití a dále tak definovat účel daného klíče.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Rozšířené použití klíče",
|
"sCEPPolicyExtendedKeyUsageName": "Rozšířené použití klíče",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Použijte spolu s certifikátem i typ algoritmu hash. Ujistěte se, že jste vybrali nejsilnější úroveň zabezpečení, kterou připojující se zařízení podporují.",
|
"sCEPPolicyHashAlgorithmDescription": "Použijte spolu s certifikátem i typ algoritmu hash. Ujistěte se, že jste vybrali nejsilnější úroveň zabezpečení, kterou připojující se zařízení podporují.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Zadejte počet dnů (1–255).",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Zadejte počet dnů (1–255).",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Zadejte počet dní (1–365).",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Zadejte počet dní (1–365).",
|
||||||
"workProfilePasswordExpirationInDaysName": "Konec platnosti hesla (dny)",
|
"workProfilePasswordExpirationInDaysName": "Konec platnosti hesla (dny)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Zadejte počet dní.",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Heslo pracovního profilu: Minimální délka hesla",
|
"workProfilePasswordMinimumLengthReportingName": "Heslo pracovního profilu: Minimální délka hesla",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Heslo pracovního profilu: Počet požadovaných znaků",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Heslo pracovního profilu: Počet požadovaných znaků",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Heslo pracovního profilu: Počet požadovaných malých písmen",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Heslo pracovního profilu: Počet požadovaných malých písmen",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "Libovolná aplikace",
|
"anyAppOptionText": "Libovolná aplikace",
|
||||||
"anyDestinationAnySourceOptionText": "Libovolný cíl a libovolný zdroj",
|
"anyDestinationAnySourceOptionText": "Libovolný cíl a libovolný zdroj",
|
||||||
"anyDialerAppOptionText": "Libovolná aplikace pro vytáčení",
|
"anyDialerAppOptionText": "Libovolná aplikace pro vytáčení",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "Libovolná aplikace pro zasílání zpráv",
|
||||||
"anyPolicyManagedDialerAppOptionText": "Libovolná aplikace pro vytáčení spravovaná zásadami",
|
"anyPolicyManagedDialerAppOptionText": "Libovolná aplikace pro vytáčení spravovaná zásadami",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "Libovolná aplikace pro zasílání zpráv spravovaná zásadami",
|
||||||
"appAdded": "Aplikace se přidala.",
|
"appAdded": "Aplikace se přidala.",
|
||||||
"appBasedConditionalAccess": "Podmíněný přístup na základě aplikace",
|
"appBasedConditionalAccess": "Podmíněný přístup na základě aplikace",
|
||||||
"appColumnLabel": "Aplikace",
|
"appColumnLabel": "Aplikace",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "ID zařízení MDM",
|
"mdmDeviceId": "ID zařízení MDM",
|
||||||
"mdmWipInvalidVersionSettings": "Nejméně jedna aplikace má neplatné definice minimální a maximální verze.<br /> <br />Zásady Windows Information Protection With Enrollment podporují možnost zadat jenom minimální nebo maximální verzi, pokud se obě verze nezadají jako ekvivalentní. Když se zadá jenom minimální verze, pravidlo se nastaví pro verzi, která bude stejná nebo vyšší než minimální verze. Podobně, když se zadá jenom maximální verze, pravidlo se nastaví pro verzi, která bude stejná nebo nižší než maximální verze.",
|
"mdmWipInvalidVersionSettings": "Nejméně jedna aplikace má neplatné definice minimální a maximální verze.<br /> <br />Zásady Windows Information Protection With Enrollment podporují možnost zadat jenom minimální nebo maximální verzi, pokud se obě verze nezadají jako ekvivalentní. Když se zadá jenom minimální verze, pravidlo se nastaví pro verzi, která bude stejná nebo vyšší než minimální verze. Podobně, když se zadá jenom maximální verze, pravidlo se nastaví pro verzi, která bude stejná nebo nižší než maximální verze.",
|
||||||
"mdmWipReport": "Sestava pro MDM Windows Information Protection",
|
"mdmWipReport": "Sestava pro MDM Windows Information Protection",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Název aplikace zasílání zpráv (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "ID balíčku aplikace zasílání zpráv (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "Schéma adresy URL aplikace zasílání zpráv (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender pro koncové body",
|
"microsoftDefenderForEndpoint": "Microsoft Defender pro koncové body",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "Minimální verze aplikace",
|
"minAppVersion": "Minimální verze aplikace",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Katalog nastavení",
|
"settingsCatalog": "Katalog nastavení",
|
||||||
"settingsSelectorLabel": "Nastavení",
|
"settingsSelectorLabel": "Nastavení",
|
||||||
"silent": "Tiché",
|
"silent": "Tiché",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "Konkrétní aplikace pro zasílání zpráv",
|
||||||
"specificUserIsLicensedIntune": "{0} má licenci pro Microsoft Intune.",
|
"specificUserIsLicensedIntune": "{0} má licenci pro Microsoft Intune.",
|
||||||
"state": "Stav",
|
"state": "Stav",
|
||||||
"status": "Stav",
|
"status": "Stav",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Standardní hodnoty Microsoft Edge",
|
"edgeSecurityBaseline": "Standardní hodnoty Microsoft Edge",
|
||||||
"edgeSecurityBaselinePreview": "Preview: Standardní hodnoty Microsoft Edge",
|
"edgeSecurityBaselinePreview": "Preview: Standardní hodnoty Microsoft Edge",
|
||||||
"editionUpgradeConfiguration": "Upgrade edice a přepnutí režimu",
|
"editionUpgradeConfiguration": "Upgrade edice a přepnutí režimu",
|
||||||
"firewall": "Firewall v programu Microsoft Defender",
|
"firewall": "Brána firewall systému Windows",
|
||||||
"firewallRules": "Pravidla Firewallu v programu Microsoft Defender",
|
"firewallRules": "Pravidla firewallu systému Windows",
|
||||||
"identityProtection": "Ochrana účtu",
|
"identityProtection": "Ochrana účtu",
|
||||||
"identityProtectionPreview": "Ochrana účtu (Preview)",
|
"identityProtectionPreview": "Ochrana účtu (Preview)",
|
||||||
"mDMSecurityBaseline1810": "Základní úroveň zabezpečení MDM pro Windows 10 a novější pro říjen 2018",
|
"mDMSecurityBaseline1810": "Základní úroveň zabezpečení MDM pro Windows 10 a novější pro říjen 2018",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Preview: Standardní hodnoty Microsoft Office O365",
|
"office365BaselinePreview": "Preview: Standardní hodnoty Microsoft Office O365",
|
||||||
"securityBaselines": "Základní úrovně zabezpečení",
|
"securityBaselines": "Základní úrovně zabezpečení",
|
||||||
"test": "Testovací šablona",
|
"test": "Testovací šablona",
|
||||||
"testFirewallRulesSecurityTemplateName": "Pravidla Firewallu v programu Microsoft Defender (test)",
|
"testFirewallRulesSecurityTemplateName": "Pravidla firewallu systému Windows (test)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Ochrana účtu (test)",
|
"testIdentityProtectionSecurityTemplateName": "Ochrana účtu (test)",
|
||||||
"windowsSecurityExperience": "Možnosti Zabezpečení Windows"
|
"windowsSecurityExperience": "Možnosti Zabezpečení Windows"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Firewall v programu Microsoft Defender"
|
"mDE": "Brána firewall systému Windows"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Pravidla Firewallu v programu Microsoft Defender"
|
"mDE": "Pravidla firewallu systému Windows"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "Nastavení přesunutí známých složek na OneDrivu: Windows 10 v šabloně konfigurace cloudu. https://aka.ms/CloudConfigGuide"
|
"description": "Nastavení přesunutí známých složek na OneDrivu: Windows 10 v šabloně konfigurace cloudu. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Konfigurace správy mobilních zařízení",
|
"expeditedCheckin": "Konfigurace správy mobilních zařízení",
|
||||||
"exploitProtection": "Ochrana Exploit Guard",
|
"exploitProtection": "Ochrana Exploit Guard",
|
||||||
"extensions": "Rozšíření",
|
"extensions": "Rozšíření",
|
||||||
"hardwareConfigurations": "Konfigurace systému BIOS",
|
"hardwareConfigurations": "Konfigurace systému BIOS a další nastavení",
|
||||||
"identityProtection": "Identity Protection",
|
"identityProtection": "Identity Protection",
|
||||||
"iosCompliancePolicy": "Zásady dodržování předpisů v iOSu",
|
"iosCompliancePolicy": "Zásady dodržování předpisů v iOSu",
|
||||||
"kiosk": "Veřejný terminál",
|
"kiosk": "Veřejný terminál",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Antivirová ochrana v programu Microsoft Defender",
|
"microsoftDefenderAntivirus": "Antivirová ochrana v programu Microsoft Defender",
|
||||||
"microsoftDefenderAntivirusexclusions": "Výjimky Antivirové ochrany 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)",
|
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (desktopová zařízení se systémem Windows 10 nebo novějším)",
|
||||||
"microsoftDefenderFirewallRules": "Pravidla Firewallu v programu Microsoft Defender",
|
"microsoftDefenderFirewallRules": "Pravidla firewallu systému Windows",
|
||||||
"microsoftEdgeBaseline": "Standardní hodnoty zabezpečení pro Microsoft Edge",
|
"microsoftEdgeBaseline": "Standardní hodnoty zabezpečení pro Microsoft Edge",
|
||||||
"mxProfileZebraOnly": "Profil MX (pouze Zebra)",
|
"mxProfileZebraOnly": "Profil MX (pouze Zebra)",
|
||||||
"networkBoundary": "Ohraničení sítě",
|
"networkBoundary": "Ohraničení sítě",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Důvěryhodný certifikát – TEST",
|
"windows10XTrustedCertificate": "Důvěryhodný certifikát – TEST",
|
||||||
"windows10XVPN": "Síť VPN – TEST",
|
"windows10XVPN": "Síť VPN – TEST",
|
||||||
"windows10XWifi": "WIFI – TEST",
|
"windows10XWifi": "WIFI – TEST",
|
||||||
|
"windows11SecurityBaseline": "Základní úroveň zabezpečení pro Windows 10 a novější",
|
||||||
"windows8CompliancePolicy": "Zásady dodržování předpisů ve Windows 8",
|
"windows8CompliancePolicy": "Zásady dodržování předpisů ve Windows 8",
|
||||||
"windowsHealthMonitoring": "Monitorování stavu Windows",
|
"windowsHealthMonitoring": "Monitorování stavu Windows",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Nakonfigurujte zařízení pro počáteční zřizování a přiřaďte je uživatelům.",
|
"description": "Nakonfigurujte zařízení pro počáteční zřízení.",
|
||||||
"title": "Příprava zařízení"
|
"title": "Příprava zařízení"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Ručně schvalovat a nasazovat aktualizace ovladačů"
|
"manual": "Ručně schvalovat a nasazovat aktualizace ovladačů"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Hromadné akce"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "Počet dní: {0}"
|
"value": "Počet dní: {0}"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Vyberte akci níže.",
|
||||||
"label": "Driver action",
|
"label": "Akce ovladače",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Vyberte akci"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Zahrnuté ovladače"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Vyberte ovladače, které chcete zahrnout do hromadné akce."
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Vybrat ovladače, které se mají zahrnout"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "Je možné vybrat maximálně sto ovladačů."
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "Měl by být vybrán alespoň jeden ovladač."
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Vybrané ovladače"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Zpřístupnit v službě Windows Update",
|
||||||
"bladeTitle": "Aktualizace ovladačů pro systém Windows 10 a novější (Preview)",
|
"bladeTitle": "Aktualizace ovladačů pro systém Windows 10 a novější (Preview)",
|
||||||
"lastSync": "Poslední synchronizace:",
|
"lastSync": "Poslední synchronizace:",
|
||||||
"lastSyncDefaultText": "Čeká se na shromažďování počátečního inventáře.",
|
"lastSyncDefaultText": "Čeká se na shromažďování počátečního inventáře.",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Vlevo vyberte oznámení a zobrazíte náhled obsahu."
|
"placeholder": "Vlevo vyberte oznámení a zobrazíte náhled obsahu."
|
||||||
},
|
},
|
||||||
"companyContact": "Zápatí e-mailu – Uveďte kontaktní údaje.",
|
"companyContact": "Zobrazit kontaktní informace",
|
||||||
"companyLogo": "Záhlaví e-mailu – Připojte logo společnosti.",
|
"companyLogo": "Zobrazit logo společnosti",
|
||||||
"companyName": "Zápatí e-mailu – Uveďte název společnosti.",
|
"companyName": "Zobrazit název společnosti",
|
||||||
"createEditDescription": "Vytvořte nebo upravte šablony oznámení.",
|
"createEditDescription": "Vytvořte nebo upravte šablony oznámení.",
|
||||||
"createMessage": "Vytvořit zprávu",
|
"createMessage": "Vytvořit zprávu",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Zobrazit podrobnosti o zařízení",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "Toto nastavení je ve výchozím nastavení vypnuté, protože načtení podrobností o zařízení může způsobit zpoždění příjmu e-mailových oznámení.",
|
||||||
"editImpactInfo": "Úprava této šablony oznámení bude mít vliv na všechny zásady, které tuto šablonu používají.",
|
"editImpactInfo": "Úprava této šablony oznámení bude mít vliv na všechny zásady, které tuto šablonu používají.",
|
||||||
"editMessage": "Upravit zprávu",
|
"editMessage": "Upravit zprávu",
|
||||||
"email": "e-mail",
|
"email": "e-mail",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "Zápatí e-mailu",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "Nastavení záhlaví a zápatí e-mailu pro e-mailová oznámení závisí na nastavení přizpůsobení v uzlu správce tenanta ve Správci koncových bodů.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "Záhlaví e-mailu",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Konfigurovat nastavení přizpůsobení",
|
||||||
"formSubTitle": "Vytvořit nebo upravit e-maily s oznámením",
|
"formSubTitle": "Vytvořit nebo upravit e-maily s oznámením",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Nastavení záhlaví a zápatí",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Náhled obrázku",
|
||||||
"infotext": "Vyberte oznámení. Pokud chcete vytvořit nové oznámení, přejděte do Oznámení v části Správa v úloze Nastavit dodržování předpisů zařízením.",
|
"infotext": "Vyberte oznámení. Pokud chcete vytvořit nové oznámení, přejděte do Oznámení v části Správa v úloze Nastavit dodržování předpisů zařízením.",
|
||||||
"iwLink": "Odkaz na web Portálu společnosti",
|
"iwLink": "Zobrazit odkaz na web portálu společnosti",
|
||||||
"listEmpty": "Žádné šablony zpráv",
|
"listEmpty": "Žádné šablony zpráv",
|
||||||
"listEmptySelectOnly": "Žádné šablony zpráv. Pokud chcete vytvořit nové oznámení, přejděte prosím na Oznámení v části Spravovat úlohy Nastavit dodržování předpisů zařízením.",
|
"listEmptySelectOnly": "Žádné šablony zpráv. Pokud chcete vytvořit nové oznámení, přejděte prosím na Oznámení v části Spravovat úlohy Nastavit dodržování předpisů zařízením.",
|
||||||
"listSubTitle": "Seznam šablon oznámení",
|
"listSubTitle": "Seznam šablon oznámení",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Šablony oznámení",
|
"notificationMessageTemplates": "Šablony oznámení",
|
||||||
"rowValidationError": "Vyžaduje se nejméně jedna šablona zprávy.",
|
"rowValidationError": "Vyžaduje se nejméně jedna šablona zprávy.",
|
||||||
"selectDescription": "Vyberte oznámení. Pokud chcete vytvořit nové oznámení, přejděte do Oznámení v části Spravovat v úloze Nastavit dodržování předpisů zařízením.",
|
"selectDescription": "Vyberte oznámení. Pokud chcete vytvořit nové oznámení, přejděte do Oznámení v části Spravovat v úloze Nastavit dodržování předpisů zařízením.",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Hodnota tenanta",
|
||||||
"testEmailLabel": "Odeslat náhled e-mailu",
|
"testEmailLabel": "Odeslat náhled e-mailu",
|
||||||
"localeLabel": "Národní prostředí",
|
"localeLabel": "Národní prostředí",
|
||||||
"isDefaultLocale": "Je výchozí"
|
"isDefaultLocale": "Je výchozí"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "{0} řádek z {1} sloupec {2}"
|
"ariaLabel": "{0} řádek z {1} sloupec {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Začněte od začátku a vyberte požadované vlastnosti z knihovny dostupných vlastností inventáře."
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Začněte od začátku a vyberte požadovaná nastavení z knihovny dostupných nastavení",
|
"subtitle": "Začněte od začátku a vyberte požadovaná nastavení z knihovny dostupných nastavení",
|
||||||
"title": "Katalog nastavení"
|
"title": "Katalog nastavení"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "Minimální verze",
|
"minVersion": "Minimální verze",
|
||||||
"nameHint": "Toto bude primární atribut viditelný při identifikaci sady omezení.",
|
"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.",
|
"noAssignmentsStatusBar": "Přiřaďte omezení k aspoň jedné skupině. Klikněte na Vlastnosti.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "Abyste mohli upravovat omezení, musíte být správce.",
|
||||||
"notFound": "Omezení se nenašlo. Možná už se odstranilo.",
|
"notFound": "Omezení se nenašlo. Možná už se odstranilo.",
|
||||||
"personallyOwned": "Zařízení v osobním vlastnictví",
|
"personallyOwned": "Zařízení v osobním vlastnictví",
|
||||||
"restriction": "Omezení",
|
"restriction": "Omezení",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Zásady dodržování předpisů ve Windows 8",
|
"complianceWindows8": "Zásady dodržování předpisů ve Windows 8",
|
||||||
"complianceWindowsPhone": "Zásady dodržování předpisů ve Windows Phone",
|
"complianceWindowsPhone": "Zásady dodržování předpisů ve Windows Phone",
|
||||||
"exchangeActiveSync": "Exchange ActiveSync",
|
"exchangeActiveSync": "Exchange ActiveSync",
|
||||||
|
"inventoryCatalog": "Katalog vlastností",
|
||||||
"iosCustom": "Vlastní",
|
"iosCustom": "Vlastní",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Odvozené přihlašovací údaje PIV",
|
"iosDerivedCredentialAuthenticationConfiguration": "Odvozené přihlašovací údaje PIV",
|
||||||
"iosDeviceFeatures": "Funkce zařízení",
|
"iosDeviceFeatures": "Funkce zařízení",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Zařízení s operačním systémem Chrome (Preview)"
|
"devices": "Zařízení ChromeOS"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Kontakty správce",
|
"adminContacts": "Kontakty správce",
|
||||||
"appPackaging": "Balení aplikace",
|
"appPackaging": "Balení aplikace",
|
||||||
"businessGroups": "Obchodní skupiny",
|
"autopatchGroups": "Skupiny automatických oprav",
|
||||||
"devices": "Zařízení",
|
"devices": "Zařízení",
|
||||||
"feedback": "Zpětná vazba",
|
"feedback": "Zpětná vazba",
|
||||||
"gettingStarted": "Začínáme",
|
"gettingStarted": "Začínáme",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Přizpůsobení",
|
"brandingAndCustomization": "Přizpůsobení",
|
||||||
"cartProfiles": "Profily košíků",
|
"cartProfiles": "Profily košíků",
|
||||||
"certificateConnectors": "Konektory certifikátů",
|
"certificateConnectors": "Konektory certifikátů",
|
||||||
"chromeEnterprise": "Chrome Enterprise (Preview)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Zařízení připojená cloudem (Preview)",
|
"cloudAttachedDevices": "Zařízení připojená cloudem (Preview)",
|
||||||
"cloudPcActions": "Akce cloudového počítače Cloud PC (Preview)",
|
"cloudPcActions": "Akce cloudového počítače Cloud PC (Preview)",
|
||||||
"cloudPcMaintenanceWindows": "Časová období údržby Cloud PC (Preview)",
|
"cloudPcMaintenanceWindows": "Časová období údržby Cloud PC (Preview)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "Stav uživatele",
|
"userExecutionStatus": "Stav uživatele",
|
||||||
"wdacSupplementalPolicies": "Doplňkové zásady režimu S",
|
"wdacSupplementalPolicies": "Doplňkové zásady režimu S",
|
||||||
"win32CatalogUpdateApp": "Aktualizace katalogových aplikací pro Windows (Win32)",
|
"win32CatalogUpdateApp": "Aktualizace katalogových aplikací pro Windows (Win32)",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Aktualizace pro katalogové aplikace pro Windows (Win32) (Preview)",
|
||||||
"windows10DriverUpdate": "Aktualizace ovladačů pro systém Windows 10 a novější",
|
"windows10DriverUpdate": "Aktualizace ovladačů pro systém Windows 10 a novější",
|
||||||
"windows10QualityUpdate": "Aktualizace kvality pro Windows 10 a novější",
|
"windows10QualityUpdate": "Aktualizace kvality pro Windows 10 a novější",
|
||||||
"windows10UpdateRings": "Aktualizační okruhy pro Windows 10 a novější",
|
"windows10UpdateRings": "Aktualizační okruhy pro Windows 10 a novější",
|
||||||
"windows10XPolicyFailures": "Selhání zásad Windows 10X",
|
"windows10XPolicyFailures": "Selhání zásad Windows 10X",
|
||||||
"windows365Connector": "Konektor Citrix pro Windows 365",
|
|
||||||
"windows365PartnerConnector": "Partnerské konektory pro Windows 365",
|
"windows365PartnerConnector": "Partnerské konektory pro Windows 365",
|
||||||
"windowsDiagnosticData": "Data Windows",
|
"windowsDiagnosticData": "Data Windows",
|
||||||
"windowsEnterpriseCertificate": "Certifikát Windows Enterprise",
|
"windowsEnterpriseCertificate": "Certifikát Windows Enterprise",
|
||||||
|
|||||||
+137
-98
@@ -227,7 +227,6 @@
|
|||||||
"co": "Korsisch (Frankreich)",
|
"co": "Korsisch (Frankreich)",
|
||||||
"cs": "Tschechisch (Tschechische Republik)",
|
"cs": "Tschechisch (Tschechische Republik)",
|
||||||
"da": "Dänisch (Dänemark)",
|
"da": "Dänisch (Dänemark)",
|
||||||
"prs": "Dari (Afghanistan)",
|
|
||||||
"dv": "Divehi (Malediven)",
|
"dv": "Divehi (Malediven)",
|
||||||
"et": "Estnisch (Estland)",
|
"et": "Estnisch (Estland)",
|
||||||
"fo": "Färöisch (Färöer)",
|
"fo": "Färöisch (Färöer)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender Antivirus",
|
"defender": "Microsoft Defender Antivirus",
|
||||||
"defenderAntivirus": "Microsoft Defender Antivirus",
|
"defenderAntivirus": "Microsoft Defender Antivirus",
|
||||||
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
||||||
"defenderFirewall": "Microsoft Defender Firewall",
|
"defenderFirewall": "Windows-Firewall",
|
||||||
"defenderLocalSecurityOptions": "Sicherheitsoptionen für lokales Gerät",
|
"defenderLocalSecurityOptions": "Sicherheitsoptionen für lokales Gerät",
|
||||||
"defenderSecurityCenter": "Microsoft Defender Security Center",
|
"defenderSecurityCenter": "Microsoft Defender Security Center",
|
||||||
"deliveryOptimization": "Übermittlungsoptimierung",
|
"deliveryOptimization": "Übermittlungsoptimierung",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Deaktiviert",
|
"disabled": "Deaktiviert",
|
||||||
"enabled": "Aktiviert",
|
"enabled": "Aktiviert",
|
||||||
"infoBalloonContent": "Steuern, ob das neueste Windows 10 Featureupdate auf Geräten installiert werden soll, die nicht für Windows 11 berechtigt sind",
|
"infoBalloonContent": "Steuern, ob das neueste Windows 10 Featureupdate auf Geräten installiert werden soll, die nicht für Windows 11 berechtigt sind",
|
||||||
"label": "Wenn auf einem Gerät Windows 11 nicht ausgeführt werden kann, installieren Sie das neueste Windows 10 Featureupdate.",
|
"label": "Wenn ein Gerät nicht für die Ausführung von Windows 11 berechtigt ist, das neueste Windows 10 Featureupdate installieren",
|
||||||
"notApplicable": "Nicht zutreffend",
|
"notApplicable": "Nicht zutreffend",
|
||||||
"summaryLabel": "Windows 10 auf Geräten installieren, auf denen Windows 11 nicht ausgeführt werden kann"
|
"summaryLabel": "Windows 10 auf Geräten installieren, die nicht zur Ausführung von Windows 11 berechtigt sind"
|
||||||
},
|
},
|
||||||
"bladeTitle": "Funktionsupdatebereitstellungen",
|
"bladeTitle": "Funktionsupdatebereitstellungen",
|
||||||
"deploymentSettingsTitle": "Bereitstellungseinstellungen",
|
"deploymentSettingsTitle": "Bereitstellungseinstellungen",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Wählen Sie eine der folgenden Optionen aus, um die Apps anzugeben, von denen diese App Daten empfangen darf:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: Empfang von Daten aus beliebigen Apps in Organisationsdokumenten und Konten zulassen",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Geben Sie die zu verwendende Sprache und Region an.",
|
"languageInfo": "Geben Sie die zu verwendende Sprache und Region an.",
|
||||||
"licenseAgreement": "Microsoft Software-Lizenzbedingungen",
|
"licenseAgreement": "Microsoft Software-Lizenzbedingungen",
|
||||||
"licenseAgreementInfo": "Hiermit wird angegeben, ob den Benutzern Lizenzbedingungen angezeigt werden.",
|
"licenseAgreementInfo": "Hiermit wird angegeben, ob den Benutzern Lizenzbedingungen angezeigt werden.",
|
||||||
"plugAndForgetDevice": "Selbstbereitstellung (Vorschau)",
|
"plugAndForgetDevice": "Automatische Bereitstellung",
|
||||||
"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. ",
|
"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",
|
"privacySettings": "Datenschutzeinstellungen",
|
||||||
"privacySettingsInfo": "Hiermit wird angegeben, ob den Benutzern Datenschutzeinstellungen angezeigt werden.",
|
"privacySettingsInfo": "Hiermit wird angegeben, ob den Benutzern Datenschutzeinstellungen angezeigt werden.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Nur ausgewählte blockierende Apps in der Technikerphase (Vorschau) als fehlerhaft kennzeichnen",
|
"allowNonBlockingAppInstallation": "Nur ausgewählte blockierende Apps in der Technikerphase als fehlerhaft kennzeichnen",
|
||||||
"apps": "Apps",
|
"apps": "Apps",
|
||||||
"appsListName": "Anwendungsliste",
|
"appsListName": "Anwendungsliste",
|
||||||
"blockingApps": "Blockierende Apps",
|
"blockingApps": "Blockierende Apps",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Aktivität",
|
"activity": "Aktivität",
|
||||||
|
"activityName": "Aktivitätsname",
|
||||||
"actor": "Initiiert von (Akteur)",
|
"actor": "Initiiert von (Akteur)",
|
||||||
|
"actorType": "Art des Akteurs",
|
||||||
"app": "App",
|
"app": "App",
|
||||||
"appName": "App-Name",
|
"appName": "App-Name",
|
||||||
"applicationName": "Anwendungsname",
|
"applicationName": "Anwendungsname",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD-Connector",
|
"mtdConnector": "MTD-Connector",
|
||||||
"name": "Profilname",
|
"name": "Profilname",
|
||||||
"oSVersion": "Betriebssystemversion",
|
"oSVersion": "Betriebssystemversion",
|
||||||
|
"operationType": "Operation type",
|
||||||
"os": "Betriebssystem",
|
"os": "Betriebssystem",
|
||||||
"packageName": "Paketname",
|
"packageName": "Paketname",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"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."
|
"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."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Name der Messaging-App"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "Paket-ID der Messaging-App"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "URL-Schema der Messaging-App"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Benachrichtigungen zu Organisationsdaten",
|
"label": "Benachrichtigungen zu Organisationsdaten",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "Sofern blockiert, kann die App keine geschützten Daten drucken."
|
"tooltip": "Sofern blockiert, kann die App keine geschützten Daten drucken."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Wenn Benutzer*innen in einer App einen verlinkten Messaginglink auswählen, wird in der Regel eine Messaging-App geöffnet, in der die Telefonnummer bereits ausgefüllt ist und gesendet 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. Es können zusätzliche Schritte erforderlich sein, damit diese Einstellung wirksam wird. Vergewissern Sie sich zunächst, dass „sms“ aus der Liste der ausgenommenen Apps entfernt wurde. Stellen Sie anschließend sicher, dass die Anwendung eine neuere Version des Intune SDK (höher als Version 19.0.0) verwendet.",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Messagingdaten übertragen an",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Wenn Benutzer*innen in einer App einen verlinkten Messaginglink auswählen, wird in der Regel eine Messaging-App geöffnet, in der die Telefonnummer bereits ausgefüllt ist und gesendet 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."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Daten von anderen Apps empfangen",
|
"label": "Daten von anderen Apps empfangen",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "Hiermit wird der Anbieter für Webanmeldeinformationen für die Anmeldung zugelassen.",
|
"authenticationWebSignInDescription": "Hiermit wird der Anbieter für Webanmeldeinformationen für die Anmeldung zugelassen.",
|
||||||
"authenticationWebSignInName": "Webanmeldung (veraltete Einstellung)",
|
"authenticationWebSignInName": "Webanmeldung (veraltete Einstellung)",
|
||||||
"authorizedAppRulesDescription": "Hiermit wenden Sie autorisierte Firewallregeln im lokalen Speicher an, die erkannt und durchgesetzt werden.",
|
"authorizedAppRulesDescription": "Hiermit wenden Sie autorisierte Firewallregeln im lokalen Speicher an, die erkannt und durchgesetzt werden.",
|
||||||
"authorizedAppRulesName": "Microsoft Defender Firewall-Regeln für autorisierte Anwendungen aus dem lokalen Speicher",
|
"authorizedAppRulesName": "Windows-Firewallregeln für autorisierte Anwendungen aus dem lokalen Speicher",
|
||||||
"authorizedUsersListHideAdminUsersName": "Computeradministratoren ausblenden",
|
"authorizedUsersListHideAdminUsersName": "Computeradministratoren ausblenden",
|
||||||
"authorizedUsersListHideLocalUsersName": "Lokale Benutzer ausblenden",
|
"authorizedUsersListHideLocalUsersName": "Lokale Benutzer ausblenden",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Mobile Konten ausblenden",
|
"authorizedUsersListHideMobileAccountsName": "Mobile Konten ausblenden",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Mit dieser Einstellung wird angegeben, nach welcher Zeitspanne ohne Benutzereingabe der Bildschirm des mobilen Geräts gesperrt wird. Empfohlener Wert: 15 Minuten",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Mit dieser Einstellung wird angegeben, nach welcher Zeitspanne ohne Benutzereingabe der Bildschirm des mobilen Geräts gesperrt wird. Empfohlener Wert: 15 Minuten",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Mit dieser Einstellung wird angegeben, nach welcher Zeitspanne ohne Benutzereingabe das Gerät gesperrt wird. Empfohlener Wert: 15 Minuten",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Mit dieser Einstellung wird angegeben, nach welcher Zeitspanne ohne Benutzereingabe das Gerät gesperrt wird. Empfohlener Wert: 15 Minuten",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximaler Zeitraum der Inaktivität (in Minuten) bis zur Anforderung eines Kennworts",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximaler Zeitraum der Inaktivität (in Minuten) bis zur Anforderung eines Kennworts",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Empfohlener Wert: 15 Min.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Wählen Sie die neueste Betriebssystemversion aus, die ein Gerät aufweisen darf.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Wählen Sie die neueste Betriebssystemversion aus, die ein Gerät aufweisen darf.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Höchste zulässige Betriebssystemversion für mobile Geräte",
|
"complianceMobileOsVersionRestrictionMaximumName": "Höchste zulässige Betriebssystemversion für mobile Geräte",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Wählen Sie die älteste Betriebssystemversion aus, die ein Gerät aufweisen darf.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Wählen Sie die älteste Betriebssystemversion aus, die ein Gerät aufweisen darf.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "Mit dieser Einstellung wird die Anzahl der zuletzt verwendeten Kennwörter angegeben, die nicht wiederverwendet werden können. Empfohlener Wert: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "Mit dieser Einstellung wird die Anzahl der zuletzt verwendeten Kennwörter angegeben, die nicht wiederverwendet werden können. Empfohlener Wert: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Anzahl vorheriger Kennwörter, deren Wiederverwendung verhindert wird",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Anzahl vorheriger Kennwörter, deren Wiederverwendung verhindert wird",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Empfohlener Wert: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Geben Sie die neueste Betriebssystembuildversion ein, über die ein Gerät verfügen kann. Beispiel: 20E252<br>Wenn Sie ein Apple Rapid Security Response-Update als maximalen Betriebssystembuild festlegen möchten, geben Sie die zusätzliche Buildversion ein. Beispiel: 20E772520a.",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Geben Sie die neueste Betriebssystembuildversion ein, über die ein Gerät verfügen kann. Beispiel: 20E252<br>Wenn Sie ein Apple Rapid Security Response-Update als maximalen Betriebssystembuild festlegen möchten, geben Sie die zusätzliche Buildversion ein. Beispiel: 20E772520a.",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Höchste Buildversion des Betriebssystems",
|
"complianceOsBuildVersionRestrictionMaximumName": "Höchste Buildversion des Betriebssystems",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Geben Sie die älteste Betriebssystembuildversion ein, über die ein Gerät verfügen kann. Beispiel: 20E252<br>Wenn Sie ein Apple Rapid Security Response-Update als Mindestbuild für das Betriebssystem festlegen möchten, geben Sie die zusätzliche Buildversion ein. Beispiel: 20E772520a.",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Geben Sie die älteste Betriebssystembuildversion ein, über die ein Gerät verfügen kann. Beispiel: 20E252<br>Wenn Sie ein Apple Rapid Security Response-Update als Mindestbuild für das Betriebssystem festlegen möchten, geben Sie die zusätzliche Buildversion ein. Beispiel: 20E772520a.",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Hiermit wird festgelegt, dass die Microsoft Defender-Sicherheitsinformationen immer auf dem neuesten Stand sein müssen.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Hiermit wird festgelegt, dass die Microsoft Defender-Sicherheitsinformationen immer auf dem neuesten Stand sein müssen.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Sicherheitsinformationen zu Microsoft Defender-Antischadsoftware auf dem neuesten Stand",
|
"complianceRequireWindowsDefenderSignatureName": "Sicherheitsinformationen zu Microsoft Defender-Antischadsoftware auf dem neuesten Stand",
|
||||||
"complianceRequiredPasswordTypeDescription": "Mit dieser Einstellung wird angegeben, ob Kennwörter ausschließlich aus numerischen Zeichen bestehen dürfen, oder ob sie neben Ziffern auch andere Zeichen enthalten müssen. Empfehlungen: Erforderlicher Kennworttyp: Alphanumerisch, Mindestanzahl von Zeichengruppen: 1",
|
"complianceRequiredPasswordTypeDescription": "Mit dieser Einstellung wird angegeben, ob Kennwörter ausschließlich aus numerischen Zeichen bestehen dürfen, oder ob sie neben Ziffern auch andere Zeichen enthalten müssen. Empfehlungen: Erforderlicher Kennworttyp: Alphanumerisch, Mindestanzahl von Zeichengruppen: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Empfehlungen: Erforderlicher Kennworttyp: Alphanumerisch, Mindestanzahl von Zeichensätzen: 1",
|
||||||
"complianceRootedAllowedDescription": "Hiermit wird verhindert, dass Geräte mit entfernten Nutzungsbeschränkungen Unternehmenszugriff erhalten.",
|
"complianceRootedAllowedDescription": "Hiermit wird verhindert, dass Geräte mit entfernten Nutzungsbeschränkungen Unternehmenszugriff erhalten.",
|
||||||
"complianceRootedAllowedName": "Geräte mit entfernten Nutzungsbeschränkungen",
|
"complianceRootedAllowedName": "Geräte mit entfernten Nutzungsbeschränkungen",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "Mit dieser Einstellung wird angegeben, ob die Verwendung der USB-Debuggingfunktion durch das Gerät blockiert werden soll.",
|
"complianceSecurityDisableUSBDebuggingDescription": "Mit dieser Einstellung wird angegeben, ob die Verwendung der USB-Debuggingfunktion durch das Gerät blockiert werden soll.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Wählen Sie die älteste Betriebssystemversion aus, die auf einem Gerät installiert sein kann. Die Betriebssystemversion ist als \"Hauptversion.Nebenversion.Build.Revision\" definiert. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Wählen Sie die älteste Betriebssystemversion aus, die auf einem Gerät installiert sein kann. Die Betriebssystemversion ist als \"Hauptversion.Nebenversion.Build.Revision\" definiert. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Wählen Sie den Kennworttyp aus, der auf dem Gerät verwendet wird.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Wählen Sie den Kennworttyp aus, der auf dem Gerät verwendet wird.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Kennworttyp",
|
"complianceWindowsRequiredPasswordTypeName": "Kennworttyp",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Kennwort zum Entsperren des Arbeitsprofils anfordern",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Arbeitsprofilsicherheit",
|
||||||
"compliantAppsOption": "Liste kompatibler Apps. Installierte Apps, die nicht in der Liste aufgeführt sind, werden als inkompatibel gemeldet.",
|
"compliantAppsOption": "Liste kompatibler Apps. Installierte Apps, die nicht in der Liste aufgeführt sind, werden als inkompatibel gemeldet.",
|
||||||
"computerNameStaticPrefixDescription": "Computern wird ein 15 Zeichen langer Name zugewiesen. Geben Sie ein Präfix an, die übrigen der 15 Zeichen sind zufällig.",
|
"computerNameStaticPrefixDescription": "Computern wird ein 15 Zeichen langer Name zugewiesen. Geben Sie ein Präfix an, die übrigen der 15 Zeichen sind zufällig.",
|
||||||
"computerNameStaticPrefixName": "Computernamenspräfix",
|
"computerNameStaticPrefixName": "Computernamenspräfix",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Google-Domänenzulassungsliste",
|
"domainAllowListName": "Google-Domänenzulassungsliste",
|
||||||
"domainAllowListTableEmptyValueExample": "Geben Sie eine Domäne ein",
|
"domainAllowListTableEmptyValueExample": "Geben Sie eine Domäne ein",
|
||||||
"domainAllowListTableName": "Domäne",
|
"domainAllowListTableName": "Domäne",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Microsoft Defender Firewall-Regeln für autorisierte Anwendungen aus dem lokalen Speicher (Domänennetzwerke)",
|
"domainAuthorizedAppRulesSummaryLabel": "Windows-Firewallregeln für autorisierte Anwendungen aus dem lokalen Speicher (Domänennetzwerke)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Microsoft Defender Firewall (Domänennetzwerke)",
|
"domainFirewallEnabledSummaryLabel": "Windows-Firewall (Domänennetzwerke)",
|
||||||
"domainGlobalRulesSummaryLabel": "Microsoft Defender Firewall-Regeln für den globalen Port aus dem lokalen Speicher (Domänennetzwerke)",
|
"domainGlobalRulesSummaryLabel": "Windows-Firewallregeln für den globalen Port aus dem lokalen Speicher (Domänennetzwerke)",
|
||||||
"domainIPsecRulesSummaryLabel": "IPsec-Regeln aus dem lokalen Speicher (Domänennetzwerke)",
|
"domainIPsecRulesSummaryLabel": "IPsec-Regeln aus dem lokalen Speicher (Domänennetzwerke)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "Ausnahme für durch IPsec geschützte Pakete bei geschütztem Modus (Domänennetzwerke)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "Ausnahme für durch IPsec geschützte Pakete bei geschütztem Modus (Domänennetzwerke)",
|
||||||
"domainInboundConnectionsSummaryLabel": "Standardaktion für eingehende Verbindungen (Domänennetzwerke)",
|
"domainInboundConnectionsSummaryLabel": "Standardaktion für eingehende Verbindungen (Domänennetzwerke)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Eingehende Benachrichtigungen (Domänennetzwerke)",
|
"domainInboundNotificationsSummaryLabel": "Eingehende Benachrichtigungen (Domänennetzwerke)",
|
||||||
"domainLocalStoreSummaryLabel": "Microsoft Defender Firewall-Regeln aus dem lokalen Speicher (Domänennetzwerke)",
|
"domainLocalStoreSummaryLabel": "Windows-Firewallregeln aus dem lokalen Speicher (Domänennetzwerke)",
|
||||||
"domainNameSourceOption": "Quelle für Benutzerdomänenname",
|
"domainNameSourceOption": "Quelle für Benutzerdomänenname",
|
||||||
"domainNetworkName": "Domänennetzwerk (Arbeitsbereichsnetzwerk)",
|
"domainNetworkName": "Domänennetzwerk (Arbeitsbereichsnetzwerk)",
|
||||||
"domainOutboundConnectionsSummaryLabel": "Standardaktion für ausgehende Verbindungen (Domänennetzwerke)",
|
"domainOutboundConnectionsSummaryLabel": "Standardaktion für ausgehende Verbindungen (Domänennetzwerke)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Einmaliges Anmelden (SSO) mit alternativem Zertifikat",
|
"enableSingleSignOnName": "Einmaliges Anmelden (SSO) mit alternativem Zertifikat",
|
||||||
"enableUsePrivateStoreOnly": "Nur privaten Store verwenden",
|
"enableUsePrivateStoreOnly": "Nur privaten Store verwenden",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Erlaubt nur das Herunterladen von Apps aus einem privaten Store, nicht aus dem öffentlichen Store.",
|
"enableUsePrivateStoreOnlyDescription": "Erlaubt nur das Herunterladen von Apps aus einem privaten Store, nicht aus dem öffentlichen Store.",
|
||||||
"enableWindowsDefenderFirewallName": "Microsoft Defender Firewall",
|
"enableWindowsDefenderFirewallName": "Windows-Firewall",
|
||||||
"enableWithUEFILock": "Mit UEFI-Sperre aktivieren",
|
"enableWithUEFILock": "Mit UEFI-Sperre aktivieren",
|
||||||
"enableWithoutUEFILock": "Ohne UEFI-Sperre aktivieren",
|
"enableWithoutUEFILock": "Ohne UEFI-Sperre aktivieren",
|
||||||
"enabledForAzureAdAndHybridOption": "Schlüsselrotation für in Microsoft Entra eingebundene und hybrid eingebundene Geräte aktiviert",
|
"enabledForAzureAdAndHybridOption": "Schlüsselrotation für in Microsoft Entra eingebundene und hybrid eingebundene Geräte aktiviert",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Eingehende Verbindungen für die folgenden Apps blockieren",
|
"firewallAppsBlockedHeader": "Eingehende Verbindungen für die folgenden Apps blockieren",
|
||||||
"firewallAppsBlockedPageDescription": "Wählen Sie die Apps, für die eingehende Verbindungen blockiert werden sollen.",
|
"firewallAppsBlockedPageDescription": "Wählen Sie die Apps, für die eingehende Verbindungen blockiert werden sollen.",
|
||||||
"firewallAppsBlockedPageName": "Blockierte Apps",
|
"firewallAppsBlockedPageName": "Blockierte Apps",
|
||||||
"firewallCreateRules": "Erstellen Sie Microsoft Defender Firewall-Regeln. Ein Endpoint Protection-Profil kann bis zu 150 Regeln umfassen.",
|
"firewallCreateRules": "Erstellen Sie Windows-Firewallregeln. Ein Endpoint Protection-Profil kann bis zu 150 Regeln umfassen.",
|
||||||
"firewallRequiredDescription": "Hiermit fordern Sie an, dass die Firewall aktiviert ist.",
|
"firewallRequiredDescription": "Hiermit fordern Sie an, dass die Firewall aktiviert ist.",
|
||||||
"firewallRequiredName": "Firewall",
|
"firewallRequiredName": "Firewall",
|
||||||
"firewallRuleAction": "Aktion",
|
"firewallRuleAction": "Aktion",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Kanal für allgemeine Verfügbarkeit",
|
"generalAvailabilityChannel": "Kanal für allgemeine Verfügbarkeit",
|
||||||
"generalNetworkSettingsHeader": "Allgemein",
|
"generalNetworkSettingsHeader": "Allgemein",
|
||||||
"genericLocalUsersOrGroupsName": "Generische lokale Benutzer oder Gruppen",
|
"genericLocalUsersOrGroupsName": "Generische lokale Benutzer oder Gruppen",
|
||||||
"globalConfigurationsDescription": "Hiermit werden Microsoft Defender Firewall-Einstellungen konfiguriert, die für alle Netzwerktypen gelten.",
|
"globalConfigurationsDescription": "Hiermit werden Windows-Firewalleinstellungen konfiguriert, die für alle Netzwerktypen gelten.",
|
||||||
"globalConfigurationsName": "Globale Einstellungen",
|
"globalConfigurationsName": "Globale Einstellungen",
|
||||||
"globalRulesDescription": "Hiermit wenden Sie Firewallregeln für den globalen Port im lokalen Speicher an, die erkannt und durchgesetzt werden.",
|
"globalRulesDescription": "Hiermit wenden Sie Firewallregeln für den globalen Port im lokalen Speicher an, die erkannt und durchgesetzt werden.",
|
||||||
"globalRulesName": "Microsoft Defender Firewall-Regeln für den globalen Port aus dem lokalen Speicher",
|
"globalRulesName": "Windows-Firewallregeln für den globalen Port aus dem lokalen Speicher",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "E-Mail-Adressen für Google-Konto",
|
"googleAccountEmailAddresses": "E-Mail-Adressen für Google-Konto",
|
||||||
"googleAccountEmailAddressesDescription": "Durch Semikola getrennte Liste von E-Mail-Adressen",
|
"googleAccountEmailAddressesDescription": "Durch Semikola getrennte Liste von E-Mail-Adressen",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Aufforderung zur Eingabe von Anmeldeinformationen auf sicherem Desktop",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Aufforderung zur Eingabe von Anmeldeinformationen auf sicherem Desktop",
|
||||||
"localServerCachingHeader": "Zwischenspeicherung auf lokalem Server",
|
"localServerCachingHeader": "Zwischenspeicherung auf lokalem Server",
|
||||||
"localStoreDescription": "Hiermit wenden Sie globale Firewallregeln aus dem lokalen Speicher an, die erkannt und durchgesetzt werden.",
|
"localStoreDescription": "Hiermit wenden Sie globale Firewallregeln aus dem lokalen Speicher an, die erkannt und durchgesetzt werden.",
|
||||||
"localStoreName": "Microsoft Defender Firewall-Regeln aus dem lokalen Speicher",
|
"localStoreName": "Windows-Firewallregeln aus dem lokalen Speicher",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Hiermit geben Sie an, ob im Sperrbildschirm von Windows 10 Mobile-Geräten eine vom Benutzer konfigurierbare Einstellung zum Steuern des Bildschirmtimeouts angezeigt wird. Wenn diese Richtlinie auf \"Zulassen\" festgelegt ist, wird der durch \"Bildschirmtimeout\" festgelegte Wert ignoriert.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Hiermit geben Sie an, ob im Sperrbildschirm von Windows 10 Mobile-Geräten eine vom Benutzer konfigurierbare Einstellung zum Steuern des Bildschirmtimeouts angezeigt wird. Wenn diese Richtlinie auf \"Zulassen\" festgelegt ist, wird der durch \"Bildschirmtimeout\" festgelegte Wert ignoriert.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Vom Benutzer konfigurierbares Bildschirmtimeout (nur Mobilgeräte)",
|
"lockScreenAllowTimeoutConfigurationName": "Vom Benutzer konfigurierbares Bildschirmtimeout (nur Mobilgeräte)",
|
||||||
"lockScreenBackgroundImageURLDescription": "URL für benutzerdefiniertes Hintergrundbild für den Willkommensbildschirm. Dabei muss es sich um eine PNG-Datei mit dem Endpunkt \"https://\" handeln.",
|
"lockScreenBackgroundImageURLDescription": "URL für benutzerdefiniertes Hintergrundbild für den Willkommensbildschirm. Dabei muss es sich um eine PNG-Datei mit dem Endpunkt \"https://\" handeln.",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "Die maximale Übertragungseinheit (MTU) muss zwischen 1280 und 1400 Byte liegen.",
|
"mTUSizeInBytesBounds": "Die maximale Übertragungseinheit (MTU) muss zwischen 1280 und 1400 Byte liegen.",
|
||||||
"mTUSizeInBytesName": "Maximale Übertragungseinheit",
|
"mTUSizeInBytesName": "Maximale Übertragungseinheit",
|
||||||
"mTUSizeInBytesToolTip": "Das größte Datenpaket in Byte, das im Netzwerk übertragen werden kann. Ist dieser Wert nicht konfiguriert, wird die Apple-Standardgröße von 1280 Byte verwendet. Gilt für iOS 14 und höher.",
|
"mTUSizeInBytesToolTip": "Das größte Datenpaket in Byte, das im Netzwerk übertragen werden kann. Ist dieser Wert nicht konfiguriert, wird die Apple-Standardgröße von 1280 Byte verwendet. Gilt für iOS 14 und höher.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Zufälligen MAC verwenden",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Gerätestandard verwenden",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Verwenden Sie zufälligen MAC nur bei Bedarf, z. B. für NAC-Unterstützung. Benutzer können diese Einstellung ändern. Gilt für Android 13 und höher.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Geräte-MAC verwenden",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "Randomisierung von MAC-Adressen",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store und verifizierte Entwickler",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store und verifizierte Entwickler",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Blockiert AirPlay, die Bildschirmübertragung an andere Geräte und ein Feature der Classroom-App, mit dem Lehrer die Bildschirme ihrer Schüler anzeigen können. Diese Einstellung ist nicht verfügbar, wenn Sie Screenshots blockiert haben.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Blockiert AirPlay, die Bildschirmübertragung an andere Geräte und ein Feature der Classroom-App, mit dem Lehrer die Bildschirme ihrer Schüler anzeigen können. Diese Einstellung ist nicht verfügbar, wenn Sie Screenshots blockiert haben.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Zahl eingeben (4–16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Zahl eingeben (4–16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Zahl eingeben (6–16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Zahl eingeben (6–16)",
|
||||||
"minimumPasswordLengthName": "Mindestlänge für Kennwort",
|
"minimumPasswordLengthName": "Mindestlänge für Kennwort",
|
||||||
|
"minimumPasswordLengthTooltipText": "Geben Sie eine Zahl ein",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Hiermit werden fehlende Updates automatisch installiert.",
|
"minimumUpdateAutoInstallClassificationDescription": "Hiermit werden fehlende Updates automatisch installiert.",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Angegebene Klassifizierung von Updates installieren",
|
"minimumUpdateAutoInstallClassificationName": "Angegebene Klassifizierung von Updates installieren",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Wichtig",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Wichtig",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Manuellen Proxyserver verwenden",
|
"networkProxyUseManualServerName": "Manuellen Proxyserver verwenden",
|
||||||
"networkProxyUseScriptUrlName": "Proxyskript verwenden",
|
"networkProxyUseScriptUrlName": "Proxyskript verwenden",
|
||||||
"networkSettingsName": "Netzwerkeinstellungen",
|
"networkSettingsName": "Netzwerkeinstellungen",
|
||||||
"networkSettingsSubtitle": "Hiermit werden Microsoft Defender Firewall-Einstellungen konfiguriert, die für bestimmte Netzwerktypen gelten.",
|
"networkSettingsSubtitle": "Hiermit werden Windows-Firewalleinstellungen konfiguriert, die für bestimmte Netzwerktypen gelten.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Fügen Sie verwaltete iOS-Apps hinzu, die keine Datenverbindungen verwenden sollen.",
|
"networkUsageRulesBlockCellularHeaderName": "Fügen Sie verwaltete iOS-Apps hinzu, die keine Datenverbindungen verwenden sollen.",
|
||||||
"networkUsageRulesBlockCellularName": "Verwendung von Datenverbindungen blockieren",
|
"networkUsageRulesBlockCellularName": "Verwendung von Datenverbindungen blockieren",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Fügen Sie verwaltete iOS-Apps hinzu, die beim Roaming keine Datenverbindungen verwenden sollen.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Fügen Sie verwaltete iOS-Apps hinzu, die beim Roaming keine Datenverbindungen verwenden sollen.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "Apps und Prozesse",
|
"privacyPreferencesTableName": "Apps und Prozesse",
|
||||||
"privacyPublishUserActivitiesDescription": "Hiermit blockieren Sie die gemeinsame Nutzung/Ermittlung der zuletzt verwendeten Ressourcen in der Programmumschaltung etc.",
|
"privacyPublishUserActivitiesDescription": "Hiermit blockieren Sie die gemeinsame Nutzung/Ermittlung der zuletzt verwendeten Ressourcen in der Programmumschaltung etc.",
|
||||||
"privacyPublishUserActivitiesName": "Benutzeraktivitäten veröffentlichen",
|
"privacyPublishUserActivitiesName": "Benutzeraktivitäten veröffentlichen",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Microsoft Defender Firewall-Regeln für autorisierte Anwendungen aus dem lokalen Speicher (Private Netzwerke)",
|
"privateAuthorizedAppRulesSummaryLabel": "Windows-Firewallregeln für autorisierte Anwendungen aus dem lokalen Speicher (private Netzwerke)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Microsoft Defender Firewall (private Netzwerke)",
|
"privateFirewallEnabledSummaryLabel": "Windows-Firewall (private Netzwerke)",
|
||||||
"privateGlobalRulesSummaryLabel": "Microsoft Defender Firewall-Regeln für den globalen Port aus dem lokalen Speicher (private Netzwerke)",
|
"privateGlobalRulesSummaryLabel": "Windows-Firewallregeln für den globalen Port aus dem lokalen Speicher (private Netzwerke)",
|
||||||
"privateIPsecRulesSummaryLabel": "IPsec-Regeln aus dem lokalen Speicher (private Netzwerke)",
|
"privateIPsecRulesSummaryLabel": "IPsec-Regeln aus dem lokalen Speicher (private Netzwerke)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "Ausnahme für durch IPsec geschützte Pakete bei geschütztem Modus (private Netzwerke)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "Ausnahme für durch IPsec geschützte Pakete bei geschütztem Modus (private Netzwerke)",
|
||||||
"privateInboundConnectionsSummaryLabel": "Standardaktion für eingehende Verbindungen (private Netzwerke)",
|
"privateInboundConnectionsSummaryLabel": "Standardaktion für eingehende Verbindungen (private Netzwerke)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Eingehende Benachrichtigungen (private Netzwerke)",
|
"privateInboundNotificationsSummaryLabel": "Eingehende Benachrichtigungen (private Netzwerke)",
|
||||||
"privateLocalStoreSummaryLabel": "Microsoft Defender Firewall-Regeln aus dem lokalen Speicher (private Netzwerke)",
|
"privateLocalStoreSummaryLabel": "Windows-Firewallregeln aus dem lokalen Speicher (Private Netzwerke)",
|
||||||
"privateNetworkName": "Privates Netzwerk (sichtbar)",
|
"privateNetworkName": "Privates Netzwerk (sichtbar)",
|
||||||
"privateOutboundConnectionsSummaryLabel": "Standardaktion für ausgehende Verbindungen (private Netzwerke)",
|
"privateOutboundConnectionsSummaryLabel": "Standardaktion für ausgehende Verbindungen (private Netzwerke)",
|
||||||
"privateShieldedSummaryLabel": "Abgeschirmt (private Netzwerke)",
|
"privateShieldedSummaryLabel": "Abgeschirmt (private Netzwerke)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "Proxyserver-URL",
|
"proxyServerURLName": "Proxyserver-URL",
|
||||||
"proxyServersAutoDetectionName": "Automatische Erkennung weiterer Unternehmensproxyserver",
|
"proxyServersAutoDetectionName": "Automatische Erkennung weiterer Unternehmensproxyserver",
|
||||||
"proxyUrlExample": "Beispiel: itgproxy.contoso.com",
|
"proxyUrlExample": "Beispiel: itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Microsoft Defender Firewall-Regeln für autorisierte Anwendungen aus dem lokalen Speicher (öffentliche Netzwerke)",
|
"publicAuthorizedAppRulesSummaryLabel": "Windows-Firewallregeln für autorisierte Anwendungen aus dem lokalen Speicher (öffentliche Netzwerke)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Microsoft Defender Firewall (öffentliche Netzwerke)",
|
"publicFirewallEnabledSummaryLabel": "Windows-Firewall (öffentliche Netzwerke)",
|
||||||
"publicGlobalRulesSummaryLabel": "Microsoft Defender Firewall-Regeln für den globalen Port aus dem lokalen Speicher (öffentliche Netzwerke)",
|
"publicGlobalRulesSummaryLabel": "Windows-Firewallregeln für den globalen Port aus dem lokalen Speicher (öffentliche Netzwerke)",
|
||||||
"publicIPsecRulesSummaryLabel": "IPsec-Regeln aus dem lokalen Speicher (öffentliche Netzwerke)",
|
"publicIPsecRulesSummaryLabel": "IPsec-Regeln aus dem lokalen Speicher (öffentliche Netzwerke)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "Ausnahme für durch IPsec geschützte Pakete bei geschütztem Modus (öffentliche Netzwerke)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "Ausnahme für durch IPsec geschützte Pakete bei geschütztem Modus (öffentliche Netzwerke)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Standardaktion für eingehende Verbindungen (öffentliche Netzwerke)",
|
"publicInboundConnectionsSummaryLabel": "Standardaktion für eingehende Verbindungen (öffentliche Netzwerke)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Eingehende Benachrichtigungen (öffentliche Netzwerke)",
|
"publicInboundNotificationsSummaryLabel": "Eingehende Benachrichtigungen (öffentliche Netzwerke)",
|
||||||
"publicLocalStoreSummaryLabel": "Microsoft Defender Firewall-Regeln aus dem lokalen Speicher (öffentliche Netzwerke)",
|
"publicLocalStoreSummaryLabel": "Windows-Firewallregeln aus dem lokalen Speicher (öffentliche Netzwerke)",
|
||||||
"publicNetworkName": "Öffentliches Netzwerk (nicht sichtbar)",
|
"publicNetworkName": "Öffentliches Netzwerk (nicht sichtbar)",
|
||||||
"publicOutboundConnectionsSummaryLabel": "Standardaktion für ausgehende Verbindungen (öffentliche Netzwerke)",
|
"publicOutboundConnectionsSummaryLabel": "Standardaktion für ausgehende Verbindungen (öffentliche Netzwerke)",
|
||||||
"publicPlayStoreEnabledDescription": "Benutzer erhalten Zugriff auf alle Apps mit Ausnahme derjenigen, deren Deinstallation Sie in \"Client-Apps\" angefordert haben. Wenn Sie für diese Einstellung \"Nicht konfiguriert\" auswählen, können Benutzer nur auf die Apps zugreifen, die Sie in \"Client-Apps\" als verfügbar oder erforderlich aufgeführt haben.",
|
"publicPlayStoreEnabledDescription": "Benutzer erhalten Zugriff auf alle Apps mit Ausnahme derjenigen, deren Deinstallation Sie in \"Client-Apps\" angefordert haben. Wenn Sie für diese Einstellung \"Nicht konfiguriert\" auswählen, können Benutzer nur auf die Apps zugreifen, die Sie in \"Client-Apps\" als verfügbar oder erforderlich aufgeführt haben.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Bei Software-KSP registrieren",
|
"sCEPPolicyEnrollToSoftwareKSP": "Bei Software-KSP registrieren",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Bei TPM-KSP (Trusted Platform Module) registrieren, andernfalls Fehler",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Bei TPM-KSP (Trusted Platform Module) registrieren, andernfalls Fehler",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Bei TPM-KSP (Trusted Platform Module) registrieren, falls vorhanden, andernfalls Software-KSP",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Bei TPM-KSP (Trusted Platform Module) registrieren, falls vorhanden, andernfalls Software-KSP",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "WARNUNG: Weder die „Beliebige App-Richtlinien-EKU (OID 2.5.29.37.0)“ noch die „Beliebige App-Richtlinien-EKU (OID 1.3.6.1.4.1.311.10.12.1)“ können mit einer Zertifizierungsstelle verwendet werden, die in der Microsoft Cloud PKI erstellt wurde.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "In den meisten Fällen erfordert das Zertifikat mindestens eine Clientauthentifizierung, sodass der Benutzer oder das Gerät sich bei einem Server authentifizieren kann. Sie können jedoch zusätzliche Nutzungsfälle angeben, um den Zweck des Schlüssels genauer zu definieren.",
|
"sCEPPolicyExtendedKeyUsageDescription": "In den meisten Fällen erfordert das Zertifikat mindestens eine Clientauthentifizierung, sodass der Benutzer oder das Gerät sich bei einem Server authentifizieren kann. Sie können jedoch zusätzliche Nutzungsfälle angeben, um den Zweck des Schlüssels genauer zu definieren.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Erweiterte Schlüsselverwendung",
|
"sCEPPolicyExtendedKeyUsageName": "Erweiterte Schlüsselverwendung",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Verwenden Sie einen Hashalgorithmustyp mit dem Zertifikat. Stellen Sie sicher, dass Sie die höchste Sicherheitsstufe auswählen, die auf den Geräten unterstützt wird, von denen eine Verbindung hergestellt wird.",
|
"sCEPPolicyHashAlgorithmDescription": "Verwenden Sie einen Hashalgorithmustyp mit dem Zertifikat. Stellen Sie sicher, dass Sie die höchste Sicherheitsstufe auswählen, die auf den Geräten unterstützt wird, von denen eine Verbindung hergestellt wird.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Anzahl von Tagen eingeben (1–255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Anzahl von Tagen eingeben (1–255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Anzahl von Tagen eingeben (1–365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Anzahl von Tagen eingeben (1–365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Kennwortablauf (in Tagen)",
|
"workProfilePasswordExpirationInDaysName": "Kennwortablauf (in Tagen)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Anzahl von Tagen eingeben",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Kennwort des Geschäftsprofils: Mindestlänge für Kennwörter",
|
"workProfilePasswordMinimumLengthReportingName": "Kennwort des Geschäftsprofils: Mindestlänge für Kennwörter",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Kennwort für Arbeitsprofil: Erforderliche Anzahl von Zeichen",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Kennwort für Arbeitsprofil: Erforderliche Anzahl von Zeichen",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Kennwort für Arbeitsprofil: Erforderliche Anzahl von Kleinbuchstaben",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Kennwort für Arbeitsprofil: Erforderliche Anzahl von Kleinbuchstaben",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "Alle Apps",
|
"anyAppOptionText": "Alle Apps",
|
||||||
"anyDestinationAnySourceOptionText": "Beliebiges Ziel und beliebige Quelle",
|
"anyDestinationAnySourceOptionText": "Beliebiges Ziel und beliebige Quelle",
|
||||||
"anyDialerAppOptionText": "Beliebige Telefon-App",
|
"anyDialerAppOptionText": "Beliebige Telefon-App",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "Beliebige Messaging-App",
|
||||||
"anyPolicyManagedDialerAppOptionText": "Beliebige Telefon-App mit Richtlinienverwaltung",
|
"anyPolicyManagedDialerAppOptionText": "Beliebige Telefon-App mit Richtlinienverwaltung",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "Beliebige Messaging-App mit Richtlinienverwaltung",
|
||||||
"appAdded": "App hinzugefügt",
|
"appAdded": "App hinzugefügt",
|
||||||
"appBasedConditionalAccess": "App-basierter bedingter Zugriff",
|
"appBasedConditionalAccess": "App-basierter bedingter Zugriff",
|
||||||
"appColumnLabel": "App",
|
"appColumnLabel": "App",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "MDM-Geräte-ID",
|
"mdmDeviceId": "MDM-Geräte-ID",
|
||||||
"mdmWipInvalidVersionSettings": "Mindestens eine App weist ungültige Definitionen für die Mindest-/Höchstversion auf.<br /> <br />Windows Information Protection mit Registrierungsrichtlinien unterstützt nur die Festlegung einer einzigen Mindest- oder Höchstversion, sofern nicht beide Versionen als äquivalent angegeben werden. Wenn nur die Mindestversion angegeben wird, wird die Regel als größer oder gleich der Mindestversion festgelegt. Ebenso wird die Regel als kleiner oder gleich der Höchstversion festgelegt, wenn nur die Höchstversion angegeben wird.",
|
"mdmWipInvalidVersionSettings": "Mindestens eine App weist ungültige Definitionen für die Mindest-/Höchstversion auf.<br /> <br />Windows Information Protection mit Registrierungsrichtlinien unterstützt nur die Festlegung einer einzigen Mindest- oder Höchstversion, sofern nicht beide Versionen als äquivalent angegeben werden. Wenn nur die Mindestversion angegeben wird, wird die Regel als größer oder gleich der Mindestversion festgelegt. Ebenso wird die Regel als kleiner oder gleich der Höchstversion festgelegt, wenn nur die Höchstversion angegeben wird.",
|
||||||
"mdmWipReport": "Windows Information Protection-MDM-Bericht",
|
"mdmWipReport": "Windows Information Protection-MDM-Bericht",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Name der Messaging-App (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "Paket-ID der Messaging-App (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "URL-Schema der Messaging-App (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender für Endpunkt",
|
"microsoftDefenderForEndpoint": "Microsoft Defender für Endpunkt",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "Mindestversion für App",
|
"minAppVersion": "Mindestversion für App",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Einstellungskatalog",
|
"settingsCatalog": "Einstellungskatalog",
|
||||||
"settingsSelectorLabel": "Einstellungen",
|
"settingsSelectorLabel": "Einstellungen",
|
||||||
"silent": "Lautlos",
|
"silent": "Lautlos",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "Eine bestimmte Messaging-App",
|
||||||
"specificUserIsLicensedIntune": "{0} ist für Microsoft Intune lizenziert.",
|
"specificUserIsLicensedIntune": "{0} ist für Microsoft Intune lizenziert.",
|
||||||
"state": "Status",
|
"state": "Status",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Microsoft Edge-Baseline",
|
"edgeSecurityBaseline": "Microsoft Edge-Baseline",
|
||||||
"edgeSecurityBaselinePreview": "Vorschau: Microsoft Edge-Baseline",
|
"edgeSecurityBaselinePreview": "Vorschau: Microsoft Edge-Baseline",
|
||||||
"editionUpgradeConfiguration": "Editionsupgrade und Moduswechsel",
|
"editionUpgradeConfiguration": "Editionsupgrade und Moduswechsel",
|
||||||
"firewall": "Microsoft Defender Firewall",
|
"firewall": "Windows-Firewall",
|
||||||
"firewallRules": "Microsoft Defender Firewall-Regeln",
|
"firewallRules": "Windows-Firewallregeln",
|
||||||
"identityProtection": "Kontoschutz",
|
"identityProtection": "Kontoschutz",
|
||||||
"identityProtectionPreview": "Kontoschutz (Vorschau)",
|
"identityProtectionPreview": "Kontoschutz (Vorschau)",
|
||||||
"mDMSecurityBaseline1810": "MDM-Sicherheitsbaseline für Windows 10 und höher für Oktober 2018",
|
"mDMSecurityBaseline1810": "MDM-Sicherheitsbaseline für Windows 10 und höher für Oktober 2018",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Vorschau: Microsoft Office O365-Baseline",
|
"office365BaselinePreview": "Vorschau: Microsoft Office O365-Baseline",
|
||||||
"securityBaselines": "Sicherheitsbaselines",
|
"securityBaselines": "Sicherheitsbaselines",
|
||||||
"test": "Testvorlage",
|
"test": "Testvorlage",
|
||||||
"testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall-Regeln (Test)",
|
"testFirewallRulesSecurityTemplateName": "Windows-Firewallregeln (Test)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Kontoschutz (Test)",
|
"testIdentityProtectionSecurityTemplateName": "Kontoschutz (Test)",
|
||||||
"windowsSecurityExperience": "Windows-Sicherheitsfunktionalität"
|
"windowsSecurityExperience": "Windows-Sicherheitsfunktionalität"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Microsoft Defender Firewall"
|
"mDE": "Windows-Firewall"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Microsoft Defender Firewall-Regeln"
|
"mDE": "Windows-Firewallregeln"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "OneDrive-Einstellungen für die Verschiebung bekannter Ordner: Windows 10 in der Cloudkonfigurationsvorlage. https://aka.ms/CloudConfigGuide"
|
"description": "OneDrive-Einstellungen für die Verschiebung bekannter Ordner: Windows 10 in der Cloudkonfigurationsvorlage. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Konfiguration der Verwaltung mobiler Geräte",
|
"expeditedCheckin": "Konfiguration der Verwaltung mobiler Geräte",
|
||||||
"exploitProtection": "Exploit-Schutz",
|
"exploitProtection": "Exploit-Schutz",
|
||||||
"extensions": "Erweiterungen",
|
"extensions": "Erweiterungen",
|
||||||
"hardwareConfigurations": "BIOS-Konfigurationen",
|
"hardwareConfigurations": "BIOS-Konfigurationen und andere Einstellungen",
|
||||||
"identityProtection": "Identity Protection",
|
"identityProtection": "Identity Protection",
|
||||||
"iosCompliancePolicy": "iOS-Konformitätsrichtlinie",
|
"iosCompliancePolicy": "iOS-Konformitätsrichtlinie",
|
||||||
"kiosk": "Kiosk",
|
"kiosk": "Kiosk",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
|
"microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
|
||||||
"microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-Ausschlüsse",
|
"microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-Ausschlüsse",
|
||||||
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender für Endpunkt (Desktopgeräte, auf denen Windows 10 oder höher ausgeführt wird)",
|
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender für Endpunkt (Desktopgeräte, auf denen Windows 10 oder höher ausgeführt wird)",
|
||||||
"microsoftDefenderFirewallRules": "Microsoft Defender Firewall-Regeln",
|
"microsoftDefenderFirewallRules": "Windows-Firewallregeln",
|
||||||
"microsoftEdgeBaseline": "Sicherheitsbaseline für Microsoft Edge",
|
"microsoftEdgeBaseline": "Sicherheitsbaseline für Microsoft Edge",
|
||||||
"mxProfileZebraOnly": "MX-Profil (nur Zebra)",
|
"mxProfileZebraOnly": "MX-Profil (nur Zebra)",
|
||||||
"networkBoundary": "Netzwerkgrenze",
|
"networkBoundary": "Netzwerkgrenze",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Vertrauenswürdiges Zertifikat: TEST",
|
"windows10XTrustedCertificate": "Vertrauenswürdiges Zertifikat: TEST",
|
||||||
"windows10XVPN": "VPN: TEST",
|
"windows10XVPN": "VPN: TEST",
|
||||||
"windows10XWifi": "WLAN: TEST",
|
"windows10XWifi": "WLAN: TEST",
|
||||||
|
"windows11SecurityBaseline": "Sicherheitsbaseline für Windows 10 und höher",
|
||||||
"windows8CompliancePolicy": "Windows 8-Kompatibilitätsrichtlinie",
|
"windows8CompliancePolicy": "Windows 8-Kompatibilitätsrichtlinie",
|
||||||
"windowsHealthMonitoring": "Windows-Integritätsüberwachung",
|
"windowsHealthMonitoring": "Windows-Integritätsüberwachung",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Konfigurieren Sie Geräte für die anfängliche Bereitstellung, und weisen Sie sie Benutzern zu.",
|
"description": "Konfigurieren Sie Geräte für die erste Bereitstellung.",
|
||||||
"title": "Gerätevorbereitung"
|
"title": "Gerätevorbereitung"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Manuelles Genehmigen und Bereitstellen von Treiberupdates"
|
"manual": "Manuelles Genehmigen und Bereitstellen von Treiberupdates"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Massenvorgänge"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} Tage"
|
"value": "{0} Tage"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Wählen Sie unten eine Aktion aus.",
|
||||||
"label": "Driver action",
|
"label": "Treiberaktion",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Aktion auswählen"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Eingeschlossene Treiber"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Treiber auswählen, die in die Massenaktion einbezogen werden sollen"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Einzuschließende Treiber auswählen"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "Es können höchstens einhundert Treiber ausgewählt werden"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "Mindestens ein Treiber muss ausgewählt werden."
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Ausgewählte Treiber"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "In Windows Update verfügbar machen",
|
||||||
"bladeTitle": "Treiberupdates Windows 10 und höher (Vorschau)",
|
"bladeTitle": "Treiberupdates Windows 10 und höher (Vorschau)",
|
||||||
"lastSync": "Letzte Synchronisierung:",
|
"lastSync": "Letzte Synchronisierung:",
|
||||||
"lastSyncDefaultText": "Erste Inventursammlung ausstehend",
|
"lastSyncDefaultText": "Erste Inventursammlung ausstehend",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Wählen Sie links eine Benachrichtigungsmeldung aus, um eine Vorschau der Inhalte anzuzeigen."
|
"placeholder": "Wählen Sie links eine Benachrichtigungsmeldung aus, um eine Vorschau der Inhalte anzuzeigen."
|
||||||
},
|
},
|
||||||
"companyContact": "E-Mail-Fußzeile: Kontaktinformationen einschließen",
|
"companyContact": "Kontaktinformationen anzeigen",
|
||||||
"companyLogo": "E-Mail-Kopfzeile: Unternehmenslogo einschließen",
|
"companyLogo": "Firmenlogo anzeigen",
|
||||||
"companyName": "E-Mail-Fußzeile: Unternehmensnamen einschließen",
|
"companyName": "Firmennamen anzeigen",
|
||||||
"createEditDescription": "Erstellen oder bearbeiten Sie Vorlagen für Benachrichtigungs-E-Mails.",
|
"createEditDescription": "Erstellen oder bearbeiten Sie Vorlagen für Benachrichtigungs-E-Mails.",
|
||||||
"createMessage": "Nachricht erstellen",
|
"createMessage": "Nachricht erstellen",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Gerätedetails anzeigen",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "Diese Einstellung ist standardmäßig deaktiviert, da das Abrufen von Gerätedetails zu einer Verzögerung beim Empfang von E-Mail-Benachrichtigungen führen kann.",
|
||||||
"editImpactInfo": "Die Bearbeitung dieser Vorlage für die Benachrichtigungs-E-Mail wirkt sich auf alle Richtlinien aus, die diese Vorlage verwenden.",
|
"editImpactInfo": "Die Bearbeitung dieser Vorlage für die Benachrichtigungs-E-Mail wirkt sich auf alle Richtlinien aus, die diese Vorlage verwenden.",
|
||||||
"editMessage": "Nachricht bearbeiten",
|
"editMessage": "Nachricht bearbeiten",
|
||||||
"email": "E-Mail",
|
"email": "E-Mail",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "E-Mail-Fußzeile",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "Die Einstellungen für E-Mail-Kopf- und -Fußzeilen für E-Mail-Benachrichtigungen basieren auf Anpassungseinstellungen im Mandantenadministratorknoten im Endpoint Manager.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "E-Mail-Kopf",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Konfigurieren von Anpassungseinstellungen",
|
||||||
"formSubTitle": "Benachrichtigungs-E-Mails erstellen oder ändern",
|
"formSubTitle": "Benachrichtigungs-E-Mails erstellen oder ändern",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Einstellungen für Kopf- und Fußzeile",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Bildvorschau",
|
||||||
"infotext": "Wählen Sie eine Benachrichtigungsmeldung aus. Um eine neue Benachrichtigung zu erstellen, wechseln Sie im Abschnitt \"Verwalten\" der Workload \"Gerätekompatibilität festlegen\" zu \"Benachrichtigungen\".",
|
"infotext": "Wählen Sie eine Benachrichtigungsmeldung aus. Um eine neue Benachrichtigung zu erstellen, wechseln Sie im Abschnitt \"Verwalten\" der Workload \"Gerätekompatibilität festlegen\" zu \"Benachrichtigungen\".",
|
||||||
"iwLink": "Link zur Unternehmensportalwebsite",
|
"iwLink": "Link zur Unternehmensportalwebsite anzeigen",
|
||||||
"listEmpty": "Keine Nachrichtenvorlagen vorhanden.",
|
"listEmpty": "Keine Nachrichtenvorlagen vorhanden.",
|
||||||
"listEmptySelectOnly": "Keine Nachrichtenvorlagen vorhanden. Um eine neue Benachrichtigung zu erstellen, wechseln Sie im Abschnitt \"Verwalten\" der Workload \"Gerätekompatibilität festlegen\" zu \"Benachrichtigungen\".",
|
"listEmptySelectOnly": "Keine Nachrichtenvorlagen vorhanden. Um eine neue Benachrichtigung zu erstellen, wechseln Sie im Abschnitt \"Verwalten\" der Workload \"Gerätekompatibilität festlegen\" zu \"Benachrichtigungen\".",
|
||||||
"listSubTitle": "Liste von Vorlagen für Benachrichtigungs-E-Mails",
|
"listSubTitle": "Liste von Vorlagen für Benachrichtigungs-E-Mails",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Benachrichtigungsvorlagen",
|
"notificationMessageTemplates": "Benachrichtigungsvorlagen",
|
||||||
"rowValidationError": "Es ist mindestens eine Nachrichtenvorlage erforderlich.",
|
"rowValidationError": "Es ist mindestens eine Nachrichtenvorlage erforderlich.",
|
||||||
"selectDescription": "Wählen Sie eine Benachrichtigungs-E-Mail aus. Um eine neue Benachrichtigung zu erstellen, besuchen Sie \"Benachrichtigungen\" im Abschnitt \"Verwalten\" der Workload \"Gerätekompatibilität festlegen\".",
|
"selectDescription": "Wählen Sie eine Benachrichtigungs-E-Mail aus. Um eine neue Benachrichtigung zu erstellen, besuchen Sie \"Benachrichtigungen\" im Abschnitt \"Verwalten\" der Workload \"Gerätekompatibilität festlegen\".",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Mandantenwert",
|
||||||
"testEmailLabel": "Vorschau-E-Mail senden",
|
"testEmailLabel": "Vorschau-E-Mail senden",
|
||||||
"localeLabel": "Gebietsschema",
|
"localeLabel": "Gebietsschema",
|
||||||
"isDefaultLocale": "Ist Standard"
|
"isDefaultLocale": "Ist Standard"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "Zeile {0} von{1} Spalte {2}"
|
"ariaLabel": "Zeile {0} von{1} Spalte {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Starten Sie ganz neu, und wählen Sie die gewünschten Eigenschaften aus der Bibliothek der verfügbaren Bestandseigenschaften aus."
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Starten Sie ganz neu, und wählen Sie die gewünschten Einstellungen aus der Bibliothek der verfügbaren Einstellungen aus.",
|
"subtitle": "Starten Sie ganz neu, und wählen Sie die gewünschten Einstellungen aus der Bibliothek der verfügbaren Einstellungen aus.",
|
||||||
"title": "Einstellungskatalog"
|
"title": "Einstellungskatalog"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "Mindestversion",
|
"minVersion": "Mindestversion",
|
||||||
"nameHint": "Dies ist das primäre Attribut, das zur Identifikation des Einschränkungssatzes angezeigt wird.",
|
"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\".",
|
"noAssignmentsStatusBar": "Weisen Sie die Einschränkung mindestens einer Gruppe zu. Klicken Sie auf \"Eigenschaften\".",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "Sie müssen Administrator*in sein, um Einschränkungen zu bearbeiten.",
|
||||||
"notFound": "Die Einschränkung wurde nicht gefunden. Möglicherweise wurde es bereits gelöscht.",
|
"notFound": "Die Einschränkung wurde nicht gefunden. Möglicherweise wurde es bereits gelöscht.",
|
||||||
"personallyOwned": "Geräte im Privatbesitz",
|
"personallyOwned": "Geräte im Privatbesitz",
|
||||||
"restriction": "Einschränkung",
|
"restriction": "Einschränkung",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8-Kompatibilitätsrichtlinie",
|
"complianceWindows8": "Windows 8-Kompatibilitätsrichtlinie",
|
||||||
"complianceWindowsPhone": "Windows Phone-Kompatibilitätsrichtlinie",
|
"complianceWindowsPhone": "Windows Phone-Kompatibilitätsrichtlinie",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Eigenschaftenkatalog",
|
||||||
"iosCustom": "Benutzerdefiniert",
|
"iosCustom": "Benutzerdefiniert",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Abgeleitete PIV-Anmeldeinformationen",
|
"iosDerivedCredentialAuthenticationConfiguration": "Abgeleitete PIV-Anmeldeinformationen",
|
||||||
"iosDeviceFeatures": "Gerätefunktionen",
|
"iosDeviceFeatures": "Gerätefunktionen",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome-Betriebssystemgeräte (Vorschau)"
|
"devices": "ChromeOS-Geräte"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Administratorkontakte",
|
"adminContacts": "Administratorkontakte",
|
||||||
"appPackaging": "App-Paketierung",
|
"appPackaging": "App-Paketierung",
|
||||||
"businessGroups": "Geschäftsgruppen",
|
"autopatchGroups": "Autopatch-Gruppen",
|
||||||
"devices": "Geräte",
|
"devices": "Geräte",
|
||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"gettingStarted": "Erste Schritte",
|
"gettingStarted": "Erste Schritte",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Anpassung",
|
"brandingAndCustomization": "Anpassung",
|
||||||
"cartProfiles": "Warenkorbprofile",
|
"cartProfiles": "Warenkorbprofile",
|
||||||
"certificateConnectors": "Zertifikatconnectors",
|
"certificateConnectors": "Zertifikatconnectors",
|
||||||
"chromeEnterprise": "Chrome Enterprise (Vorschau)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Geräte mit Cloudanbindung (Vorschau)",
|
"cloudAttachedDevices": "Geräte mit Cloudanbindung (Vorschau)",
|
||||||
"cloudPcActions": "Cloud-PC-Aktionen (Vorschau)",
|
"cloudPcActions": "Cloud-PC-Aktionen (Vorschau)",
|
||||||
"cloudPcMaintenanceWindows": "Wartungsfenster für Cloud-PCs (Vorschau)",
|
"cloudPcMaintenanceWindows": "Wartungsfenster für Cloud-PCs (Vorschau)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "Benutzerstatus",
|
"userExecutionStatus": "Benutzerstatus",
|
||||||
"wdacSupplementalPolicies": "Zusätzliche S Modus-Richtlinien",
|
"wdacSupplementalPolicies": "Zusätzliche S Modus-Richtlinien",
|
||||||
"win32CatalogUpdateApp": "Updates für Windows-Katalog-Apps (Win32)",
|
"win32CatalogUpdateApp": "Updates für Windows-Katalog-Apps (Win32)",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Updates für Windows-Katalog-Apps (Win32) (Vorschau)",
|
||||||
"windows10DriverUpdate": "Treiberupdates für Windows 10 und höher",
|
"windows10DriverUpdate": "Treiberupdates für Windows 10 und höher",
|
||||||
"windows10QualityUpdate": "Qualitätsupdates für Windows 10 und höher",
|
"windows10QualityUpdate": "Qualitätsupdates für Windows 10 und höher",
|
||||||
"windows10UpdateRings": "Updateringe für Windows 10 und höher",
|
"windows10UpdateRings": "Updateringe für Windows 10 und höher",
|
||||||
"windows10XPolicyFailures": "Windows 10X-Richtlinienfehler",
|
"windows10XPolicyFailures": "Windows 10X-Richtlinienfehler",
|
||||||
"windows365Connector": "Windows 365 Citrix-Connector",
|
|
||||||
"windows365PartnerConnector": "Windows 365-Partnerconnectors",
|
"windows365PartnerConnector": "Windows 365-Partnerconnectors",
|
||||||
"windowsDiagnosticData": "Windows-Daten",
|
"windowsDiagnosticData": "Windows-Daten",
|
||||||
"windowsEnterpriseCertificate": "Windows Enterprise-Zertifikat",
|
"windowsEnterpriseCertificate": "Windows Enterprise-Zertifikat",
|
||||||
|
|||||||
@@ -227,7 +227,6 @@
|
|||||||
"co": "Corsican (France)",
|
"co": "Corsican (France)",
|
||||||
"cs": "Czech (Czech Republic)",
|
"cs": "Czech (Czech Republic)",
|
||||||
"da": "Danish (Denmark)",
|
"da": "Danish (Denmark)",
|
||||||
"prs": "Dari (Afghanistan)",
|
|
||||||
"dv": "Divehi (Maldives)",
|
"dv": "Divehi (Maldives)",
|
||||||
"et": "Estonian (Estonia)",
|
"et": "Estonian (Estonia)",
|
||||||
"fo": "Faroese (Faroe Islands)",
|
"fo": "Faroese (Faroe Islands)",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Specify the language and region that will be used.",
|
"languageInfo": "Specify the language and region that will be used.",
|
||||||
"licenseAgreement": "Microsoft Software License Terms",
|
"licenseAgreement": "Microsoft Software License Terms",
|
||||||
"licenseAgreementInfo": "Specify whether to show the EULA to users.",
|
"licenseAgreementInfo": "Specify whether to show the EULA to users.",
|
||||||
"plugAndForgetDevice": "Self-Deploying (preview)",
|
"plugAndForgetDevice": "Self-Deploying",
|
||||||
"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. ",
|
"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",
|
"privacySettings": "Privacy settings",
|
||||||
"privacySettingsInfo": "Specify whether to show privacy settings to users.",
|
"privacySettingsInfo": "Specify whether to show privacy settings to users.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Only fail selected blocking apps in technician phase (preview)",
|
"allowNonBlockingAppInstallation": "Only fail selected blocking apps in technician phase",
|
||||||
"apps": "apps",
|
"apps": "apps",
|
||||||
"appsListName": "Application list",
|
"appsListName": "Application list",
|
||||||
"blockingApps": "Blocking apps",
|
"blockingApps": "Blocking apps",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Activity",
|
"activity": "Activity",
|
||||||
|
"activityName": "Activity name",
|
||||||
"actor": "Initiated by (actor)",
|
"actor": "Initiated by (actor)",
|
||||||
|
"actorType": "Actor type",
|
||||||
"app": "App",
|
"app": "App",
|
||||||
"appName": "App name",
|
"appName": "App name",
|
||||||
"applicationName": "Application name",
|
"applicationName": "Application name",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD Connector",
|
"mtdConnector": "MTD Connector",
|
||||||
"name": "Profile name",
|
"name": "Profile name",
|
||||||
"oSVersion": "OS Version",
|
"oSVersion": "OS Version",
|
||||||
|
"operationType": "Operation type",
|
||||||
"os": "OS",
|
"os": "OS",
|
||||||
"packageName": "Package name",
|
"packageName": "Package name",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1549,7 +1551,7 @@
|
|||||||
"tooltip": "If blocked, the app cannot print protected data."
|
"tooltip": "If blocked, the app cannot print protected data."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 19.0.0).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Transfer messaging data to",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
||||||
},
|
},
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "This setting specifies the length of time without user input after which the mobile device screen is locked. Recommended value: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "This setting specifies the length of time without user input after which the mobile device screen is locked. Recommended value: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "This setting specifies the length of time without user input after which the device is locked. Recommended value: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "This setting specifies the length of time without user input after which the device is locked. Recommended value: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum minutes of inactivity before password is required",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum minutes of inactivity before password is required",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Recommended value: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Maximum OS version for mobile devices",
|
"complianceMobileOsVersionRestrictionMaximumName": "Maximum OS version for mobile devices",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "This setting specifies the number of recent passwords that cannot be reused. Recommended value: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "This setting specifies the number of recent passwords that cannot be reused. Recommended value: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Number of previous passwords to prevent reuse",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Number of previous passwords to prevent reuse",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Recommended value: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Enter the newest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the maximum OS build, enter the supplemental build version. For example: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Enter the newest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the maximum OS build, enter the supplemental build version. For example: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Maximum OS build version",
|
"complianceOsBuildVersionRestrictionMaximumName": "Maximum OS build version",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Enter the oldest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the minimum OS build, enter the supplemental build version. For example: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Enter the oldest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the minimum OS build, enter the supplemental build version. For example: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Require Microsoft Defender security intelligence to be up-to-date.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Require Microsoft Defender security intelligence to be up-to-date.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware security intelligence up-to-date",
|
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware security intelligence up-to-date",
|
||||||
"complianceRequiredPasswordTypeDescription": "This setting specifies whether passwords are allowed to be comprised only of numeric characters, or whether they must contain characters other than numbers. Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
"complianceRequiredPasswordTypeDescription": "This setting specifies whether passwords are allowed to be comprised only of numeric characters, or whether they must contain characters other than numbers. Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
||||||
"complianceRootedAllowedDescription": "Prevent rooted devices from having corporate access.",
|
"complianceRootedAllowedDescription": "Prevent rooted devices from having corporate access.",
|
||||||
"complianceRootedAllowedName": "Rooted devices",
|
"complianceRootedAllowedName": "Rooted devices",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "This setting specifies whether to prevent the device from using the USB debugging feature.",
|
"complianceSecurityDisableUSBDebuggingDescription": "This setting specifies whether to prevent the device from using the USB debugging feature.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Select the oldest OS version a device can have. The operating system version is defined as major.minor.build.revision. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Select the oldest OS version a device can have. The operating system version is defined as major.minor.build.revision. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Select the password type that will be on the device.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Select the password type that will be on the device.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Password type",
|
"complianceWindowsRequiredPasswordTypeName": "Password type",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Require a password to unlock work profile",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Work Profile Security",
|
||||||
"compliantAppsOption": "Compliant apps list. Report noncompliance for any installed apps not in list",
|
"compliantAppsOption": "Compliant apps list. Report noncompliance for any installed apps not in list",
|
||||||
"computerNameStaticPrefixDescription": "Computers are assigned 15 characters long name. Specify a prefix, rest of 15 characters will be random.",
|
"computerNameStaticPrefixDescription": "Computers are assigned 15 characters long name. Specify a prefix, rest of 15 characters will be random.",
|
||||||
"computerNameStaticPrefixName": "Computer name prefix",
|
"computerNameStaticPrefixName": "Computer name prefix",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "MTU must be between 1280 and 1400 bytes",
|
"mTUSizeInBytesBounds": "MTU must be between 1280 and 1400 bytes",
|
||||||
"mTUSizeInBytesName": "Maximum transmission unit",
|
"mTUSizeInBytesName": "Maximum transmission unit",
|
||||||
"mTUSizeInBytesToolTip": "The largest packet of data, in bytes, that can be transmitted on the network. When not configured, the Apple default size is 1280 bytes. Applies to iOS 14 and later.",
|
"mTUSizeInBytesToolTip": "The largest packet of data, in bytes, that can be transmitted on the network. When not configured, the Apple default size is 1280 bytes. Applies to iOS 14 and later.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Use randomized MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Use device default",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Use randomized MAC only when needed, such as for NAC support. Users can change this setting. Applies to Android 13 and later.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Use device MAC",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "MAC address randomization",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store and identified developers",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store and identified developers",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Blocks AirPlay, screen sharing to other devices, and a Classroom app feature used by teachers to view their students' screens. This setting isn't available if you've blocked screenshots.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Blocks AirPlay, screen sharing to other devices, and a Classroom app feature used by teachers to view their students' screens. This setting isn't available if you've blocked screenshots.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Enter a number (4-16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Enter a number (4-16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Enter a number (6-16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Enter a number (6-16)",
|
||||||
"minimumPasswordLengthName": "Minimum password length",
|
"minimumPasswordLengthName": "Minimum password length",
|
||||||
|
"minimumPasswordLengthTooltipText": "Enter a number",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Missing updates will install automatically",
|
"minimumUpdateAutoInstallClassificationDescription": "Missing updates will install automatically",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Install specified classification of updates",
|
"minimumUpdateAutoInstallClassificationName": "Install specified classification of updates",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Enroll to Software KSP",
|
"sCEPPolicyEnrollToSoftwareKSP": "Enroll to Software KSP",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Enroll to Trusted Platform Module (TPM) KSP, otherwise fail",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Enroll to Trusted Platform Module (TPM) KSP, otherwise fail",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Enroll to Trusted Platform Module (TPM) KSP if present, otherwise Software KSP",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Enroll to Trusted Platform Module (TPM) KSP if present, otherwise Software KSP",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "WARNING: Neither the Any Purpose EKU (OID 2.5.29.37.0) nor the Any App Policy EKU (OID 1.3.6.1.4.1.311.10.12.1) can be used with a certification authority created in Microsoft Cloud PKI.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "In most cases, the certificate requires at least Client Authentication so that the user or device can authenticate to a server. However, you can specify additional usages to further define the purpose of the key.",
|
"sCEPPolicyExtendedKeyUsageDescription": "In most cases, the certificate requires at least Client Authentication so that the user or device can authenticate to a server. However, you can specify additional usages to further define the purpose of the key.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Extended key usage",
|
"sCEPPolicyExtendedKeyUsageName": "Extended key usage",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Use a hash algorithm type with the certificate. Make sure to select the strongest level of security that the connecting devices support.",
|
"sCEPPolicyHashAlgorithmDescription": "Use a hash algorithm type with the certificate. Make sure to select the strongest level of security that the connecting devices support.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Enter number of days (1-255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Enter number of days (1-255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Enter number of days (1 - 365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Enter number of days (1 - 365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Password expiration (days)",
|
"workProfilePasswordExpirationInDaysName": "Password expiration (days)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Enter number of days",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Work Profile password: Minimum password length",
|
"workProfilePasswordMinimumLengthReportingName": "Work Profile password: Minimum password length",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Work Profile password: Number of characters required",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Work Profile password: Number of characters required",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Work Profile password: Number of lowercase characters required",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Work Profile password: Number of lowercase characters required",
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Mobile device management configuration",
|
"expeditedCheckin": "Mobile device management configuration",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "Extensions",
|
"extensions": "Extensions",
|
||||||
"hardwareConfigurations": "BIOS Configurations",
|
"hardwareConfigurations": "BIOS Configurations and other settings",
|
||||||
"identityProtection": "Identity protection",
|
"identityProtection": "Identity protection",
|
||||||
"iosCompliancePolicy": "iOS compliance policy",
|
"iosCompliancePolicy": "iOS compliance policy",
|
||||||
"kiosk": "Kiosk",
|
"kiosk": "Kiosk",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Trusted certificate - TEST",
|
"windows10XTrustedCertificate": "Trusted certificate - TEST",
|
||||||
"windows10XVPN": "VPN - TEST",
|
"windows10XVPN": "VPN - TEST",
|
||||||
"windows10XWifi": "WIFI - TEST",
|
"windows10XWifi": "WIFI - TEST",
|
||||||
|
"windows11SecurityBaseline": "Security Baseline for Windows 10 and later",
|
||||||
"windows8CompliancePolicy": "Windows 8 compliance policy",
|
"windows8CompliancePolicy": "Windows 8 compliance policy",
|
||||||
"windowsHealthMonitoring": "Windows health monitoring",
|
"windowsHealthMonitoring": "Windows health monitoring",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Configure devices for initial provisioning and assign to users.",
|
"description": "Configure devices for initial provisioning.",
|
||||||
"title": "Device preparation"
|
"title": "Device preparation"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "row {0} of {1} column {2}"
|
"ariaLabel": "row {0} of {1} column {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Start from scratch and select the properties you want from the library of available inventory properties"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Start from scratch and select settings you want from the library of available settings",
|
"subtitle": "Start from scratch and select settings you want from the library of available settings",
|
||||||
"title": "Settings catalog"
|
"title": "Settings catalog"
|
||||||
@@ -11947,7 +11985,7 @@
|
|||||||
"minVersion": "Min Version",
|
"minVersion": "Min Version",
|
||||||
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
|
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
|
||||||
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
|
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
||||||
"notFound": "Restriction not found. It may have already been deleted.",
|
"notFound": "Restriction not found. It may have already been deleted.",
|
||||||
"personallyOwned": "Personally owned devices",
|
"personallyOwned": "Personally owned devices",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8 compliance policy",
|
"complianceWindows8": "Windows 8 compliance policy",
|
||||||
"complianceWindowsPhone": "Windows Phone compliance policy",
|
"complianceWindowsPhone": "Windows Phone compliance policy",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Properties catalog",
|
||||||
"iosCustom": "Custom",
|
"iosCustom": "Custom",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
|
"iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
|
||||||
"iosDeviceFeatures": "Device features",
|
"iosDeviceFeatures": "Device features",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS devices (preview)"
|
"devices": "ChromeOS devices"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Admin contacts",
|
"adminContacts": "Admin contacts",
|
||||||
"appPackaging": "App packaging",
|
"appPackaging": "App packaging",
|
||||||
"businessGroups": "Business Groups",
|
"autopatchGroups": "Autopatch groups",
|
||||||
"devices": "Devices",
|
"devices": "Devices",
|
||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"gettingStarted": "Getting started",
|
"gettingStarted": "Getting started",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Customization",
|
"brandingAndCustomization": "Customization",
|
||||||
"cartProfiles": "Cart profiles",
|
"cartProfiles": "Cart profiles",
|
||||||
"certificateConnectors": "Certificate connectors",
|
"certificateConnectors": "Certificate connectors",
|
||||||
"chromeEnterprise": "Chrome Enterprise (preview)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Cloud attached devices (preview)",
|
"cloudAttachedDevices": "Cloud attached devices (preview)",
|
||||||
"cloudPcActions": "Cloud PC actions (preview)",
|
"cloudPcActions": "Cloud PC actions (preview)",
|
||||||
"cloudPcMaintenanceWindows": "Cloud PC maintenance windows (Preview)",
|
"cloudPcMaintenanceWindows": "Cloud PC maintenance windows (Preview)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "User status",
|
"userExecutionStatus": "User status",
|
||||||
"wdacSupplementalPolicies": "S mode supplemental policies",
|
"wdacSupplementalPolicies": "S mode supplemental policies",
|
||||||
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
|
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Updates for Windows (Win32) catalog apps (Preview)",
|
||||||
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
|
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
|
||||||
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
|
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
|
||||||
"windows10UpdateRings": "Update rings for Windows 10 and later",
|
"windows10UpdateRings": "Update rings for Windows 10 and later",
|
||||||
"windows10XPolicyFailures": "Windows 10X policy failures",
|
"windows10XPolicyFailures": "Windows 10X policy failures",
|
||||||
"windows365Connector": "Windows 365 Citrix connector",
|
|
||||||
"windows365PartnerConnector": "Windows 365 partner connectors",
|
"windows365PartnerConnector": "Windows 365 partner connectors",
|
||||||
"windowsDiagnosticData": "Windows data",
|
"windowsDiagnosticData": "Windows data",
|
||||||
"windowsEnterpriseCertificate": "Windows enterprise certificate",
|
"windowsEnterpriseCertificate": "Windows enterprise certificate",
|
||||||
|
|||||||
+137
-98
@@ -227,7 +227,6 @@
|
|||||||
"co": "Corso (Francia)",
|
"co": "Corso (Francia)",
|
||||||
"cs": "Checo (República Checa)",
|
"cs": "Checo (República Checa)",
|
||||||
"da": "Danés (Dinamarca)",
|
"da": "Danés (Dinamarca)",
|
||||||
"prs": "Dari (Afganistán)",
|
|
||||||
"dv": "Divehi (Maldivas)",
|
"dv": "Divehi (Maldivas)",
|
||||||
"et": "Estonio (Estonia)",
|
"et": "Estonio (Estonia)",
|
||||||
"fo": "Feroés (Islas Feroe)",
|
"fo": "Feroés (Islas Feroe)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Antivirus de Microsoft Defender",
|
"defender": "Antivirus de Microsoft Defender",
|
||||||
"defenderAntivirus": "Antivirus de Microsoft Defender",
|
"defenderAntivirus": "Antivirus de Microsoft Defender",
|
||||||
"defenderExploitGuard": "Protección contra vulnerabilidades de seguridad de Microsoft Defender",
|
"defenderExploitGuard": "Protección contra vulnerabilidades de seguridad de Microsoft Defender",
|
||||||
"defenderFirewall": "Firewall de Microsoft Defender",
|
"defenderFirewall": "Firewall de Windows",
|
||||||
"defenderLocalSecurityOptions": "Opciones de seguridad del dispositivo local",
|
"defenderLocalSecurityOptions": "Opciones de seguridad del dispositivo local",
|
||||||
"defenderSecurityCenter": "Centro de seguridad de Microsoft Defender",
|
"defenderSecurityCenter": "Centro de seguridad de Microsoft Defender",
|
||||||
"deliveryOptimization": "Optimización de entrega",
|
"deliveryOptimization": "Optimización de entrega",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Deshabilitado",
|
"disabled": "Deshabilitado",
|
||||||
"enabled": "Habilitado",
|
"enabled": "Habilitado",
|
||||||
"infoBalloonContent": "Controlar si se debe instalar la actualización de características de Windows 10 más reciente en los dispositivos que no cumplan los requisitos para Windows 11",
|
"infoBalloonContent": "Controlar si se debe instalar la actualización de características de Windows 10 más reciente en los dispositivos que no cumplan los requisitos para Windows 11",
|
||||||
"label": "Cuando un dispositivo no pueda ejecutar Windows 11, instale la actualización de características de Windows 10 más reciente",
|
"label": "Cuando un dispositivo no sea elegible para ejecutar Windows 11, instale la actualización de características de Windows 10 más reciente",
|
||||||
"notApplicable": "No aplicable",
|
"notApplicable": "No aplicable",
|
||||||
"summaryLabel": "Instalar Windows 10 en dispositivos que no puedan ejecutar Windows 11"
|
"summaryLabel": "Instalar Windows 10 en dispositivos no aptos para ejecutar Windows 11"
|
||||||
},
|
},
|
||||||
"bladeTitle": "Implementaciones de actualización de características",
|
"bladeTitle": "Implementaciones de actualización de características",
|
||||||
"deploymentSettingsTitle": "Configuración de la implementación",
|
"deploymentSettingsTitle": "Configuración de la implementación",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Seleccione una de las opciones siguientes para especificar las aplicaciones de las que esta aplicación puede recibir datos:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: Permitir la recepción de datos de cualquier aplicación en las cuentas o documentos de la organización",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Especifique el idioma y la región que se van a usar.",
|
"languageInfo": "Especifique el idioma y la región que se van a usar.",
|
||||||
"licenseAgreement": "Términos de licencia del software de Microsoft",
|
"licenseAgreement": "Términos de licencia del software de Microsoft",
|
||||||
"licenseAgreementInfo": "Especifique si se va a mostrar el CLUF a los usuarios.",
|
"licenseAgreementInfo": "Especifique si se va a mostrar el CLUF a los usuarios.",
|
||||||
"plugAndForgetDevice": "Implementación automática (versión preliminar)",
|
"plugAndForgetDevice": "Implementación automática",
|
||||||
"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.",
|
"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",
|
"privacySettings": "Configuración de privacidad",
|
||||||
"privacySettingsInfo": "Especifique si se va a mostrar la configuración de privacidad a los usuarios.",
|
"privacySettingsInfo": "Especifique si se va a mostrar la configuración de privacidad a los usuarios.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Sólo fallan las aplicaciones de bloqueo seleccionadas en la fase de técnico (versión preliminar)",
|
"allowNonBlockingAppInstallation": "Sólo fallan las aplicaciones de bloqueo seleccionadas en la fase de técnico",
|
||||||
"apps": "aplicaciones",
|
"apps": "aplicaciones",
|
||||||
"appsListName": "Lista de aplicaciones",
|
"appsListName": "Lista de aplicaciones",
|
||||||
"blockingApps": "Bloqueando aplicaciones",
|
"blockingApps": "Bloqueando aplicaciones",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Actividad",
|
"activity": "Actividad",
|
||||||
|
"activityName": "Nombre de actividad",
|
||||||
"actor": "Iniciado por (actor)",
|
"actor": "Iniciado por (actor)",
|
||||||
|
"actorType": "Tipo de actor",
|
||||||
"app": "Aplicación",
|
"app": "Aplicación",
|
||||||
"appName": "Nombre de aplicación",
|
"appName": "Nombre de aplicación",
|
||||||
"applicationName": "Nombre de la aplicación",
|
"applicationName": "Nombre de la aplicación",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "Conector MTD",
|
"mtdConnector": "Conector MTD",
|
||||||
"name": "Nombre de perfil",
|
"name": "Nombre de perfil",
|
||||||
"oSVersion": "Versión del SO",
|
"oSVersion": "Versión del SO",
|
||||||
|
"operationType": "Tipo de operación",
|
||||||
"os": "SO",
|
"os": "SO",
|
||||||
"packageName": "Nombre del paquete",
|
"packageName": "Nombre del paquete",
|
||||||
"partnerName": "Asociado",
|
"partnerName": "Asociado",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"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."
|
"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."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Nombre de la aplicación de mensajería"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "Id. de paquete de aplicación de mensajería"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "Esquema de dirección URL de aplicación de mensajería"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Notificaciones de datos de la organización",
|
"label": "Notificaciones de datos de la organización",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "Si esta opción está bloqueada, la aplicación no puede imprimir los datos protegidos."
|
"tooltip": "Si esta opción está bloqueada, la aplicación no puede imprimir los datos protegidos."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Normalmente, cuando un usuario selecciona un vínculo de mensajería con hipervínculos en una aplicación, se abrirá una aplicación de mensajería con el número de teléfono rellenado previamente y listo para enviar. Para esta configuración, elija cómo tratar este tipo de transferencia de contenido cuando se inicia desde una aplicación administrada por directivas. Puede que sea necesario realizar pasos adicionales para que la configuración surta efecto. En primer lugar, compruebe que se ha quitado SMS de la lista Seleccionar aplicaciones para excluir. Después, asegúrese de que la aplicación usa una versión más reciente del SDK de Intune (versión 19.0.0 o posterior).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Transferir datos de mensajería a",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Normalmente, cuando un usuario selecciona un vínculo de mensajería con hipervínculos en una aplicación, se abrirá una aplicación de mensajería con el número de teléfono rellenado previamente y listo para enviar. Para esta configuración, elija cómo tratar este tipo de transferencia de contenido cuando se inicia desde una aplicación administrada por directivas."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Recibir datos de otras aplicaciones",
|
"label": "Recibir datos de otras aplicaciones",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "Permite usar el proveedor de credenciales web para el inicio de sesión.",
|
"authenticationWebSignInDescription": "Permite usar el proveedor de credenciales web para el inicio de sesión.",
|
||||||
"authenticationWebSignInName": "Inicio de sesión web (configuración en desuso)",
|
"authenticationWebSignInName": "Inicio de sesión web (configuración en desuso)",
|
||||||
"authorizedAppRulesDescription": "Aplica reglas del firewall autorizadas al almacén local para que se reconozcan y se apliquen.",
|
"authorizedAppRulesDescription": "Aplica reglas del firewall autorizadas al almacén local para que se reconozcan y se apliquen.",
|
||||||
"authorizedAppRulesName": "Reglas del Firewall de Microsoft Defender de aplicación autorizada del almacén local",
|
"authorizedAppRulesName": "Reglas de Firewall de Windows de aplicación autorizada del almacén local",
|
||||||
"authorizedUsersListHideAdminUsersName": "Ocultar los administradores del equipo",
|
"authorizedUsersListHideAdminUsersName": "Ocultar los administradores del equipo",
|
||||||
"authorizedUsersListHideLocalUsersName": "Ocultar los usuarios locales",
|
"authorizedUsersListHideLocalUsersName": "Ocultar los usuarios locales",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Ocultar las cuentas móviles",
|
"authorizedUsersListHideMobileAccountsName": "Ocultar las cuentas móviles",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Este valor especifica el tiempo sin intervención del usuario transcurrido el cual se bloquea la pantalla del dispositivo móvil. Valor recomendado: 15 minutos.",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Este valor especifica el tiempo sin intervención del usuario transcurrido el cual se bloquea la pantalla del dispositivo móvil. Valor recomendado: 15 minutos.",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Esta configuración especifica el período de tiempo sin entrada del usuario después del cual el dispositivo se bloquea. Valor recomendado: 15 minutos",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Esta configuración especifica el período de tiempo sin entrada del usuario después del cual el dispositivo se bloquea. Valor recomendado: 15 minutos",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Máximo de minutos de inactividad antes de solicitar la contraseña",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Máximo de minutos de inactividad antes de solicitar la contraseña",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Valor recomendado: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Seleccione la última versión del sistema operativo que un dispositivo móvil puede tener.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Seleccione la última versión del sistema operativo que un dispositivo móvil puede tener.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Versión máxima del sistema operativo para dispositivos móviles",
|
"complianceMobileOsVersionRestrictionMaximumName": "Versión máxima del sistema operativo para dispositivos móviles",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Seleccione la versión más antigua del sistema operativo que un dispositivo móvil puede tener.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Seleccione la versión más antigua del sistema operativo que un dispositivo móvil puede tener.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "Este valor especifica el número de contraseñas recientes que no se pueden volver a usar. Valor recomendado: 5.",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "Este valor especifica el número de contraseñas recientes que no se pueden volver a usar. Valor recomendado: 5.",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Número de contraseñas anteriores que no se pueden reutilizar",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Número de contraseñas anteriores que no se pueden reutilizar",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Valor recomendado: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Escriba la versión de compilación del sistema operativo más reciente que puede tener un dispositivo. Por ejemplo: 20E252<br>Si desea establecer una actualización de respuesta de seguridad rápida de Apple como la compilación máxima del sistema operativo, escriba la versión de compilación complementaria. Por ejemplo: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Escriba la versión de compilación del sistema operativo más reciente que puede tener un dispositivo. Por ejemplo: 20E252<br>Si desea establecer una actualización de respuesta de seguridad rápida de Apple como la compilación máxima del sistema operativo, escriba la versión de compilación complementaria. Por ejemplo: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Versión de compilación máxima del sistema operativo",
|
"complianceOsBuildVersionRestrictionMaximumName": "Versión de compilación máxima del sistema operativo",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Introduzca la versión de compilación del sistema operativo más antigua que pueda tener un dispositivo. Por ejemplo: 20E252<br>Si desea configurar una actualización de Apple Rapid Security Response como la compilación mínima del sistema operativo, introduzca la versión de compilación complementaria. Por ejemplo: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Introduzca la versión de compilación del sistema operativo más antigua que pueda tener un dispositivo. Por ejemplo: 20E252<br>Si desea configurar una actualización de Apple Rapid Security Response como la compilación mínima del sistema operativo, introduzca la versión de compilación complementaria. Por ejemplo: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Se necesita la inteligencia de seguridad de Microsoft Defender para actualizarse.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Se necesita la inteligencia de seguridad de Microsoft Defender para actualizarse.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Actualización de la inteligencia de seguridad de Antimalware de Microsoft Defender",
|
"complianceRequireWindowsDefenderSignatureName": "Actualización de la inteligencia de seguridad de Antimalware de Microsoft Defender",
|
||||||
"complianceRequiredPasswordTypeDescription": "Este valor especifica si las contraseñas pueden estar compuestas solo por caracteres numéricos o si deben contener caracteres no numéricos. Recomendaciones: Tipo de contraseña requerida: Alfanumérico. Número mínimo de juegos de caracteres: 1.",
|
"complianceRequiredPasswordTypeDescription": "Este valor especifica si las contraseñas pueden estar compuestas solo por caracteres numéricos o si deben contener caracteres no numéricos. Recomendaciones: Tipo de contraseña requerida: Alfanumérico. Número mínimo de juegos de caracteres: 1.",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Recomendaciones: tipo de contraseña requerida: alfanumérica, número mínimo de juegos de caracteres: 1",
|
||||||
"complianceRootedAllowedDescription": "Impide que los dispositivos raíz tengan acceso corporativo.",
|
"complianceRootedAllowedDescription": "Impide que los dispositivos raíz tengan acceso corporativo.",
|
||||||
"complianceRootedAllowedName": "Dispositivos raíz",
|
"complianceRootedAllowedName": "Dispositivos raíz",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "Este valor especifica si se va a impedir que el dispositivo use la característica de depuración de USB.",
|
"complianceSecurityDisableUSBDebuggingDescription": "Este valor especifica si se va a impedir que el dispositivo use la característica de depuración de USB.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Seleccione la versión más antigua del sistema operativo que puede tener un dispositivo. La versión del sistema operativo se define como principal.secundaria.compilación.revisión. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Seleccione la versión más antigua del sistema operativo que puede tener un dispositivo. La versión del sistema operativo se define como principal.secundaria.compilación.revisión. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Seleccione el tipo de contraseña que tendrá el dispositivo.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Seleccione el tipo de contraseña que tendrá el dispositivo.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Tipo de contraseña",
|
"complianceWindowsRequiredPasswordTypeName": "Tipo de contraseña",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Requerir contraseña para desbloquear el perfil de trabajo",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Seguridad del perfil de trabajo",
|
||||||
"compliantAppsOption": "Lista de aplicaciones conformes. Informar si cualquier aplicación instalada no incluida en la lista no cumple las directivas.",
|
"compliantAppsOption": "Lista de aplicaciones conformes. Informar si cualquier aplicación instalada no incluida en la lista no cumple las directivas.",
|
||||||
"computerNameStaticPrefixDescription": "A los equipos se les asigna un nombre con 15 caracteres. Especifique un prefijo; el resto de los 15 caracteres será aleatorio.",
|
"computerNameStaticPrefixDescription": "A los equipos se les asigna un nombre con 15 caracteres. Especifique un prefijo; el resto de los 15 caracteres será aleatorio.",
|
||||||
"computerNameStaticPrefixName": "Prefijo de nombre de equipo",
|
"computerNameStaticPrefixName": "Prefijo de nombre de equipo",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Lista de permitidos del dominio de Google",
|
"domainAllowListName": "Lista de permitidos del dominio de Google",
|
||||||
"domainAllowListTableEmptyValueExample": "Introducir un dominio",
|
"domainAllowListTableEmptyValueExample": "Introducir un dominio",
|
||||||
"domainAllowListTableName": "Dominio",
|
"domainAllowListTableName": "Dominio",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Reglas de Firewall de Microsoft Defender de aplicación autorizada del almacén local (redes de dominio)",
|
"domainAuthorizedAppRulesSummaryLabel": "Reglas de firewall de Windows de aplicación autorizada del almacén local (redes de dominio)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Firewall de Microsoft Defender (redes de dominio)",
|
"domainFirewallEnabledSummaryLabel": "Firewall de Windows (redes de dominio)",
|
||||||
"domainGlobalRulesSummaryLabel": "Reglas de Firewall de Microsoft Defender de puerto globales del almacén local (redes de dominio)",
|
"domainGlobalRulesSummaryLabel": "Reglas de firewall de Windows de puerto global del almacén local (redes de dominio)",
|
||||||
"domainIPsecRulesSummaryLabel": "Reglas IPsec del almacén local (redes de dominio)",
|
"domainIPsecRulesSummaryLabel": "Reglas IPsec del almacén local (redes de dominio)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "Exención de paquetes protegidos por IPsec en modo sigiloso (redes de dominio)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "Exención de paquetes protegidos por IPsec en modo sigiloso (redes de dominio)",
|
||||||
"domainInboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones entrantes (redes de dominio)",
|
"domainInboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones entrantes (redes de dominio)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Notificaciones entrantes (redes de dominio)",
|
"domainInboundNotificationsSummaryLabel": "Notificaciones entrantes (redes de dominio)",
|
||||||
"domainLocalStoreSummaryLabel": "Reglas de Firewall de Microsoft Defender del almacén local (redes de dominio)",
|
"domainLocalStoreSummaryLabel": "Reglas de firewall de Windows del almacén local (redes de dominio)",
|
||||||
"domainNameSourceOption": "Origen de nombre de dominio de usuario",
|
"domainNameSourceOption": "Origen de nombre de dominio de usuario",
|
||||||
"domainNetworkName": "Red de dominios (área de trabajo)",
|
"domainNetworkName": "Red de dominios (área de trabajo)",
|
||||||
"domainOutboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones salientes (redes de dominio)",
|
"domainOutboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones salientes (redes de dominio)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Inicio de sesión único (SSO) con certificado alternativo",
|
"enableSingleSignOnName": "Inicio de sesión único (SSO) con certificado alternativo",
|
||||||
"enableUsePrivateStoreOnly": "Usar solo una tienda privada",
|
"enableUsePrivateStoreOnly": "Usar solo una tienda privada",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Solo permite que se descarguen aplicaciones de una tienda privada y no de la tienda pública.",
|
"enableUsePrivateStoreOnlyDescription": "Solo permite que se descarguen aplicaciones de una tienda privada y no de la tienda pública.",
|
||||||
"enableWindowsDefenderFirewallName": "Firewall de Microsoft Defender",
|
"enableWindowsDefenderFirewallName": "Firewall de Windows",
|
||||||
"enableWithUEFILock": "Habilitar con bloqueo UEFI",
|
"enableWithUEFILock": "Habilitar con bloqueo UEFI",
|
||||||
"enableWithoutUEFILock": "Habilitar sin bloqueo UEFI",
|
"enableWithoutUEFILock": "Habilitar sin bloqueo UEFI",
|
||||||
"enabledForAzureAdAndHybridOption": "Rotación de claves habilitada para Microsoft Entra dispositivos unidos e híbridos",
|
"enabledForAzureAdAndHybridOption": "Rotación de claves habilitada para Microsoft Entra dispositivos unidos e híbridos",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Bloquear las conexiones entrantes para las siguientes aplicaciones.",
|
"firewallAppsBlockedHeader": "Bloquear las conexiones entrantes para las siguientes aplicaciones.",
|
||||||
"firewallAppsBlockedPageDescription": "Seleccione las aplicaciones que deben bloquear las conexiones entrantes.",
|
"firewallAppsBlockedPageDescription": "Seleccione las aplicaciones que deben bloquear las conexiones entrantes.",
|
||||||
"firewallAppsBlockedPageName": "Aplicaciones bloqueadas",
|
"firewallAppsBlockedPageName": "Aplicaciones bloqueadas",
|
||||||
"firewallCreateRules": "Cree reglas del Firewall de Microsoft Defender. Un perfil de Endpoint Protection puede contener hasta 150 reglas.",
|
"firewallCreateRules": "Cree reglas de firewall de Windows. Un perfil de Endpoint Protection puede contener hasta 150 reglas.",
|
||||||
"firewallRequiredDescription": "Requiere que el firewall esté activado.",
|
"firewallRequiredDescription": "Requiere que el firewall esté activado.",
|
||||||
"firewallRequiredName": "Firewall",
|
"firewallRequiredName": "Firewall",
|
||||||
"firewallRuleAction": "Acción",
|
"firewallRuleAction": "Acción",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Canal de disponibilidad general",
|
"generalAvailabilityChannel": "Canal de disponibilidad general",
|
||||||
"generalNetworkSettingsHeader": "General",
|
"generalNetworkSettingsHeader": "General",
|
||||||
"genericLocalUsersOrGroupsName": "Usuarios o grupos locales genéricos",
|
"genericLocalUsersOrGroupsName": "Usuarios o grupos locales genéricos",
|
||||||
"globalConfigurationsDescription": "Defina una configuración del Firewall de Microsoft Defender aplicable a todos los tipos de red.",
|
"globalConfigurationsDescription": "Configuración de Firewall de Windows aplicable a todos los tipos de red.",
|
||||||
"globalConfigurationsName": "Configuración global",
|
"globalConfigurationsName": "Configuración global",
|
||||||
"globalRulesDescription": "Aplica reglas del firewall de puerto globales al almacén local para que se reconozcan y se apliquen.",
|
"globalRulesDescription": "Aplica reglas del firewall de puerto globales al almacén local para que se reconozcan y se apliquen.",
|
||||||
"globalRulesName": "Reglas del Firewall de Microsoft Defender de puerto globales del almacén local",
|
"globalRulesName": "Reglas de Firewall de Windows de puerto global del almacén local",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Direcciones de correo electrónico de la cuenta de Google",
|
"googleAccountEmailAddresses": "Direcciones de correo electrónico de la cuenta de Google",
|
||||||
"googleAccountEmailAddressesDescription": "Lista de direcciones de correo electrónico separadas por punto y coma",
|
"googleAccountEmailAddressesDescription": "Lista de direcciones de correo electrónico separadas por punto y coma",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Pedir credenciales en el escritorio seguro",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Pedir credenciales en el escritorio seguro",
|
||||||
"localServerCachingHeader": "Almacenamiento en caché del servidor local",
|
"localServerCachingHeader": "Almacenamiento en caché del servidor local",
|
||||||
"localStoreDescription": "Aplica reglas del firewall globales del almacén local para que se reconozcan y se apliquen.",
|
"localStoreDescription": "Aplica reglas del firewall globales del almacén local para que se reconozcan y se apliquen.",
|
||||||
"localStoreName": "Reglas del Firewall de Microsoft Defender del almacén local",
|
"localStoreName": "Reglas de Firewall de Windows del almacén local",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Especifica si se mostrará una opción configurable por el usuario para controlar el tiempo de espera de la pantalla mientras se encuentra en la pantalla de bloqueo de dispositivos Windows 10 Mobile. Si esta directiva está establecida en Permitir, se ignora el valor establecido por \"Tiempo de espera de la pantalla\".",
|
"lockScreenAllowTimeoutConfigurationDescription": "Especifica si se mostrará una opción configurable por el usuario para controlar el tiempo de espera de la pantalla mientras se encuentra en la pantalla de bloqueo de dispositivos Windows 10 Mobile. Si esta directiva está establecida en Permitir, se ignora el valor establecido por \"Tiempo de espera de la pantalla\".",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Tiempo de espera de la pantalla configurable por el usuario (solo dispositivos móviles)",
|
"lockScreenAllowTimeoutConfigurationName": "Tiempo de espera de la pantalla configurable por el usuario (solo dispositivos móviles)",
|
||||||
"lockScreenBackgroundImageURLDescription": "Dirección URL de la imagen de fondo de la pantalla de inicio de sesión personalizada. Debe ser un archivo .png con un punto de conexión https://",
|
"lockScreenBackgroundImageURLDescription": "Dirección URL de la imagen de fondo de la pantalla de inicio de sesión personalizada. Debe ser un archivo .png con un punto de conexión https://",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "El valor de MTU debe estar comprendido entre 1280 y 1400 bytes",
|
"mTUSizeInBytesBounds": "El valor de MTU debe estar comprendido entre 1280 y 1400 bytes",
|
||||||
"mTUSizeInBytesName": "Unidad de transmisión máxima",
|
"mTUSizeInBytesName": "Unidad de transmisión máxima",
|
||||||
"mTUSizeInBytesToolTip": "El paquete de datos más grande, en bytes, que puede transmitirse en la red. Si no se configura, el tamaño predeterminado de Apple es de 1280 bytes. Se aplica a iOS 14 y versiones posteriores.",
|
"mTUSizeInBytesToolTip": "El paquete de datos más grande, en bytes, que puede transmitirse en la red. Si no se configura, el tamaño predeterminado de Apple es de 1280 bytes. Se aplica a iOS 14 y versiones posteriores.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Usar MAC aleatorio",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Usar el valor predeterminado del dispositivo",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Use MAC aleatorio solo cuando sea necesario, como para la compatibilidad con NAC. Los usuarios pueden cambiar esta configuración. Se aplica a Android 13 y versiones posteriores.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Usar MAC del dispositivo",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "Aleatorización de la dirección MAC",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store y desarrolladores identificados",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store y desarrolladores identificados",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Bloquea la AirPlay, el uso compartido de la pantalla con otros dispositivos y una característica de la aplicación Aula que usan los profesores para ver las pantallas de los estudiantes. Esta configuración no está disponible si ha bloqueado las capturas de pantalla.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Bloquea la AirPlay, el uso compartido de la pantalla con otros dispositivos y una característica de la aplicación Aula que usan los profesores para ver las pantallas de los estudiantes. Esta configuración no está disponible si ha bloqueado las capturas de pantalla.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Especificar un número (de 4 a 16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Especificar un número (de 4 a 16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Especificar un número (de 6 a 16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Especificar un número (de 6 a 16)",
|
||||||
"minimumPasswordLengthName": "Longitud mínima de la contraseña",
|
"minimumPasswordLengthName": "Longitud mínima de la contraseña",
|
||||||
|
"minimumPasswordLengthTooltipText": "Introduzca un número",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Las actualizaciones que faltan se instalarán automáticamente",
|
"minimumUpdateAutoInstallClassificationDescription": "Las actualizaciones que faltan se instalarán automáticamente",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Instalar clasificación especificado de actualizaciones",
|
"minimumUpdateAutoInstallClassificationName": "Instalar clasificación especificado de actualizaciones",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Importante",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Importante",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Usar un servidor proxy manual",
|
"networkProxyUseManualServerName": "Usar un servidor proxy manual",
|
||||||
"networkProxyUseScriptUrlName": "Usar script de proxy",
|
"networkProxyUseScriptUrlName": "Usar script de proxy",
|
||||||
"networkSettingsName": "Configuración de red",
|
"networkSettingsName": "Configuración de red",
|
||||||
"networkSettingsSubtitle": "Defina una configuración del Firewall de Microsoft Defender aplicable a tipos de red específicos.",
|
"networkSettingsSubtitle": "Configuración de Firewall de Windows aplicable a tipos específicos de red.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Agregue aplicaciones de iOS administradas a las que no se les debe permitir el uso de datos móviles.",
|
"networkUsageRulesBlockCellularHeaderName": "Agregue aplicaciones de iOS administradas a las que no se les debe permitir el uso de datos móviles.",
|
||||||
"networkUsageRulesBlockCellularName": "Bloquear uso de datos móviles",
|
"networkUsageRulesBlockCellularName": "Bloquear uso de datos móviles",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Agregue aplicaciones de iOS administradas a las que no se les debe permitir el uso de datos móviles en itinerancia.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Agregue aplicaciones de iOS administradas a las que no se les debe permitir el uso de datos móviles en itinerancia.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "Aplicaciones y procesos",
|
"privacyPreferencesTableName": "Aplicaciones y procesos",
|
||||||
"privacyPublishUserActivitiesDescription": "Bloquea las experiencias compartidas o la detección de recursos usados recientemente en el conmutador de tareas, entre otros.",
|
"privacyPublishUserActivitiesDescription": "Bloquea las experiencias compartidas o la detección de recursos usados recientemente en el conmutador de tareas, entre otros.",
|
||||||
"privacyPublishUserActivitiesName": "Publicar las actividades del usuario",
|
"privacyPublishUserActivitiesName": "Publicar las actividades del usuario",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Reglas de Firewall de Microsoft Defender de aplicación autorizada del almacén local (redes privadas)",
|
"privateAuthorizedAppRulesSummaryLabel": "Reglas de firewall de Windows de aplicación autorizada del almacén local (redes privadas)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Firewall de Microsoft Defender (redes privadas)",
|
"privateFirewallEnabledSummaryLabel": "Firewall de Windows (redes privadas)",
|
||||||
"privateGlobalRulesSummaryLabel": "Reglas de Firewall de Microsoft Defender de puerto globales del almacén local (redes privadas)",
|
"privateGlobalRulesSummaryLabel": "Reglas de firewall de Windows de puerto global del almacén local (redes privadas)",
|
||||||
"privateIPsecRulesSummaryLabel": "Reglas IPsec del almacén local (redes privadas)",
|
"privateIPsecRulesSummaryLabel": "Reglas IPsec del almacén local (redes privadas)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "Exención de paquetes protegidos por IPsec en modo sigiloso (redes privadas)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "Exención de paquetes protegidos por IPsec en modo sigiloso (redes privadas)",
|
||||||
"privateInboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones entrantes (redes privadas)",
|
"privateInboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones entrantes (redes privadas)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Notificaciones entrantes (redes privadas)",
|
"privateInboundNotificationsSummaryLabel": "Notificaciones entrantes (redes privadas)",
|
||||||
"privateLocalStoreSummaryLabel": "Reglas de Firewall de Microsoft Defender del almacén local (redes privadas)",
|
"privateLocalStoreSummaryLabel": "Reglas de firewall de Windows del almacén local (redes de dominio)",
|
||||||
"privateNetworkName": "Red privada (reconocible)",
|
"privateNetworkName": "Red privada (reconocible)",
|
||||||
"privateOutboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones salientes (redes privadas)",
|
"privateOutboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones salientes (redes privadas)",
|
||||||
"privateShieldedSummaryLabel": "Blindado (redes privadas)",
|
"privateShieldedSummaryLabel": "Blindado (redes privadas)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "URL del servidor proxy",
|
"proxyServerURLName": "URL del servidor proxy",
|
||||||
"proxyServersAutoDetectionName": "Detección automática de otros servidores proxy de empresa",
|
"proxyServersAutoDetectionName": "Detección automática de otros servidores proxy de empresa",
|
||||||
"proxyUrlExample": "Por ejemplo, itgproxy.contoso.com",
|
"proxyUrlExample": "Por ejemplo, itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Reglas de Firewall de Microsoft Defender de aplicación autorizada del almacén local (redes públicas)",
|
"publicAuthorizedAppRulesSummaryLabel": "Reglas de firewall de Windows de aplicación autorizada del almacén local (redes públicas)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Firewall de Microsoft Defender (redes públicas)",
|
"publicFirewallEnabledSummaryLabel": "Firewall de Windows (redes públicas)",
|
||||||
"publicGlobalRulesSummaryLabel": "Reglas de Firewall de Microsoft Defender de puerto globales del almacén local (redes públicas)",
|
"publicGlobalRulesSummaryLabel": "Reglas de firewall de Windows de puerto global del almacén local (redes públicas)",
|
||||||
"publicIPsecRulesSummaryLabel": "Reglas IPsec del almacén local (redes públicas)",
|
"publicIPsecRulesSummaryLabel": "Reglas IPsec del almacén local (redes públicas)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "Exención de paquetes protegidos por IPsec en modo sigiloso (redes públicas)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "Exención de paquetes protegidos por IPsec en modo sigiloso (redes públicas)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones entrantes (redes públicas)",
|
"publicInboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones entrantes (redes públicas)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Notificaciones entrantes (redes públicas)",
|
"publicInboundNotificationsSummaryLabel": "Notificaciones entrantes (redes públicas)",
|
||||||
"publicLocalStoreSummaryLabel": "Reglas de Firewall de Microsoft Defender del almacén local (redes públicas)",
|
"publicLocalStoreSummaryLabel": "Reglas de firewall de Windows del almacén local (redes públicas)",
|
||||||
"publicNetworkName": "Red pública (no reconocible)",
|
"publicNetworkName": "Red pública (no reconocible)",
|
||||||
"publicOutboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones salientes (redes públicas)",
|
"publicOutboundConnectionsSummaryLabel": "Acción predeterminada para las conexiones salientes (redes públicas)",
|
||||||
"publicPlayStoreEnabledDescription": "Los usuarios obtienen acceso a todas las aplicaciones, excepto aquellas que haya solicitado que se desinstalen en las aplicaciones cliente. Si elige \"No configurado\" para este valor, los usuarios solo podrán acceder a las aplicaciones que haya incluido como disponibles o necesarias en las aplicaciones cliente.",
|
"publicPlayStoreEnabledDescription": "Los usuarios obtienen acceso a todas las aplicaciones, excepto aquellas que haya solicitado que se desinstalen en las aplicaciones cliente. Si elige \"No configurado\" para este valor, los usuarios solo podrán acceder a las aplicaciones que haya incluido como disponibles o necesarias en las aplicaciones cliente.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Inscribirse en KSP Software",
|
"sCEPPolicyEnrollToSoftwareKSP": "Inscribirse en KSP Software",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Inscribirse en KSP del Módulo de plataforma segura (TPM) o se producirá un error.",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Inscribirse en KSP del Módulo de plataforma segura (TPM) o se producirá un error.",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Inscribirse en KSP Módulo de plataforma segura (TPM) si está presente, si no en KSP Software.",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Inscribirse en KSP Módulo de plataforma segura (TPM) si está presente, si no en KSP Software.",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "ADVERTENCIA: Ni el EKU de ningún propósito (OID 2.5.29.37.0) ni el EKU de directiva de aplicaciones (OID 1.3.6.1.4.1.311.10.12.1) se pueden usar con una entidad de certificación creada en PKI en la nube de Microsoft.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "En la mayoría de los casos, el certificado requiere al menos autenticación de cliente para que el usuario o el dispositivo se puedan autenticar en un servidor. Sin embargo, puede especificar usos adicionales para definir mejor el propósito de la clave.",
|
"sCEPPolicyExtendedKeyUsageDescription": "En la mayoría de los casos, el certificado requiere al menos autenticación de cliente para que el usuario o el dispositivo se puedan autenticar en un servidor. Sin embargo, puede especificar usos adicionales para definir mejor el propósito de la clave.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Uso mejorado de clave",
|
"sCEPPolicyExtendedKeyUsageName": "Uso mejorado de clave",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Use un tipo de algoritmo hash con el certificado. Asegúrese de seleccionar el nivel máximo de seguridad que admiten los dispositivos de conexión.",
|
"sCEPPolicyHashAlgorithmDescription": "Use un tipo de algoritmo hash con el certificado. Asegúrese de seleccionar el nivel máximo de seguridad que admiten los dispositivos de conexión.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Especificar el número de días (de 1 a 255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Especificar el número de días (de 1 a 255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Especificar el número de días (de 1 a 365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Especificar el número de días (de 1 a 365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Expiración de la contraseña (días)",
|
"workProfilePasswordExpirationInDaysName": "Expiración de la contraseña (días)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Escriba el número de días",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Contraseña del perfil de trabajo: longitud mínima de la contraseña",
|
"workProfilePasswordMinimumLengthReportingName": "Contraseña del perfil de trabajo: longitud mínima de la contraseña",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Contraseña del perfil de trabajo: número de caracteres numéricos obligatorios",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Contraseña del perfil de trabajo: número de caracteres numéricos obligatorios",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Contraseña del perfil de trabajo: número de caracteres en minúsculas obligatorios",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Contraseña del perfil de trabajo: número de caracteres en minúsculas obligatorios",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "Cualquier aplicación",
|
"anyAppOptionText": "Cualquier aplicación",
|
||||||
"anyDestinationAnySourceOptionText": "Cualquier destino y origen",
|
"anyDestinationAnySourceOptionText": "Cualquier destino y origen",
|
||||||
"anyDialerAppOptionText": "Cualquier aplicación de marcador",
|
"anyDialerAppOptionText": "Cualquier aplicación de marcador",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "Cualquier aplicación de mensajería",
|
||||||
"anyPolicyManagedDialerAppOptionText": "Cualquier aplicación de marcador administrada por directivas",
|
"anyPolicyManagedDialerAppOptionText": "Cualquier aplicación de marcador administrada por directivas",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "Cualquier aplicación de mensajería administrada por directivas",
|
||||||
"appAdded": "Aplicación agregada",
|
"appAdded": "Aplicación agregada",
|
||||||
"appBasedConditionalAccess": "Acceso condicional basado en la aplicación",
|
"appBasedConditionalAccess": "Acceso condicional basado en la aplicación",
|
||||||
"appColumnLabel": "Aplicación",
|
"appColumnLabel": "Aplicación",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "Identificador de dispositivo MDM",
|
"mdmDeviceId": "Identificador de dispositivo MDM",
|
||||||
"mdmWipInvalidVersionSettings": "Una o más aplicaciones tienen definiciones de versión mínima/máxima que no son válidas.<br /> <br />Las directivas de Windows Information Protection con cifrado admiten la especificación de solo una de las versiones (mínima o máxima), a menos que ambas versiones se especifiquen como equivalentes. Cuando solo se especifica la versión mínima, la regla se establece para mayor o igual que la versión mínima. De igual forma, cuando solo se especifica la versión máxima, la regla se establece para menor o igual que la versión máxima.",
|
"mdmWipInvalidVersionSettings": "Una o más aplicaciones tienen definiciones de versión mínima/máxima que no son válidas.<br /> <br />Las directivas de Windows Information Protection con cifrado admiten la especificación de solo una de las versiones (mínima o máxima), a menos que ambas versiones se especifiquen como equivalentes. Cuando solo se especifica la versión mínima, la regla se establece para mayor o igual que la versión mínima. De igual forma, cuando solo se especifica la versión máxima, la regla se establece para menor o igual que la versión máxima.",
|
||||||
"mdmWipReport": "Informe de protección de información de Windows para MDM",
|
"mdmWipReport": "Informe de protección de información de Windows para MDM",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Nombre de la aplicación de mensajería (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "Id. de paquete de aplicación de mensajería (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "Esquema de dirección URL de la aplicación de mensajería (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender for Identity",
|
"microsoftDefenderForEndpoint": "Microsoft Defender for Identity",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "Versión mínima de la aplicación",
|
"minAppVersion": "Versión mínima de la aplicación",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Catálogo de configuración",
|
"settingsCatalog": "Catálogo de configuración",
|
||||||
"settingsSelectorLabel": "Configuración",
|
"settingsSelectorLabel": "Configuración",
|
||||||
"silent": "Silencio",
|
"silent": "Silencio",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "Una aplicación de mensajería específica",
|
||||||
"specificUserIsLicensedIntune": "{0} tiene licencia para Microsoft Intune.",
|
"specificUserIsLicensedIntune": "{0} tiene licencia para Microsoft Intune.",
|
||||||
"state": "Estado",
|
"state": "Estado",
|
||||||
"status": "Estado",
|
"status": "Estado",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Línea base de Microsoft Edge",
|
"edgeSecurityBaseline": "Línea base de Microsoft Edge",
|
||||||
"edgeSecurityBaselinePreview": "Versión preliminar: 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",
|
"editionUpgradeConfiguration": "Actualización de edición y cambio de modo",
|
||||||
"firewall": "Firewall de Microsoft Defender",
|
"firewall": "Firewall de Windows",
|
||||||
"firewallRules": "Reglas del Firewall de Microsoft Defender",
|
"firewallRules": "Reglas de firewall de Windows",
|
||||||
"identityProtection": "Protección de cuentas",
|
"identityProtection": "Protección de cuentas",
|
||||||
"identityProtectionPreview": "Protección de cuentas (versión preliminar)",
|
"identityProtectionPreview": "Protección de cuentas (versión preliminar)",
|
||||||
"mDMSecurityBaseline1810": "Línea base de seguridad de MDM para Windows 10 y versiones posteriores a octubre de 2018",
|
"mDMSecurityBaseline1810": "Línea base de seguridad de MDM para Windows 10 y versiones posteriores a octubre de 2018",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Versión preliminar: 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",
|
"securityBaselines": "Líneas base de seguridad",
|
||||||
"test": "Plantilla de prueba",
|
"test": "Plantilla de prueba",
|
||||||
"testFirewallRulesSecurityTemplateName": "Reglas del Firewall de Microsoft Defender (prueba)",
|
"testFirewallRulesSecurityTemplateName": "Reglas de Firewall de Windows (prueba)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Protección de cuentas (prueba)",
|
"testIdentityProtectionSecurityTemplateName": "Protección de cuentas (prueba)",
|
||||||
"windowsSecurityExperience": "Experiencia de Seguridad de Windows"
|
"windowsSecurityExperience": "Experiencia de Seguridad de Windows"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Firewall de Microsoft Defender"
|
"mDE": "Firewall de Windows"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Reglas del Firewall de Microsoft Defender"
|
"mDE": "Reglas de firewall de Windows"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "Configuración de movimiento de carpetas conocidas de OneDrive: Windows 10 en la plantilla de configuración en la nube. https://aka.ms/CloudConfigGuide"
|
"description": "Configuración de movimiento de carpetas conocidas de OneDrive: Windows 10 en la plantilla de configuración en la nube. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Configuración de administración de dispositivos móviles",
|
"expeditedCheckin": "Configuración de administración de dispositivos móviles",
|
||||||
"exploitProtection": "Protección contra vulnerabilidades",
|
"exploitProtection": "Protección contra vulnerabilidades",
|
||||||
"extensions": "Extensiones",
|
"extensions": "Extensiones",
|
||||||
"hardwareConfigurations": "Configuraciones del BIOS",
|
"hardwareConfigurations": "Configuraciones de BIOS y otras opciones",
|
||||||
"identityProtection": "Identity Protection",
|
"identityProtection": "Identity Protection",
|
||||||
"iosCompliancePolicy": "Directiva de cumplimiento de iOS",
|
"iosCompliancePolicy": "Directiva de cumplimiento de iOS",
|
||||||
"kiosk": "Pantalla completa",
|
"kiosk": "Pantalla completa",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Antivirus de Microsoft Defender",
|
"microsoftDefenderAntivirus": "Antivirus de Microsoft Defender",
|
||||||
"microsoftDefenderAntivirusexclusions": "Exclusiones del 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)",
|
"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",
|
"microsoftDefenderFirewallRules": "Reglas de firewall de Windows",
|
||||||
"microsoftEdgeBaseline": "Línea base de seguridad para Microsoft Edge",
|
"microsoftEdgeBaseline": "Línea base de seguridad para Microsoft Edge",
|
||||||
"mxProfileZebraOnly": "Perfil de MX (solo Zebra)",
|
"mxProfileZebraOnly": "Perfil de MX (solo Zebra)",
|
||||||
"networkBoundary": "Límite de red",
|
"networkBoundary": "Límite de red",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Certificado de confianza: PRUEBA",
|
"windows10XTrustedCertificate": "Certificado de confianza: PRUEBA",
|
||||||
"windows10XVPN": "VPN: PRUEBA",
|
"windows10XVPN": "VPN: PRUEBA",
|
||||||
"windows10XWifi": "WiFi: PRUEBA",
|
"windows10XWifi": "WiFi: PRUEBA",
|
||||||
|
"windows11SecurityBaseline": "Base de seguridad de Windows 10 y versiones posteriores",
|
||||||
"windows8CompliancePolicy": "Directiva de cumplimiento de Windows 8",
|
"windows8CompliancePolicy": "Directiva de cumplimiento de Windows 8",
|
||||||
"windowsHealthMonitoring": "Seguimiento de estado de Windows",
|
"windowsHealthMonitoring": "Seguimiento de estado de Windows",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Configure dispositivos para el aprovisionamiento inicial y asígnelos a los usuarios.",
|
"description": "Configure los dispositivos para el aprovisionamiento inicial.",
|
||||||
"title": "Preparación del dispositivo"
|
"title": "Preparación del dispositivo"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Aprobar e implementar manualmente actualizaciones de controladores"
|
"manual": "Aprobar e implementar manualmente actualizaciones de controladores"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Acciones en masa"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} días"
|
"value": "{0} días"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Seleccione una acción a continuación.",
|
||||||
"label": "Driver action",
|
"label": "Acción del controlador",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Seleccionar una acción"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Controladores incluidos"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Seleccionar controladores para incluirlos en la acción masiva"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Seleccionar controladores para incluir"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "Como máximo, se pueden seleccionar cien controladores"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "Debe seleccionarse al menos un controlador"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Controladores seleccionados"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Hacer disponible en Windows Update",
|
||||||
"bladeTitle": "Actualizaciones de controladores para Windows 10 y versiones posteriores (versión preliminar)",
|
"bladeTitle": "Actualizaciones de controladores para Windows 10 y versiones posteriores (versión preliminar)",
|
||||||
"lastSync": "Última sincronización:",
|
"lastSync": "Última sincronización:",
|
||||||
"lastSyncDefaultText": "Recopilación de inventario inicial pendiente",
|
"lastSyncDefaultText": "Recopilación de inventario inicial pendiente",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Seleccione un mensaje de notificación de los que aparecen a la izquierda para obtener una vista previa del contenido."
|
"placeholder": "Seleccione un mensaje de notificación de los que aparecen a la izquierda para obtener una vista previa del contenido."
|
||||||
},
|
},
|
||||||
"companyContact": "Pie de página de correo electrónico: incluir información de contacto",
|
"companyContact": "Mostrar información de contacto",
|
||||||
"companyLogo": "Encabezado de correo electrónico: incluir logotipo de la empresa",
|
"companyLogo": "Mostrar logotipo de la empresa",
|
||||||
"companyName": "Pie de página de correo electrónico: incluir nombre de la empresa",
|
"companyName": "Mostrar el nombre de la empresa",
|
||||||
"createEditDescription": "Crear o editar plantillas de mensajes de notificación.",
|
"createEditDescription": "Crear o editar plantillas de mensajes de notificación.",
|
||||||
"createMessage": "Crear mensaje",
|
"createMessage": "Crear mensaje",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Mostrar detalles del dispositivo",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "Esta configuración está desactivada de forma predeterminada, ya que la recuperación de detalles del dispositivo podría provocar un retraso en la recepción de notificaciones por correo electrónico.",
|
||||||
"editImpactInfo": "Si modifica este mensaje de notificación, afectará a todas las directivas que utilizan esta plantilla.",
|
"editImpactInfo": "Si modifica este mensaje de notificación, afectará a todas las directivas que utilizan esta plantilla.",
|
||||||
"editMessage": "Editar mensaje",
|
"editMessage": "Editar mensaje",
|
||||||
"email": "correo electrónico",
|
"email": "correo electrónico",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "Pie de página del correo electrónico",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "La configuración de encabezado y pie de página de correo electrónico para las notificaciones de correo electrónico se basa en la configuración de personalización dentro del nodo Administrador de inquilinos en Endpoint Manager.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "Encabezado del correo electrónico",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Configurar opciones de personalización",
|
||||||
"formSubTitle": "Crear o modificar correos electrónicos de notificación",
|
"formSubTitle": "Crear o modificar correos electrónicos de notificación",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Configuración de encabezado y pie de página",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Vista previa de imagen",
|
||||||
"infotext": "Seleccione un mensaje de notificación. Para crear una notificación, visite Notificación en la sección Administrar de la carga de trabajo Establecer la compatibilidad con dispositivos.",
|
"infotext": "Seleccione un mensaje de notificación. Para crear una notificación, visite Notificación en la sección Administrar de la carga de trabajo Establecer la compatibilidad con dispositivos.",
|
||||||
"iwLink": "Vínculo del sitio web de Portal de empresa",
|
"iwLink": "Mostrar vínculo de sitio web del portal de empresa",
|
||||||
"listEmpty": "No hay plantillas de mensajes.",
|
"listEmpty": "No hay plantillas de mensajes.",
|
||||||
"listEmptySelectOnly": "No hay plantillas de mensajes. Para crear una nueva notificación, visite Notificaciones en la sección Administrar de la carga de trabajo Establecer la compatibilidad con dispositivos.",
|
"listEmptySelectOnly": "No hay plantillas de mensajes. Para crear una nueva notificación, visite Notificaciones en la sección Administrar de la carga de trabajo Establecer la compatibilidad con dispositivos.",
|
||||||
"listSubTitle": "Lista de plantillas de mensajes de notificación",
|
"listSubTitle": "Lista de plantillas de mensajes de notificación",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Plantillas de mensaje de notificación",
|
"notificationMessageTemplates": "Plantillas de mensaje de notificación",
|
||||||
"rowValidationError": "Se requiere al menos una plantilla de mensaje",
|
"rowValidationError": "Se requiere al menos una plantilla de mensaje",
|
||||||
"selectDescription": "Seleccione un mensaje de notificación. Para crear una nueva notificación, visite Notificaciones en la sección Administrar de la carga de trabajo Establecer la compatibilidad con dispositivos.",
|
"selectDescription": "Seleccione un mensaje de notificación. Para crear una nueva notificación, visite Notificaciones en la sección Administrar de la carga de trabajo Establecer la compatibilidad con dispositivos.",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Valor de inquilino",
|
||||||
"testEmailLabel": "Enviar una vista previa del correo electrónico",
|
"testEmailLabel": "Enviar una vista previa del correo electrónico",
|
||||||
"localeLabel": "Configuración regional",
|
"localeLabel": "Configuración regional",
|
||||||
"isDefaultLocale": "Predeterminado"
|
"isDefaultLocale": "Predeterminado"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "fila {0} de {1} columna {2}"
|
"ariaLabel": "fila {0} de {1} columna {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Empiece desde cero y seleccione las propiedades que desee de la biblioteca de propiedades de inventario disponibles."
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Empiece de cero y seleccione la configuración que quiera en la biblioteca de valores disponibles",
|
"subtitle": "Empiece de cero y seleccione la configuración que quiera en la biblioteca de valores disponibles",
|
||||||
"title": "Catálogo de configuración"
|
"title": "Catálogo de configuración"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "Versión mínima",
|
"minVersion": "Versión mínima",
|
||||||
"nameHint": "Este será el primer atributo principal visible para identificar el conjunto de restricciones.",
|
"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.",
|
"noAssignmentsStatusBar": "Asigne la restricción al menos a un grupo. Haga clic en Propiedades.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "Debe ser administrador para editar las restricciones.",
|
||||||
"notFound": "La restricción no se ha encontrado. Puede que ya se haya eliminado.",
|
"notFound": "La restricción no se ha encontrado. Puede que ya se haya eliminado.",
|
||||||
"personallyOwned": "Dispositivos de propiedad personal",
|
"personallyOwned": "Dispositivos de propiedad personal",
|
||||||
"restriction": "Restricción",
|
"restriction": "Restricción",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Directiva de cumplimiento de Windows 8",
|
"complianceWindows8": "Directiva de cumplimiento de Windows 8",
|
||||||
"complianceWindowsPhone": "Directiva de cumplimiento de Windows Phone",
|
"complianceWindowsPhone": "Directiva de cumplimiento de Windows Phone",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Catálogo de propiedades",
|
||||||
"iosCustom": "Personalizada",
|
"iosCustom": "Personalizada",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Credencial PIV derivada",
|
"iosDerivedCredentialAuthenticationConfiguration": "Credencial PIV derivada",
|
||||||
"iosDeviceFeatures": "Características del dispositivo",
|
"iosDeviceFeatures": "Características del dispositivo",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Dispositivos Chrome OS (versión preliminar)"
|
"devices": "Dispositivos ChromeOS"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Contactos del administrador",
|
"adminContacts": "Contactos del administrador",
|
||||||
"appPackaging": "Empaquetado de aplicaciones",
|
"appPackaging": "Empaquetado de aplicaciones",
|
||||||
"businessGroups": "Grupos empresariales",
|
"autopatchGroups": "Grupos de Autopatch",
|
||||||
"devices": "Dispositivos",
|
"devices": "Dispositivos",
|
||||||
"feedback": "Comentarios",
|
"feedback": "Comentarios",
|
||||||
"gettingStarted": "Introducción",
|
"gettingStarted": "Introducción",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Personalización",
|
"brandingAndCustomization": "Personalización",
|
||||||
"cartProfiles": "Perfiles de carro",
|
"cartProfiles": "Perfiles de carro",
|
||||||
"certificateConnectors": "Conectores de certificados",
|
"certificateConnectors": "Conectores de certificados",
|
||||||
"chromeEnterprise": "Chrome Enterprise (versión preliminar)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Dispositivos conectados a la nube (vista previa)",
|
"cloudAttachedDevices": "Dispositivos conectados a la nube (vista previa)",
|
||||||
"cloudPcActions": "Acciones de CLOUD PC (versión preliminar)",
|
"cloudPcActions": "Acciones de CLOUD PC (versión preliminar)",
|
||||||
"cloudPcMaintenanceWindows": "Ventanas de mantenimiento de PC en la nube (versión preliminar)",
|
"cloudPcMaintenanceWindows": "Ventanas de mantenimiento de PC en la nube (versión preliminar)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "Estado del usuario",
|
"userExecutionStatus": "Estado del usuario",
|
||||||
"wdacSupplementalPolicies": "Directivas complementarias del modo S",
|
"wdacSupplementalPolicies": "Directivas complementarias del modo S",
|
||||||
"win32CatalogUpdateApp": "Actualizaciones para aplicaciones de catálogo de Windows (Win32)",
|
"win32CatalogUpdateApp": "Actualizaciones para aplicaciones de catálogo de Windows (Win32)",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Actualizaciones para aplicaciones de catálogo de Windows (Win32) (versión preliminar)",
|
||||||
"windows10DriverUpdate": "Actualizaciones de controladores para Windows 10 y versiones posteriores",
|
"windows10DriverUpdate": "Actualizaciones de controladores para Windows 10 y versiones posteriores",
|
||||||
"windows10QualityUpdate": "Actualizaciones de calidad para Windows 10 y versiones posteriores",
|
"windows10QualityUpdate": "Actualizaciones de calidad para Windows 10 y versiones posteriores",
|
||||||
"windows10UpdateRings": "Anillos de actualización para Windows 10 y versiones posteriores",
|
"windows10UpdateRings": "Anillos de actualización para Windows 10 y versiones posteriores",
|
||||||
"windows10XPolicyFailures": "Errores de directiva de Windows 10X",
|
"windows10XPolicyFailures": "Errores de directiva de Windows 10X",
|
||||||
"windows365Connector": "Conector Citrix de Windows 365",
|
|
||||||
"windows365PartnerConnector": "Conectores de socios de Windows 365",
|
"windows365PartnerConnector": "Conectores de socios de Windows 365",
|
||||||
"windowsDiagnosticData": "Datos de Windows",
|
"windowsDiagnosticData": "Datos de Windows",
|
||||||
"windowsEnterpriseCertificate": "Certificado de Windows Enterprise",
|
"windowsEnterpriseCertificate": "Certificado de Windows Enterprise",
|
||||||
|
|||||||
+144
-105
@@ -227,7 +227,6 @@
|
|||||||
"co": "Corse (France)",
|
"co": "Corse (France)",
|
||||||
"cs": "Tchèque (République tchèque)",
|
"cs": "Tchèque (République tchèque)",
|
||||||
"da": "Danois (Danemark)",
|
"da": "Danois (Danemark)",
|
||||||
"prs": "Dari (Afghanistan)",
|
|
||||||
"dv": "Maldivien (Maldives)",
|
"dv": "Maldivien (Maldives)",
|
||||||
"et": "Estonien (Estonie)",
|
"et": "Estonien (Estonie)",
|
||||||
"fo": "Féroïen (Îles Féroé)",
|
"fo": "Féroïen (Îles Féroé)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender Antivirus",
|
"defender": "Microsoft Defender Antivirus",
|
||||||
"defenderAntivirus": "Microsoft Defender Antivirus",
|
"defenderAntivirus": "Microsoft Defender Antivirus",
|
||||||
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
||||||
"defenderFirewall": "Pare-feu Microsoft Defender",
|
"defenderFirewall": "Pare-feu Windows",
|
||||||
"defenderLocalSecurityOptions": "Options de sécurité locales de l'appareil",
|
"defenderLocalSecurityOptions": "Options de sécurité locales de l'appareil",
|
||||||
"defenderSecurityCenter": "Microsoft Defender Security Center",
|
"defenderSecurityCenter": "Microsoft Defender Security Center",
|
||||||
"deliveryOptimization": "Optimisation de livraison",
|
"deliveryOptimization": "Optimisation de livraison",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Désactivé",
|
"disabled": "Désactivé",
|
||||||
"enabled": "Activé",
|
"enabled": "Activé",
|
||||||
"infoBalloonContent": "Contrôler s’il faut installer la dernière mise à jour des fonctionnalités Windows 10 sur les appareils qui ne sont pas éligibles pour Windows 11",
|
"infoBalloonContent": "Contrôler s’il faut installer la dernière mise à jour des fonctionnalités Windows 10 sur les appareils qui ne sont pas éligibles pour Windows 11",
|
||||||
"label": "Lorsqu'un appareil n'est pas capable d'exécuter Windows 11, installez la dernière mise à jour des fonctionnalités de Windows 10",
|
"label": "Lorsqu'un appareil n'est pas éligible pour exécuter Windows 11, installez la dernière mise à jour des fonctionnalités de Windows 10",
|
||||||
"notApplicable": "N'est pas applicable",
|
"notApplicable": "N'est pas applicable",
|
||||||
"summaryLabel": "Installez Windows 10 sur des appareils non capables d'exécuter Windows 11"
|
"summaryLabel": "Installez Windows 10 sur des appareils non éligibles pour exécuter Windows 11"
|
||||||
},
|
},
|
||||||
"bladeTitle": "Déploiements de mises à jour de fonctionnalités",
|
"bladeTitle": "Déploiements de mises à jour de fonctionnalités",
|
||||||
"deploymentSettingsTitle": "Paramètres de déploiement",
|
"deploymentSettingsTitle": "Paramètres de déploiement",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Sélectionnez l'une des options suivantes pour spécifier les applications à partir desquelles cette application peut recevoir des données :",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0} : Autoriser la réception de données de documents ou comptes d'organisation provenant de n'importe quelle application",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Spécifiez la langue et la région à utiliser.",
|
"languageInfo": "Spécifiez la langue et la région à utiliser.",
|
||||||
"licenseAgreement": "Termes du contrat de licence logiciel Microsoft",
|
"licenseAgreement": "Termes du contrat de licence logiciel Microsoft",
|
||||||
"licenseAgreementInfo": "Indiquez si le CLUF est présenté aux utilisateurs.",
|
"licenseAgreementInfo": "Indiquez si le CLUF est présenté aux utilisateurs.",
|
||||||
"plugAndForgetDevice": "Auto-déploiement (préversion)",
|
"plugAndForgetDevice": "Déploiement automatique",
|
||||||
"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. ",
|
"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é",
|
"privacySettings": "Paramètres de confidentialité",
|
||||||
"privacySettingsInfo": "Indiquez si les paramètres de confidentialité sont présentés aux utilisateurs.",
|
"privacySettingsInfo": "Indiquez si les paramètres de confidentialité sont présentés aux utilisateurs.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Échouer uniquement les applications de blocage sélectionnées dans la phase de technicien (aperçu)",
|
"allowNonBlockingAppInstallation": "Échouer uniquement les applications de blocage sélectionnées dans la phase de technicien",
|
||||||
"apps": "applications",
|
"apps": "applications",
|
||||||
"appsListName": "Liste des applications",
|
"appsListName": "Liste des applications",
|
||||||
"blockingApps": "Blocage des applications",
|
"blockingApps": "Blocage des applications",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Activité",
|
"activity": "Activité",
|
||||||
|
"activityName": "Nom de l'activité",
|
||||||
"actor": "Initié par (acteur)",
|
"actor": "Initié par (acteur)",
|
||||||
|
"actorType": "Type d'acteur",
|
||||||
"app": "Application",
|
"app": "Application",
|
||||||
"appName": "Nom de l'application",
|
"appName": "Nom de l'application",
|
||||||
"applicationName": "Nom d'application",
|
"applicationName": "Nom d'application",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "Connecteur MTD",
|
"mtdConnector": "Connecteur MTD",
|
||||||
"name": "Nom de profil",
|
"name": "Nom de profil",
|
||||||
"oSVersion": "Version du système d'exploitation",
|
"oSVersion": "Version du système d'exploitation",
|
||||||
|
"operationType": "Type d'opération",
|
||||||
"os": "Système d'exploitation",
|
"os": "Système d'exploitation",
|
||||||
"packageName": "Nom du package",
|
"packageName": "Nom du package",
|
||||||
"partnerName": "Partenaire",
|
"partnerName": "Partenaire",
|
||||||
@@ -1274,7 +1276,7 @@
|
|||||||
"timeWindows": "Fenêtres temporelles",
|
"timeWindows": "Fenêtres temporelles",
|
||||||
"timeZone": "Fuseau horaire",
|
"timeZone": "Fuseau horaire",
|
||||||
"type": "Type",
|
"type": "Type",
|
||||||
"updateScheduleType": "Type de calendrier",
|
"updateScheduleType": "Type de planification",
|
||||||
"updateStatus": "État de la mise à jour",
|
"updateStatus": "État de la mise à jour",
|
||||||
"user": "Utilisateur",
|
"user": "Utilisateur",
|
||||||
"userPrincipalName": "Nom d'utilisateur principal",
|
"userPrincipalName": "Nom d'utilisateur principal",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"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."
|
"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."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Nom de l’application de messagerie"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "ID du package de l’application de messagerie"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "Modèle d’URL de l’application de messagerie"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Notifications de données d'organisation",
|
"label": "Notifications de données d'organisation",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "Si cette option est bloquée, l'application ne peut pas imprimer les données protégées."
|
"tooltip": "Si cette option est bloquée, l'application ne peut pas imprimer les données protégées."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "En règle générale, lorsqu’un utilisateur sélectionne un lien hypertexte de messagerie dans une application, celle-ci s’ouvre avec le numéro de téléphone prérempli et prêt à être envoyé. 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. Tout d’abord, vérifiez que sms a été supprimé de la liste Sélectionner les applications à exempter. Vérifiez ensuite que l’application utilise une version plus récente du kit de développement logiciel (SDK) Intune (version > 19.0.0).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Transférer les données de messagerie vers",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "En règle générale, lorsqu’un utilisateur sélectionne un lien hypertexte de messagerie dans une application, celle-ci s’ouvre avec le numéro de téléphone prérempli et prêt à être envoyé. 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."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Recevoir des données d'autres applications",
|
"label": "Recevoir des données d'autres applications",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "Autorisez le fournisseur d'informations d'identification web pour la connexion.",
|
"authenticationWebSignInDescription": "Autorisez le fournisseur d'informations d'identification web pour la connexion.",
|
||||||
"authenticationWebSignInName": "Connexion web (paramètre déprécié)",
|
"authenticationWebSignInName": "Connexion web (paramètre déprécié)",
|
||||||
"authorizedAppRulesDescription": "Applique des règles de pare-feu autorisées dans le magasin local à reconnaître et à appliquer.",
|
"authorizedAppRulesDescription": "Applique des règles de pare-feu autorisées dans le magasin local à reconnaître et à appliquer.",
|
||||||
"authorizedAppRulesName": "Règles de pare-feu Microsoft Defender d'application autorisées du magasin local",
|
"authorizedAppRulesName": "Règles de pare-feu Windows des applications autorisées à partir du magasin local",
|
||||||
"authorizedUsersListHideAdminUsersName": "Masquer les administrateurs de l’ordinateur",
|
"authorizedUsersListHideAdminUsersName": "Masquer les administrateurs de l’ordinateur",
|
||||||
"authorizedUsersListHideLocalUsersName": "Masquer les utilisateurs locaux",
|
"authorizedUsersListHideLocalUsersName": "Masquer les utilisateurs locaux",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Masquer les comptes mobiles",
|
"authorizedUsersListHideMobileAccountsName": "Masquer les comptes mobiles",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Ce paramètre spécifie la période de temps sans entrée utilisateur après laquelle l'écran de l'appareil mobile est verrouillé. Valeur recommandée : 15 minutes",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Ce paramètre spécifie la période de temps sans entrée utilisateur après laquelle l'écran de l'appareil mobile est verrouillé. Valeur recommandée : 15 minutes",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Ce paramètre spécifie la période de temps sans entrée utilisateur au terme de laquelle l'appareil est verrouillé. Valeur recommandée : 15 minutes",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Ce paramètre spécifie la période de temps sans entrée utilisateur au terme de laquelle l'appareil est verrouillé. Valeur recommandée : 15 minutes",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Nombre maximal de minutes d'inactivité avant demande du mot de passe",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Nombre maximal de minutes d'inactivité avant demande du mot de passe",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Valeur recommandée : 15 minutes",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Sélectionnez la version du système d'exploitation la plus récente pouvant être installée sur un appareil mobile.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Sélectionnez la version du système d'exploitation la plus récente pouvant être installée sur un appareil mobile.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Version maximale du système d'exploitation pour les appareils mobiles",
|
"complianceMobileOsVersionRestrictionMaximumName": "Version maximale du système d'exploitation pour les appareils mobiles",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Sélectionnez la version du système d'exploitation la plus ancienne pouvant être installée sur un appareil mobile.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Sélectionnez la version du système d'exploitation la plus ancienne pouvant être installée sur un appareil mobile.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "Ce paramètre spécifie le nombre de mots de passe récents qui ne peuvent pas être réutilisés. Valeur recommandée : 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "Ce paramètre spécifie le nombre de mots de passe récents qui ne peuvent pas être réutilisés. Valeur recommandée : 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Nombre de mots de passe précédents avant d'autoriser leur réutilisation",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Nombre de mots de passe précédents avant d'autoriser leur réutilisation",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Valeur recommandée : 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Entrez la dernière version de build du système d'exploitation qu'un appareil peut avoir. Par exemple : 20E252<br>Si vous souhaitez définir une mise à jour Apple Rapid Security Response comme version maximale du système d'exploitation, saisissez la version de version supplémentaire. Par exemple : 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Entrez la dernière version de build du système d'exploitation qu'un appareil peut avoir. Par exemple : 20E252<br>Si vous souhaitez définir une mise à jour Apple Rapid Security Response comme version maximale du système d'exploitation, saisissez la version de version supplémentaire. Par exemple : 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Version de build maximale du système d'exploitation",
|
"complianceOsBuildVersionRestrictionMaximumName": "Version de build maximale du système d'exploitation",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Entrez la plus ancienne version de build du système d'exploitation qu'un appareil peut avoir. Par exemple : 20E252<br>Si vous souhaitez définir une mise à jour Apple Rapid Security Response comme version minimale du système d'exploitation, saisissez la version de version supplémentaire. Par exemple : 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Entrez la plus ancienne version de build du système d'exploitation qu'un appareil peut avoir. Par exemple : 20E252<br>Si vous souhaitez définir une mise à jour Apple Rapid Security Response comme version minimale du système d'exploitation, saisissez la version de version supplémentaire. Par exemple : 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Exige que la veille de sécurité de Microsoft Defender soit à jour.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Exige que la veille de sécurité de Microsoft Defender soit à jour.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Veille de sécurité du logiciel anti-programme malveillant Microsoft Defender à jour",
|
"complianceRequireWindowsDefenderSignatureName": "Veille de sécurité du logiciel anti-programme malveillant Microsoft Defender à jour",
|
||||||
"complianceRequiredPasswordTypeDescription": "Ce paramètre spécifie si les mots de passe peuvent comprendre seulement des caractères numériques ou s'ils doivent contenir des caractères autres que des chiffres. Recommandations : Type mot de passe requis : Alphanumérique, Nombre minimum de jeux de caractères : 1",
|
"complianceRequiredPasswordTypeDescription": "Ce paramètre spécifie si les mots de passe peuvent comprendre seulement des caractères numériques ou s'ils doivent contenir des caractères autres que des chiffres. Recommandations : Type mot de passe requis : Alphanumérique, Nombre minimum de jeux de caractères : 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Suggestions : type de mot de passe requis : alphanumérique, nombre minimal de jeux de caractères : 1",
|
||||||
"complianceRootedAllowedDescription": "Empêche les appareils rootés d'accéder aux ressources d'entreprise.",
|
"complianceRootedAllowedDescription": "Empêche les appareils rootés d'accéder aux ressources d'entreprise.",
|
||||||
"complianceRootedAllowedName": "Appareils rootés",
|
"complianceRootedAllowedName": "Appareils rootés",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "Ce paramètre spécifie s'il faut empêcher que l'appareil utilise la fonctionnalité de débogage USB.",
|
"complianceSecurityDisableUSBDebuggingDescription": "Ce paramètre spécifie s'il faut empêcher que l'appareil utilise la fonctionnalité de débogage USB.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Sélectionnez la version de système d'exploitation la plus ancienne pouvant être installée sur un appareil. La version de système d'exploitation est définie sous la forme majeure.mineure.build.révision.",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Sélectionnez la version de système d'exploitation la plus ancienne pouvant être installée sur un appareil. La version de système d'exploitation est définie sous la forme majeure.mineure.build.révision.",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Sélectionne le type de mot de passe à utiliser sur l'appareil.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Sélectionne le type de mot de passe à utiliser sur l'appareil.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Type de mot de passe",
|
"complianceWindowsRequiredPasswordTypeName": "Type de mot de passe",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Exiger un mot de passe pour déverrouiller un profil professionnel",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Sécurité des profils professionnels",
|
||||||
"compliantAppsOption": "Liste des applications conformes. Signaler une non-conformité pour toute application installée ne figurant pas dans la liste",
|
"compliantAppsOption": "Liste des applications conformes. Signaler une non-conformité pour toute application installée ne figurant pas dans la liste",
|
||||||
"computerNameStaticPrefixDescription": "Un nom long de 15 caractères est affecté aux ordinateurs. Spécifiez un préfixe, le reste des 15 caractères seront aléatoires.",
|
"computerNameStaticPrefixDescription": "Un nom long de 15 caractères est affecté aux ordinateurs. Spécifiez un préfixe, le reste des 15 caractères seront aléatoires.",
|
||||||
"computerNameStaticPrefixName": "Préfixe du nom d'ordinateur",
|
"computerNameStaticPrefixName": "Préfixe du nom d'ordinateur",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Liste verte de domaines Google",
|
"domainAllowListName": "Liste verte de domaines Google",
|
||||||
"domainAllowListTableEmptyValueExample": "Entrez un domaine",
|
"domainAllowListTableEmptyValueExample": "Entrez un domaine",
|
||||||
"domainAllowListTableName": "Domaine",
|
"domainAllowListTableName": "Domaine",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Règles de Pare-feu Microsoft Defender d’application autorisées du magasin local (réseaux de domaine)",
|
"domainAuthorizedAppRulesSummaryLabel": "Règles de pare-feu Windows des applications autorisées à partir du magasin local (réseaux de domaines)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Pare-feu Microsoft Defender (réseaux de domaine)",
|
"domainFirewallEnabledSummaryLabel": "Pare-feu Windows (réseaux de domaines)",
|
||||||
"domainGlobalRulesSummaryLabel": "Règles de Pare-feu Microsoft Defender de port globales du magasin local (réseaux de domaine)",
|
"domainGlobalRulesSummaryLabel": "Règles globales du pare-feu Windows de port à partir du magasin local (réseaux de domaines)",
|
||||||
"domainIPsecRulesSummaryLabel": "Règles IPsec du magasin local (réseaux de domaine)",
|
"domainIPsecRulesSummaryLabel": "Règles IPsec du magasin local (réseaux de domaine)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "Exemption de paquets sécurisés IPsec avec mode furtif (réseaux de domaine)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "Exemption de paquets sécurisés IPsec avec mode furtif (réseaux de domaine)",
|
||||||
"domainInboundConnectionsSummaryLabel": "Action par défaut pour les connexions entrantes (réseaux de domaine)",
|
"domainInboundConnectionsSummaryLabel": "Action par défaut pour les connexions entrantes (réseaux de domaine)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Notifications entrantes (réseaux de domaine)",
|
"domainInboundNotificationsSummaryLabel": "Notifications entrantes (réseaux de domaine)",
|
||||||
"domainLocalStoreSummaryLabel": "Règles de pare-feu Microsoft Defender du magasin local (réseaux de domaine)",
|
"domainLocalStoreSummaryLabel": "Règles du pare-feu Windows à partir du magasin local (réseaux de domaines)",
|
||||||
"domainNameSourceOption": "Source du nom de domaine d'utilisateur",
|
"domainNameSourceOption": "Source du nom de domaine d'utilisateur",
|
||||||
"domainNetworkName": "Réseau (espace de travail) avec domaine",
|
"domainNetworkName": "Réseau (espace de travail) avec domaine",
|
||||||
"domainOutboundConnectionsSummaryLabel": "Action par défaut pour les connexions sortantes (réseaux de domaine)",
|
"domainOutboundConnectionsSummaryLabel": "Action par défaut pour les connexions sortantes (réseaux de domaine)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Authentification unique (SSO) avec certificat de remplacement",
|
"enableSingleSignOnName": "Authentification unique (SSO) avec certificat de remplacement",
|
||||||
"enableUsePrivateStoreOnly": "Utiliser uniquement un magasin privé",
|
"enableUsePrivateStoreOnly": "Utiliser uniquement un magasin privé",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Autorise uniquement le téléchargement des applications à partir d'un magasin privé et non d'un magasin public.",
|
"enableUsePrivateStoreOnlyDescription": "Autorise uniquement le téléchargement des applications à partir d'un magasin privé et non d'un magasin public.",
|
||||||
"enableWindowsDefenderFirewallName": "Pare-feu Microsoft Defender",
|
"enableWindowsDefenderFirewallName": "Pare-feu Windows",
|
||||||
"enableWithUEFILock": "Activer avec le verrouillage UEFI",
|
"enableWithUEFILock": "Activer avec le verrouillage UEFI",
|
||||||
"enableWithoutUEFILock": "Activer sans verrouillage UEFI",
|
"enableWithoutUEFILock": "Activer sans verrouillage UEFI",
|
||||||
"enabledForAzureAdAndHybridOption": "Rotation des clés activée pour les appareils joints à Microsoft Entra que pour les appareils joints hybrides",
|
"enabledForAzureAdAndHybridOption": "Rotation des clés activée pour les appareils joints à Microsoft Entra que pour les appareils joints hybrides",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Bloquez les connexions entrantes pour les applications suivantes.",
|
"firewallAppsBlockedHeader": "Bloquez les connexions entrantes pour les applications suivantes.",
|
||||||
"firewallAppsBlockedPageDescription": "Sélectionnez les applications qui doivent bloquer les connexions entrantes.",
|
"firewallAppsBlockedPageDescription": "Sélectionnez les applications qui doivent bloquer les connexions entrantes.",
|
||||||
"firewallAppsBlockedPageName": "Applications bloquées",
|
"firewallAppsBlockedPageName": "Applications bloquées",
|
||||||
"firewallCreateRules": "Créez des règles de pare-feu Microsoft Defender. Un profil Endpoint Protection peut contenir jusqu'à 150 règles.",
|
"firewallCreateRules": "Créez des règles de pare-feu Windows. Un profil Endpoint Protection peut contenir jusqu'à 150 règles.",
|
||||||
"firewallRequiredDescription": "Exiger l'activation du pare-feu",
|
"firewallRequiredDescription": "Exiger l'activation du pare-feu",
|
||||||
"firewallRequiredName": "Pare-feu",
|
"firewallRequiredName": "Pare-feu",
|
||||||
"firewallRuleAction": "Action",
|
"firewallRuleAction": "Action",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Canal de disponibilité générale",
|
"generalAvailabilityChannel": "Canal de disponibilité générale",
|
||||||
"generalNetworkSettingsHeader": "Général",
|
"generalNetworkSettingsHeader": "Général",
|
||||||
"genericLocalUsersOrGroupsName": "Utilisateurs ou groupes locaux génériques",
|
"genericLocalUsersOrGroupsName": "Utilisateurs ou groupes locaux génériques",
|
||||||
"globalConfigurationsDescription": "Configurez les paramètres de pare-feu Microsoft Defender applicables à tous les types de réseau.",
|
"globalConfigurationsDescription": "Configurez les paramètres du Pare-feu Windows applicables à tous les types de réseaux.",
|
||||||
"globalConfigurationsName": "Paramètres globaux",
|
"globalConfigurationsName": "Paramètres globaux",
|
||||||
"globalRulesDescription": "Applique des règles de pare-feu de port globales dans le magasin local à reconnaître et à appliquer.",
|
"globalRulesDescription": "Applique des règles de pare-feu de port globales dans le magasin local à reconnaître et à appliquer.",
|
||||||
"globalRulesName": "Règles de pare-feu Microsoft Defender de port globales du magasin local",
|
"globalRulesName": "Règles de pare-feu Windows du port global à partir du magasin local",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Adresses e-mail du compte Google",
|
"googleAccountEmailAddresses": "Adresses e-mail du compte Google",
|
||||||
"googleAccountEmailAddressesDescription": "Liste d'adresses e-mail séparées par des points-virgules",
|
"googleAccountEmailAddressesDescription": "Liste d'adresses e-mail séparées par des points-virgules",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Demander les informations d'identification sur le Bureau sécurisé",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Demander les informations d'identification sur le Bureau sécurisé",
|
||||||
"localServerCachingHeader": "Mise en cache du serveur local",
|
"localServerCachingHeader": "Mise en cache du serveur local",
|
||||||
"localStoreDescription": "Applique les règles de pare-feu globales du magasin local à reconnaître et à appliquer.",
|
"localStoreDescription": "Applique les règles de pare-feu globales du magasin local à reconnaître et à appliquer.",
|
||||||
"localStoreName": "Règles de pare-feu Microsoft Defender du magasin local",
|
"localStoreName": "Règles de Pare-feu Windows à partir du magasin local",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Indiquez si vous souhaitez afficher un paramètre configurable par l'utilisateur permettant de contrôler le délai d'expiration de l'écran sur l'écran de verrouillage des appareils Windows 10 Mobile. Si cette stratégie a pour valeur Autoriser, la valeur définie par « Délai d'expiration de l'écran » est ignorée.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Indiquez si vous souhaitez afficher un paramètre configurable par l'utilisateur permettant de contrôler le délai d'expiration de l'écran sur l'écran de verrouillage des appareils Windows 10 Mobile. Si cette stratégie a pour valeur Autoriser, la valeur définie par « Délai d'expiration de l'écran » est ignorée.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Délai d'expiration de l'écran configurable par l'utilisateur (mobile uniquement)",
|
"lockScreenAllowTimeoutConfigurationName": "Délai d'expiration de l'écran configurable par l'utilisateur (mobile uniquement)",
|
||||||
"lockScreenBackgroundImageURLDescription": "URL de l'image d'arrière-plan de l'écran d'accueil personnalisé. Il doit s'agir d'un fichier .png avec un point de terminaison https://",
|
"lockScreenBackgroundImageURLDescription": "URL de l'image d'arrière-plan de l'écran d'accueil personnalisé. Il doit s'agir d'un fichier .png avec un point de terminaison https://",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "L’unité de transmission maximale (MTU) doit être comprise entre 1280 et 1400 octets",
|
"mTUSizeInBytesBounds": "L’unité de transmission maximale (MTU) doit être comprise entre 1280 et 1400 octets",
|
||||||
"mTUSizeInBytesName": "Unité de transmission maximale",
|
"mTUSizeInBytesName": "Unité de transmission maximale",
|
||||||
"mTUSizeInBytesToolTip": "Paquet de données le plus volumineux, en octets, qui peut être transmis sur le réseau. Lorsque cette option n’est pas configurée, la taille par défaut d’Apple est de 1280 octets. S’applique à iOS 14 et versions ultérieures.",
|
"mTUSizeInBytesToolTip": "Paquet de données le plus volumineux, en octets, qui peut être transmis sur le réseau. Lorsque cette option n’est pas configurée, la taille par défaut d’Apple est de 1280 octets. S’applique à iOS 14 et versions ultérieures.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Utiliser un MAC aléatoire",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Utiliser l’appareil par défaut",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Utiliser un MAC aléatoire uniquement si nécessaire, par exemple pour la prise en charge de NAC. Les utilisateurs peuvent modifier ce paramètre. S’applique à Android 13 et versions ultérieures.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Utiliser l’appareil MAC",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "Randomisation des adresses MAC",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store et développeurs identifiés",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store et développeurs identifiés",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Bloque AirPlay, partage d’écran sur d'autres appareils, et une fonctionnalité d’application Classroom qu'utilisent les enseignants pour afficher les écrans de leurs élèves. Ce paramètre n’est pas disponible si vous avez bloqué les captures d’écran.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Bloque AirPlay, partage d’écran sur d'autres appareils, et une fonctionnalité d’application Classroom qu'utilisent les enseignants pour afficher les écrans de leurs élèves. Ce paramètre n’est pas disponible si vous avez bloqué les captures d’écran.",
|
||||||
@@ -4958,7 +4970,7 @@
|
|||||||
"macOSSoftwareUpdatePolicyDefinedSchedulePrevent": "Mettre à jour en dehors de l'intervalle planifié",
|
"macOSSoftwareUpdatePolicyDefinedSchedulePrevent": "Mettre à jour en dehors de l'intervalle planifié",
|
||||||
"macOSSoftwareUpdatePolicyScheduleSettingsName": "Paramètres de planification de la stratégie de mise à jour",
|
"macOSSoftwareUpdatePolicyScheduleSettingsName": "Paramètres de planification de la stratégie de mise à jour",
|
||||||
"macOSSoftwareUpdatePolicyScheduleTypeDescription": "Moment où les mises à jour sont disponibles pour l'installation. Les mises à jour effectuées pendant ou en dehors des intervalles planifiés nécessitent une entrée supplémentaire.",
|
"macOSSoftwareUpdatePolicyScheduleTypeDescription": "Moment où les mises à jour sont disponibles pour l'installation. Les mises à jour effectuées pendant ou en dehors des intervalles planifiés nécessitent une entrée supplémentaire.",
|
||||||
"macOSSoftwareUpdatePolicyScheduleTypeName": "Type de calendrier",
|
"macOSSoftwareUpdatePolicyScheduleTypeName": "Type de planification",
|
||||||
"macOSSoftwareUpdatePolicySectionDescription": "Créez un profil pour forcer les appareils affectés à installer automatiquement les dernières mises à jour macOS. Ces paramètres déterminent comment et quand les mises à jour logicielles sont déployées. Ce profil n’empêche pas les utilisateurs de mettre à jour le système d’exploitation manuellement. Les mises à jour ne s’appliquent qu’aux appareils supervisés.",
|
"macOSSoftwareUpdatePolicySectionDescription": "Créez un profil pour forcer les appareils affectés à installer automatiquement les dernières mises à jour macOS. Ces paramètres déterminent comment et quand les mises à jour logicielles sont déployées. Ce profil n’empêche pas les utilisateurs de mettre à jour le système d’exploitation manuellement. Les mises à jour ne s’appliquent qu’aux appareils supervisés.",
|
||||||
"macOSSoftwareUpdatePolicySectionDescriptionLearnMoreText": "En savoir plus",
|
"macOSSoftwareUpdatePolicySectionDescriptionLearnMoreText": "En savoir plus",
|
||||||
"macOSSoftwareUpdatePolicySupervisedLearnMoreText": "En savoir plus",
|
"macOSSoftwareUpdatePolicySupervisedLearnMoreText": "En savoir plus",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Entrez un nombre (4-16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Entrez un nombre (4-16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Entrez un nombre (6-16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Entrez un nombre (6-16)",
|
||||||
"minimumPasswordLengthName": "Longueur minimale du mot de passe",
|
"minimumPasswordLengthName": "Longueur minimale du mot de passe",
|
||||||
|
"minimumPasswordLengthTooltipText": "Entrer un nombre",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Les mises à jour manquantes s'installent automatiquement",
|
"minimumUpdateAutoInstallClassificationDescription": "Les mises à jour manquantes s'installent automatiquement",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Installer la classification de mises à jour spécifiée",
|
"minimumUpdateAutoInstallClassificationName": "Installer la classification de mises à jour spécifiée",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Utiliser un serveur proxy manuel",
|
"networkProxyUseManualServerName": "Utiliser un serveur proxy manuel",
|
||||||
"networkProxyUseScriptUrlName": "Utiliser un script de proxy",
|
"networkProxyUseScriptUrlName": "Utiliser un script de proxy",
|
||||||
"networkSettingsName": "Paramètres réseau",
|
"networkSettingsName": "Paramètres réseau",
|
||||||
"networkSettingsSubtitle": "Configurez les paramètres de pare-feu Microsoft Defender applicables à des types de réseau spécifiques.",
|
"networkSettingsSubtitle": "Configurez les paramètres du Pare-feu Windows applicables à des types de réseau spécifiques.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Ajoutez les applications iOS gérées qui ne sont pas autorisées à utiliser des données mobiles.",
|
"networkUsageRulesBlockCellularHeaderName": "Ajoutez les applications iOS gérées qui ne sont pas autorisées à utiliser des données mobiles.",
|
||||||
"networkUsageRulesBlockCellularName": "Bloquer l'utilisation des données mobiles",
|
"networkUsageRulesBlockCellularName": "Bloquer l'utilisation des données mobiles",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Ajoutez les applications iOS gérées qui ne sont pas autorisées à utiliser des données mobiles en cas d'itinérance.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Ajoutez les applications iOS gérées qui ne sont pas autorisées à utiliser des données mobiles en cas d'itinérance.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "Applications et processus",
|
"privacyPreferencesTableName": "Applications et processus",
|
||||||
"privacyPublishUserActivitiesDescription": "Bloquez les expériences partagées/la découverte des ressources récemment utilisées dans le sélecteur de tâches etc.",
|
"privacyPublishUserActivitiesDescription": "Bloquez les expériences partagées/la découverte des ressources récemment utilisées dans le sélecteur de tâches etc.",
|
||||||
"privacyPublishUserActivitiesName": "Publier les activités de l'utilisateur",
|
"privacyPublishUserActivitiesName": "Publier les activités de l'utilisateur",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Règles de pare-feu Microsoft Defender d’application autorisées du magasin local (réseaux privés)",
|
"privateAuthorizedAppRulesSummaryLabel": "Règles de pare-feu Windows des applications autorisées à partir du magasin local (réseaux privés)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Pare-feu Microsoft Defender (réseaux privés)",
|
"privateFirewallEnabledSummaryLabel": "Pare-feu Windows (réseaux privés)",
|
||||||
"privateGlobalRulesSummaryLabel": "Règles de pare-feu Microsoft Defender de port globales du magasin local (réseaux privés)",
|
"privateGlobalRulesSummaryLabel": "Règles globales du pare-feu Windows de port à partir du magasin local (réseaux privés)",
|
||||||
"privateIPsecRulesSummaryLabel": "Règles IPsec du magasin local (réseaux privés)",
|
"privateIPsecRulesSummaryLabel": "Règles IPsec du magasin local (réseaux privés)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "Exemption de paquets sécurisés IPsec avec mode furtif (réseaux privés)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "Exemption de paquets sécurisés IPsec avec mode furtif (réseaux privés)",
|
||||||
"privateInboundConnectionsSummaryLabel": "Action par défaut pour les connexions entrantes (réseaux privés)",
|
"privateInboundConnectionsSummaryLabel": "Action par défaut pour les connexions entrantes (réseaux privés)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Notifications entrantes (réseaux privés)",
|
"privateInboundNotificationsSummaryLabel": "Notifications entrantes (réseaux privés)",
|
||||||
"privateLocalStoreSummaryLabel": "Règles de pare-feu Microsoft Defender du magasin local (réseaux privés)",
|
"privateLocalStoreSummaryLabel": "Règles de pare-feu Windows à partir du magasin local (réseaux privés)",
|
||||||
"privateNetworkName": "Réseau (découvrable) privé",
|
"privateNetworkName": "Réseau (découvrable) privé",
|
||||||
"privateOutboundConnectionsSummaryLabel": "Action par défaut pour les connexions sortantes (réseaux privés)",
|
"privateOutboundConnectionsSummaryLabel": "Action par défaut pour les connexions sortantes (réseaux privés)",
|
||||||
"privateShieldedSummaryLabel": "Protection maximale (réseaux privés)",
|
"privateShieldedSummaryLabel": "Protection maximale (réseaux privés)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "URL du serveur proxy",
|
"proxyServerURLName": "URL du serveur proxy",
|
||||||
"proxyServersAutoDetectionName": "Détection automatique d'autres serveurs proxy d'entreprise",
|
"proxyServersAutoDetectionName": "Détection automatique d'autres serveurs proxy d'entreprise",
|
||||||
"proxyUrlExample": "par ex., itgproxy.contoso.com",
|
"proxyUrlExample": "par ex., itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Règles de Pare-feu Microsoft Defender d’application autorisées du magasin local (réseaux publics)",
|
"publicAuthorizedAppRulesSummaryLabel": "Règles de pare-feu Windows des applications autorisées à partir du magasin local (réseaux publics)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Pare-feu Microsoft Defender (réseaux publics)",
|
"publicFirewallEnabledSummaryLabel": "Pare-feu Windows (réseaux publics)",
|
||||||
"publicGlobalRulesSummaryLabel": "Règles de Pare-feu Microsoft Defender de port globales du magasin local (réseaux publics)",
|
"publicGlobalRulesSummaryLabel": "Règles globales du pare-feu Windows de port à partir du magasin local (réseaux publics)",
|
||||||
"publicIPsecRulesSummaryLabel": "Règles IPsec du magasin local (réseaux publics)",
|
"publicIPsecRulesSummaryLabel": "Règles IPsec du magasin local (réseaux publics)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "Exemption de paquets sécurisés IPsec avec mode furtif (réseaux publics)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "Exemption de paquets sécurisés IPsec avec mode furtif (réseaux publics)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Action par défaut pour les connexions entrantes (réseaux publics)",
|
"publicInboundConnectionsSummaryLabel": "Action par défaut pour les connexions entrantes (réseaux publics)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Notifications entrantes (réseaux publics)",
|
"publicInboundNotificationsSummaryLabel": "Notifications entrantes (réseaux publics)",
|
||||||
"publicLocalStoreSummaryLabel": "Règles de Pare-feu Microsoft Defender du magasin local (réseaux publics)",
|
"publicLocalStoreSummaryLabel": "Règles de pare-feu Windows à partir du magasin local (réseaux publics)",
|
||||||
"publicNetworkName": "Réseau (non découvrable) public",
|
"publicNetworkName": "Réseau (non découvrable) public",
|
||||||
"publicOutboundConnectionsSummaryLabel": "Action par défaut pour les connexions sortantes (réseaux publics)",
|
"publicOutboundConnectionsSummaryLabel": "Action par défaut pour les connexions sortantes (réseaux publics)",
|
||||||
"publicPlayStoreEnabledDescription": "Les utilisateurs peuvent accéder à toutes les applications, sauf celles dont vous avez demandé la désinstallation dans Applications clientes. Si vous choisissez « Non configuré » pour ce paramètre, les utilisateurs peuvent accéder uniquement aux applications listées comme disponibles ou obligatoires dans Applications clientes.",
|
"publicPlayStoreEnabledDescription": "Les utilisateurs peuvent accéder à toutes les applications, sauf celles dont vous avez demandé la désinstallation dans Applications clientes. Si vous choisissez « Non configuré » pour ce paramètre, les utilisateurs peuvent accéder uniquement aux applications listées comme disponibles ou obligatoires dans Applications clientes.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Inscrire auprès du fournisseur de stockage de clés (KSP) du logiciel",
|
"sCEPPolicyEnrollToSoftwareKSP": "Inscrire auprès du fournisseur de stockage de clés (KSP) du logiciel",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Inscrire auprès du fournisseur de stockage de clés (KSP) du module de plateforme sécurisée (TPM), sinon mettre en échec",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Inscrire auprès du fournisseur de stockage de clés (KSP) du module de plateforme sécurisée (TPM), sinon mettre en échec",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Inscrire auprès du fournisseur de stockage de clés (KSP) du module de plateforme sécurisée (TPM) s'il est présent ; sinon, inscrire auprès du fournisseur de stockage de clés du logiciel",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Inscrire auprès du fournisseur de stockage de clés (KSP) du module de plateforme sécurisée (TPM) s'il est présent ; sinon, inscrire auprès du fournisseur de stockage de clés du logiciel",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "AVERTISSEMENT : ni l’utilisation améliorée de la clé toutes fonctions (OID 2.5.29.37.0) ni l’utilisation améliorée de la clé toute stratégie d’application (OID 1.3.6.1.4.1.311.10.12.1) ne peuvent être mises en œuvre avec une autorité de certification créée dans le PKI cloud Microsoft.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "Dans la plupart des cas, le certificat nécessite au moins l'authentification du client pour que l'utilisateur ou l'appareil puisse s'authentifier auprès d'un serveur. Toutefois, vous pouvez spécifier des utilisations supplémentaires pour affiner l'objectif de la clé.",
|
"sCEPPolicyExtendedKeyUsageDescription": "Dans la plupart des cas, le certificat nécessite au moins l'authentification du client pour que l'utilisateur ou l'appareil puisse s'authentifier auprès d'un serveur. Toutefois, vous pouvez spécifier des utilisations supplémentaires pour affiner l'objectif de la clé.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Utilisation améliorée de la clé",
|
"sCEPPolicyExtendedKeyUsageName": "Utilisation améliorée de la clé",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Utilisez un type d'algorithme de hachage avec le certificat. Veillez à sélectionner le niveau de sécurité le plus élevé pris en charge par les appareils lors de la connexion.",
|
"sCEPPolicyHashAlgorithmDescription": "Utilisez un type d'algorithme de hachage avec le certificat. Veillez à sélectionner le niveau de sécurité le plus élevé pris en charge par les appareils lors de la connexion.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Entrez un nombre de jours (1-255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Entrez un nombre de jours (1-255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Entrer un nombre de jours (1-365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Entrer un nombre de jours (1-365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Expiration du mot de passe (jours)",
|
"workProfilePasswordExpirationInDaysName": "Expiration du mot de passe (jours)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Entrer un nombre de jours",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Mot de passe du profil professionnel : longueur minimale du mot de passe",
|
"workProfilePasswordMinimumLengthReportingName": "Mot de passe du profil professionnel : longueur minimale du mot de passe",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Mot de passe du profil professionnel : nombre de caractères obligatoires",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Mot de passe du profil professionnel : nombre de caractères obligatoires",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Mot de passe du profil professionnel : nombre de caractères minuscules obligatoires",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Mot de passe du profil professionnel : nombre de caractères minuscules obligatoires",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "N'importe quelle application",
|
"anyAppOptionText": "N'importe quelle application",
|
||||||
"anyDestinationAnySourceOptionText": "N’importe quelle destination et toute source",
|
"anyDestinationAnySourceOptionText": "N’importe quelle destination et toute source",
|
||||||
"anyDialerAppOptionText": "Toute application de numérotation",
|
"anyDialerAppOptionText": "Toute application de numérotation",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "N’importe quelle application de messagerie",
|
||||||
"anyPolicyManagedDialerAppOptionText": "Toute application de numérotation gérée par une stratégie",
|
"anyPolicyManagedDialerAppOptionText": "Toute application de numérotation gérée par une stratégie",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "Toute application de messagerie gérée par une stratégie",
|
||||||
"appAdded": "Application ajoutée",
|
"appAdded": "Application ajoutée",
|
||||||
"appBasedConditionalAccess": "Accès conditionnel en fonction de l'application",
|
"appBasedConditionalAccess": "Accès conditionnel en fonction de l'application",
|
||||||
"appColumnLabel": "Application",
|
"appColumnLabel": "Application",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "ID de l'appareil MDM",
|
"mdmDeviceId": "ID de l'appareil MDM",
|
||||||
"mdmWipInvalidVersionSettings": "Une ou plusieurs applications ont des définitions de version minimale/maximale non valides.<br /> <br />Les stratégies Protection des informations Windows avec inscription permettent de spécifier une seule version (minimale ou maximale), sauf si les deux versions sont définies comme équivalentes. Si la version minimale est uniquement indiquée, la règle exige une version supérieure ou égale à la version minimale. De même, si la version maximale est uniquement indiquée, la règle exige une version inférieure ou égale à la version maximale.",
|
"mdmWipInvalidVersionSettings": "Une ou plusieurs applications ont des définitions de version minimale/maximale non valides.<br /> <br />Les stratégies Protection des informations Windows avec inscription permettent de spécifier une seule version (minimale ou maximale), sauf si les deux versions sont définies comme équivalentes. Si la version minimale est uniquement indiquée, la règle exige une version supérieure ou égale à la version minimale. De même, si la version maximale est uniquement indiquée, la règle exige une version inférieure ou égale à la version maximale.",
|
||||||
"mdmWipReport": "Rapport de la Protection des informations Windows MDM",
|
"mdmWipReport": "Rapport de la Protection des informations Windows MDM",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Nom de l’application de messagerie (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "ID du package de l’application de messagerie (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "Modèle d’URL de l’application de messagerie (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender pour point de terminaison",
|
"microsoftDefenderForEndpoint": "Microsoft Defender pour point de terminaison",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "Version min. de l'application",
|
"minAppVersion": "Version min. de l'application",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Catalogue des paramètres",
|
"settingsCatalog": "Catalogue des paramètres",
|
||||||
"settingsSelectorLabel": "Paramètres",
|
"settingsSelectorLabel": "Paramètres",
|
||||||
"silent": "Automatisé",
|
"silent": "Automatisé",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "Une application de messagerie spécifique",
|
||||||
"specificUserIsLicensedIntune": "{0} a une licence pour Microsoft Intune.",
|
"specificUserIsLicensedIntune": "{0} a une licence pour Microsoft Intune.",
|
||||||
"state": "État",
|
"state": "État",
|
||||||
"status": "État",
|
"status": "État",
|
||||||
@@ -8308,7 +8323,7 @@
|
|||||||
"description": "Microsoft Edge paramètres SmartScreen recommandés par l’application : Windows 10 dans le modèle de configuration cloud. https://aka.ms/CloudConfigGuide"
|
"description": "Microsoft Edge paramètres SmartScreen recommandés par l’application : Windows 10 dans le modèle de configuration cloud. https://aka.ms/CloudConfigGuide"
|
||||||
},
|
},
|
||||||
"EndpointDetectionandResponse": {
|
"EndpointDetectionandResponse": {
|
||||||
"mDE": "Détection de point de terminaison et réponse"
|
"mDE": "Détection et réponse des points de terminaison"
|
||||||
},
|
},
|
||||||
"EndpointSecurityTemplate": {
|
"EndpointSecurityTemplate": {
|
||||||
"aSRAppBrowserSecurity": "Isolement des applications et du navigateur",
|
"aSRAppBrowserSecurity": "Isolement des applications et du navigateur",
|
||||||
@@ -8323,12 +8338,12 @@
|
|||||||
"default": "Sécurité du point de terminaison",
|
"default": "Sécurité du point de terminaison",
|
||||||
"defenderTest": "Démonstration Microsoft Defender pour point de terminaison",
|
"defenderTest": "Démonstration Microsoft Defender pour point de terminaison",
|
||||||
"diskEncryption": "BitLocker",
|
"diskEncryption": "BitLocker",
|
||||||
"eDR": "Détection de point de terminaison et réponse",
|
"eDR": "Détection et réponse des points de terminaison",
|
||||||
"edgeSecurityBaseline": "Base de référence Microsoft Edge",
|
"edgeSecurityBaseline": "Base de référence Microsoft Edge",
|
||||||
"edgeSecurityBaselinePreview": "Préversion : 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",
|
"editionUpgradeConfiguration": "Mise à niveau de l'édition et changement de mode",
|
||||||
"firewall": "Pare-feu Microsoft Defender",
|
"firewall": "Pare-feu Windows",
|
||||||
"firewallRules": "Règles de pare-feu Microsoft Defender",
|
"firewallRules": "Règles de pare-feu Windows",
|
||||||
"identityProtection": "Protection du compte",
|
"identityProtection": "Protection du compte",
|
||||||
"identityProtectionPreview": "Protection du compte (préversion)",
|
"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",
|
"mDMSecurityBaseline1810": "Base de référence de sécurité MDM pour Windows 10 et versions ultérieures pour octobre 2018",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Préversion : 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é",
|
"securityBaselines": "Bases de référence de sécurité",
|
||||||
"test": "Modèle de test",
|
"test": "Modèle de test",
|
||||||
"testFirewallRulesSecurityTemplateName": "Règles de pare-feu Microsoft Defender (test)",
|
"testFirewallRulesSecurityTemplateName": "Règles de pare-feu Windows (test)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Protection du compte (test)",
|
"testIdentityProtectionSecurityTemplateName": "Protection du compte (test)",
|
||||||
"windowsSecurityExperience": "Expérience de sécurité Windows"
|
"windowsSecurityExperience": "Expérience de sécurité Windows"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Pare-feu Microsoft Defender"
|
"mDE": "Pare-feu Windows"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Règles de pare-feu Microsoft Defender"
|
"mDE": "Règles de pare-feu Windows"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "Paramètres de déplacement de dossiers connus de OneDrive : Modèle de configuration de Windows 10 dans le nuage. https://aka.ms/CloudConfigGuide"
|
"description": "Paramètres de déplacement de dossiers connus de OneDrive : Modèle de configuration de Windows 10 dans le nuage. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Configuration de la gestion des périphériques mobiles",
|
"expeditedCheckin": "Configuration de la gestion des périphériques mobiles",
|
||||||
"exploitProtection": "Protection Exploit",
|
"exploitProtection": "Protection Exploit",
|
||||||
"extensions": "Extensions",
|
"extensions": "Extensions",
|
||||||
"hardwareConfigurations": "Configurations du BIOS",
|
"hardwareConfigurations": "Configurations du BIOS et d’autres paramètres",
|
||||||
"identityProtection": "Identity Protection",
|
"identityProtection": "Identity Protection",
|
||||||
"iosCompliancePolicy": "Stratégie de conformité iOS",
|
"iosCompliancePolicy": "Stratégie de conformité iOS",
|
||||||
"kiosk": "Kiosque",
|
"kiosk": "Kiosque",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
|
"microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
|
||||||
"microsoftDefenderAntivirusexclusions": "Exclusions de Microsoft Defender Antivirus",
|
"microsoftDefenderAntivirusexclusions": "Exclusions de Microsoft Defender Antivirus",
|
||||||
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender pour point de terminaison (appareils de bureau exécutant Windows 10 ou versions ultérieures)",
|
"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",
|
"microsoftDefenderFirewallRules": "Règles de pare-feu Windows",
|
||||||
"microsoftEdgeBaseline": "Base de référence de sécurité pour Microsoft Edge",
|
"microsoftEdgeBaseline": "Base de référence de sécurité pour Microsoft Edge",
|
||||||
"mxProfileZebraOnly": "Profil MX (Zebra uniquement)",
|
"mxProfileZebraOnly": "Profil MX (Zebra uniquement)",
|
||||||
"networkBoundary": "Limite réseau",
|
"networkBoundary": "Limite réseau",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Certificat approuvé - TEST",
|
"windows10XTrustedCertificate": "Certificat approuvé - TEST",
|
||||||
"windows10XVPN": "VPN - TEST",
|
"windows10XVPN": "VPN - TEST",
|
||||||
"windows10XWifi": "WIFI - TEST",
|
"windows10XWifi": "WIFI - TEST",
|
||||||
|
"windows11SecurityBaseline": "Base de référence de sécurité pour Windows 10 et versions ultérieures",
|
||||||
"windows8CompliancePolicy": "Stratégie de conformité Windows 8",
|
"windows8CompliancePolicy": "Stratégie de conformité Windows 8",
|
||||||
"windowsHealthMonitoring": "Monitoring de l’intégrité Windows",
|
"windowsHealthMonitoring": "Monitoring de l’intégrité Windows",
|
||||||
"windowsInformationProtection": "Protection des informations Windows",
|
"windowsInformationProtection": "Protection des informations Windows",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Configurez les appareils pour l’approvisionnement initial et affectez-les aux utilisateurs.",
|
"description": "Configurez les appareils pour l’approvisionnement initial.",
|
||||||
"title": "Préparation de l'appareil"
|
"title": "Préparation de l'appareil"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Approuver et déployer manuellement les mises à jour de pilotes"
|
"manual": "Approuver et déployer manuellement les mises à jour de pilotes"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Actions en bloc"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} jours"
|
"value": "{0} jours"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Sélectionnez une action ci-dessous.",
|
||||||
"label": "Driver action",
|
"label": "Action du pilote",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Sélectionner une action"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Pilotes inclus"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Sélectionnez les pilotes à inclure dans votre action en bloc"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Sélectionner les pilotes à inclure"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "Au plus une centaine de pilotes peuvent être sélectionnés"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "Au moins un pilote doit être sélectionné"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Pilotes sélectionnés"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Rendre disponible dans Windows Update",
|
||||||
"bladeTitle": "Mises à jour du pilote Windows 10 et versions ultérieures (préversion)",
|
"bladeTitle": "Mises à jour du pilote Windows 10 et versions ultérieures (préversion)",
|
||||||
"lastSync": "Dernière synchronisation :",
|
"lastSync": "Dernière synchronisation :",
|
||||||
"lastSyncDefaultText": "Collection d’inventaire initiale en attente",
|
"lastSyncDefaultText": "Collection d’inventaire initiale en attente",
|
||||||
@@ -9684,7 +9700,7 @@
|
|||||||
"conditionalAccess": "Accès conditionnel",
|
"conditionalAccess": "Accès conditionnel",
|
||||||
"deviceCompliance": "Conformité de l'appareil",
|
"deviceCompliance": "Conformité de l'appareil",
|
||||||
"diskEncryption": "Chiffrement de disque",
|
"diskEncryption": "Chiffrement de disque",
|
||||||
"eDR": "Détection de point de terminaison et réponse",
|
"eDR": "Détection et réponse des points de terminaison",
|
||||||
"ePM": "Gestion des privilèges de point de terminaison",
|
"ePM": "Gestion des privilèges de point de terminaison",
|
||||||
"firewall": "Pare-feu",
|
"firewall": "Pare-feu",
|
||||||
"helpSupport": "Aide et support",
|
"helpSupport": "Aide et support",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Sélectionnez un message de notification dans la partie gauche pour afficher un aperçu du contenu."
|
"placeholder": "Sélectionnez un message de notification dans la partie gauche pour afficher un aperçu du contenu."
|
||||||
},
|
},
|
||||||
"companyContact": "Pied de page de l'e-mail - Inclure les informations de contact",
|
"companyContact": "Afficher les informations de contact",
|
||||||
"companyLogo": "En-tête de l'e-mail - Inclure le logo de l'entreprise",
|
"companyLogo": "Afficher le logo de la société",
|
||||||
"companyName": "Pied de page de l'e-mail - Inclure le nom de l'entreprise",
|
"companyName": "Afficher le nom de la société",
|
||||||
"createEditDescription": "Créez ou modifiez des modèles de messages de notification.",
|
"createEditDescription": "Créez ou modifiez des modèles de messages de notification.",
|
||||||
"createMessage": "Créer un message",
|
"createMessage": "Créer un message",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Afficher les détails de l’appareil",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "Ce paramètre est désactivé par défaut, car la récupération des détails de l'appareil peut retarder la réception des notifications par e-mail.",
|
||||||
"editImpactInfo": "La modification de ce modèle de message de notification affecte toutes les stratégies qui utilisent le modèle.",
|
"editImpactInfo": "La modification de ce modèle de message de notification affecte toutes les stratégies qui utilisent le modèle.",
|
||||||
"editMessage": "Modifier le message",
|
"editMessage": "Modifier le message",
|
||||||
"email": "e-mail",
|
"email": "e-mail",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "Pied de page de l'Email",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "Les paramètres d’en-tête et de pied de page de l’e-mail pour les notifications par e-mail s’appuient sur les paramètres de personnalisation dans le nœud d’administration du client dans Endpoint Manager.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "En-tête de l'Email",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Configurer les paramètres de personnalisation",
|
||||||
"formSubTitle": "Créer ou modifier des e-mails de notification",
|
"formSubTitle": "Créer ou modifier des e-mails de notification",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Paramètres d’en-tête et de pied de page",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Aperçu de l'image",
|
||||||
"infotext": "Sélectionnez un message de notification. Pour créer une notification, accédez à Notification dans la section Gérer de la charge de travail Définir la conformité des appareils.",
|
"infotext": "Sélectionnez un message de notification. Pour créer une notification, accédez à Notification dans la section Gérer de la charge de travail Définir la conformité des appareils.",
|
||||||
"iwLink": "Lien vers le site web du Portail d’entreprise",
|
"iwLink": "Afficher le lien du site web du portail d’entreprise",
|
||||||
"listEmpty": "Aucun modèle de message.",
|
"listEmpty": "Aucun modèle de message.",
|
||||||
"listEmptySelectOnly": "Aucun modèle de message. Pour créer une notification, consultez Notifications dans la section Gérer de la charge de travail Définir la conformité des appareils.",
|
"listEmptySelectOnly": "Aucun modèle de message. Pour créer une notification, consultez Notifications dans la section Gérer de la charge de travail Définir la conformité des appareils.",
|
||||||
"listSubTitle": "Liste des modèles de messages de notification",
|
"listSubTitle": "Liste des modèles de messages de notification",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Modèles de message de notification",
|
"notificationMessageTemplates": "Modèles de message de notification",
|
||||||
"rowValidationError": "Au moins un modèle de message est requis",
|
"rowValidationError": "Au moins un modèle de message est requis",
|
||||||
"selectDescription": "Sélectionnez un message de notification. Pour créer une notification, accédez à Notifications dans la section Gérer de la charge de travail Définir la conformité des appareils.",
|
"selectDescription": "Sélectionnez un message de notification. Pour créer une notification, accédez à Notifications dans la section Gérer de la charge de travail Définir la conformité des appareils.",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Valeur du locataire",
|
||||||
"testEmailLabel": "Envoyer un aperçu de l'e-mail",
|
"testEmailLabel": "Envoyer un aperçu de l'e-mail",
|
||||||
"localeLabel": "Paramètres régionaux",
|
"localeLabel": "Paramètres régionaux",
|
||||||
"isDefaultLocale": "Est par défaut"
|
"isDefaultLocale": "Est par défaut"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "ligne {0} de {1} colonne {2}"
|
"ariaLabel": "ligne {0} de {1} colonne {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Démarrez à partir de zéro et sélectionnez les propriétés souhaitées dans la bibliothèque des propriétés d’inventaire disponibles"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Commencez à partir de zéro et sélectionnez les paramètres de votre choix dans la bibliothèque des paramètres disponibles",
|
"subtitle": "Commencez à partir de zéro et sélectionnez les paramètres de votre choix dans la bibliothèque des paramètres disponibles",
|
||||||
"title": "Catalogue des paramètres"
|
"title": "Catalogue des paramètres"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "Version minimale",
|
"minVersion": "Version minimale",
|
||||||
"nameHint": "Il s'agit de l'attribut principal visible pour identifier le jeu de restrictions.",
|
"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.",
|
"noAssignmentsStatusBar": "Affectez une restriction à au moins un groupe. Cliquez sur Propriétés.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "Vous devez être administrateur pour modifier les restrictions.",
|
||||||
"notFound": "Restriction introuvable.Elle a peut-être déjà été supprimée.",
|
"notFound": "Restriction introuvable.Elle a peut-être déjà été supprimée.",
|
||||||
"personallyOwned": "Appareils personnels",
|
"personallyOwned": "Appareils personnels",
|
||||||
"restriction": "Restriction",
|
"restriction": "Restriction",
|
||||||
@@ -12141,7 +12179,7 @@
|
|||||||
"duringTimeWindows": "Mettre à jour pendant l'intervalle planifié",
|
"duringTimeWindows": "Mettre à jour pendant l'intervalle planifié",
|
||||||
"header": "Par défaut, quand une stratégie de mises à jour est attribuée à un appareil, Intune déploie les dernières mises à jour au check-in de l’appareil. Au lieu de cela, vous pouvez créer une planification hebdomadaire avec des heures de début et de fin personnalisées. Si vous choisissez d’effectuer une mise à jour en dehors de l’intervalle planifié, Intune ne déploie pas les mises à jour avant la fin de l’intervalle planifié.",
|
"header": "Par défaut, quand une stratégie de mises à jour est attribuée à un appareil, Intune déploie les dernières mises à jour au check-in de l’appareil. Au lieu de cela, vous pouvez créer une planification hebdomadaire avec des heures de début et de fin personnalisées. Si vous choisissez d’effectuer une mise à jour en dehors de l’intervalle planifié, Intune ne déploie pas les mises à jour avant la fin de l’intervalle planifié.",
|
||||||
"infoBalloon": "Quand les mises à jour seront effectuées. Une entrée supplémentaire est nécessaire pour planifier les mises à jour pendant ou en dehors des heures planifiées.",
|
"infoBalloon": "Quand les mises à jour seront effectuées. Une entrée supplémentaire est nécessaire pour planifier les mises à jour pendant ou en dehors des heures planifiées.",
|
||||||
"label": "Type de calendrier",
|
"label": "Type de planification",
|
||||||
"outsideActiveHours": "Mise à jour en dehors des heures actives (héritées)",
|
"outsideActiveHours": "Mise à jour en dehors des heures actives (héritées)",
|
||||||
"outsideTimeWindows": "Mettre à jour en dehors de l'intervalle planifié",
|
"outsideTimeWindows": "Mettre à jour en dehors de l'intervalle planifié",
|
||||||
"timeWindow": "Fenêtre de temps",
|
"timeWindow": "Fenêtre de temps",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Stratégie de conformité Windows 8",
|
"complianceWindows8": "Stratégie de conformité Windows 8",
|
||||||
"complianceWindowsPhone": "Stratégie de conformité Windows Phone",
|
"complianceWindowsPhone": "Stratégie de conformité Windows Phone",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Catalogue de propriétés",
|
||||||
"iosCustom": "Personnalisé",
|
"iosCustom": "Personnalisé",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Informations d'identification PIV dérivées",
|
"iosDerivedCredentialAuthenticationConfiguration": "Informations d'identification PIV dérivées",
|
||||||
"iosDeviceFeatures": "Fonctionnalités de l'appareil",
|
"iosDeviceFeatures": "Fonctionnalités de l'appareil",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Appareils Chrome OS (aperçu)"
|
"devices": "Appareils ChromeOS"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Contacts de l’administrateur",
|
"adminContacts": "Contacts de l’administrateur",
|
||||||
"appPackaging": "Empaquetage d’applications",
|
"appPackaging": "Empaquetage d’applications",
|
||||||
"businessGroups": "Groupes professionnels",
|
"autopatchGroups": "Groupes de mise en pause automatique",
|
||||||
"devices": "Appareils",
|
"devices": "Appareils",
|
||||||
"feedback": "Commentaires",
|
"feedback": "Commentaires",
|
||||||
"gettingStarted": "Mise en route",
|
"gettingStarted": "Mise en route",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Personnalisation",
|
"brandingAndCustomization": "Personnalisation",
|
||||||
"cartProfiles": "Profils de panier",
|
"cartProfiles": "Profils de panier",
|
||||||
"certificateConnectors": "Connecteurs de certificat",
|
"certificateConnectors": "Connecteurs de certificat",
|
||||||
"chromeEnterprise": "Chrome Enterprise (préversion)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Appareils attachés au cloud (préversion)",
|
"cloudAttachedDevices": "Appareils attachés au cloud (préversion)",
|
||||||
"cloudPcActions": "Actions de PC cloud (préversion)",
|
"cloudPcActions": "Actions de PC cloud (préversion)",
|
||||||
"cloudPcMaintenanceWindows": "Fenêtres de maintenance cloud PC (préversion)",
|
"cloudPcMaintenanceWindows": "Fenêtres de maintenance cloud PC (préversion)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "État de l'utilisateur",
|
"userExecutionStatus": "État de l'utilisateur",
|
||||||
"wdacSupplementalPolicies": "Stratégies supplémentaires en mode S",
|
"wdacSupplementalPolicies": "Stratégies supplémentaires en mode S",
|
||||||
"win32CatalogUpdateApp": "Mises à jour pour les applications de catalogue Windows (Win32)",
|
"win32CatalogUpdateApp": "Mises à jour pour les applications de catalogue Windows (Win32)",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Mises à jour pour les applications de catalogue Windows (Win32) (préversion)",
|
||||||
"windows10DriverUpdate": "Mises à jour des pilotes pour Windows 10 et versions ultérieures",
|
"windows10DriverUpdate": "Mises à jour des pilotes pour Windows 10 et versions ultérieures",
|
||||||
"windows10QualityUpdate": "Mises à jour qualité pour Windows 10 et versions ultérieures",
|
"windows10QualityUpdate": "Mises à jour qualité pour Windows 10 et versions ultérieures",
|
||||||
"windows10UpdateRings": "Mettre à jour les anneaux pour Windows 10 et versions ultérieures",
|
"windows10UpdateRings": "Boucles de mise à jour pour Windows 10 et versions ultérieures",
|
||||||
"windows10XPolicyFailures": "Échecs de stratégie Windows 10X",
|
"windows10XPolicyFailures": "Échecs de stratégie Windows 10X",
|
||||||
"windows365Connector": "Connecteur Windows 365 Citrix",
|
|
||||||
"windows365PartnerConnector": "Connecteurs partenaires Windows 365",
|
"windows365PartnerConnector": "Connecteurs partenaires Windows 365",
|
||||||
"windowsDiagnosticData": "Données Windows",
|
"windowsDiagnosticData": "Données Windows",
|
||||||
"windowsEnterpriseCertificate": "Certificat d'entreprise Windows",
|
"windowsEnterpriseCertificate": "Certificat d'entreprise Windows",
|
||||||
|
|||||||
+137
-98
@@ -227,7 +227,6 @@
|
|||||||
"co": "korzikai (Franciaország)",
|
"co": "korzikai (Franciaország)",
|
||||||
"cs": "cseh (Cseh Köztársaság)",
|
"cs": "cseh (Cseh Köztársaság)",
|
||||||
"da": "dán (Dánia)",
|
"da": "dán (Dánia)",
|
||||||
"prs": "dari (Afganisztán)",
|
|
||||||
"dv": "divehi (Maldív-szigetek)",
|
"dv": "divehi (Maldív-szigetek)",
|
||||||
"et": "észt (Észtország)",
|
"et": "észt (Észtország)",
|
||||||
"fo": "feröeri (Feröer-szigetek)",
|
"fo": "feröeri (Feröer-szigetek)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender víruskereső",
|
"defender": "Microsoft Defender víruskereső",
|
||||||
"defenderAntivirus": "Microsoft Defender víruskereső",
|
"defenderAntivirus": "Microsoft Defender víruskereső",
|
||||||
"defenderExploitGuard": "Microsoft Defender - biztonsági rés kiaknázása elleni védelem",
|
"defenderExploitGuard": "Microsoft Defender - biztonsági rés kiaknázása elleni védelem",
|
||||||
"defenderFirewall": "Microsoft Defender tűzfal",
|
"defenderFirewall": "Windows tűzfal",
|
||||||
"defenderLocalSecurityOptions": "Helyi eszközbiztonsági beállítások",
|
"defenderLocalSecurityOptions": "Helyi eszközbiztonsági beállítások",
|
||||||
"defenderSecurityCenter": "Microsoft Defender biztonsági központ",
|
"defenderSecurityCenter": "Microsoft Defender biztonsági központ",
|
||||||
"deliveryOptimization": "Kézbesítésoptimalizálás",
|
"deliveryOptimization": "Kézbesítésoptimalizálás",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Letiltva",
|
"disabled": "Letiltva",
|
||||||
"enabled": "Engedélyezve",
|
"enabled": "Engedélyezve",
|
||||||
"infoBalloonContent": "Annak szabályozása, hogy a legújabb Windows 10 funkciófrissítés telepíthető-e a Windows 11-re nem jogosult eszközökre",
|
"infoBalloonContent": "Annak szabályozása, hogy a legújabb Windows 10 funkciófrissítés telepíthető-e a Windows 11-re nem jogosult eszközökre",
|
||||||
"label": "Ha egy eszköz nem tudja futtatni a Windows 11-et, telepítse a legújabb Windows 10 funkciófrissítést",
|
"label": "Ha egy eszköz nem jogosult futtatni a Windows 11-et, telepítse a legújabb Windows 10 funkciófrissítést",
|
||||||
"notApplicable": "Nem alkalmazható",
|
"notApplicable": "Nem alkalmazható",
|
||||||
"summaryLabel": "A Windows 10 telepítése olyan eszközökön, amelyeken nem lehet futtatni Windows 11-et"
|
"summaryLabel": "A Windows 10 telepítése olyan eszközökön, amelyek nem jogosultak a Windows 11 futtatására"
|
||||||
},
|
},
|
||||||
"bladeTitle": "Funkciófrissítés-telepítések",
|
"bladeTitle": "Funkciófrissítés-telepítések",
|
||||||
"deploymentSettingsTitle": "Üzembe helyezési beállítások",
|
"deploymentSettingsTitle": "Üzembe helyezési beállítások",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Válassza ki az alábbi beállítások közül, hogy az alkalmazás milyen alkalmazásoktól fogadhat adatokat:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: Bármely alkalmazásból érkező adatok fogadásának engedélyezése szervezeti dokumentumokban vagy fiókokban",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Adja meg a használandó nyelvet és régiót.",
|
"languageInfo": "Adja meg a használandó nyelvet és régiót.",
|
||||||
"licenseAgreement": "Microsoft szoftverlicenc-szerződés",
|
"licenseAgreement": "Microsoft szoftverlicenc-szerződés",
|
||||||
"licenseAgreementInfo": "Adja meg, hogy a végfelhasználói licencszerződés megjelenjen-e a felhasználóknak.",
|
"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ó)",
|
"plugAndForgetDevice": "Önálló központi telepítés",
|
||||||
"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. ",
|
"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",
|
"privacySettings": "Adatvédelmi beállítások",
|
||||||
"privacySettingsInfo": "Adja meg, hogy az adatvédelmi beállítások megjelenjenek-e a felhasználóknak.",
|
"privacySettingsInfo": "Adja meg, hogy az adatvédelmi beállítások megjelenjenek-e a felhasználóknak.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Csak a kiválasztott blokkoló alkalmazások sikertelensége technikusi fázisban (előzetes verzió)",
|
"allowNonBlockingAppInstallation": "Csak a kiválasztott blokkoló alkalmazások sikertelensége technikusi fázisban",
|
||||||
"apps": "alkalmazások",
|
"apps": "alkalmazások",
|
||||||
"appsListName": "Alkalmazáslista",
|
"appsListName": "Alkalmazáslista",
|
||||||
"blockingApps": "Blokkoló alkalmazások",
|
"blockingApps": "Blokkoló alkalmazások",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Tevékenység",
|
"activity": "Tevékenység",
|
||||||
|
"activityName": "Tevékenységnév",
|
||||||
"actor": "Kezdeményező (szereplő)",
|
"actor": "Kezdeményező (szereplő)",
|
||||||
|
"actorType": "Szereplőtípus",
|
||||||
"app": "Alkalmazás",
|
"app": "Alkalmazás",
|
||||||
"appName": "Alkalmazásnév",
|
"appName": "Alkalmazásnév",
|
||||||
"applicationName": "Alkalmazás neve",
|
"applicationName": "Alkalmazás neve",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD-összekötő",
|
"mtdConnector": "MTD-összekötő",
|
||||||
"name": "Profil neve",
|
"name": "Profil neve",
|
||||||
"oSVersion": "Operációs rendszer verziója",
|
"oSVersion": "Operációs rendszer verziója",
|
||||||
|
"operationType": "Művelettípus",
|
||||||
"os": "Operációs rendszer",
|
"os": "Operációs rendszer",
|
||||||
"packageName": "Csomag neve",
|
"packageName": "Csomag neve",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"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."
|
"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."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Üzenetküldő alkalmazás neve"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "Üzenetkezelő alkalmazás csomagazonosítója"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "Üzenetkezelő alkalmazás URL-sémája"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Céges adatokkal kapcsolatos értesítések",
|
"label": "Céges adatokkal kapcsolatos értesítések",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "Az alkalmazás nem tudja kinyomtatni a védett adatokat, ha le van tiltva."
|
"tooltip": "Az alkalmazás nem tudja kinyomtatni a védett adatokat, ha le van tiltva."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Amikor egy felhasználó egy alkalmazásban kiválaszt egy hiperhivatkozással ellátott üzenetküldő hivatkozást, általában egy üzenetkezelő alkalmazás nyílik meg a telefonszámmal, amely előre kitöltve készen áll a küldésre. 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. További lépésekre lehet szükség ahhoz, hogy a beállítás érvénybe lépjen. Először ellenőrizze, hogy az SMS el lett-e távolítva a Kivételt képező alkalmazások kijelölésére szolgáló listából. Ezt követően gondoskodjon arról, hogy az alkalmazás az Intune SDK újabb (19.0.0+) verzióját használja.",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Üzenetküldési adatok átvitele a következőbe:",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Amikor egy felhasználó egy alkalmazásban kiválaszt egy hiperhivatkozással ellátott üzenetküldő hivatkozást, általában egy üzenetkezelő alkalmazás nyílik meg a telefonszámmal, amely előre kitöltve készen áll a küldésre. 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."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Adatok fogadása más alkalmazásokból",
|
"label": "Adatok fogadása más alkalmazásokból",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "A webes hitelesítőadat-szolgáltató bejelentkezéshez való használatának engedélyezése.",
|
"authenticationWebSignInDescription": "A webes hitelesítőadat-szolgáltató bejelentkezéshez való használatának engedélyezése.",
|
||||||
"authenticationWebSignInName": "Webes bejelentkezés (elavult beállítás)",
|
"authenticationWebSignInName": "Webes bejelentkezés (elavult beállítás)",
|
||||||
"authorizedAppRulesDescription": "A helyi tároló elfogadandó és érvényesítendő tűzfalszabályainak alkalmazása.",
|
"authorizedAppRulesDescription": "A helyi tároló elfogadandó és érvényesítendő tűzfalszabályainak alkalmazása.",
|
||||||
"authorizedAppRulesName": "Engedélyezett alkalmazás Microsoft Defender-tűzfalszabályai a helyi tárolóban",
|
"authorizedAppRulesName": "Engedélyezett alkalmazás Windows-tűzfalszabályai a helyi tárolóban",
|
||||||
"authorizedUsersListHideAdminUsersName": "Számítógép rendszergazdáinak elrejtése",
|
"authorizedUsersListHideAdminUsersName": "Számítógép rendszergazdáinak elrejtése",
|
||||||
"authorizedUsersListHideLocalUsersName": "Helyi felhasználók elrejtése",
|
"authorizedUsersListHideLocalUsersName": "Helyi felhasználók elrejtése",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Mobilfiókok elrejtése",
|
"authorizedUsersListHideMobileAccountsName": "Mobilfiókok elrejtése",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Ezzel a beállítással lehet megadni, hogy a rendszer legfeljebb hány perc felhasználói inaktivitás után zárolja a mobileszköz képernyőjét. A javasolt érték: 15 perc",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Ezzel a beállítással lehet megadni, hogy a rendszer legfeljebb hány perc felhasználói inaktivitás után zárolja a mobileszköz képernyőjét. A javasolt érték: 15 perc",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Ezzel a beállítással megadhatja, hogy ha nem történik felhasználó bevitel, a rendszer mennyi idő után zárolja az eszközt. Javasolt érték: 15 perc.",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Ezzel a beállítással megadhatja, hogy ha nem történik felhasználó bevitel, a rendszer mennyi idő után zárolja az eszközt. Javasolt érték: 15 perc.",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Jelszó kérése legfeljebb ennyi perc inaktivitás után",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Jelszó kérése legfeljebb ennyi perc inaktivitás után",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Ajánlott érték: 15 perc",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Az eszközökön futtatható legújabb operációsrendszer-verzió megadása.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Az eszközökön futtatható legújabb operációsrendszer-verzió megadása.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Mobileszközök maximális operációsrendszer-verziója",
|
"complianceMobileOsVersionRestrictionMaximumName": "Mobileszközök maximális operációsrendszer-verziója",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Az eszközökön futtatható legrégibb operációsrendszer-verzió megadása.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Az eszközökön futtatható legrégibb operációsrendszer-verzió megadása.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "Ezzel a beállítással lehet megadni azon korábban használt jelszavak számát, amelyek újból már nem használhatók fel. A javasolt érték: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "Ezzel a beállítással lehet megadni azon korábban használt jelszavak számát, amelyek újból már nem használhatók fel. A javasolt érték: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Újból nem használható jelszavak száma",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Újból nem használható jelszavak száma",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Ajánlott érték: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Adja meg az eszközön használható legújabb operációsrendszer-build verzióját. Például: 20E252.<br> Ha egy Apple Rapid Security Response-frissítést szeretne beállítani maximális operációsrendszer-buildként, adja meg a kiegészítő build verzióját. Például: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Adja meg az eszközön használható legújabb operációsrendszer-build verzióját. Például: 20E252.<br> Ha egy Apple Rapid Security Response-frissítést szeretne beállítani maximális operációsrendszer-buildként, adja meg a kiegészítő build verzióját. Például: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Operációs rendszer maximális buildszáma",
|
"complianceOsBuildVersionRestrictionMaximumName": "Operációs rendszer maximális buildszáma",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Adja meg az eszközön használható legrégebbi operációsrendszer-build verzióját. Például: 20E252.<br> Ha egy Apple Rapid Security Response-frissítést szeretne beállítani minimális operációsrendszer-buildként, adja meg a kiegészítő build verzióját. Például: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Adja meg az eszközön használható legrégebbi operációsrendszer-build verzióját. Például: 20E252.<br> Ha egy Apple Rapid Security Response-frissítést szeretne beállítani minimális operációsrendszer-buildként, adja meg a kiegészítő build verzióját. Például: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "A Microsoft Defender biztonsági intelligenciája naprakészségének megkövetelése.",
|
"complianceRequireWindowsDefenderSignatureDescription": "A Microsoft Defender biztonsági intelligenciája naprakészségének megkövetelése.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "A Microsoft Defender kártevőirtó biztonsági intelligenciája naprakész",
|
"complianceRequireWindowsDefenderSignatureName": "A Microsoft Defender kártevőirtó biztonsági intelligenciája naprakész",
|
||||||
"complianceRequiredPasswordTypeDescription": "Ezzel a beállítással lehet megadni, hogy a jelszavak állhatnak-e csak számjegyekből, vagy a számokon kívül más karaktereket is tartalmazniuk kell-e. Javaslatok: kötelező jelszótípus: alfanumerikus, karakterkészletek minimális száma: 1",
|
"complianceRequiredPasswordTypeDescription": "Ezzel a beállítással lehet megadni, hogy a jelszavak állhatnak-e csak számjegyekből, vagy a számokon kívül más karaktereket is tartalmazniuk kell-e. Javaslatok: kötelező jelszótípus: alfanumerikus, karakterkészletek minimális száma: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Javaslatok: Kötelező jelszótípus: alfanumerikus, karakterkészletek minimális száma: 1",
|
||||||
"complianceRootedAllowedDescription": "A rootolt eszközök céges hozzáférésének letiltása.",
|
"complianceRootedAllowedDescription": "A rootolt eszközök céges hozzáférésének letiltása.",
|
||||||
"complianceRootedAllowedName": "Rootolt eszközök",
|
"complianceRootedAllowedName": "Rootolt eszközök",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "Ezzel a beállítással lehet megadni, hogy a rendszer megakadályozza-e az USB-hibakeresési funkció használatát az eszközön.",
|
"complianceSecurityDisableUSBDebuggingDescription": "Ezzel a beállítással lehet megadni, hogy a rendszer megakadályozza-e az USB-hibakeresési funkció használatát az eszközön.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Annak a legrégebbi operációsrendszer-verziónak a kiválasztása, amellyel egy eszköz rendelkezhet. Az operációsrendszer-verziót a főverzió.alverzió.build.változat formátumban kell megadni. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Annak a legrégebbi operációsrendszer-verziónak a kiválasztása, amellyel egy eszköz rendelkezhet. Az operációsrendszer-verziót a főverzió.alverzió.build.változat formátumban kell megadni. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Az eszközön használni kívánt jelszótípus kiválasztása.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Az eszközön használni kívánt jelszótípus kiválasztása.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Jelszó típusa",
|
"complianceWindowsRequiredPasswordTypeName": "Jelszó típusa",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Jelszó megkövetelése a munkahelyi profil zárolásának feloldásához",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Munkahelyi profil biztonsága",
|
||||||
"compliantAppsOption": "Megfelelő alkalmazások listája. Meg nem felelés jelentése minden listában nem szereplő telepített alkalmazás esetében",
|
"compliantAppsOption": "Megfelelő alkalmazások listája. Meg nem felelés jelentése minden listában nem szereplő telepített alkalmazás esetében",
|
||||||
"computerNameStaticPrefixDescription": "A számítógépekhez 15 karakter hosszúságú nevet rendel hozzá a rendszer. Adjon meg egy előtagot, a 15 karakter fennmaradó része pedig véletlenszerű lesz.",
|
"computerNameStaticPrefixDescription": "A számítógépekhez 15 karakter hosszúságú nevet rendel hozzá a rendszer. Adjon meg egy előtagot, a 15 karakter fennmaradó része pedig véletlenszerű lesz.",
|
||||||
"computerNameStaticPrefixName": "Számítógépnév előtagja",
|
"computerNameStaticPrefixName": "Számítógépnév előtagja",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Google-tartomány engedélyezési listája",
|
"domainAllowListName": "Google-tartomány engedélyezési listája",
|
||||||
"domainAllowListTableEmptyValueExample": "Adjon meg egy tartományt",
|
"domainAllowListTableEmptyValueExample": "Adjon meg egy tartományt",
|
||||||
"domainAllowListTableName": "Tartomány",
|
"domainAllowListTableName": "Tartomány",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Engedélyezett alkalmazás Microsoft Defender-tűzfalszabályai a helyi tárolóban (tartományhálózatok)",
|
"domainAuthorizedAppRulesSummaryLabel": "Engedélyezett alkalmazás Windows-tűzfalszabályai a helyi tárolóban (tartományhálózatok)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Microsoft Defender tűzfal (tartományhálózatok)",
|
"domainFirewallEnabledSummaryLabel": "Windows-tűzfal (tartományhálózatok)",
|
||||||
"domainGlobalRulesSummaryLabel": "Portokkal kapcsolatos globális Microsoft Defender-tűzfalszabályok a helyi tárolóban (tartományhálózatok)",
|
"domainGlobalRulesSummaryLabel": "Portokkal kapcsolatos globális Windows-tűzfalszabályok a helyi tárolóban (tartományhálózatok)",
|
||||||
"domainIPsecRulesSummaryLabel": "IPsec-szabályok a helyi tárolóban (tartományhálózatok)",
|
"domainIPsecRulesSummaryLabel": "IPsec-szabályok a helyi tárolóban (tartományhálózatok)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "IPseckel védett csomagok mentessége rejtett üzemmód esetén (tartományhálózatok)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "IPseckel védett csomagok mentessége rejtett üzemmód esetén (tartományhálózatok)",
|
||||||
"domainInboundConnectionsSummaryLabel": "Alapértelmezett művelet a bejövő kapcsolatok esetén (tartományhálózatok)",
|
"domainInboundConnectionsSummaryLabel": "Alapértelmezett művelet a bejövő kapcsolatok esetén (tartományhálózatok)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Bejövő értesítések (tartományhálózatok)",
|
"domainInboundNotificationsSummaryLabel": "Bejövő értesítések (tartományhálózatok)",
|
||||||
"domainLocalStoreSummaryLabel": "Microsoft Defender-tűzfalszabályok a helyi tárolóban (tartományhálózatok)",
|
"domainLocalStoreSummaryLabel": "Windows-tűzfalszabályok a helyi tárolóban (tartományhálózatok)",
|
||||||
"domainNameSourceOption": "Fióktartománynév forrása",
|
"domainNameSourceOption": "Fióktartománynév forrása",
|
||||||
"domainNetworkName": "Tartományi (munkahelyi) hálózat",
|
"domainNetworkName": "Tartományi (munkahelyi) hálózat",
|
||||||
"domainOutboundConnectionsSummaryLabel": "Alapértelmezett művelet a kimenő kapcsolatok esetén (tartományhálózatok)",
|
"domainOutboundConnectionsSummaryLabel": "Alapértelmezett művelet a kimenő kapcsolatok esetén (tartományhálózatok)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Egyszeri bejelentkezés (SSO) helyettesítő tanúsítvánnyal",
|
"enableSingleSignOnName": "Egyszeri bejelentkezés (SSO) helyettesítő tanúsítvánnyal",
|
||||||
"enableUsePrivateStoreOnly": "Csak privát áruház használata",
|
"enableUsePrivateStoreOnly": "Csak privát áruház használata",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Csak privát áruházból tölthetők le alkalmazások, nyilvános áruházból nem.",
|
"enableUsePrivateStoreOnlyDescription": "Csak privát áruházból tölthetők le alkalmazások, nyilvános áruházból nem.",
|
||||||
"enableWindowsDefenderFirewallName": "Microsoft Defender tűzfal",
|
"enableWindowsDefenderFirewallName": "Windows tűzfal",
|
||||||
"enableWithUEFILock": "Engedélyezés UEFI-zárolással",
|
"enableWithUEFILock": "Engedélyezés UEFI-zárolással",
|
||||||
"enableWithoutUEFILock": "Engedélyezés UEFI-zárolás nélkül",
|
"enableWithoutUEFILock": "Engedélyezés UEFI-zárolás nélkül",
|
||||||
"enabledForAzureAdAndHybridOption": "A kulcsrotálás engedélyezve van a Microsoft Entrához csatlakoztatott és a hibrid módon csatlakoztatott eszközök esetén",
|
"enabledForAzureAdAndHybridOption": "A kulcsrotálás engedélyezve van a Microsoft Entrához csatlakoztatott és a hibrid módon csatlakoztatott eszközök esetén",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Beérkező kapcsolatok letiltása a következő alkalmazásoknál.",
|
"firewallAppsBlockedHeader": "Beérkező kapcsolatok letiltása a következő alkalmazásoknál.",
|
||||||
"firewallAppsBlockedPageDescription": "Válassza ki azokat az alkalmazásokat, amelyeknek blokkolniuk kell a bejövő kapcsolatokat.",
|
"firewallAppsBlockedPageDescription": "Válassza ki azokat az alkalmazásokat, amelyeknek blokkolniuk kell a bejövő kapcsolatokat.",
|
||||||
"firewallAppsBlockedPageName": "Letiltott alkalmazások",
|
"firewallAppsBlockedPageName": "Letiltott alkalmazások",
|
||||||
"firewallCreateRules": "Microsoft Defender-tűzfal-szabályok létrehozása. Egy Endpoint Protection-profil legfeljebb 150 szabályt tartalmazhat.",
|
"firewallCreateRules": "Windows tűzfalszabályok létrehozása. Egy Endpoint Protection-profil legfeljebb 150 szabályt tartalmazhat.",
|
||||||
"firewallRequiredDescription": "A tűzfal bekapcsolásának megkövetelése",
|
"firewallRequiredDescription": "A tűzfal bekapcsolásának megkövetelése",
|
||||||
"firewallRequiredName": "Tűzfal",
|
"firewallRequiredName": "Tűzfal",
|
||||||
"firewallRuleAction": "Művelet",
|
"firewallRuleAction": "Művelet",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Általános rendelkezésre állási csatorna",
|
"generalAvailabilityChannel": "Általános rendelkezésre állási csatorna",
|
||||||
"generalNetworkSettingsHeader": "Általános",
|
"generalNetworkSettingsHeader": "Általános",
|
||||||
"genericLocalUsersOrGroupsName": "Általános helyi felhasználók vagy csoportok",
|
"genericLocalUsersOrGroupsName": "Általános helyi felhasználók vagy csoportok",
|
||||||
"globalConfigurationsDescription": "Az összes hálózati típusra alkalmazható Microsoft Defender-tűzfalbeállítások konfigurálása.",
|
"globalConfigurationsDescription": "Az összes hálózati típusra alkalmazható Windows-tűzfalbeállítások konfigurálása.",
|
||||||
"globalConfigurationsName": "Globális beállítások",
|
"globalConfigurationsName": "Globális beállítások",
|
||||||
"globalRulesDescription": "A helyi tároló elfogadandó és érvényesítendő, portokkal kapcsolatos globális tűzfalszabályainak alkalmazása.",
|
"globalRulesDescription": "A helyi tároló elfogadandó és érvényesítendő, portokkal kapcsolatos globális tűzfalszabályainak alkalmazása.",
|
||||||
"globalRulesName": "Portokkal kapcsolatos globális Microsoft Defender-tűzfalszabályok a helyi tárolóban",
|
"globalRulesName": "Portokkal kapcsolatos globális Windows-tűzfalszabályok a helyi tárolóban",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Google-fiókok e-mail címei",
|
"googleAccountEmailAddresses": "Google-fiókok e-mail címei",
|
||||||
"googleAccountEmailAddressesDescription": "E-mail-címek pontosvesszővel elválasztott listája",
|
"googleAccountEmailAddressesDescription": "E-mail-címek pontosvesszővel elválasztott listája",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Hitelesítő adatok kérése a biztonsági asztalon",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Hitelesítő adatok kérése a biztonsági asztalon",
|
||||||
"localServerCachingHeader": "Helyi kiszolgáló gyorsítótárazása",
|
"localServerCachingHeader": "Helyi kiszolgáló gyorsítótárazása",
|
||||||
"localStoreDescription": "A helyi tároló elfogadtatni és érvényesíteni kívánt globális tűzfalszabályainak alkalmazása.",
|
"localStoreDescription": "A helyi tároló elfogadtatni és érvényesíteni kívánt globális tűzfalszabályainak alkalmazása.",
|
||||||
"localStoreName": "Microsoft Defender-tűzfalszabályok a helyi tárolóban",
|
"localStoreName": "Windows-tűzfalszabályok a helyi tárolóban",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Adja meg, hogy megjelenjen-e a képernyő időkorlátját szabályozó, felhasználó által konfigurálható beállítás a Windows 10 Mobile-eszközök zárolási képernyőjén. Ha a szabályzat engedélyezettre van állítva, a „Képernyő időkorlátja” beállítás értékét a rendszer figyelmen kívül hagyja.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Adja meg, hogy megjelenjen-e a képernyő időkorlátját szabályozó, felhasználó által konfigurálható beállítás a Windows 10 Mobile-eszközök zárolási képernyőjén. Ha a szabályzat engedélyezettre van állítva, a „Képernyő időkorlátja” beállítás értékét a rendszer figyelmen kívül hagyja.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Felhasználó által konfigurálható képernyő-időkorlát (csak mobil)",
|
"lockScreenAllowTimeoutConfigurationName": "Felhasználó által konfigurálható képernyő-időkorlát (csak mobil)",
|
||||||
"lockScreenBackgroundImageURLDescription": "Egyéni üdvözlőképernyő háttérképének URL-címe. A képnek https:// végponttal rendelkező .png fájlnak kell lennie,",
|
"lockScreenBackgroundImageURLDescription": "Egyéni üdvözlőképernyő háttérképének URL-címe. A képnek https:// végponttal rendelkező .png fájlnak kell lennie,",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "Az MTU-nak 1280 és 1400 bájt közötti értékkel kell rendelkeznie",
|
"mTUSizeInBytesBounds": "Az MTU-nak 1280 és 1400 bájt közötti értékkel kell rendelkeznie",
|
||||||
"mTUSizeInBytesName": "Átviteli egységek maximális mérete",
|
"mTUSizeInBytesName": "Átviteli egységek maximális mérete",
|
||||||
"mTUSizeInBytesToolTip": "Azon legnagyobb adatcsomag mérete bájtban megadva, amely a hálózaton még továbbítható. Ha nincs konfigurálva, az Apple által megadott alapértelmezett méret 1280 bájt. Az iOS 14-es és újabb rendszerekre vonatkozik.",
|
"mTUSizeInBytesToolTip": "Azon legnagyobb adatcsomag mérete bájtban megadva, amely a hálózaton még továbbítható. Ha nincs konfigurálva, az Apple által megadott alapértelmezett méret 1280 bájt. Az iOS 14-es és újabb rendszerekre vonatkozik.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Véletlenszerű közegelérés-vezérlés használata",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Eszköz alapértelmezésének használata",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Csak szükség esetén használjon véletlenszerű közegelérés-vezérlést, például NAC-támogatáshoz. A felhasználók módosíthatják ezt a beállítást. Android 13-ra és újabb verziókra vonatkozik.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Eszköz közegelérés-vezérlésének használata",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "Közegelérés-vezérlési cím véletlenszerűsítése",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store- és azonosított fejlesztők",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store- és azonosított fejlesztők",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Letiltja az AirPlayt, a képernyő megosztását más eszközökkel, valamint az Osztályterem alkalmazás a tanárok által a tanulók képernyőjének megtekintésére használt funkcióját. Ez a beállítás nem érhető el, ha letiltotta a képernyőképeket.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Letiltja az AirPlayt, a képernyő megosztását más eszközökkel, valamint az Osztályterem alkalmazás a tanárok által a tanulók képernyőjének megtekintésére használt funkcióját. Ez a beállítás nem érhető el, ha letiltotta a képernyőképeket.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Adjon meg egy 4 és 16 közötti számot",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Adjon meg egy 4 és 16 közötti számot",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Adjon meg egy 6 és 16 közötti számot",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Adjon meg egy 6 és 16 közötti számot",
|
||||||
"minimumPasswordLengthName": "Minimális jelszóhossz",
|
"minimumPasswordLengthName": "Minimális jelszóhossz",
|
||||||
|
"minimumPasswordLengthTooltipText": "Írjon be egy számot",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "A hiányzó frissítések automatikus telepítése",
|
"minimumUpdateAutoInstallClassificationDescription": "A hiányzó frissítések automatikus telepítése",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Megadott besorolású frissítések telepítése",
|
"minimumUpdateAutoInstallClassificationName": "Megadott besorolású frissítések telepítése",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Fontos",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Fontos",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Manuális proxykiszolgáló használata",
|
"networkProxyUseManualServerName": "Manuális proxykiszolgáló használata",
|
||||||
"networkProxyUseScriptUrlName": "Proxyparancsfájl használata",
|
"networkProxyUseScriptUrlName": "Proxyparancsfájl használata",
|
||||||
"networkSettingsName": "Hálózati beállítások",
|
"networkSettingsName": "Hálózati beállítások",
|
||||||
"networkSettingsSubtitle": "Konkrét hálózati típusokra alkalmazható Microsoft Defender-tűzfalbeállítások konfigurálása.",
|
"networkSettingsSubtitle": "Konkrét hálózati típusokra alkalmazható Windows-tűzfalbeállítások konfigurálása.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Adja meg azokat az iOS-alkalmazásokat, amelyek számára le szeretné tiltani a mobiladat-forgalmat.",
|
"networkUsageRulesBlockCellularHeaderName": "Adja meg azokat az iOS-alkalmazásokat, amelyek számára le szeretné tiltani a mobiladat-forgalmat.",
|
||||||
"networkUsageRulesBlockCellularName": "Mobiladat-forgalom letiltása",
|
"networkUsageRulesBlockCellularName": "Mobiladat-forgalom letiltása",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Adja meg azokat az iOS-alkalmazásokat, amelyek számára le szeretné tiltani a mobiladat-forgalmat roaming közben.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Adja meg azokat az iOS-alkalmazásokat, amelyek számára le szeretné tiltani a mobiladat-forgalmat roaming közben.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "Alkalmazások és folyamatok",
|
"privacyPreferencesTableName": "Alkalmazások és folyamatok",
|
||||||
"privacyPublishUserActivitiesDescription": "A megosztott legutóbb használt erőforrások megosztott funkcióinak, illetve észlelésének letiltása a Feladatváltóban és egyéb alkalmazásokban.",
|
"privacyPublishUserActivitiesDescription": "A megosztott legutóbb használt erőforrások megosztott funkcióinak, illetve észlelésének letiltása a Feladatváltóban és egyéb alkalmazásokban.",
|
||||||
"privacyPublishUserActivitiesName": "Felhasználói tevékenységek közzététele",
|
"privacyPublishUserActivitiesName": "Felhasználói tevékenységek közzététele",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Engedélyezett alkalmazás Microsoft Defender-tűzfalszabályai a helyi tárolóban (magánhálózatok)",
|
"privateAuthorizedAppRulesSummaryLabel": "Engedélyezett alkalmazás Windows-tűzfalszabályai a helyi tárolóban (magánhálózatok)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Microsoft Defender tűzfal (magánhálózatok)",
|
"privateFirewallEnabledSummaryLabel": "Windows-tűzfal (magánhálózatok)",
|
||||||
"privateGlobalRulesSummaryLabel": "Portokkal kapcsolatos globális Microsoft Defender-tűzfalszabályok a helyi tárolóban (magánhálózatok)",
|
"privateGlobalRulesSummaryLabel": "Portokkal kapcsolatos globális Windows-tűzfalszabályok a helyi tárolóban (magánhálózatok)",
|
||||||
"privateIPsecRulesSummaryLabel": "IPsec-szabályok a helyi tárolóban (magánhálózatok)",
|
"privateIPsecRulesSummaryLabel": "IPsec-szabályok a helyi tárolóban (magánhálózatok)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "IPseckel védett csomagok mentessége rejtett üzemmód esetén (magánhálózatok)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "IPseckel védett csomagok mentessége rejtett üzemmód esetén (magánhálózatok)",
|
||||||
"privateInboundConnectionsSummaryLabel": "Alapértelmezett művelet a bejövő kapcsolatok esetén (magánhálózatok)",
|
"privateInboundConnectionsSummaryLabel": "Alapértelmezett művelet a bejövő kapcsolatok esetén (magánhálózatok)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Bejövő értesítések (magánhálózatok)",
|
"privateInboundNotificationsSummaryLabel": "Bejövő értesítések (magánhálózatok)",
|
||||||
"privateLocalStoreSummaryLabel": "Microsoft Defender-tűzfalszabályok a helyi tárolóban (magánhálózatok)",
|
"privateLocalStoreSummaryLabel": "Windows-tűzfalszabályok a helyi tárolóban (magánhálózatok)",
|
||||||
"privateNetworkName": "Magánhálózat (észlelhető)",
|
"privateNetworkName": "Magánhálózat (észlelhető)",
|
||||||
"privateOutboundConnectionsSummaryLabel": "Alapértelmezett művelet a kimenő kapcsolatok esetén (magánhálózatok)",
|
"privateOutboundConnectionsSummaryLabel": "Alapértelmezett művelet a kimenő kapcsolatok esetén (magánhálózatok)",
|
||||||
"privateShieldedSummaryLabel": "Védett (magánhálózatok)",
|
"privateShieldedSummaryLabel": "Védett (magánhálózatok)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "Proxykiszolgáló URL-címe",
|
"proxyServerURLName": "Proxykiszolgáló URL-címe",
|
||||||
"proxyServersAutoDetectionName": "Más vállalati proxykiszolgálók automatikus felismerése",
|
"proxyServersAutoDetectionName": "Más vállalati proxykiszolgálók automatikus felismerése",
|
||||||
"proxyUrlExample": "például itgproxy.contoso.com",
|
"proxyUrlExample": "például itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Engedélyezett alkalmazás Microsoft Defender-tűzfalszabályai a helyi tárolóban (nyilvános hálózatok)",
|
"publicAuthorizedAppRulesSummaryLabel": "Engedélyezett alkalmazás Windows-tűzfalszabályai a helyi tárolóban (nyilvános hálózatok)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Microsoft Defender tűzfal (nyilvános hálózatok)",
|
"publicFirewallEnabledSummaryLabel": "Windows tűzfal (nyilvános hálózatok)",
|
||||||
"publicGlobalRulesSummaryLabel": "Portokkal kapcsolatos globális Microsoft Defender-tűzfalszabályok a helyi tárolóban (nyilvános hálózatok)",
|
"publicGlobalRulesSummaryLabel": "Portokkal kapcsolatos globális Windows-tűzfalszabályok a helyi tárolóban (Nyilvános hálózatok)",
|
||||||
"publicIPsecRulesSummaryLabel": "IPsec-szabályok a helyi tárolóban (nyilvános hálózatok)",
|
"publicIPsecRulesSummaryLabel": "IPsec-szabályok a helyi tárolóban (nyilvános hálózatok)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "IPseckel védett csomagok mentessége rejtett üzemmód esetén (nyilvános hálózatok)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "IPseckel védett csomagok mentessége rejtett üzemmód esetén (nyilvános hálózatok)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Alapértelmezett művelet a bejövő kapcsolatok esetén (nyilvános hálózatok)",
|
"publicInboundConnectionsSummaryLabel": "Alapértelmezett művelet a bejövő kapcsolatok esetén (nyilvános hálózatok)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Bejövő értesítések (nyilvános hálózatok)",
|
"publicInboundNotificationsSummaryLabel": "Bejövő értesítések (nyilvános hálózatok)",
|
||||||
"publicLocalStoreSummaryLabel": "Microsoft Defender-tűzfalszabályok a helyi tárolóban (nyilvános hálózatok)",
|
"publicLocalStoreSummaryLabel": "Windows-tűzfalszabályok a helyi tárolóban (Nyilvános hálózatok)",
|
||||||
"publicNetworkName": "Nyilvános (nem észlelhető) hálózat",
|
"publicNetworkName": "Nyilvános (nem észlelhető) hálózat",
|
||||||
"publicOutboundConnectionsSummaryLabel": "Alapértelmezett művelet a kimenő kapcsolatok esetén (nyilvános hálózatok)",
|
"publicOutboundConnectionsSummaryLabel": "Alapértelmezett művelet a kimenő kapcsolatok esetén (nyilvános hálózatok)",
|
||||||
"publicPlayStoreEnabledDescription": "A felhasználók az összes alkalmazáshoz hozzáférhetnek, kivéve azokhoz, amelyek eltávolítását kérte az Ügyfélalkalmazásokban. Ha a „Nincs konfigurálva” lehetőséget választja ehhez a beállításhoz, akkor a felhasználók csak azokat az alkalmazásokat érhetik el, amelyeket Ön az Ügyfélalkalmazásokban elérhetőként vagy kötelezőként jelölt meg.",
|
"publicPlayStoreEnabledDescription": "A felhasználók az összes alkalmazáshoz hozzáférhetnek, kivéve azokhoz, amelyek eltávolítását kérte az Ügyfélalkalmazásokban. Ha a „Nincs konfigurálva” lehetőséget választja ehhez a beállításhoz, akkor a felhasználók csak azokat az alkalmazásokat érhetik el, amelyeket Ön az Ügyfélalkalmazásokban elérhetőként vagy kötelezőként jelölt meg.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Regisztrálás szoftverkulcstároló-szolgáltatóba",
|
"sCEPPolicyEnrollToSoftwareKSP": "Regisztrálás szoftverkulcstároló-szolgáltatóba",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Regisztrálás a platformmegbízhatósági modul kulcstároló-szolgáltatójába, máskülönben a művelet sikertelen",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Regisztrálás a platformmegbízhatósági modul kulcstároló-szolgáltatójába, máskülönben a művelet sikertelen",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Regisztrálás a platformmegbízhatósági modul kulcstároló-szolgáltatójába (ha van ilyen), máskülönben regisztrálás a szoftverkulcstároló-szolgáltatóba",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Regisztrálás a platformmegbízhatósági modul kulcstároló-szolgáltatójába (ha van ilyen), máskülönben regisztrálás a szoftverkulcstároló-szolgáltatóba",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "FIGYELMEZTETÉS: Sem az Any Purpose EKU (OID 2.5.29.37.0), sem az Any App Policy EKU (OID 1.3.6.1.4.1.311.10.12.1) nem használható a Microsoft Cloud PKI-ban létrehozott hitelesítésszolgáltatóval.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "A legtöbb esetben a tanúsítvány ügyfél-hitelesítést igényel, annak érdekében, hogy a felhasználót vagy az eszközt hitelesíteni lehessen egy kiszolgálón. Ugyanakkor megadhat további felhasználási lehetőségeket is a kulcs funkciójának bővítése céljából.",
|
"sCEPPolicyExtendedKeyUsageDescription": "A legtöbb esetben a tanúsítvány ügyfél-hitelesítést igényel, annak érdekében, hogy a felhasználót vagy az eszközt hitelesíteni lehessen egy kiszolgálón. Ugyanakkor megadhat további felhasználási lehetőségeket is a kulcs funkciójának bővítése céljából.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Kibővített kulcshasználat",
|
"sCEPPolicyExtendedKeyUsageName": "Kibővített kulcshasználat",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Kivonatoló algoritmustípus használata a tanúsítványhoz. Feltétlenül adja meg a csatlakoztatott eszközök által támogatott legmagasabb biztonsági szintet.",
|
"sCEPPolicyHashAlgorithmDescription": "Kivonatoló algoritmustípus használata a tanúsítványhoz. Feltétlenül adja meg a csatlakoztatott eszközök által támogatott legmagasabb biztonsági szintet.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Adja meg a napok számát (1–255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Adja meg a napok számát (1–255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Adja meg a napok számát (1 – 365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Adja meg a napok számát (1 – 365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Jelszó érvényessége (nap)",
|
"workProfilePasswordExpirationInDaysName": "Jelszó érvényessége (nap)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Adja meg a napok számát",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Munkahelyi profil jelszava: Minimális jelszóhossz",
|
"workProfilePasswordMinimumLengthReportingName": "Munkahelyi profil jelszava: Minimális jelszóhossz",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Munkahelyi profil jelszava: Szükséges karakterszám",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Munkahelyi profil jelszava: Szükséges karakterszám",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Munkahelyi profil jelszava: A kisbetűs karakterek szükséges száma",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Munkahelyi profil jelszava: A kisbetűs karakterek szükséges száma",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "Bármely alkalmazás",
|
"anyAppOptionText": "Bármely alkalmazás",
|
||||||
"anyDestinationAnySourceOptionText": "Bármely célhely és bármely forrás",
|
"anyDestinationAnySourceOptionText": "Bármely célhely és bármely forrás",
|
||||||
"anyDialerAppOptionText": "Bármely tárcsázóalkalmazás",
|
"anyDialerAppOptionText": "Bármely tárcsázóalkalmazás",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "Bármely üzenetküldő alkalmazás",
|
||||||
"anyPolicyManagedDialerAppOptionText": "Bármely szabályzattal felügyelt tárcsázóalkalmazás",
|
"anyPolicyManagedDialerAppOptionText": "Bármely szabályzattal felügyelt tárcsázóalkalmazás",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "Bármely szabályzattal felügyelt üzenetküldő alkalmazás",
|
||||||
"appAdded": "Alkalmazás hozzáadva",
|
"appAdded": "Alkalmazás hozzáadva",
|
||||||
"appBasedConditionalAccess": "Alkalmazásalapú feltételes hozzáférés",
|
"appBasedConditionalAccess": "Alkalmazásalapú feltételes hozzáférés",
|
||||||
"appColumnLabel": "Alkalmazás",
|
"appColumnLabel": "Alkalmazás",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "MDM-eszközazonosító",
|
"mdmDeviceId": "MDM-eszközazonosító",
|
||||||
"mdmWipInvalidVersionSettings": "Egy vagy több alkalmazás minimális vagy maximális verziójának meghatározása érvénytelen.<br /> <br />A regisztrációs szabályzatokat használó Windows Information Protection csak a minimális és a maximális verzió egyikének megadását támogatja, kivéve ha a két verzió egyenlőként van megadva. Ha a minimális verzió van megadva, a szabály a minimális verziónál újabb vagy azzal egyező verziókra van beállítva. Ehhez hasonlóan ha a maximális verzió van megadva, a szabály a maximális verziónál korábbi vagy azzal egyező verziókra van beállítva.",
|
"mdmWipInvalidVersionSettings": "Egy vagy több alkalmazás minimális vagy maximális verziójának meghatározása érvénytelen.<br /> <br />A regisztrációs szabályzatokat használó Windows Information Protection csak a minimális és a maximális verzió egyikének megadását támogatja, kivéve ha a két verzió egyenlőként van megadva. Ha a minimális verzió van megadva, a szabály a minimális verziónál újabb vagy azzal egyező verziókra van beállítva. Ehhez hasonlóan ha a maximális verzió van megadva, a szabály a maximális verziónál korábbi vagy azzal egyező verziókra van beállítva.",
|
||||||
"mdmWipReport": "MDM Windows Információvédelem-jelentés",
|
"mdmWipReport": "MDM Windows Információvédelem-jelentés",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Üzenetkezelő alkalmazás neve (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "Üzenetküldő alkalmazás csomagazonosítója (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "Üzenetkezelő alkalmazás URL-sémája (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender For Endpoint",
|
"microsoftDefenderForEndpoint": "Microsoft Defender For Endpoint",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "Minimális alkalmazásverzió",
|
"minAppVersion": "Minimális alkalmazásverzió",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Beállításkatalógus",
|
"settingsCatalog": "Beállításkatalógus",
|
||||||
"settingsSelectorLabel": "Beállítások",
|
"settingsSelectorLabel": "Beállítások",
|
||||||
"silent": "Csendes",
|
"silent": "Csendes",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "Egy adott üzenetkezelő alkalmazás",
|
||||||
"specificUserIsLicensedIntune": "{0} rendelkezik Microsoft Intune-licenccel.",
|
"specificUserIsLicensedIntune": "{0} rendelkezik Microsoft Intune-licenccel.",
|
||||||
"state": "Állapot",
|
"state": "Állapot",
|
||||||
"status": "Állapot",
|
"status": "Állapot",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Microsoft Edge-alapértékek",
|
"edgeSecurityBaseline": "Microsoft Edge-alapértékek",
|
||||||
"edgeSecurityBaselinePreview": "Előzetes verzió: Microsoft Edge-alapértékek",
|
"edgeSecurityBaselinePreview": "Előzetes verzió: Microsoft Edge-alapértékek",
|
||||||
"editionUpgradeConfiguration": "Kiadásfrissítés és módváltás",
|
"editionUpgradeConfiguration": "Kiadásfrissítés és módváltás",
|
||||||
"firewall": "Microsoft Defender tűzfal",
|
"firewall": "Windows tűzfal",
|
||||||
"firewallRules": "Microsoft Defender-tűzfalszabályok",
|
"firewallRules": "Windows tűzfalszabályok",
|
||||||
"identityProtection": "Fiókvédelem",
|
"identityProtection": "Fiókvédelem",
|
||||||
"identityProtectionPreview": "Fiókvédelem (előzetes verzió)",
|
"identityProtectionPreview": "Fiókvédelem (előzetes verzió)",
|
||||||
"mDMSecurityBaseline1810": "MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2018 október",
|
"mDMSecurityBaseline1810": "MDM biztonsági alapkonfiguráció Windows 10-es és újabb rendszerekhez 2018 október",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Előzetes verzió: Microsoft Office O365 alapkonfiguráció",
|
"office365BaselinePreview": "Előzetes verzió: Microsoft Office O365 alapkonfiguráció",
|
||||||
"securityBaselines": "Biztonsági alapkonfigurációk",
|
"securityBaselines": "Biztonsági alapkonfigurációk",
|
||||||
"test": "Tesztsablon",
|
"test": "Tesztsablon",
|
||||||
"testFirewallRulesSecurityTemplateName": "Microsoft Defender-tűzfalszabályok (teszt)",
|
"testFirewallRulesSecurityTemplateName": "Windows tűzfalszabályok (teszt)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Fiókvédelem (teszt)",
|
"testIdentityProtectionSecurityTemplateName": "Fiókvédelem (teszt)",
|
||||||
"windowsSecurityExperience": "A Windows Biztonság felhasználói élménye"
|
"windowsSecurityExperience": "A Windows Biztonság felhasználói élménye"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Microsoft Defender tűzfal"
|
"mDE": "Windows tűzfal"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Microsoft Defender-tűzfalszabályok"
|
"mDE": "Windows tűzfalszabályok"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "A OneDrive ismert mappaáthelyezési beállításai: Windows 10 a felhőkonfigurációs sablonban. https://aka.ms/CloudConfigGuide"
|
"description": "A OneDrive ismert mappaáthelyezési beállításai: Windows 10 a felhőkonfigurációs sablonban. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Mobileszköz-kezelés konfigurációja",
|
"expeditedCheckin": "Mobileszköz-kezelés konfigurációja",
|
||||||
"exploitProtection": "Biztonsági rés kiaknázása elleni védelem",
|
"exploitProtection": "Biztonsági rés kiaknázása elleni védelem",
|
||||||
"extensions": "Bővítmények",
|
"extensions": "Bővítmények",
|
||||||
"hardwareConfigurations": "BIOS konfigurációk",
|
"hardwareConfigurations": "BIOS-konfigurációk és egyéb beállítások",
|
||||||
"identityProtection": "Identitásvédelem",
|
"identityProtection": "Identitásvédelem",
|
||||||
"iosCompliancePolicy": "iOS-es megfelelőségi szabályzat",
|
"iosCompliancePolicy": "iOS-es megfelelőségi szabályzat",
|
||||||
"kiosk": "Kioszkmód",
|
"kiosk": "Kioszkmód",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Microsoft Defender víruskereső",
|
"microsoftDefenderAntivirus": "Microsoft Defender víruskereső",
|
||||||
"microsoftDefenderAntivirusexclusions": "Microsoft Defender víruskereső – kizárások",
|
"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)",
|
"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",
|
"microsoftDefenderFirewallRules": "Windows tűzfalszabályok",
|
||||||
"microsoftEdgeBaseline": "Biztonsági alap a Microsoft Edge-hez",
|
"microsoftEdgeBaseline": "Biztonsági alap a Microsoft Edge-hez",
|
||||||
"mxProfileZebraOnly": "MX-profil (csak Zebra)",
|
"mxProfileZebraOnly": "MX-profil (csak Zebra)",
|
||||||
"networkBoundary": "Hálózathatár",
|
"networkBoundary": "Hálózathatár",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Megbízható tanúsítvány – TESZT",
|
"windows10XTrustedCertificate": "Megbízható tanúsítvány – TESZT",
|
||||||
"windows10XVPN": "VPN – TESZT",
|
"windows10XVPN": "VPN – TESZT",
|
||||||
"windows10XWifi": "WI-FI – TESZT",
|
"windows10XWifi": "WI-FI – TESZT",
|
||||||
|
"windows11SecurityBaseline": "Biztonsági alapkonfiguráció Windows 10 és újabb rendszerekhez",
|
||||||
"windows8CompliancePolicy": "Windows 8-as megfelelőségi szabályzat",
|
"windows8CompliancePolicy": "Windows 8-as megfelelőségi szabályzat",
|
||||||
"windowsHealthMonitoring": "Windows-állapotmonitorozás",
|
"windowsHealthMonitoring": "Windows-állapotmonitorozás",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Eszközök konfigurálása a kezdeti kiépítéshez és felhasználókhoz való hozzárendeléshez.",
|
"description": "Eszközök konfigurálása a kezdeti kiépítéshez.",
|
||||||
"title": "Eszköz-előkészítés"
|
"title": "Eszköz-előkészítés"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Illesztőprogram-frissítések manuális jóváhagyása és üzembe helyezése"
|
"manual": "Illesztőprogram-frissítések manuális jóváhagyása és üzembe helyezése"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Tömeges műveletek"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} nap"
|
"value": "{0} nap"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Válasszon műveletet az alábbiak közül.",
|
||||||
"label": "Driver action",
|
"label": "Illesztőprogram-művelet",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Válasszon műveletet"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Belefoglalt illesztőprogramok"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Válassza ki a tömeges műveletbe belefoglalni kívánt illesztőprogramokat"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Válassza ki a belefoglalandó illesztőprogramokat"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "Legfeljebb száz illesztőprogramot lehet kiválasztani"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "Legalább egy illesztőprogramot ki kell jelölni"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Kiválasztott illesztőprogramok"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Elérhetővé tétel a Windows Update webhelyen",
|
||||||
"bladeTitle": "Illesztőprogram-frissítések Windows 10-es és újabb verziókhoz (előzetes verzió)",
|
"bladeTitle": "Illesztőprogram-frissítések Windows 10-es és újabb verziókhoz (előzetes verzió)",
|
||||||
"lastSync": "Legutóbbi szinkronizálás:",
|
"lastSync": "Legutóbbi szinkronizálás:",
|
||||||
"lastSyncDefaultText": "A kezdeti készlet összegyűjtése függőben",
|
"lastSyncDefaultText": "A kezdeti készlet összegyűjtése függőben",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Válasszon ki egy értesítő üzenetet a bal oldalon a tartalom előnézetének megtekintéséhez."
|
"placeholder": "Válasszon ki egy értesítő üzenetet a bal oldalon a tartalom előnézetének megtekintéséhez."
|
||||||
},
|
},
|
||||||
"companyContact": "E-mail lábléce – kapcsolattartási adatok megjelenítése",
|
"companyContact": "Kapcsolattartási adatok megjelenítése",
|
||||||
"companyLogo": "E-mail fejléce – céges embléma megjelenítése",
|
"companyLogo": "Cég emblémájának megjelenítése",
|
||||||
"companyName": "E-mail lábléce – cégnév megjelenítése",
|
"companyName": "Cégnév megjelenítése",
|
||||||
"createEditDescription": "Értesítő üzenetek sablonjainak létrehozása és szerkesztése.",
|
"createEditDescription": "Értesítő üzenetek sablonjainak létrehozása és szerkesztése.",
|
||||||
"createMessage": "Üzenet létrehozása",
|
"createMessage": "Üzenet létrehozása",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Eszköz részleteinek megjelenítése",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "Ez a beállítás alapértelmezés szerint ki van kapcsolva, mivel az eszköz adatainak lekérése késleltetheti az e-mail-értesítések fogadását.",
|
||||||
"editImpactInfo": "Az értesítésiüzenet-sablon módosítása a sablont használó összes szabályzatra hatással lesz.",
|
"editImpactInfo": "Az értesítésiüzenet-sablon módosítása a sablont használó összes szabályzatra hatással lesz.",
|
||||||
"editMessage": "Üzenet szerkesztése",
|
"editMessage": "Üzenet szerkesztése",
|
||||||
"email": "e-mail",
|
"email": "e-mail",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "E-mail lábléce",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "Az e-mail-értesítések e-mail fejlécének és láblécének beállításai a Végpontkezelő bérlői felügyeleti csomópontjának testreszabási beállításain alapulnak.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "E-mail-fejléc",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Testreszabási beállítások konfigurálása",
|
||||||
"formSubTitle": "Értesítő e-mailek létrehozása és módosítása",
|
"formSubTitle": "Értesítő e-mailek létrehozása és módosítása",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Élőfej és élőláb beállításai",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Kép előnézete",
|
||||||
"infotext": "Válasszon értesítő üzenetet. Új értesítéseket az Eszközmegfelelőség beállítása tevékenységprofil Kezelés szakaszának Értesítések részén hozhat létre.",
|
"infotext": "Válasszon értesítő üzenetet. Új értesítéseket az Eszközmegfelelőség beállítása tevékenységprofil Kezelés szakaszának Értesítések részén hozhat létre.",
|
||||||
"iwLink": "Céges portál webhelyére mutató hivatkozás",
|
"iwLink": "Céges portál webhelyhivatkozásának megjelenítése",
|
||||||
"listEmpty": "Nincsenek üzenetsablonok.",
|
"listEmpty": "Nincsenek üzenetsablonok.",
|
||||||
"listEmptySelectOnly": "Nincsenek üzenetsablonok. Új értesítéseket az Eszközmegfelelőség beállítása tevékenységprofil Kezelés szakaszának Értesítések részén hozhat létre.",
|
"listEmptySelectOnly": "Nincsenek üzenetsablonok. Új értesítéseket az Eszközmegfelelőség beállítása tevékenységprofil Kezelés szakaszának Értesítések részén hozhat létre.",
|
||||||
"listSubTitle": "Értesítő üzenetek sablonjainak listája",
|
"listSubTitle": "Értesítő üzenetek sablonjainak listája",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Értesítőüzenet-sablonok",
|
"notificationMessageTemplates": "Értesítőüzenet-sablonok",
|
||||||
"rowValidationError": "Legalább egy üzenetsablon szükséges",
|
"rowValidationError": "Legalább egy üzenetsablon szükséges",
|
||||||
"selectDescription": "Válasszon értesítő üzenetet. Új értesítést az Eszközmegfelelőség beállítása lap Kezelés szakaszának Értesítések részén hozhat létre.",
|
"selectDescription": "Válasszon értesítő üzenetet. Új értesítést az Eszközmegfelelőség beállítása lap Kezelés szakaszának Értesítések részén hozhat létre.",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Bérlői érték",
|
||||||
"testEmailLabel": "Előnézeti e-mail küldése",
|
"testEmailLabel": "Előnézeti e-mail küldése",
|
||||||
"localeLabel": "Területi beállítás",
|
"localeLabel": "Területi beállítás",
|
||||||
"isDefaultLocale": "Alapértelmezett"
|
"isDefaultLocale": "Alapértelmezett"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "{1} oszlop {2} {0}. sora"
|
"ariaLabel": "{1} oszlop {2} {0}. sora"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Kezdje elölről, és válassza ki a kívánt tulajdonságokat a rendelkezésre álló leltártulajdonságok könyvtárából"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Kezdje elölről, és válassza ki a kívánt beállításokat a rendelkezésre álló beállítások könyvtárából",
|
"subtitle": "Kezdje elölről, és válassza ki a kívánt beállításokat a rendelkezésre álló beállítások könyvtárából",
|
||||||
"title": "Beállításkatalógus"
|
"title": "Beállításkatalógus"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "Minimá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.",
|
"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.",
|
"noAssignmentsStatusBar": "Rendeljen hozzá korlátozást legalább egy csoporthoz. Kattintson a Tulajdonságok elemre.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "A korlátozások szerkesztéséhez rendszergazdának kell lennie.",
|
||||||
"notFound": "A korlátozás nem található. Lehet, hogy már törölték.",
|
"notFound": "A korlátozás nem található. Lehet, hogy már törölték.",
|
||||||
"personallyOwned": "Személyes tulajdonú eszközök",
|
"personallyOwned": "Személyes tulajdonú eszközök",
|
||||||
"restriction": "Korlátozás",
|
"restriction": "Korlátozás",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8-as megfelelőségi szabályzat",
|
"complianceWindows8": "Windows 8-as megfelelőségi szabályzat",
|
||||||
"complianceWindowsPhone": "Windows Phone-os megfelelőségi szabályzat",
|
"complianceWindowsPhone": "Windows Phone-os megfelelőségi szabályzat",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Tulajdonságok katalógusa",
|
||||||
"iosCustom": "Egyéni",
|
"iosCustom": "Egyéni",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Származtatott PIV-hitelesítőadatok",
|
"iosDerivedCredentialAuthenticationConfiguration": "Származtatott PIV-hitelesítőadatok",
|
||||||
"iosDeviceFeatures": "Eszközfunkciók",
|
"iosDeviceFeatures": "Eszközfunkciók",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS-eszközök (előzetes verzió)"
|
"devices": "ChromeOS-eszközök"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Rendszergazdai kapcsolatok",
|
"adminContacts": "Rendszergazdai kapcsolatok",
|
||||||
"appPackaging": "Alkalmazás csomagolása",
|
"appPackaging": "Alkalmazás csomagolása",
|
||||||
"businessGroups": "Üzleti csoportok",
|
"autopatchGroups": "Automatikus javítási csoportok",
|
||||||
"devices": "Eszközök",
|
"devices": "Eszközök",
|
||||||
"feedback": "Visszajelzés",
|
"feedback": "Visszajelzés",
|
||||||
"gettingStarted": "Kezdeti lépések",
|
"gettingStarted": "Kezdeti lépések",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Testreszabás",
|
"brandingAndCustomization": "Testreszabás",
|
||||||
"cartProfiles": "Kocsiprofilok",
|
"cartProfiles": "Kocsiprofilok",
|
||||||
"certificateConnectors": "Tanúsítvány-összekötők",
|
"certificateConnectors": "Tanúsítvány-összekötők",
|
||||||
"chromeEnterprise": "Chrome Enterprise (előzetes verzió)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Felhőalapú csatlakoztatott eszközök (előzetes verzió)",
|
"cloudAttachedDevices": "Felhőalapú csatlakoztatott eszközök (előzetes verzió)",
|
||||||
"cloudPcActions": "Felhőbeli PC-műveletek (előzetes verzió)",
|
"cloudPcActions": "Felhőbeli PC-műveletek (előzetes verzió)",
|
||||||
"cloudPcMaintenanceWindows": "Felhőalapú PC karbantartási időszakai (előzetes verzió)",
|
"cloudPcMaintenanceWindows": "Felhőalapú PC karbantartási időszakai (előzetes verzió)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "Felhasználó állapota",
|
"userExecutionStatus": "Felhasználó állapota",
|
||||||
"wdacSupplementalPolicies": "Az S mód kiegészítő szabályzatai",
|
"wdacSupplementalPolicies": "Az S mód kiegészítő szabályzatai",
|
||||||
"win32CatalogUpdateApp": "A Windows (Win32) katalógusalkalmazásainak frissítései",
|
"win32CatalogUpdateApp": "A Windows (Win32) katalógusalkalmazásainak frissítései",
|
||||||
|
"win32CatalogUpdateAppInPreview": "A Windows (Win32) katalógusalkalmazásainak frissítései (előzetes verzió)",
|
||||||
"windows10DriverUpdate": "Illesztőprogram-frissítések Windows 10-es és újabb verziókhoz",
|
"windows10DriverUpdate": "Illesztőprogram-frissítések Windows 10-es és újabb verziókhoz",
|
||||||
"windows10QualityUpdate": "Minőségi frissítések Windows 10-es és újabb verziókhoz",
|
"windows10QualityUpdate": "Minőségi frissítések Windows 10-es és újabb verziókhoz",
|
||||||
"windows10UpdateRings": "Frissítési körök Windows 10 és újabb verziókhoz",
|
"windows10UpdateRings": "Frissítési körök Windows 10 és újabb verziókhoz",
|
||||||
"windows10XPolicyFailures": "Windows 10X-szabályzat hibái",
|
"windows10XPolicyFailures": "Windows 10X-szabályzat hibái",
|
||||||
"windows365Connector": "Windows 365 Citrix-összekötő",
|
|
||||||
"windows365PartnerConnector": "Windows 365-partnerösszekötők",
|
"windows365PartnerConnector": "Windows 365-partnerösszekötők",
|
||||||
"windowsDiagnosticData": "Windows-adatok",
|
"windowsDiagnosticData": "Windows-adatok",
|
||||||
"windowsEnterpriseCertificate": "Windowsos vállalati tanúsítvány",
|
"windowsEnterpriseCertificate": "Windowsos vállalati tanúsítvány",
|
||||||
|
|||||||
+137
-98
@@ -227,7 +227,6 @@
|
|||||||
"co": "Corso (Francia)",
|
"co": "Corso (Francia)",
|
||||||
"cs": "Ceco (Repubblica Ceca)",
|
"cs": "Ceco (Repubblica Ceca)",
|
||||||
"da": "Danese (Danimarca)",
|
"da": "Danese (Danimarca)",
|
||||||
"prs": "Dari (Afghanistan)",
|
|
||||||
"dv": "Divehi (Maldive)",
|
"dv": "Divehi (Maldive)",
|
||||||
"et": "Estone (Estonia)",
|
"et": "Estone (Estonia)",
|
||||||
"fo": "Faroese (Fær Øer)",
|
"fo": "Faroese (Fær Øer)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender Antivirus",
|
"defender": "Microsoft Defender Antivirus",
|
||||||
"defenderAntivirus": "Microsoft Defender Antivirus",
|
"defenderAntivirus": "Microsoft Defender Antivirus",
|
||||||
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
||||||
"defenderFirewall": "Microsoft Defender Firewall",
|
"defenderFirewall": "Windows Firewall",
|
||||||
"defenderLocalSecurityOptions": "Opzioni di sicurezza per i dispositivi locali",
|
"defenderLocalSecurityOptions": "Opzioni di sicurezza per i dispositivi locali",
|
||||||
"defenderSecurityCenter": "Microsoft Defender Security Center",
|
"defenderSecurityCenter": "Microsoft Defender Security Center",
|
||||||
"deliveryOptimization": "Ottimizzazione recapito",
|
"deliveryOptimization": "Ottimizzazione recapito",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Disabilitato",
|
"disabled": "Disabilitato",
|
||||||
"enabled": "Abilitato",
|
"enabled": "Abilitato",
|
||||||
"infoBalloonContent": "Controllare se installare l'ultimo aggiornamento delle funzionalità di Windows 10 nei dispositivi non idonei per Windows 11",
|
"infoBalloonContent": "Controllare se installare l'ultimo aggiornamento delle funzionalità di Windows 10 nei dispositivi non idonei per Windows 11",
|
||||||
"label": "Quando un dispositivo non è in grado di eseguire Windows 11, installare l'ultimo aggiornamento delle funzionalità Windows 10",
|
"label": "Quando un dispositivo non è idoneo per l'esecuzione di Windows 11, installa l'ultimo aggiornamento delle funzionalità Windows 10",
|
||||||
"notApplicable": "Non applicabile",
|
"notApplicable": "Non applicabile",
|
||||||
"summaryLabel": "Installa Windows 10 nei dispositivi che non sono in grado di eseguire Windows 11"
|
"summaryLabel": "Installa Windows 10 nei dispositivi non idonei per l'esecuzione di Windows 11"
|
||||||
},
|
},
|
||||||
"bladeTitle": "Distribuzione di aggiornamenti delle funzionalità",
|
"bladeTitle": "Distribuzione di aggiornamenti delle funzionalità",
|
||||||
"deploymentSettingsTitle": "Impostazioni di distribuzione",
|
"deploymentSettingsTitle": "Impostazioni di distribuzione",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Selezionare una delle opzioni seguenti per specificare le app da cui questa app può ricevere dati:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: consente la ricezione di dati nei documenti o negli account dell'organizzazione da qualsiasi app",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Specificare la lingua e l'area geografica che verranno usate.",
|
"languageInfo": "Specificare la lingua e l'area geografica che verranno usate.",
|
||||||
"licenseAgreement": "Condizioni di licenza software Microsoft",
|
"licenseAgreement": "Condizioni di licenza software Microsoft",
|
||||||
"licenseAgreementInfo": "Specificare se visualizzare le condizioni di licenza agli utenti.",
|
"licenseAgreementInfo": "Specificare se visualizzare le condizioni di licenza agli utenti.",
|
||||||
"plugAndForgetDevice": "Distribuzione automatica (anteprima)",
|
"plugAndForgetDevice": "Distribuzione automatica",
|
||||||
"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. ",
|
"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",
|
"privacySettings": "Impostazioni di privacy",
|
||||||
"privacySettingsInfo": "Specificare se visualizzare le impostazioni di privacy agli utenti.",
|
"privacySettingsInfo": "Specificare se visualizzare le impostazioni di privacy agli utenti.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Interrompi solo le app di blocco selezionate nella fase tecnico (anteprima)",
|
"allowNonBlockingAppInstallation": "Interrompi solo le app di blocco selezionate nella fase tecnico",
|
||||||
"apps": "app",
|
"apps": "app",
|
||||||
"appsListName": "Elenco applicazioni",
|
"appsListName": "Elenco applicazioni",
|
||||||
"blockingApps": "Blocco delle app",
|
"blockingApps": "Blocco delle app",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Attività",
|
"activity": "Attività",
|
||||||
|
"activityName": "Nome attività",
|
||||||
"actor": "Azione avviata da (attore)",
|
"actor": "Azione avviata da (attore)",
|
||||||
|
"actorType": "Tipo di attore",
|
||||||
"app": "App",
|
"app": "App",
|
||||||
"appName": "Nome dell'app",
|
"appName": "Nome dell'app",
|
||||||
"applicationName": "Nome dell'applicazione",
|
"applicationName": "Nome dell'applicazione",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "Connettore MTD",
|
"mtdConnector": "Connettore MTD",
|
||||||
"name": "Nome del profilo",
|
"name": "Nome del profilo",
|
||||||
"oSVersion": "Versione sistema operativo",
|
"oSVersion": "Versione sistema operativo",
|
||||||
|
"operationType": "Tipo di operazione",
|
||||||
"os": "Sistema operativo",
|
"os": "Sistema operativo",
|
||||||
"packageName": "Nome pacchetto",
|
"packageName": "Nome pacchetto",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"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."
|
"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."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Nome dell'app di messaggistica"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "ID pacchetto dell’app di messaggistica"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "Schema URL dell'app di messaggistica"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Notifiche sui dati dell'organizzazione",
|
"label": "Notifiche sui dati dell'organizzazione",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "Se questa opzione è bloccata, l'app non può stampare dati protetti."
|
"tooltip": "Se questa opzione è bloccata, l'app non può stampare dati protetti."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "In genere, quando un utente seleziona un collegamento ipertestuale di messaggistica in un'app, viene aperta un'app di messaggistica con il numero di telefono prepopolato e pronto per l'invio. Per questa impostazione, scegliere come gestire questo tipo di trasferimento di contenuti quando viene avviato da un'app gestita da criteri. Per rendere effettiva questa impostazione, potrebbero essere necessari ulteriori passaggi. Prima di tutto, verificare che l’SMS sia stato rimosso dall'elenco Seleziona app da esentare. Assicurarsi quindi che l'applicazione usi una versione più recente di Intune SDK (versione > 19.0.0).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Trasferire i dati di messaggistica a",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "In genere, quando un utente seleziona un collegamento ipertestuale di messaggistica in un'app, viene aperta un'app di messaggistica con il numero di telefono prepopolato e pronto per l'invio. Per questa impostazione, scegliere come gestire questo tipo di trasferimento di contenuti quando viene avviato da un'app gestita da criteri."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Ricevi dati da altre app",
|
"label": "Ricevi dati da altre app",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "Consente di usare il provider di credenziali Web per l'accesso.",
|
"authenticationWebSignInDescription": "Consente di usare il provider di credenziali Web per l'accesso.",
|
||||||
"authenticationWebSignInName": "Accesso Web (impostazione deprecata)",
|
"authenticationWebSignInName": "Accesso Web (impostazione deprecata)",
|
||||||
"authorizedAppRulesDescription": "Applica le regole autorizzate dei firewall nell'archivio locale per il riconoscimento e l'applicazione.",
|
"authorizedAppRulesDescription": "Applica le regole autorizzate dei firewall nell'archivio locale per il riconoscimento e l'applicazione.",
|
||||||
"authorizedAppRulesName": "Regole di Microsoft Defender Firewall per le applicazioni autorizzate dall'archivio locale",
|
"authorizedAppRulesName": "Regole di Windows Firewall per le applicazioni autorizzate dall'archivio locale",
|
||||||
"authorizedUsersListHideAdminUsersName": "Nascondi gli amministratori del computer",
|
"authorizedUsersListHideAdminUsersName": "Nascondi gli amministratori del computer",
|
||||||
"authorizedUsersListHideLocalUsersName": "Nascondi gli utenti locali",
|
"authorizedUsersListHideLocalUsersName": "Nascondi gli utenti locali",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Nascondi gli account per dispositivi mobili",
|
"authorizedUsersListHideMobileAccountsName": "Nascondi gli account per dispositivi mobili",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Questa impostazione specifica l'intervallo di tempo senza input utente dopo il quale lo schermo del dispositivo mobile viene bloccato. Valore consigliato: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Questa impostazione specifica l'intervallo di tempo senza input utente dopo il quale lo schermo del dispositivo mobile viene bloccato. Valore consigliato: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Questa impostazione specifica l'intervallo di tempo senza input utente dopo il quale il dispositivo viene bloccato. Valore consigliato: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Questa impostazione specifica l'intervallo di tempo senza input utente dopo il quale il dispositivo viene bloccato. Valore consigliato: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Numero massimo di minuti di inattività prima che venga richiesta la password",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Numero massimo di minuti di inattività prima che venga richiesta la password",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Valore consigliato: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Consente di selezionare la versione più recente di un sistema operativo consentita in un dispositivo mobile.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Consente di selezionare la versione più recente di un sistema operativo consentita in un dispositivo mobile.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Versione massima del sistema operativo per dispositivi mobili",
|
"complianceMobileOsVersionRestrictionMaximumName": "Versione massima del sistema operativo per dispositivi mobili",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Consente di selezionare la versione meno recente di un sistema operativo consentita in un dispositivo mobile.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Consente di selezionare la versione meno recente di un sistema operativo consentita in un dispositivo mobile.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "Questa impostazione specifica il numero di password recenti che non possono essere usate di nuovo. Valore consigliato: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "Questa impostazione specifica il numero di password recenti che non possono essere usate di nuovo. Valore consigliato: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Numero di password precedenti di cui impedire il riutilizzo",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Numero di password precedenti di cui impedire il riutilizzo",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Valore consigliato: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Immettere la versione più recente della build del sistema operativo disponibile in un dispositivo. Ad esempio: 20E252<br> Se si vuole impostare un aggiornamento di Apple Rapid Security Response come build massima del sistema operativo, immettere la versione della build supplementare. Ad esempio: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Immettere la versione più recente della build del sistema operativo disponibile in un dispositivo. Ad esempio: 20E252<br> Se si vuole impostare un aggiornamento di Apple Rapid Security Response come build massima del sistema operativo, immettere la versione della build supplementare. Ad esempio: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Versione massima della build del sistema operativo",
|
"complianceOsBuildVersionRestrictionMaximumName": "Versione massima della build del sistema operativo",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Immettere la versione meno recente della build del sistema operativo disponibile in un dispositivo. Ad esempio: 20E252<br>Se si vuole impostare un aggiornamento di Apple Rapid Security Response come build minima del sistema operativo, immettere la versione della build supplementare. Ad esempio: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Immettere la versione meno recente della build del sistema operativo disponibile in un dispositivo. Ad esempio: 20E252<br>Se si vuole impostare un aggiornamento di Apple Rapid Security Response come build minima del sistema operativo, immettere la versione della build supplementare. Ad esempio: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Richiede che l'intelligence sulla sicurezza di Microsoft Defender sia aggiornata.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Richiede che l'intelligence sulla sicurezza di Microsoft Defender sia aggiornata.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Intelligence sulla sicurezza aggiornata per antimalware Microsoft Defender",
|
"complianceRequireWindowsDefenderSignatureName": "Intelligence sulla sicurezza aggiornata per antimalware Microsoft Defender",
|
||||||
"complianceRequiredPasswordTypeDescription": "Questa impostazione specifica se consentire password che contengono solo caratteri numerici o se è necessario che contengano caratteri non numerici. Raccomandazioni: è necessaria una password di tipo alfanumerico. Numero minimo di set di caratteri: 1",
|
"complianceRequiredPasswordTypeDescription": "Questa impostazione specifica se consentire password che contengono solo caratteri numerici o se è necessario che contengano caratteri non numerici. Raccomandazioni: è necessaria una password di tipo alfanumerico. Numero minimo di set di caratteri: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Raccomandazioni: tipo di password obbligatorio: alfanumerico, numero minimo di set di caratteri: 1",
|
||||||
"complianceRootedAllowedDescription": "Consente di impedire ai dispositivi rooted di avere l'accesso aziendale.",
|
"complianceRootedAllowedDescription": "Consente di impedire ai dispositivi rooted di avere l'accesso aziendale.",
|
||||||
"complianceRootedAllowedName": "Dispositivi rooted",
|
"complianceRootedAllowedName": "Dispositivi rooted",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "Questa impostazione specifica se impedire al dispositivo di usare la funzionalità di debug USB.",
|
"complianceSecurityDisableUSBDebuggingDescription": "Questa impostazione specifica se impedire al dispositivo di usare la funzionalità di debug USB.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Consente di selezionare la versione meno recente di un sistema operativo consentita in un dispositivo. La versione del sistema operativo è definita come major.minor.build.revision. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Consente di selezionare la versione meno recente di un sistema operativo consentita in un dispositivo. La versione del sistema operativo è definita come major.minor.build.revision. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Consente di selezionare il tipo di password da usare nel dispositivo.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Consente di selezionare il tipo di password da usare nel dispositivo.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Tipo di password",
|
"complianceWindowsRequiredPasswordTypeName": "Tipo di password",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Richiedere una password per sbloccare il profilo di lavoro",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Sicurezza del profilo di lavoro",
|
||||||
"compliantAppsOption": "Elenco di app conformi. Segnala la non conformità per eventuali app installate non incluse in questo elenco.",
|
"compliantAppsOption": "Elenco di app conformi. Segnala la non conformità per eventuali app installate non incluse in questo elenco.",
|
||||||
"computerNameStaticPrefixDescription": "Ai computer viene assegnato un nome costituito da 15 caratteri. Specificare un prefisso. Il resto dei 15 caratteri sarà casuale.",
|
"computerNameStaticPrefixDescription": "Ai computer viene assegnato un nome costituito da 15 caratteri. Specificare un prefisso. Il resto dei 15 caratteri sarà casuale.",
|
||||||
"computerNameStaticPrefixName": "Prefisso nome computer",
|
"computerNameStaticPrefixName": "Prefisso nome computer",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Elenco di domini consentiti di Google",
|
"domainAllowListName": "Elenco di domini consentiti di Google",
|
||||||
"domainAllowListTableEmptyValueExample": "Immettere un dominio",
|
"domainAllowListTableEmptyValueExample": "Immettere un dominio",
|
||||||
"domainAllowListTableName": "Dominio",
|
"domainAllowListTableName": "Dominio",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Regole di Microsoft Defender Firewall per le applicazioni autorizzate dall'archivio locale (reti di dominio)",
|
"domainAuthorizedAppRulesSummaryLabel": "Regole di Windows Firewall per le applicazioni autorizzate dall'archivio locale (reti di dominio)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Microsoft Defender Firewall (reti di dominio)",
|
"domainFirewallEnabledSummaryLabel": "Windows Firewall (reti di dominio)",
|
||||||
"domainGlobalRulesSummaryLabel": "Regole di Microsoft Defender Firewall per porte globali dall'archivio locale (reti di dominio)",
|
"domainGlobalRulesSummaryLabel": "Regole di Windows Firewall per porte globali dall'archivio locale (reti di dominio)",
|
||||||
"domainIPsecRulesSummaryLabel": "Regole IPsec dall'archivio locale (reti di dominio)",
|
"domainIPsecRulesSummaryLabel": "Regole IPsec dall'archivio locale (reti di dominio)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "Esenzione di pacchetti protetti da IPsec con la modalità mascheramento (reti di dominio)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "Esenzione di pacchetti protetti da IPsec con la modalità mascheramento (reti di dominio)",
|
||||||
"domainInboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in ingresso (reti di dominio)",
|
"domainInboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in ingresso (reti di dominio)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Notifiche in ingresso (reti di dominio)",
|
"domainInboundNotificationsSummaryLabel": "Notifiche in ingresso (reti di dominio)",
|
||||||
"domainLocalStoreSummaryLabel": "Regole di Microsoft Defender Firewall dall'archivio locale (reti di dominio)",
|
"domainLocalStoreSummaryLabel": "Regole di Windows Firewall dall'archivio locale (reti di dominio)",
|
||||||
"domainNameSourceOption": "Origine del nome di dominio utente",
|
"domainNameSourceOption": "Origine del nome di dominio utente",
|
||||||
"domainNetworkName": "Rete di dominio (aziendale)",
|
"domainNetworkName": "Rete di dominio (aziendale)",
|
||||||
"domainOutboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in uscita (reti di dominio)",
|
"domainOutboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in uscita (reti di dominio)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Accesso Single Sign-On (SSO) con il certificato alternativo",
|
"enableSingleSignOnName": "Accesso Single Sign-On (SSO) con il certificato alternativo",
|
||||||
"enableUsePrivateStoreOnly": "Usa solo lo Store privato",
|
"enableUsePrivateStoreOnly": "Usa solo lo Store privato",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Consente il download delle app solo da uno Store privato e non dallo Store pubblico.",
|
"enableUsePrivateStoreOnlyDescription": "Consente il download delle app solo da uno Store privato e non dallo Store pubblico.",
|
||||||
"enableWindowsDefenderFirewallName": "Microsoft Defender Firewall",
|
"enableWindowsDefenderFirewallName": "Windows Firewall",
|
||||||
"enableWithUEFILock": "Abilita con blocco UEFI",
|
"enableWithUEFILock": "Abilita con blocco UEFI",
|
||||||
"enableWithoutUEFILock": "Abilita senza blocco UEFI",
|
"enableWithoutUEFILock": "Abilita senza blocco UEFI",
|
||||||
"enabledForAzureAdAndHybridOption": "Rotazione delle chiavi abilitata per i dispositivi aggiunti a Microsoft Entra e Microsoft Entra ibrido",
|
"enabledForAzureAdAndHybridOption": "Rotazione delle chiavi abilitata per i dispositivi aggiunti a Microsoft Entra e Microsoft Entra ibrido",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Blocca le connessioni in ingresso per le app seguenti.",
|
"firewallAppsBlockedHeader": "Blocca le connessioni in ingresso per le app seguenti.",
|
||||||
"firewallAppsBlockedPageDescription": "Selezionare le app che devono bloccare le connessioni in ingresso.",
|
"firewallAppsBlockedPageDescription": "Selezionare le app che devono bloccare le connessioni in ingresso.",
|
||||||
"firewallAppsBlockedPageName": "App bloccate",
|
"firewallAppsBlockedPageName": "App bloccate",
|
||||||
"firewallCreateRules": "Consente di creare le regole di Microsoft Defender Firewall. Un profilo di Endpoint Protection può contenere al massimo 150 regole.",
|
"firewallCreateRules": "Creare regole di Windows Firewall. Un profilo di Endpoint Protection può contenere al massimo 150 regole.",
|
||||||
"firewallRequiredDescription": "Il firewall deve essere attivo",
|
"firewallRequiredDescription": "Il firewall deve essere attivo",
|
||||||
"firewallRequiredName": "Firewall",
|
"firewallRequiredName": "Firewall",
|
||||||
"firewallRuleAction": "Azione",
|
"firewallRuleAction": "Azione",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Canale di disponibilità generale",
|
"generalAvailabilityChannel": "Canale di disponibilità generale",
|
||||||
"generalNetworkSettingsHeader": "Generale",
|
"generalNetworkSettingsHeader": "Generale",
|
||||||
"genericLocalUsersOrGroupsName": "Utenti o gruppi locali generici",
|
"genericLocalUsersOrGroupsName": "Utenti o gruppi locali generici",
|
||||||
"globalConfigurationsDescription": "Consente di configurare le impostazioni di Microsoft Defender Firewall applicabili a tutti i tipi di rete.",
|
"globalConfigurationsDescription": "Consente di configurare le impostazioni di Windows Firewall applicabili a tutti i tipi di rete.",
|
||||||
"globalConfigurationsName": "Impostazioni globali",
|
"globalConfigurationsName": "Impostazioni globali",
|
||||||
"globalRulesDescription": "Applica le regole dei firewall per porte globali nell'archivio locale per il riconoscimento e l'applicazione.",
|
"globalRulesDescription": "Applica le regole dei firewall per porte globali nell'archivio locale per il riconoscimento e l'applicazione.",
|
||||||
"globalRulesName": "Regole di Microsoft Defender Firewall per porte globali dall'archivio locale",
|
"globalRulesName": "Regole di Windows Firewall per porte globali dall'archivio locale",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Indirizzi di posta elettronica dell'account Google",
|
"googleAccountEmailAddresses": "Indirizzi di posta elettronica dell'account Google",
|
||||||
"googleAccountEmailAddressesDescription": "Elenco delimitato da virgole di indirizzi di posta elettronica",
|
"googleAccountEmailAddressesDescription": "Elenco delimitato da virgole di indirizzi di posta elettronica",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Richiedi le credenziali nel desktop protetto",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Richiedi le credenziali nel desktop protetto",
|
||||||
"localServerCachingHeader": "Memorizzazione nella cache del server locale",
|
"localServerCachingHeader": "Memorizzazione nella cache del server locale",
|
||||||
"localStoreDescription": "Applica regole del firewall globali dall'archivio locale per il riconoscimento e l'applicazione.",
|
"localStoreDescription": "Applica regole del firewall globali dall'archivio locale per il riconoscimento e l'applicazione.",
|
||||||
"localStoreName": "Regole di Microsoft Defender Firewall dall'archivio locale",
|
"localStoreName": "Regole di Windows Firewall dall'archivio locale",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Consente di specificare se visualizzare un'impostazione configurabile dall'utente per controllare il timeout dello schermo quando è attiva la schermata di blocco dei dispositivi Windows 10 Mobile. Se questo criterio è impostato su Consenti, il valore impostato da \"Timeout dello schermo\" viene ignorato.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Consente di specificare se visualizzare un'impostazione configurabile dall'utente per controllare il timeout dello schermo quando è attiva la schermata di blocco dei dispositivi Windows 10 Mobile. Se questo criterio è impostato su Consenti, il valore impostato da \"Timeout dello schermo\" viene ignorato.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Timeout dello schermo configurabile dall'utente (solo dispositivi mobili)",
|
"lockScreenAllowTimeoutConfigurationName": "Timeout dello schermo configurabile dall'utente (solo dispositivi mobili)",
|
||||||
"lockScreenBackgroundImageURLDescription": "URL dell'immagine di sfondo della schermata iniziale personalizzata. Deve essere un file PNG con endpoint https://",
|
"lockScreenBackgroundImageURLDescription": "URL dell'immagine di sfondo della schermata iniziale personalizzata. Deve essere un file PNG con endpoint https://",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "Il valore per MTU deve essere compreso tra 1280 e 1400 byte",
|
"mTUSizeInBytesBounds": "Il valore per MTU deve essere compreso tra 1280 e 1400 byte",
|
||||||
"mTUSizeInBytesName": "Unità massima di trasmissione",
|
"mTUSizeInBytesName": "Unità massima di trasmissione",
|
||||||
"mTUSizeInBytesToolTip": "Pacchetto di dati più grande, in byte, che può essere trasmesso in rete. Se questa opzione non è configurata, la dimensione predefinita per Apple sarà 1280 byte. Applicabile a iOS 14 e versioni successive.",
|
"mTUSizeInBytesToolTip": "Pacchetto di dati più grande, in byte, che può essere trasmesso in rete. Se questa opzione non è configurata, la dimensione predefinita per Apple sarà 1280 byte. Applicabile a iOS 14 e versioni successive.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Usare MAC casuale",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Usare impostazione predefinita dispositivo",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Usare MAC casuale solo quando necessario, ad esempio per il supporto NAC. Gli utenti possono modificare questa impostazione. Si applica ad Android 13 e versioni successive.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Usare dispositivo MAC",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "Assegnazione casuale indirizzi MAC",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store e sviluppatori identificati",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store e sviluppatori identificati",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Consente di bloccare AirPlay, la condivisione dello schermo in altri dispositivi e una funzionalità dell'app Classroom usata dai docenti per visualizzare le schermate degli studenti. Questa impostazione non è disponibile se sono stati bloccati gli screenshot.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Consente di bloccare AirPlay, la condivisione dello schermo in altri dispositivi e una funzionalità dell'app Classroom usata dai docenti per visualizzare le schermate degli studenti. Questa impostazione non è disponibile se sono stati bloccati gli screenshot.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Immettere un numero (4-16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Immettere un numero (4-16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Immettere un numero (6-16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Immettere un numero (6-16)",
|
||||||
"minimumPasswordLengthName": "Lunghezza minima password",
|
"minimumPasswordLengthName": "Lunghezza minima password",
|
||||||
|
"minimumPasswordLengthTooltipText": "Immettere un numero",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Gli aggiornamenti mancanti verranno installati automaticamente",
|
"minimumUpdateAutoInstallClassificationDescription": "Gli aggiornamenti mancanti verranno installati automaticamente",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Installa la classificazione specificata di aggiornamenti",
|
"minimumUpdateAutoInstallClassificationName": "Installa la classificazione specificata di aggiornamenti",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Importanti",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Importanti",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Usa il server proxy manuale",
|
"networkProxyUseManualServerName": "Usa il server proxy manuale",
|
||||||
"networkProxyUseScriptUrlName": "Usa lo script proxy",
|
"networkProxyUseScriptUrlName": "Usa lo script proxy",
|
||||||
"networkSettingsName": "Impostazioni di rete",
|
"networkSettingsName": "Impostazioni di rete",
|
||||||
"networkSettingsSubtitle": "Consente di configurare le impostazioni di Microsoft Defender Firewall applicabili a tipi di rete specifici.",
|
"networkSettingsSubtitle": "Configurare le impostazioni di Windows Firewall applicabili a tipi di rete specifici.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Aggiungere app iOS gestite che non devono essere autorizzate a usare la rete dati.",
|
"networkUsageRulesBlockCellularHeaderName": "Aggiungere app iOS gestite che non devono essere autorizzate a usare la rete dati.",
|
||||||
"networkUsageRulesBlockCellularName": "Blocca l'uso della rete dati",
|
"networkUsageRulesBlockCellularName": "Blocca l'uso della rete dati",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Aggiungere app iOS gestite che non devono essere autorizzate a usare la rete dati durante il roaming.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Aggiungere app iOS gestite che non devono essere autorizzate a usare la rete dati durante il roaming.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "App e processi",
|
"privacyPreferencesTableName": "App e processi",
|
||||||
"privacyPublishUserActivitiesDescription": "Consente di bloccare le esperienze condivise o l'individuazione di risorse usate di recente nello strumento per il cambio modalità per l'attività e così via.",
|
"privacyPublishUserActivitiesDescription": "Consente di bloccare le esperienze condivise o l'individuazione di risorse usate di recente nello strumento per il cambio modalità per l'attività e così via.",
|
||||||
"privacyPublishUserActivitiesName": "Pubblica le attività utente",
|
"privacyPublishUserActivitiesName": "Pubblica le attività utente",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Regole di Microsoft Defender Firewall per le applicazioni autorizzate dall'archivio locale (reti private)",
|
"privateAuthorizedAppRulesSummaryLabel": "Regole di Windows Firewall dell'applicazione autorizzate dall'archivio locale (reti private)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Microsoft Defender Firewall (reti private)",
|
"privateFirewallEnabledSummaryLabel": "Windows Firewall (reti private)",
|
||||||
"privateGlobalRulesSummaryLabel": "Regole di Microsoft Defender Firewall per porte globali dall'archivio locale (reti private)",
|
"privateGlobalRulesSummaryLabel": "Regole di Windows Firewall per porte globali dall'archivio locale (reti private)",
|
||||||
"privateIPsecRulesSummaryLabel": "Regole IPsec dall'archivio locale (reti private)",
|
"privateIPsecRulesSummaryLabel": "Regole IPsec dall'archivio locale (reti private)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "Esenzione di pacchetti protetti da IPsec con la modalità mascheramento (reti private)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "Esenzione di pacchetti protetti da IPsec con la modalità mascheramento (reti private)",
|
||||||
"privateInboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in ingresso (reti private)",
|
"privateInboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in ingresso (reti private)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Notifiche in ingresso (reti private)",
|
"privateInboundNotificationsSummaryLabel": "Notifiche in ingresso (reti private)",
|
||||||
"privateLocalStoreSummaryLabel": "Regole di Microsoft Defender Firewall dall'archivio locale (reti private)",
|
"privateLocalStoreSummaryLabel": "Regole di Windows Firewall dall'archivio locale (reti private)",
|
||||||
"privateNetworkName": "Rete privata (individuabile)",
|
"privateNetworkName": "Rete privata (individuabile)",
|
||||||
"privateOutboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in uscita (reti private)",
|
"privateOutboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in uscita (reti private)",
|
||||||
"privateShieldedSummaryLabel": "Schermato (reti private)",
|
"privateShieldedSummaryLabel": "Schermato (reti private)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "URL server proxy",
|
"proxyServerURLName": "URL server proxy",
|
||||||
"proxyServersAutoDetectionName": "Rilevamento automatico di altri server proxy aziendali",
|
"proxyServersAutoDetectionName": "Rilevamento automatico di altri server proxy aziendali",
|
||||||
"proxyUrlExample": "Ad esempio itgproxy.contoso.com",
|
"proxyUrlExample": "Ad esempio itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Regole di Microsoft Defender Firewall per le applicazioni autorizzate dall'archivio locale (reti private)",
|
"publicAuthorizedAppRulesSummaryLabel": "Regole di Windows Firewall per le applicazioni autorizzate dall'archivio locale",
|
||||||
"publicFirewallEnabledSummaryLabel": "Microsoft Defender Firewall (reti pubbliche)",
|
"publicFirewallEnabledSummaryLabel": "Windows Firewall (reti pubbliche)",
|
||||||
"publicGlobalRulesSummaryLabel": "Regole di Microsoft Defender Firewall per porte globali dall'archivio locale (reti pubbliche)",
|
"publicGlobalRulesSummaryLabel": "Regole di Windows Firewall per porte globali dall'archivio locale (reti pubbliche)",
|
||||||
"publicIPsecRulesSummaryLabel": "Regole IPsec dall'archivio locale (reti pubbliche)",
|
"publicIPsecRulesSummaryLabel": "Regole IPsec dall'archivio locale (reti pubbliche)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "Esenzione di pacchetti protetti da IPsec con la modalità mascheramento (reti pubbliche)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "Esenzione di pacchetti protetti da IPsec con la modalità mascheramento (reti pubbliche)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in ingresso (reti pubbliche)",
|
"publicInboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in ingresso (reti pubbliche)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Notifiche in ingresso (reti pubbliche)",
|
"publicInboundNotificationsSummaryLabel": "Notifiche in ingresso (reti pubbliche)",
|
||||||
"publicLocalStoreSummaryLabel": "Regole di Microsoft Defender Firewall dall'archivio locale (reti pubbliche)",
|
"publicLocalStoreSummaryLabel": "Regole di Windows Firewall dall'archivio locale (reti pubbliche)",
|
||||||
"publicNetworkName": "Rete pubblica (non individuabile)",
|
"publicNetworkName": "Rete pubblica (non individuabile)",
|
||||||
"publicOutboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in uscita (reti pubbliche)",
|
"publicOutboundConnectionsSummaryLabel": "Azione predefinita per le connessioni in uscita (reti pubbliche)",
|
||||||
"publicPlayStoreEnabledDescription": "Gli utenti ottengono l'accesso a tutte le app, ad eccezione di quelle per cui è stata richiesta la disinstallazione in App client. Se si sceglie \"Non configurato\" per questa impostazione, gli utenti potranno accedere solo alle app elencate come disponibili oppure obbligatorie in App client.",
|
"publicPlayStoreEnabledDescription": "Gli utenti ottengono l'accesso a tutte le app, ad eccezione di quelle per cui è stata richiesta la disinstallazione in App client. Se si sceglie \"Non configurato\" per questa impostazione, gli utenti potranno accedere solo alle app elencate come disponibili oppure obbligatorie in App client.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Registra nel provider di archiviazione chiavi software",
|
"sCEPPolicyEnrollToSoftwareKSP": "Registra nel provider di archiviazione chiavi software",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Registra nel provider di archiviazione chiavi Trusted Platform Module (TPM) oppure genera errore",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Registra nel provider di archiviazione chiavi Trusted Platform Module (TPM) oppure genera errore",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Registra nel provider di archiviazione chiavi Trusted Platform Module (TPM) se presente, altrimenti nel provider di archiviazione chiavi software",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Registra nel provider di archiviazione chiavi Trusted Platform Module (TPM) se presente, altrimenti nel provider di archiviazione chiavi software",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "AVVISO: né l'EKU per qualsiasi scopo (OID 2.5.29.37.0) né l'EKU per qualsiasi criterio app (OID 1.3.6.1.4.1.311.10.12.1) possono essere usati con un'autorità di certificazione creata in Microsoft Cloud PKI.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "Nella maggior parte dei casi il certificato richiede almeno l'Autenticazione client per consentire l'autenticazione dell'utente o del dispositivo in un server. È tuttavia possibile specificare utilizzi aggiuntivi per definire in modo più dettagliato la finalità della chiave.",
|
"sCEPPolicyExtendedKeyUsageDescription": "Nella maggior parte dei casi il certificato richiede almeno l'Autenticazione client per consentire l'autenticazione dell'utente o del dispositivo in un server. È tuttavia possibile specificare utilizzi aggiuntivi per definire in modo più dettagliato la finalità della chiave.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Utilizzo chiavi avanzato",
|
"sCEPPolicyExtendedKeyUsageName": "Utilizzo chiavi avanzato",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Usare un tipo di algoritmo hash con il certificato. Assicurarsi di selezionare il livello più elevato di sicurezza supportato dal dispositivo che si connette.",
|
"sCEPPolicyHashAlgorithmDescription": "Usare un tipo di algoritmo hash con il certificato. Assicurarsi di selezionare il livello più elevato di sicurezza supportato dal dispositivo che si connette.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Immettere un numero di giorni (1-255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Immettere un numero di giorni (1-255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Immettere il numero di giorni (1 - 365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Immettere il numero di giorni (1 - 365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Scadenza password (giorni)",
|
"workProfilePasswordExpirationInDaysName": "Scadenza password (giorni)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Immettere il numero di giorni",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Password per il profilo di lavoro: lunghezza minima della password",
|
"workProfilePasswordMinimumLengthReportingName": "Password per il profilo di lavoro: lunghezza minima della password",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Password del profilo di lavoro: numero di caratteri obbligatori",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Password del profilo di lavoro: numero di caratteri obbligatori",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Password del profilo di lavoro: numero di caratteri in minuscolo obbligatori",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Password del profilo di lavoro: numero di caratteri in minuscolo obbligatori",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "Qualsiasi app",
|
"anyAppOptionText": "Qualsiasi app",
|
||||||
"anyDestinationAnySourceOptionText": "Qualsiasi destinazione e qualsiasi origine",
|
"anyDestinationAnySourceOptionText": "Qualsiasi destinazione e qualsiasi origine",
|
||||||
"anyDialerAppOptionText": "Qualsiasi app dialer",
|
"anyDialerAppOptionText": "Qualsiasi app dialer",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "Qualsiasi app di messaggistica",
|
||||||
"anyPolicyManagedDialerAppOptionText": "Qualsiasi app dialer gestita da criteri",
|
"anyPolicyManagedDialerAppOptionText": "Qualsiasi app dialer gestita da criteri",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "Qualsiasi app di messaggistica gestita da criteri",
|
||||||
"appAdded": "L'app è stata aggiunta",
|
"appAdded": "L'app è stata aggiunta",
|
||||||
"appBasedConditionalAccess": "Accesso condizionale basato su app",
|
"appBasedConditionalAccess": "Accesso condizionale basato su app",
|
||||||
"appColumnLabel": "App",
|
"appColumnLabel": "App",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "ID dispositivo MDM",
|
"mdmDeviceId": "ID dispositivo MDM",
|
||||||
"mdmWipInvalidVersionSettings": "Le definizioni della versione minima/massima per una o più app non sono valide.<br /> <br />Windows Information Protection con criteri di registrazione consente di specificare solo una delle versioni minime o massime, a meno che entrambe le versioni non vengano specificate come equivalenti. Quando viene specificata solo la versione minima, la regola viene impostata su superiore o uguale alla versione minima. Analogamente, se viene specificata solo la versione massima, la regola viene impostata su inferiore o uguale alla versione massima.",
|
"mdmWipInvalidVersionSettings": "Le definizioni della versione minima/massima per una o più app non sono valide.<br /> <br />Windows Information Protection con criteri di registrazione consente di specificare solo una delle versioni minime o massime, a meno che entrambe le versioni non vengano specificate come equivalenti. Quando viene specificata solo la versione minima, la regola viene impostata su superiore o uguale alla versione minima. Analogamente, se viene specificata solo la versione massima, la regola viene impostata su inferiore o uguale alla versione massima.",
|
||||||
"mdmWipReport": "Report di Windows Information Protection per MDM",
|
"mdmWipReport": "Report di Windows Information Protection per MDM",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Nome dell'app di messaggistica (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "ID pacchetto dell'app di messaggistica (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "Schema URL dell'app di messaggistica (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender per endpoint",
|
"microsoftDefenderForEndpoint": "Microsoft Defender per endpoint",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "Versione minima dell'app",
|
"minAppVersion": "Versione minima dell'app",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Catalogo impostazioni",
|
"settingsCatalog": "Catalogo impostazioni",
|
||||||
"settingsSelectorLabel": "Impostazioni",
|
"settingsSelectorLabel": "Impostazioni",
|
||||||
"silent": "Installazione automatica",
|
"silent": "Installazione automatica",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "Un'app di messaggistica specifica",
|
||||||
"specificUserIsLicensedIntune": "{0} ha una licenza per Microsoft Intune.",
|
"specificUserIsLicensedIntune": "{0} ha una licenza per Microsoft Intune.",
|
||||||
"state": "Stato",
|
"state": "Stato",
|
||||||
"status": "Stato",
|
"status": "Stato",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Baseline di Microsoft Edge",
|
"edgeSecurityBaseline": "Baseline di Microsoft Edge",
|
||||||
"edgeSecurityBaselinePreview": "Anteprima: baseline di Microsoft Edge",
|
"edgeSecurityBaselinePreview": "Anteprima: baseline di Microsoft Edge",
|
||||||
"editionUpgradeConfiguration": "Aggiornamento dell'edizione e cambio di modalità",
|
"editionUpgradeConfiguration": "Aggiornamento dell'edizione e cambio di modalità",
|
||||||
"firewall": "Microsoft Defender Firewall",
|
"firewall": "Windows Firewall",
|
||||||
"firewallRules": "Regole di Microsoft Defender Firewall",
|
"firewallRules": "Regole di Windows Firewall",
|
||||||
"identityProtection": "Protezione account",
|
"identityProtection": "Protezione account",
|
||||||
"identityProtectionPreview": "Protezione account (anteprima)",
|
"identityProtectionPreview": "Protezione account (anteprima)",
|
||||||
"mDMSecurityBaseline1810": "Baseline di sicurezza MDM per Windows 10 e versioni successive per ottobre 2018",
|
"mDMSecurityBaseline1810": "Baseline di sicurezza MDM per Windows 10 e versioni successive per ottobre 2018",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Anteprima: baseline di Microsoft Office O365",
|
"office365BaselinePreview": "Anteprima: baseline di Microsoft Office O365",
|
||||||
"securityBaselines": "Baseline di sicurezza",
|
"securityBaselines": "Baseline di sicurezza",
|
||||||
"test": "Modello di test",
|
"test": "Modello di test",
|
||||||
"testFirewallRulesSecurityTemplateName": "Regole di Microsoft Defender Firewall (test)",
|
"testFirewallRulesSecurityTemplateName": "Regole di Windows Firewall (Test)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Protezione account (test)",
|
"testIdentityProtectionSecurityTemplateName": "Protezione account (test)",
|
||||||
"windowsSecurityExperience": "Esperienza di Sicurezza di Windows"
|
"windowsSecurityExperience": "Esperienza di Sicurezza di Windows"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Microsoft Defender Firewall"
|
"mDE": "Windows Firewall"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Regole di Microsoft Defender Firewall"
|
"mDE": "Regole di Windows Firewall"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "Impostazioni di spostamento cartelle note di OneDrive: Windows 10 nel modello di configurazione cloud. https://aka.ms/CloudConfigGuide"
|
"description": "Impostazioni di spostamento cartelle note di OneDrive: Windows 10 nel modello di configurazione cloud. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Configurazione della gestione dei dispositivi mobili",
|
"expeditedCheckin": "Configurazione della gestione dei dispositivi mobili",
|
||||||
"exploitProtection": "Protezione di Exploit",
|
"exploitProtection": "Protezione di Exploit",
|
||||||
"extensions": "Estensioni",
|
"extensions": "Estensioni",
|
||||||
"hardwareConfigurations": "Configurazioni BIOS",
|
"hardwareConfigurations": "Configurazioni BIOS e altre impostazioni",
|
||||||
"identityProtection": "Identity Protection",
|
"identityProtection": "Identity Protection",
|
||||||
"iosCompliancePolicy": "Criteri di conformità di iOS",
|
"iosCompliancePolicy": "Criteri di conformità di iOS",
|
||||||
"kiosk": "Tutto schermo",
|
"kiosk": "Tutto schermo",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Antivirus Microsoft Defender",
|
"microsoftDefenderAntivirus": "Antivirus Microsoft Defender",
|
||||||
"microsoftDefenderAntivirusexclusions": "Esclusioni di Antivirus Microsoft Defender",
|
"microsoftDefenderAntivirusexclusions": "Esclusioni di Antivirus Microsoft Defender",
|
||||||
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender per endpoint (dispositivi desktop che eseguono Windows 10 o versioni successive)",
|
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender per endpoint (dispositivi desktop che eseguono Windows 10 o versioni successive)",
|
||||||
"microsoftDefenderFirewallRules": "Regole di Microsoft Defender Firewall",
|
"microsoftDefenderFirewallRules": "Regole di Windows Firewall",
|
||||||
"microsoftEdgeBaseline": "Baseline di sicurezza per Microsoft Edge",
|
"microsoftEdgeBaseline": "Baseline di sicurezza per Microsoft Edge",
|
||||||
"mxProfileZebraOnly": "Profilo MX (solo Zebra)",
|
"mxProfileZebraOnly": "Profilo MX (solo Zebra)",
|
||||||
"networkBoundary": "Limite di rete",
|
"networkBoundary": "Limite di rete",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Certificato attendibile - TEST",
|
"windows10XTrustedCertificate": "Certificato attendibile - TEST",
|
||||||
"windows10XVPN": "VPN - TEST",
|
"windows10XVPN": "VPN - TEST",
|
||||||
"windows10XWifi": "WIFI - TEST",
|
"windows10XWifi": "WIFI - TEST",
|
||||||
|
"windows11SecurityBaseline": "Baseline di sicurezza per Windows 10 e versioni successive",
|
||||||
"windows8CompliancePolicy": "Criteri di conformità di Windows 8",
|
"windows8CompliancePolicy": "Criteri di conformità di Windows 8",
|
||||||
"windowsHealthMonitoring": "Monitoraggio dello stato di Windows",
|
"windowsHealthMonitoring": "Monitoraggio dello stato di Windows",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Configurare i dispositivi per il provisioning iniziale e assegnarli agli utenti.",
|
"description": "Configurare i dispositivi per il provisioning iniziale.",
|
||||||
"title": "Preparazione del dispositivo"
|
"title": "Preparazione del dispositivo"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Approva e distribuisci manualmente gli aggiornamenti del driver"
|
"manual": "Approva e distribuisci manualmente gli aggiornamenti del driver"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Azioni in blocco"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} giorni"
|
"value": "{0} giorni"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Seleziona un'azione di seguito.",
|
||||||
"label": "Driver action",
|
"label": "Azione driver",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Seleziona un'azione"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Driver inclusi"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Seleziona i driver da includere nell'azione in blocco"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Seleziona i driver da includere"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "È possibile selezionare al massimo cento driver"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "È necessario selezionare almeno un driver"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Driver selezionati"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Rendi disponibile in Windows Update",
|
||||||
"bladeTitle": "Aggiornamenti dei driver Windows 10 e versioni successive (anteprima)",
|
"bladeTitle": "Aggiornamenti dei driver Windows 10 e versioni successive (anteprima)",
|
||||||
"lastSync": "Ultima sincronizzazione:",
|
"lastSync": "Ultima sincronizzazione:",
|
||||||
"lastSyncDefaultText": "Raccolta di inventario iniziale in sospeso",
|
"lastSyncDefaultText": "Raccolta di inventario iniziale in sospeso",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Selezionare un messaggio di notifica a sinistra per visualizzare in anteprima i contenuti."
|
"placeholder": "Selezionare un messaggio di notifica a sinistra per visualizzare in anteprima i contenuti."
|
||||||
},
|
},
|
||||||
"companyContact": "Piè di pagina del messaggio di posta elettronica - Includere le informazioni sul contatto",
|
"companyContact": "Mostra informazioni di contatto",
|
||||||
"companyLogo": "Piè di pagina del messaggio di posta elettronica - Includere il logo dell'azienda",
|
"companyLogo": "Mostra il logo della società",
|
||||||
"companyName": "Piè di pagina del messaggio di posta elettronica - Includere il nome dell'azienda",
|
"companyName": "Mostra il nome della società",
|
||||||
"createEditDescription": "Creare o modificare i modelli di messaggio di notifica.",
|
"createEditDescription": "Creare o modificare i modelli di messaggio di notifica.",
|
||||||
"createMessage": "Crea il messaggio",
|
"createMessage": "Crea il messaggio",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Mostra dettagli del dispositivo",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "Questa impostazione è disattivata per impostazione predefinita perché il recupero dei dettagli del dispositivo può causare un ritardo nella ricezione delle notifiche tramite posta elettronica.",
|
||||||
"editImpactInfo": "La modifica del modello del messaggio di notifica interesserà tutti i criteri che usano questo modello.",
|
"editImpactInfo": "La modifica del modello del messaggio di notifica interesserà tutti i criteri che usano questo modello.",
|
||||||
"editMessage": "Modifica il messaggio",
|
"editMessage": "Modifica il messaggio",
|
||||||
"email": "posta elettronica",
|
"email": "posta elettronica",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "Piè di pagina del messaggio di posta elettronica",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "Le impostazioni per intestazione e piè di pagina di posta elettronica per le notifiche tramite posta elettronica si basano sulle impostazioni di personalizzazione nel nodo di amministrazione del tenant in Endpoint Manager.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "Intestazione di messaggio di posta elettronica",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Configurare le impostazioni di personalizzazione",
|
||||||
"formSubTitle": "Crea o modifica i messaggi di posta elettronica di notifica",
|
"formSubTitle": "Crea o modifica i messaggi di posta elettronica di notifica",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Impostazioni intestazione e piè di pagina",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Anteprima immagine",
|
||||||
"infotext": "Selezionare un messaggio di notifica. Per creare una nuova notifica, vedere Notifica nella sezione Gestisci nel carico di lavoro Imposta la conformità dei dispositivi.",
|
"infotext": "Selezionare un messaggio di notifica. Per creare una nuova notifica, vedere Notifica nella sezione Gestisci nel carico di lavoro Imposta la conformità dei dispositivi.",
|
||||||
"iwLink": "Collegamento del sito Web del Portale aziendale",
|
"iwLink": "Mostra il collegamento al sito Web del Portale aziendale",
|
||||||
"listEmpty": "Non sono presenti modelli di messaggio.",
|
"listEmpty": "Non sono presenti modelli di messaggio.",
|
||||||
"listEmptySelectOnly": "Non sono presenti modelli di messaggio. Per creare una nuova notifica, vedere Notifiche nella sezione Gestisci nel carico di lavoro Imposta la conformità dei dispositivi.",
|
"listEmptySelectOnly": "Non sono presenti modelli di messaggio. Per creare una nuova notifica, vedere Notifiche nella sezione Gestisci nel carico di lavoro Imposta la conformità dei dispositivi.",
|
||||||
"listSubTitle": "Elenco di modelli di messaggi di notifica",
|
"listSubTitle": "Elenco di modelli di messaggi di notifica",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Modelli del messaggio di notifica",
|
"notificationMessageTemplates": "Modelli del messaggio di notifica",
|
||||||
"rowValidationError": "È necessario almeno un modello di messaggio",
|
"rowValidationError": "È necessario almeno un modello di messaggio",
|
||||||
"selectDescription": "Selezionare un messaggio di notifica. Per creare una nuova notifica, vedere Notifiche nella sezione Gestisci nel carico di lavoro Imposta la conformità dei dispositivi.",
|
"selectDescription": "Selezionare un messaggio di notifica. Per creare una nuova notifica, vedere Notifiche nella sezione Gestisci nel carico di lavoro Imposta la conformità dei dispositivi.",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Valore tenant",
|
||||||
"testEmailLabel": "Invia il messaggio di posta elettronica di anteprima",
|
"testEmailLabel": "Invia il messaggio di posta elettronica di anteprima",
|
||||||
"localeLabel": "Impostazioni locali",
|
"localeLabel": "Impostazioni locali",
|
||||||
"isDefaultLocale": "È predefinito"
|
"isDefaultLocale": "È predefinito"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "riga {0} di {1} colonna {2}"
|
"ariaLabel": "riga {0} di {1} colonna {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Iniziare da zero e selezionare le proprietà da usare dalla libreria di impostazioni inventario disponibili"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Iniziare da zero e selezionare le impostazioni da usare dalla libreria di impostazioni disponibili",
|
"subtitle": "Iniziare da zero e selezionare le impostazioni da usare dalla libreria di impostazioni disponibili",
|
||||||
"title": "Catalogo di impostazioni"
|
"title": "Catalogo di impostazioni"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "Versione minima",
|
"minVersion": "Versione minima",
|
||||||
"nameHint": "Questo sarà l'attributo principale visibile per l'identificazione del set di restrizioni.",
|
"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à.",
|
"noAssignmentsStatusBar": "Assegnare la restrizione ad almeno un gruppo. Fare clic su Proprietà.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "Devi essere un amministratore per modificare le restrizioni.",
|
||||||
"notFound": "La limitazione non è stata trovata. È possibile che sia già stata eliminata.",
|
"notFound": "La limitazione non è stata trovata. È possibile che sia già stata eliminata.",
|
||||||
"personallyOwned": "Dispositivi di proprietà personale",
|
"personallyOwned": "Dispositivi di proprietà personale",
|
||||||
"restriction": "Restrizione",
|
"restriction": "Restrizione",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Criteri di conformità di Windows 8",
|
"complianceWindows8": "Criteri di conformità di Windows 8",
|
||||||
"complianceWindowsPhone": "Criteri di conformità di Windows Phone",
|
"complianceWindowsPhone": "Criteri di conformità di Windows Phone",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Catalogo proprietà",
|
||||||
"iosCustom": "Personalizzata",
|
"iosCustom": "Personalizzata",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Credenziale PIV derivata",
|
"iosDerivedCredentialAuthenticationConfiguration": "Credenziale PIV derivata",
|
||||||
"iosDeviceFeatures": "Funzionalità del dispositivo",
|
"iosDeviceFeatures": "Funzionalità del dispositivo",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Dispositivi Chrome OS (anteprima)"
|
"devices": "Dispositivi Chrome OS"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Contatti amministratore",
|
"adminContacts": "Contatti amministratore",
|
||||||
"appPackaging": "Pacchetti dell'app",
|
"appPackaging": "Pacchetti dell'app",
|
||||||
"businessGroups": "Gruppi aziendali",
|
"autopatchGroups": "Gruppi di patch automatiche",
|
||||||
"devices": "Dispositivi",
|
"devices": "Dispositivi",
|
||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"gettingStarted": "Riquadro attività iniziale",
|
"gettingStarted": "Riquadro attività iniziale",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Personalizzazione",
|
"brandingAndCustomization": "Personalizzazione",
|
||||||
"cartProfiles": "Profili del carrello",
|
"cartProfiles": "Profili del carrello",
|
||||||
"certificateConnectors": "Connettori di certificati",
|
"certificateConnectors": "Connettori di certificati",
|
||||||
"chromeEnterprise": "Chrome Enterprise (anteprima)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Dispositivi collegati al cloud (anteprima)",
|
"cloudAttachedDevices": "Dispositivi collegati al cloud (anteprima)",
|
||||||
"cloudPcActions": "Azioni di Cloud PC (anteprima)",
|
"cloudPcActions": "Azioni di Cloud PC (anteprima)",
|
||||||
"cloudPcMaintenanceWindows": "Finestre di manutenzione di Cloud PC (anteprima)",
|
"cloudPcMaintenanceWindows": "Finestre di manutenzione di Cloud PC (anteprima)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "Stato dell'utente",
|
"userExecutionStatus": "Stato dell'utente",
|
||||||
"wdacSupplementalPolicies": "Criteri supplementari per la modalità S",
|
"wdacSupplementalPolicies": "Criteri supplementari per la modalità S",
|
||||||
"win32CatalogUpdateApp": "App del catalogo di Aggiornamenti per Windows (Win32)",
|
"win32CatalogUpdateApp": "App del catalogo di Aggiornamenti per Windows (Win32)",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Aggiornamenti (anteprima) per le app del catalogo di Windows (Win32)",
|
||||||
"windows10DriverUpdate": "Aggiornamenti del driver per Windows 10 e versioni successive",
|
"windows10DriverUpdate": "Aggiornamenti del driver per Windows 10 e versioni successive",
|
||||||
"windows10QualityUpdate": "Aggiornamenti qualitativi per Windows 10 e versioni successive",
|
"windows10QualityUpdate": "Aggiornamenti qualitativi per Windows 10 e versioni successive",
|
||||||
"windows10UpdateRings": "Anelli di aggiornamento per Windows 10 e versioni successive",
|
"windows10UpdateRings": "Anelli di aggiornamento per Windows 10 e versioni successive",
|
||||||
"windows10XPolicyFailures": "Errori dei criteri di Windows 10X",
|
"windows10XPolicyFailures": "Errori dei criteri di Windows 10X",
|
||||||
"windows365Connector": "Connettore Windows 365 Citrix",
|
|
||||||
"windows365PartnerConnector": "Connettori partner di Windows 365",
|
"windows365PartnerConnector": "Connettori partner di Windows 365",
|
||||||
"windowsDiagnosticData": "Dati di Windows",
|
"windowsDiagnosticData": "Dati di Windows",
|
||||||
"windowsEnterpriseCertificate": "Certificato Windows Enterprise",
|
"windowsEnterpriseCertificate": "Certificato Windows Enterprise",
|
||||||
|
|||||||
+142
-103
@@ -227,7 +227,6 @@
|
|||||||
"co": "コルシカ語 (フランス)",
|
"co": "コルシカ語 (フランス)",
|
||||||
"cs": "チェコ語 (チェコ共和国)",
|
"cs": "チェコ語 (チェコ共和国)",
|
||||||
"da": "デンマーク語 (デンマーク)",
|
"da": "デンマーク語 (デンマーク)",
|
||||||
"prs": "ダリー語 (アフガニスタン)",
|
|
||||||
"dv": "ディヘビ語 (モルディブ)",
|
"dv": "ディヘビ語 (モルディブ)",
|
||||||
"et": "エストニア語 (エストニア)",
|
"et": "エストニア語 (エストニア)",
|
||||||
"fo": "フェロー語 (フェロー諸島)",
|
"fo": "フェロー語 (フェロー諸島)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender ウイルス対策",
|
"defender": "Microsoft Defender ウイルス対策",
|
||||||
"defenderAntivirus": "Microsoft Defender ウイルス対策",
|
"defenderAntivirus": "Microsoft Defender ウイルス対策",
|
||||||
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
||||||
"defenderFirewall": "Microsoft Defender ファイアウォール",
|
"defenderFirewall": "Windows ファイアウォール",
|
||||||
"defenderLocalSecurityOptions": "ローカル デバイスのセキュリティ オプション",
|
"defenderLocalSecurityOptions": "ローカル デバイスのセキュリティ オプション",
|
||||||
"defenderSecurityCenter": "Microsoft Defender セキュリティ センター",
|
"defenderSecurityCenter": "Microsoft Defender セキュリティ センター",
|
||||||
"deliveryOptimization": "配信の最適化",
|
"deliveryOptimization": "配信の最適化",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "無効",
|
"disabled": "無効",
|
||||||
"enabled": "有効",
|
"enabled": "有効",
|
||||||
"infoBalloonContent": "Windows 11 の対象ではないデバイスに最新の Windows 10 機能更新プログラムをインストールするかどうかを制御します",
|
"infoBalloonContent": "Windows 11 の対象ではないデバイスに最新の Windows 10 機能更新プログラムをインストールするかどうかを制御します",
|
||||||
"label": "デバイスで Windows 11 を実行できない場合は、最新の Windows 10 機能更新プログラムをインストールしてください",
|
"label": "デバイスが Windows 11 の実行対象ではない場合は、最新の Windows 10 機能更新プログラムをインストールしてください",
|
||||||
"notApplicable": "該当なし",
|
"notApplicable": "該当なし",
|
||||||
"summaryLabel": "Windows 11 を実行できないデバイスに Windows 10 をインストールする"
|
"summaryLabel": "Windows 11 の実行対象ではないデバイスに Windows 10 をインストールする"
|
||||||
},
|
},
|
||||||
"bladeTitle": "機能の更新プログラムの展開",
|
"bladeTitle": "機能の更新プログラムの展開",
|
||||||
"deploymentSettingsTitle": "デプロイの設定",
|
"deploymentSettingsTitle": "デプロイの設定",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"iOS": "iOS/iPadOS デバイスでは、PIN ではなく指紋確認の使用を許可できます。ユーザーは、職場アカウントを使用してこのアプリにアクセスするときに指紋の入力を求められます。",
|
"iOS": "iOS/iPadOS デバイスでは、PIN ではなく指紋確認の使用を許可できます。ユーザーは、職場アカウントを使用してこのアプリにアクセスするときに指紋の入力を求められます。",
|
||||||
"mac": "Mac デバイスでは、PIN ではなく指紋確認の使用を許可できます。ユーザーは、職場アカウントを使用してこのアプリにアクセスするときに指紋の入力を求められます。"
|
"mac": "Mac デバイスでは、PIN ではなく指紋確認の使用を許可できます。ユーザーは、職場アカウントを使用してこのアプリにアクセスするときに指紋の入力を求められます。"
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "次のオプションからひとつを選択し、このアプリがデータを受信するアプリを指定してください。",
|
"appSharingFromLevel1": "次のオプションからひとつを選択し、このアプリがデータを受信するアプリを指定してください。",
|
||||||
"appSharingFromLevel2": "{0}: 他のポリシー マネージド アプリからのみ、組織ドキュメントやアカウントのデータを受信できます",
|
"appSharingFromLevel2": "{0}: 他のポリシー マネージド アプリからのみ、組織ドキュメントやアカウントのデータを受信できます",
|
||||||
"appSharingFromLevel3": "{0}: どのアプリからでも組織ドキュメントやアカウントのデータを受信できます",
|
"appSharingFromLevel3": "{0}: どのアプリからでも組織ドキュメントやアカウントのデータを受信できます",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "使用する言語と地域を指定します。",
|
"languageInfo": "使用する言語と地域を指定します。",
|
||||||
"licenseAgreement": "マイクロソフト ソフトウェア ライセンス条項",
|
"licenseAgreement": "マイクロソフト ソフトウェア ライセンス条項",
|
||||||
"licenseAgreementInfo": "ユーザーに EULA を表示するかどうかを指定します。",
|
"licenseAgreementInfo": "ユーザーに EULA を表示するかどうかを指定します。",
|
||||||
"plugAndForgetDevice": "自己展開 (プレビュー)",
|
"plugAndForgetDevice": "自己展開",
|
||||||
"plugAndForgetGA": "自己展開",
|
|
||||||
"privacySettingWarning": "診断データ コレクションの既定値が、Windows 10 バージョン 1903 以降、または Windows 11 を実行しているデバイスで変更されました。 ",
|
"privacySettingWarning": "診断データ コレクションの既定値が、Windows 10 バージョン 1903 以降、または Windows 11 を実行しているデバイスで変更されました。 ",
|
||||||
"privacySettings": "プライバシーの設定",
|
"privacySettings": "プライバシーの設定",
|
||||||
"privacySettingsInfo": "プライバシーの設定をユーザーに表示するかどうかを指定します。",
|
"privacySettingsInfo": "プライバシーの設定をユーザーに表示するかどうかを指定します。",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "技術者フェーズで選択したブロック アプリのみを失敗にする (プレビュー)",
|
"allowNonBlockingAppInstallation": "技術者フェーズで選択したブロック アプリのみを失敗にする",
|
||||||
"apps": "アプリ",
|
"apps": "アプリ",
|
||||||
"appsListName": "アプリケーションの一覧",
|
"appsListName": "アプリケーションの一覧",
|
||||||
"blockingApps": "アプリをブロックしています",
|
"blockingApps": "アプリをブロックしています",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "アクティビティ",
|
"activity": "アクティビティ",
|
||||||
|
"activityName": "活動名",
|
||||||
"actor": "開始者 (アクター)",
|
"actor": "開始者 (アクター)",
|
||||||
|
"actorType": "アクターの種類",
|
||||||
"app": "アプリ",
|
"app": "アプリ",
|
||||||
"appName": "アプリ名",
|
"appName": "アプリ名",
|
||||||
"applicationName": "アプリケーション名",
|
"applicationName": "アプリケーション名",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD コネクタ",
|
"mtdConnector": "MTD コネクタ",
|
||||||
"name": "プロファイル名",
|
"name": "プロファイル名",
|
||||||
"oSVersion": "OS バージョン",
|
"oSVersion": "OS バージョン",
|
||||||
|
"operationType": "操作の種類",
|
||||||
"os": "OS",
|
"os": "OS",
|
||||||
"packageName": "パッケージ名",
|
"packageName": "パッケージ名",
|
||||||
"partnerName": "パートナー",
|
"partnerName": "パートナー",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"tooltip": "Touch ID は、iOS デバイスでユーザーを認証するのに指紋認識テクノロジを使用します。Intune は LocalAuthentication API を呼び出して、Touch ID を使用してユーザーを認証します。許可した場合、Touch ID 対応デバイス上のアプリにアクセスするには Touch ID を使用する必要があります。"
|
"tooltip": "Touch ID は、iOS デバイスでユーザーを認証するのに指紋認識テクノロジを使用します。Intune は LocalAuthentication API を呼び出して、Touch ID を使用してユーザーを認証します。許可した場合、Touch ID 対応デバイス上のアプリにアクセスするには Touch ID を使用する必要があります。"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "メッセージング アプリ名"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "メッセージング アプリ パッケージ ID"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "メッセージング アプリ URL スキーム"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "組織データの通知",
|
"label": "組織データの通知",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "ブロックされている場合、アプリは保護されているデータを出力できません。"
|
"tooltip": "ブロックされている場合、アプリは保護されているデータを出力できません。"
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "通常、ユーザーがアプリでハイパーリンク付きのメッセージング リンクを選択すると、電話番号が事前入力された状態でメッセージング アプリが開き、送信準備が整っています。この設定では、ポリシー マネージド アプリから開始された場合に、この種のコンテンツ転送をどのように扱うかを選択します。この設定を有効にするには、追加の操作が必要になる場合があります。最初に、[除外するアプリを選択します] の一覧から sms が削除されていることを確認します。次に、アプリケーションが新しいバージョンの Intune SDK (バージョン 19.0.0 以上) を使用していることを確認します。",
|
||||||
"label": "Transfer messaging data to",
|
"label": "メッセージング データの転送先",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "通常、ユーザーがアプリでハイパーリンク付きのメッセージング リンクを選択すると、電話番号が事前入力された状態でメッセージング アプリが開き、送信準備が整っています。この設定では、ポリシー マネージド アプリから開始された場合に、この種のコンテンツ転送をどのように扱うかを選択します。"
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "他のアプリからデータを受信",
|
"label": "他のアプリからデータを受信",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "サインインのための Web 資格情報のプロバイダーを許可します。",
|
"authenticationWebSignInDescription": "サインインのための Web 資格情報のプロバイダーを許可します。",
|
||||||
"authenticationWebSignInName": "Web サインイン (非推奨の設定)",
|
"authenticationWebSignInName": "Web サインイン (非推奨の設定)",
|
||||||
"authorizedAppRulesDescription": "ローカル ストアにある承認されたファイアウォール規則を適用して、認識および実施します。",
|
"authorizedAppRulesDescription": "ローカル ストアにある承認されたファイアウォール規則を適用して、認識および実施します。",
|
||||||
"authorizedAppRulesName": "ローカル ストアからの承認されたアプリケーションの Microsoft Defender ファイアウォール規則",
|
"authorizedAppRulesName": "ローカル ストアからの承認済みアプリケーション Windows ファイアウォール規則",
|
||||||
"authorizedUsersListHideAdminUsersName": "コンピューターの管理者を非表示にする",
|
"authorizedUsersListHideAdminUsersName": "コンピューターの管理者を非表示にする",
|
||||||
"authorizedUsersListHideLocalUsersName": "ローカル ユーザーを非表示にする",
|
"authorizedUsersListHideLocalUsersName": "ローカル ユーザーを非表示にする",
|
||||||
"authorizedUsersListHideMobileAccountsName": "モバイル アカウントを非表示にする",
|
"authorizedUsersListHideMobileAccountsName": "モバイル アカウントを非表示にする",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "この設定では、ユーザーが入力しないまま何分経過すると、モバイル デバイスの画面がロックされるかを指定します。推奨値: 15 分",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "この設定では、ユーザーが入力しないまま何分経過すると、モバイル デバイスの画面がロックされるかを指定します。推奨値: 15 分",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "この設定は、デバイスがロックされるまでの、ユーザー入力のない時間の長さを指定します。推奨値: 15 分",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "この設定は、デバイスがロックされるまでの、ユーザー入力のない時間の長さを指定します。推奨値: 15 分",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "パスワードが要求されるまでの非アクティブの最長時間 (分)",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "パスワードが要求されるまでの非アクティブの最長時間 (分)",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "推奨値: 15 分",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "モバイル デバイスに設定できる最新の OS バージョンを選びます。",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "モバイル デバイスに設定できる最新の OS バージョンを選びます。",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "モバイル デバイスの最大 OS バージョン",
|
"complianceMobileOsVersionRestrictionMaximumName": "モバイル デバイスの最大 OS バージョン",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "モバイル デバイスに設定できる最も古い OS バージョンを選びます。",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "モバイル デバイスに設定できる最も古い OS バージョンを選びます。",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "この設定では、再使用できない最近のパスワードの数を指定します。推奨値: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "この設定では、再使用できない最近のパスワードの数を指定します。推奨値: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "再使用を禁止するパスワード世代数",
|
"complianceNumberOfPreviousPasswordsToBlockName": "再使用を禁止するパスワード世代数",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "推奨値: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "デバイスで使用できる最新の OS ビルド バージョンを入力します。例: 20E252<br>Apple Rapid Security Response の更新プログラムを最大 OS ビルドとして設定する場合は、追加ビルド バージョンを入力します。例: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "デバイスで使用できる最新の OS ビルド バージョンを入力します。例: 20E252<br>Apple Rapid Security Response の更新プログラムを最大 OS ビルドとして設定する場合は、追加ビルド バージョンを入力します。例: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "最大 OS ビルド バージョン",
|
"complianceOsBuildVersionRestrictionMaximumName": "最大 OS ビルド バージョン",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "デバイスで使用できる最も古い OS ビルド バージョンを入力します。例: 20E252<br>Apple Rapid Security Response の更新プログラムを最小 OS ビルドとして設定する場合は、追加ビルド バージョンを入力します。例: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "デバイスで使用できる最も古い OS ビルド バージョンを入力します。例: 20E252<br>Apple Rapid Security Response の更新プログラムを最小 OS ビルドとして設定する場合は、追加ビルド バージョンを入力します。例: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Microsoft Defender のセキュリティ インテリジェンスを最新の状態にする必要があります。",
|
"complianceRequireWindowsDefenderSignatureDescription": "Microsoft Defender のセキュリティ インテリジェンスを最新の状態にする必要があります。",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "最新の Microsoft Defender マルウェア対策セキュリティ インテリジェンス",
|
"complianceRequireWindowsDefenderSignatureName": "最新の Microsoft Defender マルウェア対策セキュリティ インテリジェンス",
|
||||||
"complianceRequiredPasswordTypeDescription": "この設定では、数字のみのパスワードを使用できるか、それとも必ず数字以外の文字を含まなければならないかを指定します。推奨: 必要なパスワードの種類: 英数字、文字セットの最小数: 1",
|
"complianceRequiredPasswordTypeDescription": "この設定では、数字のみのパスワードを使用できるか、それとも必ず数字以外の文字を含まなければならないかを指定します。推奨: 必要なパスワードの種類: 英数字、文字セットの最小数: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "推奨事項: 必要なパスワードの種類: 英数字、文字セットの最小数: 1",
|
||||||
"complianceRootedAllowedDescription": "ルート化されたデバイスが会社にアクセスしないようにします。",
|
"complianceRootedAllowedDescription": "ルート化されたデバイスが会社にアクセスしないようにします。",
|
||||||
"complianceRootedAllowedName": "ルート化されたデバイス",
|
"complianceRootedAllowedName": "ルート化されたデバイス",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "この設定では、デバイスが USB デバッグ機能を使用しないようにするかどうかを指定します。",
|
"complianceSecurityDisableUSBDebuggingDescription": "この設定では、デバイスが USB デバッグ機能を使用しないようにするかどうかを指定します。",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "デバイスで使用できる最も古い OS バージョンを選択します。オペレーティング システム バージョンは major.minor.build.revision として定義されます。",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "デバイスで使用できる最も古い OS バージョンを選択します。オペレーティング システム バージョンは major.minor.build.revision として定義されます。",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "デバイス上のパスワードの種類を選択します。",
|
"complianceWindowsRequiredPasswordTypeDescription": "デバイス上のパスワードの種類を選択します。",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "パスワードの種類",
|
"complianceWindowsRequiredPasswordTypeName": "パスワードの種類",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "職場プロファイルのロックを解除するためにパスワードを要求する",
|
||||||
|
"complianceWorkProfileSecurityHeader": "職場プロファイルのセキュリティ",
|
||||||
"compliantAppsOption": "準拠しているアプリの一覧。一覧にないインストール済みアプリが準拠していないと報告する",
|
"compliantAppsOption": "準拠しているアプリの一覧。一覧にないインストール済みアプリが準拠していないと報告する",
|
||||||
"computerNameStaticPrefixDescription": "コンピューターには 15 文字の名前が割り当てられます。プレフィックスを指定すると、15 文字の残りの部分がランダムに選択されます。",
|
"computerNameStaticPrefixDescription": "コンピューターには 15 文字の名前が割り当てられます。プレフィックスを指定すると、15 文字の残りの部分がランダムに選択されます。",
|
||||||
"computerNameStaticPrefixName": "コンピューター名のプレフィックス",
|
"computerNameStaticPrefixName": "コンピューター名のプレフィックス",
|
||||||
@@ -3345,9 +3352,9 @@
|
|||||||
"destinationPrefix": "宛先プレフィックス/サイズ (例: 192.168.0.1/255)",
|
"destinationPrefix": "宛先プレフィックス/サイズ (例: 192.168.0.1/255)",
|
||||||
"developerUnlock": "開発者によるロック解除",
|
"developerUnlock": "開発者によるロック解除",
|
||||||
"developerUnlockDescription": "開発者によるロック解除を許可するかどうかを指定します。",
|
"developerUnlockDescription": "開発者によるロック解除を許可するかどうかを指定します。",
|
||||||
"deviceDefault": "既定のデバイス",
|
"deviceDefault": "デバイスの既定値",
|
||||||
"deviceDefaultCopyPasteBetweenWorkAndPersonalProfilesOption": "既定のデバイス",
|
"deviceDefaultCopyPasteBetweenWorkAndPersonalProfilesOption": "デバイスの既定値",
|
||||||
"deviceDefaultDataSharingBetweenWorkAndPersonalProfilesOption": "既定のデバイス",
|
"deviceDefaultDataSharingBetweenWorkAndPersonalProfilesOption": "デバイスの既定値",
|
||||||
"deviceEnrollmentAndAutomatedDeviceEnrollmentDescription": "これらの設定は、デバイス登録によって Intune に登録されたデバイスと、Apple School Manager または Apple Business Manager を使用して自動デバイス登録 (以前の DEP) によって登録されたデバイスに対して有効です。",
|
"deviceEnrollmentAndAutomatedDeviceEnrollmentDescription": "これらの設定は、デバイス登録によって Intune に登録されたデバイスと、Apple School Manager または Apple Business Manager を使用して自動デバイス登録 (以前の DEP) によって登録されたデバイスに対して有効です。",
|
||||||
"deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription": "これらの設定は、デバイス登録によって Intune に登録されたデバイスと、Apple School Manager または Apple Business Manager を使用して自動デバイス登録 (以前の DEP) によって登録されたデバイスに対して有効です。これには、すべての監視対象デバイスが含まれます。",
|
"deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescription": "これらの設定は、デバイス登録によって Intune に登録されたデバイスと、Apple School Manager または Apple Business Manager を使用して自動デバイス登録 (以前の DEP) によって登録されたデバイスに対して有効です。これには、すべての監視対象デバイスが含まれます。",
|
||||||
"deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescriptionMac": "これらの設定は、デバイス登録によってユーザー承認の有無にかかわらず登録されたデバイスと、自動デバイス登録 (以前の DEP) によって登録されたデバイスに対して有効です。",
|
"deviceEnrollmentAndAutomatedDeviceEnrollmentHeaderDescriptionMac": "これらの設定は、デバイス登録によってユーザー承認の有無にかかわらず登録されたデバイスと、自動デバイス登録 (以前の DEP) によって登録されたデバイスに対して有効です。",
|
||||||
@@ -3490,9 +3497,9 @@
|
|||||||
"domainAllowListName": "Google ドメインの許可リスト",
|
"domainAllowListName": "Google ドメインの許可リスト",
|
||||||
"domainAllowListTableEmptyValueExample": "ドメインを入力してください",
|
"domainAllowListTableEmptyValueExample": "ドメインを入力してください",
|
||||||
"domainAllowListTableName": "ドメイン",
|
"domainAllowListTableName": "ドメイン",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "ローカル ストアからの承認されたアプリケーションの Microsoft Defender ファイアウォール規則 (ドメイン ネットワーク)",
|
"domainAuthorizedAppRulesSummaryLabel": "ローカル ストアからの承認済みアプリケーション Windows ファイアウォール規則 (ドメイン ネットワーク)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Microsoft Defender ファイアウォール (ドメイン ネットワーク)",
|
"domainFirewallEnabledSummaryLabel": "Windows ファイアウォール (ドメイン ネットワーク)",
|
||||||
"domainGlobalRulesSummaryLabel": "ローカル ストアからのグローバル ポート Microsoft Defender ファイアウォール規則 (ドメイン ネットワーク)",
|
"domainGlobalRulesSummaryLabel": "ローカル ストアからのグローバル ポート Windows ファイアウォール規則 (ドメイン ネットワーク)",
|
||||||
"domainIPsecRulesSummaryLabel": "ローカル ストアからの IPsec 規則 (ドメイン ネットワーク)",
|
"domainIPsecRulesSummaryLabel": "ローカル ストアからの IPsec 規則 (ドメイン ネットワーク)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "IPsec でセキュリティ保護されたパケットのステルス モードでの適用除外 (ドメイン ネットワーク)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "IPsec でセキュリティ保護されたパケットのステルス モードでの適用除外 (ドメイン ネットワーク)",
|
||||||
"domainInboundConnectionsSummaryLabel": "受信接続の既定のアクション (ドメイン ネットワーク)",
|
"domainInboundConnectionsSummaryLabel": "受信接続の既定のアクション (ドメイン ネットワーク)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "代替証明書を使用したシングル サインオン (SSO)",
|
"enableSingleSignOnName": "代替証明書を使用したシングル サインオン (SSO)",
|
||||||
"enableUsePrivateStoreOnly": "プライベート ストアのみを使用します",
|
"enableUsePrivateStoreOnly": "プライベート ストアのみを使用します",
|
||||||
"enableUsePrivateStoreOnlyDescription": "アプリのプライベート ストアからのダウンロードのみを許可し、パブリック ストアからは許可しません。",
|
"enableUsePrivateStoreOnlyDescription": "アプリのプライベート ストアからのダウンロードのみを許可し、パブリック ストアからは許可しません。",
|
||||||
"enableWindowsDefenderFirewallName": "Microsoft Defender ファイアウォール",
|
"enableWindowsDefenderFirewallName": "Windows ファイアウォール",
|
||||||
"enableWithUEFILock": "UEFI ロックで有効にする",
|
"enableWithUEFILock": "UEFI ロックで有効にする",
|
||||||
"enableWithoutUEFILock": "UEFI ロックなしで有効にする",
|
"enableWithoutUEFILock": "UEFI ロックなしで有効にする",
|
||||||
"enabledForAzureAdAndHybridOption": "Microsoft Entra と Hybrid に参加しているデバイスでキーのローテーションが有効になっています",
|
"enabledForAzureAdAndHybridOption": "Microsoft Entra と Hybrid に参加しているデバイスでキーのローテーションが有効になっています",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "次のアプリの着信接続をブロックする。",
|
"firewallAppsBlockedHeader": "次のアプリの着信接続をブロックする。",
|
||||||
"firewallAppsBlockedPageDescription": "着信接続をブロックするアプリを選択してください。",
|
"firewallAppsBlockedPageDescription": "着信接続をブロックするアプリを選択してください。",
|
||||||
"firewallAppsBlockedPageName": "ブロックされたアプリ",
|
"firewallAppsBlockedPageName": "ブロックされたアプリ",
|
||||||
"firewallCreateRules": "Microsoft Defender ファイアウォール規則を作成します。1 つの Endpoint Protection プロファイルに含めることのできる規則は最大 150 件までです。",
|
"firewallCreateRules": "Windows ファイアウォール規則を作成します。1 つの Endpoint Protection プロファイルに含めることのできるルールは最大 150 までです。",
|
||||||
"firewallRequiredDescription": "ファイアウォールをオンにする必要があります",
|
"firewallRequiredDescription": "ファイアウォールをオンにする必要があります",
|
||||||
"firewallRequiredName": "ファイアウォール",
|
"firewallRequiredName": "ファイアウォール",
|
||||||
"firewallRuleAction": "アクション",
|
"firewallRuleAction": "アクション",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "一般提供チャネル",
|
"generalAvailabilityChannel": "一般提供チャネル",
|
||||||
"generalNetworkSettingsHeader": "全般",
|
"generalNetworkSettingsHeader": "全般",
|
||||||
"genericLocalUsersOrGroupsName": "汎用のローカル ユーザーまたはグループ",
|
"genericLocalUsersOrGroupsName": "汎用のローカル ユーザーまたはグループ",
|
||||||
"globalConfigurationsDescription": "すべてのネットワークの種類に適用される Microsoft Defender ファイアウォールの設定を構成します。",
|
"globalConfigurationsDescription": "すべてのネットワークの種類に適用される Windows ファイアウォール設定を構成します。",
|
||||||
"globalConfigurationsName": "グローバル設定",
|
"globalConfigurationsName": "グローバル設定",
|
||||||
"globalRulesDescription": "ローカル ストアのグローバル ポート ファイアウォール規則を適用して、認識および実施します。",
|
"globalRulesDescription": "ローカル ストアのグローバル ポート ファイアウォール規則を適用して、認識および実施します。",
|
||||||
"globalRulesName": "ローカル ストアからのグローバル ポート Microsoft Defender ファイアウォール規則",
|
"globalRulesName": "ローカル ストアからのグローバル ポート Windows ファイアウォール規則",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Google アカウントのメール アドレス",
|
"googleAccountEmailAddresses": "Google アカウントのメール アドレス",
|
||||||
"googleAccountEmailAddressesDescription": "セミコロンで区切られた電子メール アドレスのリスト",
|
"googleAccountEmailAddressesDescription": "セミコロンで区切られた電子メール アドレスのリスト",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "セキュリティで保護されたデスクトップで資格情報を要求する",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "セキュリティで保護されたデスクトップで資格情報を要求する",
|
||||||
"localServerCachingHeader": "ローカル サーバー キャッシュ",
|
"localServerCachingHeader": "ローカル サーバー キャッシュ",
|
||||||
"localStoreDescription": "ローカル ストアからのグローバル ファイアウォール規則を適用して、認識および実施します。",
|
"localStoreDescription": "ローカル ストアからのグローバル ファイアウォール規則を適用して、認識および実施します。",
|
||||||
"localStoreName": "ローカル ストアからの Microsoft Defender ファイアウォール規則",
|
"localStoreName": "ローカル ストアからの Windows ファイアウォール規則",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Windows 10 Mobile デバイスのロック画面で、スクリーン タイムアウトを制御するためにユーザーが構成可能な設定を表示するかどうかを指定します。このポリシーが [許可] に設定されている場合、\"スクリーン タイムアウト\" で設定された値は無視されます。",
|
"lockScreenAllowTimeoutConfigurationDescription": "Windows 10 Mobile デバイスのロック画面で、スクリーン タイムアウトを制御するためにユーザーが構成可能な設定を表示するかどうかを指定します。このポリシーが [許可] に設定されている場合、\"スクリーン タイムアウト\" で設定された値は無視されます。",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "ユーザーが構成可能なスクリーン タイムアウト (モバイルのみ)",
|
"lockScreenAllowTimeoutConfigurationName": "ユーザーが構成可能なスクリーン タイムアウト (モバイルのみ)",
|
||||||
"lockScreenBackgroundImageURLDescription": "カスタムのようこそ画面の背景画像の URL。エンドポイントが https:// の .png ファイルである必要があります",
|
"lockScreenBackgroundImageURLDescription": "カスタムのようこそ画面の背景画像の URL。エンドポイントが https:// の .png ファイルである必要があります",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "MTU は 1280 から 1400 バイトにする必要があります",
|
"mTUSizeInBytesBounds": "MTU は 1280 から 1400 バイトにする必要があります",
|
||||||
"mTUSizeInBytesName": "最大転送単位",
|
"mTUSizeInBytesName": "最大転送単位",
|
||||||
"mTUSizeInBytesToolTip": "ネットワーク上で転送可能なデータの最大パケット (バイト単位)。構成されていない場合、Apple の既定のサイズは 1280 バイトです。iOS 14 以降に適用されます。",
|
"mTUSizeInBytesToolTip": "ネットワーク上で転送可能なデータの最大パケット (バイト単位)。構成されていない場合、Apple の既定のサイズは 1280 バイトです。iOS 14 以降に適用されます。",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "ランダム化された MAC を使用する",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "デバイスの既定値を使用する",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "NAC のサポート用など、必要な場合にのみランダム化 MAC を使用します。ユーザーはこの設定を変更できます。Android 13 以降に適用されます。",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "デバイス MAC を使用する",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "MAC アドレスのランダム化を無効にする",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store と識別された開発者",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store と識別された開発者",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "AirPlay、他のデバイスとの画面共有、教師が生徒の画面を表示するために使用する Classroom アプリ機能を禁止します。スクリーンショットが禁止されている場合、この設定は使用できません。",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "AirPlay、他のデバイスとの画面共有、教師が生徒の画面を表示するために使用する Classroom アプリ機能を禁止します。スクリーンショットが禁止されている場合、この設定は使用できません。",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "数字を入力 (4 から 16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "数字を入力 (4 から 16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "数字を入力 (6 から 16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "数字を入力 (6 から 16)",
|
||||||
"minimumPasswordLengthName": "パスワードの最小文字数",
|
"minimumPasswordLengthName": "パスワードの最小文字数",
|
||||||
|
"minimumPasswordLengthTooltipText": "数値を入力してください",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "不足している更新プログラムは自動的にインストールされます",
|
"minimumUpdateAutoInstallClassificationDescription": "不足している更新プログラムは自動的にインストールされます",
|
||||||
"minimumUpdateAutoInstallClassificationName": "指定された更新プログラムの分類をインストールします",
|
"minimumUpdateAutoInstallClassificationName": "指定された更新プログラムの分類をインストールします",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "重要",
|
"minimumUpdateAutoInstallClassificationValueImportant": "重要",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "手動プロキシ サーバーを使う",
|
"networkProxyUseManualServerName": "手動プロキシ サーバーを使う",
|
||||||
"networkProxyUseScriptUrlName": "プロキシ スクリプトを使う",
|
"networkProxyUseScriptUrlName": "プロキシ スクリプトを使う",
|
||||||
"networkSettingsName": "ネットワーク設定",
|
"networkSettingsName": "ネットワーク設定",
|
||||||
"networkSettingsSubtitle": "特定の種類のネットワークに適用される Microsoft Defender ファイアウォールの設定を構成します。",
|
"networkSettingsSubtitle": "特定のネットワークの種類に適用できる Windows ファイアウォール設定を構成します。",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "携帯データ ネットワークの使用をすべて許可しないマネージド iOS アプリを追加します。",
|
"networkUsageRulesBlockCellularHeaderName": "携帯データ ネットワークの使用をすべて許可しないマネージド iOS アプリを追加します。",
|
||||||
"networkUsageRulesBlockCellularName": "携帯データ ネットワークの使用をブロックする",
|
"networkUsageRulesBlockCellularName": "携帯データ ネットワークの使用をブロックする",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "ローミング時に携帯データ ネットワークの使用をすべて許可しないマネージド iOS アプリを追加します。",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "ローミング時に携帯データ ネットワークの使用をすべて許可しないマネージド iOS アプリを追加します。",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "アプリとプロセス",
|
"privacyPreferencesTableName": "アプリとプロセス",
|
||||||
"privacyPublishUserActivitiesDescription": "タスク スイッチャーなどで最近使用されたリソースの共有エクスペリエンス/検出をブロックします。",
|
"privacyPublishUserActivitiesDescription": "タスク スイッチャーなどで最近使用されたリソースの共有エクスペリエンス/検出をブロックします。",
|
||||||
"privacyPublishUserActivitiesName": "ユーザー アクティビティの公開",
|
"privacyPublishUserActivitiesName": "ユーザー アクティビティの公開",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "ローカル ストアからの承認されたアプリケーションの Microsoft Defender ファイアウォール規則 (プライベート ネットワーク)",
|
"privateAuthorizedAppRulesSummaryLabel": "ローカル ストアからの承認済みアプリケーション Windows ファイアウォール規則 (プライベート ネットワーク)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Microsoft Defender ファイアウォール (プライベート ネットワーク)",
|
"privateFirewallEnabledSummaryLabel": "Windows ファイアウォール (プライベート ネットワーク)",
|
||||||
"privateGlobalRulesSummaryLabel": "ローカル ストアからのグローバル ポート Microsoft Defender ファイアウォール規則 (プライベート ネットワーク)",
|
"privateGlobalRulesSummaryLabel": "ローカル ストアからのグローバル ポート Windows ファイアウォール規則 (プライベート ネットワーク)",
|
||||||
"privateIPsecRulesSummaryLabel": "ローカル ストアからの IPsec 規則 (プライベート ネットワーク)",
|
"privateIPsecRulesSummaryLabel": "ローカル ストアからの IPsec 規則 (プライベート ネットワーク)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "IPsec でセキュリティ保護されたパケットのステルス モードでの適用除外 (プライベート ネットワーク)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "IPsec でセキュリティ保護されたパケットのステルス モードでの適用除外 (プライベート ネットワーク)",
|
||||||
"privateInboundConnectionsSummaryLabel": "受信接続の既定のアクション (プライベート ネットワーク)",
|
"privateInboundConnectionsSummaryLabel": "受信接続の既定のアクション (プライベート ネットワーク)",
|
||||||
"privateInboundNotificationsSummaryLabel": "受信通知 (プライベート ネットワーク)",
|
"privateInboundNotificationsSummaryLabel": "受信通知 (プライベート ネットワーク)",
|
||||||
"privateLocalStoreSummaryLabel": "ローカル ストアからの Microsoft Defender ファイアウォール規則 (プライベート ネットワーク)",
|
"privateLocalStoreSummaryLabel": "ローカル ストアからの Windows ファイアウォール規則 (プライベート ネットワーク)",
|
||||||
"privateNetworkName": "プライベート (検出可能な) ネットワーク",
|
"privateNetworkName": "プライベート (検出可能な) ネットワーク",
|
||||||
"privateOutboundConnectionsSummaryLabel": "送信接続の既定のアクション (プライベート ネットワーク)",
|
"privateOutboundConnectionsSummaryLabel": "送信接続の既定のアクション (プライベート ネットワーク)",
|
||||||
"privateShieldedSummaryLabel": "シールド (プライベート ネットワーク)",
|
"privateShieldedSummaryLabel": "シールド (プライベート ネットワーク)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "プロキシ サーバー URL",
|
"proxyServerURLName": "プロキシ サーバー URL",
|
||||||
"proxyServersAutoDetectionName": "その他のエンタープライズ プロキシ サーバーの自動検出",
|
"proxyServersAutoDetectionName": "その他のエンタープライズ プロキシ サーバーの自動検出",
|
||||||
"proxyUrlExample": "例: itgproxy.contoso.com",
|
"proxyUrlExample": "例: itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "ローカル ストアからの承認されたアプリケーションの Microsoft Defender ファイアウォール規則 (パブリック ネットワーク)",
|
"publicAuthorizedAppRulesSummaryLabel": "ローカル ストアからの承認済みアプリケーション Windows ファイアウォール規則 (パブリック ネットワーク)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Microsoft Defender ファイアウォール (パブリック ネットワーク)",
|
"publicFirewallEnabledSummaryLabel": "Windows ファイアウォール (パブリック ネットワーク)",
|
||||||
"publicGlobalRulesSummaryLabel": "ローカル ストアからのグローバル ポート Microsoft Defender ファイアウォール規則 (パブリック ネットワーク)",
|
"publicGlobalRulesSummaryLabel": "ローカル ストアからのグローバル ポート Windows ファイアウォール規則 (パブリック ネットワーク)",
|
||||||
"publicIPsecRulesSummaryLabel": "ローカル ストアからの IPsec 規則 (パブリック ネットワーク)",
|
"publicIPsecRulesSummaryLabel": "ローカル ストアからの IPsec 規則 (パブリック ネットワーク)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "IPsec でセキュリティ保護されたパケットのステルス モードでの適用除外 (パブリック ネットワーク)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "IPsec でセキュリティ保護されたパケットのステルス モードでの適用除外 (パブリック ネットワーク)",
|
||||||
"publicInboundConnectionsSummaryLabel": "受信接続の既定のアクション (パブリック ネットワーク)",
|
"publicInboundConnectionsSummaryLabel": "受信接続の既定のアクション (パブリック ネットワーク)",
|
||||||
"publicInboundNotificationsSummaryLabel": "受信通知 (パブリック ネットワーク)",
|
"publicInboundNotificationsSummaryLabel": "受信通知 (パブリック ネットワーク)",
|
||||||
"publicLocalStoreSummaryLabel": "ローカル ストアからの Microsoft Defender ファイアウォール規則 (パブリック ネットワーク)",
|
"publicLocalStoreSummaryLabel": "ローカル ストアからの Windows ファイアウォール規則 (パブリック ネットワーク)",
|
||||||
"publicNetworkName": "パブリック (検出不可能な) ネットワーク",
|
"publicNetworkName": "パブリック (検出不可能な) ネットワーク",
|
||||||
"publicOutboundConnectionsSummaryLabel": "送信接続の既定のアクション (パブリック ネットワーク)",
|
"publicOutboundConnectionsSummaryLabel": "送信接続の既定のアクション (パブリック ネットワーク)",
|
||||||
"publicPlayStoreEnabledDescription": "ユーザーはクライアント アプリでアンインストールが要求されたアプリ以外のすべてのアプリにアクセスできます。この設定で [未構成] を選択すると、ユーザーがアクセスできるのは、クライアント アプリで使用可能または必須とリストされているアプリのみになります。",
|
"publicPlayStoreEnabledDescription": "ユーザーはクライアント アプリでアンインストールが要求されたアプリ以外のすべてのアプリにアクセスできます。この設定で [未構成] を選択すると、ユーザーがアクセスできるのは、クライアント アプリで使用可能または必須とリストされているアプリのみになります。",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "ソフトウェア KSP に登録する",
|
"sCEPPolicyEnrollToSoftwareKSP": "ソフトウェア KSP に登録する",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "トラステッド プラットフォーム モジュール (TPM) KSP に登録する (それ以外は失敗)",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "トラステッド プラットフォーム モジュール (TPM) KSP に登録する (それ以外は失敗)",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "トラステッド プラットフォーム モジュール (TPM) KSP が存在する場合は TPM KSP に登録する (それ以外はソフトウェア KSP に登録する)",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "トラステッド プラットフォーム モジュール (TPM) KSP が存在する場合は TPM KSP に登録する (それ以外はソフトウェア KSP に登録する)",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "警告: Any Purpose EKU (OID 2.5.29.37.0) および Any App Policy EKU (OID 1.3.6.1.4.1.311.10.12.1) は、Microsoft クラウド PKI で作成された証明機関では使用できません。",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "ほとんどの場合、ユーザーまたはデバイスがサーバーに対して認証できるように、証明書には少なくともクライアント認証が必要です。ただし、キーの目的を詳しく定義するために追加の使用法を指定できます。",
|
"sCEPPolicyExtendedKeyUsageDescription": "ほとんどの場合、ユーザーまたはデバイスがサーバーに対して認証できるように、証明書には少なくともクライアント認証が必要です。ただし、キーの目的を詳しく定義するために追加の使用法を指定できます。",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "拡張キー使用法",
|
"sCEPPolicyExtendedKeyUsageName": "拡張キー使用法",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "証明書でハッシュ アルゴリズム型を使用します。接続中のデバイスがサポートする最強レベルのセキュリティを選択してください。",
|
"sCEPPolicyHashAlgorithmDescription": "証明書でハッシュ アルゴリズム型を使用します。接続中のデバイスがサポートする最強レベルのセキュリティを選択してください。",
|
||||||
@@ -6376,7 +6390,7 @@
|
|||||||
"systemUpdateInstallDescription": "このデバイスで無線による更新が使用できる場合は、このポリシーに基づいてインストールされます。",
|
"systemUpdateInstallDescription": "このデバイスで無線による更新が使用できる場合は、このポリシーに基づいてインストールされます。",
|
||||||
"systemUpdateInstallName": "システムの更新プログラム",
|
"systemUpdateInstallName": "システムの更新プログラム",
|
||||||
"systemUpdateOptionAutomatic": "自動",
|
"systemUpdateOptionAutomatic": "自動",
|
||||||
"systemUpdateOptionDefault": "既定のデバイス",
|
"systemUpdateOptionDefault": "デバイスの既定値",
|
||||||
"systemUpdateOptionPostponed": "延期",
|
"systemUpdateOptionPostponed": "延期",
|
||||||
"systemUpdateOptionWindow": "メンテナンス期間",
|
"systemUpdateOptionWindow": "メンテナンス期間",
|
||||||
"systemUpdateOptionWindowEndTimeDescription": "デバイスのタイム ゾーンでのメンテナンス期間の終了時刻です。",
|
"systemUpdateOptionWindowEndTimeDescription": "デバイスのタイム ゾーンでのメンテナンス期間の終了時刻です。",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "日数を入力 (1 から 255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "日数を入力 (1 から 255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "日数 (1 から 365) を入力してください",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "日数 (1 から 365) を入力してください",
|
||||||
"workProfilePasswordExpirationInDaysName": "パスワードの有効期限 (日数)",
|
"workProfilePasswordExpirationInDaysName": "パスワードの有効期限 (日数)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "日数を入力",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "仕事用プロファイルのパスワード: パスワードの最小文字数",
|
"workProfilePasswordMinimumLengthReportingName": "仕事用プロファイルのパスワード: パスワードの最小文字数",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "勤務先プロファイルのパスワード: 必要な文字の数",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "勤務先プロファイルのパスワード: 必要な文字の数",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "勤務先プロファイルのパスワード: 必要な小文字の数",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "勤務先プロファイルのパスワード: 必要な小文字の数",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "任意のアプリ",
|
"anyAppOptionText": "任意のアプリ",
|
||||||
"anyDestinationAnySourceOptionText": "任意のコピー先と任意のソース",
|
"anyDestinationAnySourceOptionText": "任意のコピー先と任意のソース",
|
||||||
"anyDialerAppOptionText": "任意の電話アプリ",
|
"anyDialerAppOptionText": "任意の電話アプリ",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "任意のメッセージング アプリ",
|
||||||
"anyPolicyManagedDialerAppOptionText": "ポリシーで管理されている任意の電話アプリ",
|
"anyPolicyManagedDialerAppOptionText": "ポリシーで管理されている任意の電話アプリ",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "ポリシーで管理されている任意のメッセージング アプリ",
|
||||||
"appAdded": "アプリが追加されました",
|
"appAdded": "アプリが追加されました",
|
||||||
"appBasedConditionalAccess": "アプリ ベースの条件付きアクセス",
|
"appBasedConditionalAccess": "アプリ ベースの条件付きアクセス",
|
||||||
"appColumnLabel": "アプリ",
|
"appColumnLabel": "アプリ",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "MDM デバイス ID",
|
"mdmDeviceId": "MDM デバイス ID",
|
||||||
"mdmWipInvalidVersionSettings": "1 つ以上のアプリで無効な最小/最大バージョンが定義されています。<br /> <br />登録ポリシーを使用する Windows Information Protection では、最小バージョンと最大バージョンの両方が等しいものとして指定されない限り、そのいずれかのみの指定をサポートします。最小バージョンのみが指定されている場合、ルールは最小バージョン以上に設定されます。同様に、最大バージョンのみが指定されている場合は、ルールは最大バージョン以下に設定されます。",
|
"mdmWipInvalidVersionSettings": "1 つ以上のアプリで無効な最小/最大バージョンが定義されています。<br /> <br />登録ポリシーを使用する Windows Information Protection では、最小バージョンと最大バージョンの両方が等しいものとして指定されない限り、そのいずれかのみの指定をサポートします。最小バージョンのみが指定されている場合、ルールは最小バージョン以上に設定されます。同様に、最大バージョンのみが指定されている場合は、ルールは最大バージョン以下に設定されます。",
|
||||||
"mdmWipReport": "MDM Windows Information Protection レポート",
|
"mdmWipReport": "MDM Windows Information Protection レポート",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "メッセージング アプリ名 (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "メッセージング アプリ パッケージ ID (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "メッセージング アプリ URL スキーム (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender For Endpoint",
|
"microsoftDefenderForEndpoint": "Microsoft Defender For Endpoint",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "アプリの最小バージョン",
|
"minAppVersion": "アプリの最小バージョン",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "設定カタログ",
|
"settingsCatalog": "設定カタログ",
|
||||||
"settingsSelectorLabel": "設定",
|
"settingsSelectorLabel": "設定",
|
||||||
"silent": "サイレント",
|
"silent": "サイレント",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "特定のメッセージング アプリ",
|
||||||
"specificUserIsLicensedIntune": "{0} には Microsoft Intune のライセンスが与えられています。",
|
"specificUserIsLicensedIntune": "{0} には Microsoft Intune のライセンスが与えられています。",
|
||||||
"state": "状態",
|
"state": "状態",
|
||||||
"status": "状態",
|
"status": "状態",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Microsoft Edge ベースライン",
|
"edgeSecurityBaseline": "Microsoft Edge ベースライン",
|
||||||
"edgeSecurityBaselinePreview": "プレビュー: Microsoft Edge ベースライン",
|
"edgeSecurityBaselinePreview": "プレビュー: Microsoft Edge ベースライン",
|
||||||
"editionUpgradeConfiguration": "エディションのアップグレードおよびモードの切り替え",
|
"editionUpgradeConfiguration": "エディションのアップグレードおよびモードの切り替え",
|
||||||
"firewall": "Microsoft Defender ファイアウォール",
|
"firewall": "Windows ファイアウォール",
|
||||||
"firewallRules": "Microsoft Defender ファイアウォール規則",
|
"firewallRules": "Windows ファイアウォール規則",
|
||||||
"identityProtection": "アカウント保護",
|
"identityProtection": "アカウント保護",
|
||||||
"identityProtectionPreview": "アカウント保護 (プレビュー)",
|
"identityProtectionPreview": "アカウント保護 (プレビュー)",
|
||||||
"mDMSecurityBaseline1810": "2018 年 10 月の Windows 10 以降の MDM セキュリティ ベースライン",
|
"mDMSecurityBaseline1810": "2018 年 10 月の Windows 10 以降の MDM セキュリティ ベースライン",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "プレビュー: Microsoft Office O365 ベースライン",
|
"office365BaselinePreview": "プレビュー: Microsoft Office O365 ベースライン",
|
||||||
"securityBaselines": "セキュリティ ベースライン",
|
"securityBaselines": "セキュリティ ベースライン",
|
||||||
"test": "テスト テンプレート",
|
"test": "テスト テンプレート",
|
||||||
"testFirewallRulesSecurityTemplateName": "Microsoft Defender ファイアウォール規則 (テスト)",
|
"testFirewallRulesSecurityTemplateName": "Windows ファイアウォール規則 (テスト)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "アカウントの保護 (テスト)",
|
"testIdentityProtectionSecurityTemplateName": "アカウントの保護 (テスト)",
|
||||||
"windowsSecurityExperience": "Windows セキュリティ エクスペリエンス"
|
"windowsSecurityExperience": "Windows セキュリティ エクスペリエンス"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Microsoft Defender ファイアウォール"
|
"mDE": "Windows ファイアウォール"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Microsoft Defender ファイアウォール規則"
|
"mDE": "Windows ファイアウォール規則"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "OneDrive 既知のフォルダー移動設定: Windows 10 クラウド構成テンプレート。https://aka.ms/CloudConfigGuide"
|
"description": "OneDrive 既知のフォルダー移動設定: Windows 10 クラウド構成テンプレート。https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "モバイル デバイス管理の構成",
|
"expeditedCheckin": "モバイル デバイス管理の構成",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "拡張機能",
|
"extensions": "拡張機能",
|
||||||
"hardwareConfigurations": "BIOS 構成",
|
"hardwareConfigurations": "BIOS 構成とその他の設定",
|
||||||
"identityProtection": "Identity Protection",
|
"identityProtection": "Identity Protection",
|
||||||
"iosCompliancePolicy": "iOS コンプライアンス ポリシー",
|
"iosCompliancePolicy": "iOS コンプライアンス ポリシー",
|
||||||
"kiosk": "キオスク",
|
"kiosk": "キオスク",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Microsoft Defender ウイルス対策",
|
"microsoftDefenderAntivirus": "Microsoft Defender ウイルス対策",
|
||||||
"microsoftDefenderAntivirusexclusions": "Microsoft Defender ウイルス対策の除外",
|
"microsoftDefenderAntivirusexclusions": "Microsoft Defender ウイルス対策の除外",
|
||||||
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (Windows 10 以降を実行するデスクトップ デバイス)",
|
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (Windows 10 以降を実行するデスクトップ デバイス)",
|
||||||
"microsoftDefenderFirewallRules": "Microsoft Defender ファイアウォール規則",
|
"microsoftDefenderFirewallRules": "Windows ファイアウォール規則",
|
||||||
"microsoftEdgeBaseline": "Microsoft Edge のセキュリティ ベースライン",
|
"microsoftEdgeBaseline": "Microsoft Edge のセキュリティ ベースライン",
|
||||||
"mxProfileZebraOnly": "MX プロファイル (Zebra のみ)",
|
"mxProfileZebraOnly": "MX プロファイル (Zebra のみ)",
|
||||||
"networkBoundary": "ネットワーク境界",
|
"networkBoundary": "ネットワーク境界",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "信頼された証明書 - テスト",
|
"windows10XTrustedCertificate": "信頼された証明書 - テスト",
|
||||||
"windows10XVPN": "VPN - テスト",
|
"windows10XVPN": "VPN - テスト",
|
||||||
"windows10XWifi": "WIFI - テスト",
|
"windows10XWifi": "WIFI - テスト",
|
||||||
|
"windows11SecurityBaseline": "Windows 10 以降の セキュリティ ベースライン",
|
||||||
"windows8CompliancePolicy": "Windows 8 コンプライアンス ポリシー",
|
"windows8CompliancePolicy": "Windows 8 コンプライアンス ポリシー",
|
||||||
"windowsHealthMonitoring": "Windows の正常性の監視",
|
"windowsHealthMonitoring": "Windows の正常性の監視",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8542,7 +8558,7 @@
|
|||||||
"DeliveryOptimizationPriority": {
|
"DeliveryOptimizationPriority": {
|
||||||
"backgroundNormal": "バックグラウンド",
|
"backgroundNormal": "バックグラウンド",
|
||||||
"displayText": "{0} でのコンテンツ ダウンロード",
|
"displayText": "{0} でのコンテンツ ダウンロード",
|
||||||
"foreground": "前景",
|
"foreground": "フォアグラウンド",
|
||||||
"header": "配信の最適化の優先度"
|
"header": "配信の最適化の優先度"
|
||||||
},
|
},
|
||||||
"DeviceRestartBehaviorOptions": {
|
"DeviceRestartBehaviorOptions": {
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "最初のプロビジョニング用にデバイスを構成し、ユーザーに割り当てます。",
|
"description": "最初のプロビジョニング用にデバイスを構成します。",
|
||||||
"title": "デバイスの準備"
|
"title": "デバイスの準備"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "ドライバー更新プログラムを手動で承認して展開する"
|
"manual": "ドライバー更新プログラムを手動で承認して展開する"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "一括処理"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} 日"
|
"value": "{0} 日"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "以下のアクションを選択します。",
|
||||||
"label": "Driver action",
|
"label": "ドライバー アクション",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "アクションを選択します"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "含まれているドライバー"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "一括アクションに含めるドライバーを選択します"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "含めるドライバーを選択します"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "最大 100 個のドライバーを選択できます"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "少なくとも 1 個のドライバーを選択してください"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "選択したドライバー"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Windows Update で利用可能にする",
|
||||||
"bladeTitle": "Windows 10 以降のドライバー更新プログラム (プレビュー)",
|
"bladeTitle": "Windows 10 以降のドライバー更新プログラム (プレビュー)",
|
||||||
"lastSync": "前回の同期:",
|
"lastSync": "前回の同期:",
|
||||||
"lastSyncDefaultText": "初期インベントリ コレクションが保留中です",
|
"lastSyncDefaultText": "初期インベントリ コレクションが保留中です",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "内容をプレビューするには、左から通知メッセージを選択します。"
|
"placeholder": "内容をプレビューするには、左から通知メッセージを選択します。"
|
||||||
},
|
},
|
||||||
"companyContact": "電子メール フッター - 連絡先情報を含める",
|
"companyContact": "連絡先情報を表示する",
|
||||||
"companyLogo": "電子メール ヘッダー - 会社のロゴを含める",
|
"companyLogo": "会社のロゴを表示する",
|
||||||
"companyName": "電子メール フッター - 会社の名前を含める",
|
"companyName": "会社名を表示する",
|
||||||
"createEditDescription": "通知メッセージ テンプレートを作成または編集します。",
|
"createEditDescription": "通知メッセージ テンプレートを作成または編集します。",
|
||||||
"createMessage": "メッセージの作成",
|
"createMessage": "メッセージの作成",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "デバイスの詳細を表示する",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "デバイスの詳細を取得するとメール通知の受信に遅延が発生する可能性があるため、この設定は既定でオフになっています。",
|
||||||
"editImpactInfo": "この通知メッセージ テンプレートを編集すると、このテンプレートを使用しているすべてのポリシーに影響します。",
|
"editImpactInfo": "この通知メッセージ テンプレートを編集すると、このテンプレートを使用しているすべてのポリシーに影響します。",
|
||||||
"editMessage": "メッセージの編集",
|
"editMessage": "メッセージの編集",
|
||||||
"email": "電子メール",
|
"email": "電子メール",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "メールのフッター",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "メール通知のメール ヘッダーとフッターの設定は、エンドポイント マネージャーのテナント管理ノード内のカスタマイズ設定に依存しています。",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "メールのヘッダー",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "カスタマイズ設定の構成",
|
||||||
"formSubTitle": "通知メールの作成または変更",
|
"formSubTitle": "通知メールの作成または変更",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "ヘッダーとフッターの設定",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "画像プレビュー",
|
||||||
"infotext": "通知メッセージを選択します。新しい通知を作成するには、[デバイス コンプライアンスの設定] ワークロードの [管理] セクションの [通知] にアクセスしてください。",
|
"infotext": "通知メッセージを選択します。新しい通知を作成するには、[デバイス コンプライアンスの設定] ワークロードの [管理] セクションの [通知] にアクセスしてください。",
|
||||||
"iwLink": "ポータル サイト Web サイトのリンク",
|
"iwLink": "会社のポータル Web サイトのリンクを表示する",
|
||||||
"listEmpty": "メッセージ テンプレートがありません。",
|
"listEmpty": "メッセージ テンプレートがありません。",
|
||||||
"listEmptySelectOnly": "メッセージ テンプレートがありません。新しい通知を作成するには、[デバイス コンプライアンスの設定] ワークロードの [管理] セクションの [通知] にアクセスしてください。",
|
"listEmptySelectOnly": "メッセージ テンプレートがありません。新しい通知を作成するには、[デバイス コンプライアンスの設定] ワークロードの [管理] セクションの [通知] にアクセスしてください。",
|
||||||
"listSubTitle": "通知メッセージ テンプレートの一覧",
|
"listSubTitle": "通知メッセージ テンプレートの一覧",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "通知メッセージ テンプレート",
|
"notificationMessageTemplates": "通知メッセージ テンプレート",
|
||||||
"rowValidationError": "少なくとも 1 つのメッセージ テンプレートが必要です",
|
"rowValidationError": "少なくとも 1 つのメッセージ テンプレートが必要です",
|
||||||
"selectDescription": "通知メッセージを選択します。新しい通知を作成するには、[デバイス コンプライアンスの設定] ワークロードの [管理] セクションの [通知] にアクセスしてください。",
|
"selectDescription": "通知メッセージを選択します。新しい通知を作成するには、[デバイス コンプライアンスの設定] ワークロードの [管理] セクションの [通知] にアクセスしてください。",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "テナント値",
|
||||||
"testEmailLabel": "プレビュー メールの送信",
|
"testEmailLabel": "プレビュー メールの送信",
|
||||||
"localeLabel": "ロケール",
|
"localeLabel": "ロケール",
|
||||||
"isDefaultLocale": "既定である"
|
"isDefaultLocale": "既定である"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "行 {0} / {1}、列 {2}"
|
"ariaLabel": "行 {0} / {1}、列 {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "最初から開始し、使用可能なインベントリ プロパティのライブラリから必要なプロパティを選択します"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "最初から始め、使用可能な設定のライブラリから必要な設定を選択します",
|
"subtitle": "最初から始め、使用可能な設定のライブラリから必要な設定を選択します",
|
||||||
"title": "設定カタログ"
|
"title": "設定カタログ"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "最小バージョン",
|
"minVersion": "最小バージョン",
|
||||||
"nameHint": "これは、制限セットを識別するために表示される主属性になります。",
|
"nameHint": "これは、制限セットを識別するために表示される主属性になります。",
|
||||||
"noAssignmentsStatusBar": "少なくとも 1 つのグループに制限を割り当てます。[プロパティ] をクリックしてください。",
|
"noAssignmentsStatusBar": "少なくとも 1 つのグループに制限を割り当てます。[プロパティ] をクリックしてください。",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "制限を編集するには、管理者である必要があります。",
|
||||||
"notFound": "制限が見つかりません。既に削除されている可能性があります。",
|
"notFound": "制限が見つかりません。既に削除されている可能性があります。",
|
||||||
"personallyOwned": "個人所有のデバイス",
|
"personallyOwned": "個人所有のデバイス",
|
||||||
"restriction": "制限",
|
"restriction": "制限",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8 コンプライアンス ポリシー",
|
"complianceWindows8": "Windows 8 コンプライアンス ポリシー",
|
||||||
"complianceWindowsPhone": "Windows Phone コンプライアンス ポリシー",
|
"complianceWindowsPhone": "Windows Phone コンプライアンス ポリシー",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "プロパティ カタログ",
|
||||||
"iosCustom": "カスタム",
|
"iosCustom": "カスタム",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "派生 PIV 資格情報",
|
"iosDerivedCredentialAuthenticationConfiguration": "派生 PIV 資格情報",
|
||||||
"iosDeviceFeatures": "デバイス機能",
|
"iosDeviceFeatures": "デバイス機能",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS デバイス (プレビュー)"
|
"devices": "ChromeOS デバイス"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "管理者の連絡先",
|
"adminContacts": "管理者の連絡先",
|
||||||
"appPackaging": "アプリのパッケージ化",
|
"appPackaging": "アプリのパッケージ化",
|
||||||
"businessGroups": "ビジネス グループ",
|
"autopatchGroups": "Autopatch グループ",
|
||||||
"devices": "デバイス",
|
"devices": "デバイス",
|
||||||
"feedback": "フィードバック",
|
"feedback": "フィードバック",
|
||||||
"gettingStarted": "はじめに",
|
"gettingStarted": "はじめに",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "カスタマイズ",
|
"brandingAndCustomization": "カスタマイズ",
|
||||||
"cartProfiles": "カート プロファイル",
|
"cartProfiles": "カート プロファイル",
|
||||||
"certificateConnectors": "証明書のコネクタ",
|
"certificateConnectors": "証明書のコネクタ",
|
||||||
"chromeEnterprise": "Chrome Enterprise (プレビュー)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "クラウドに接続されたデバイス (プレビュー)",
|
"cloudAttachedDevices": "クラウドに接続されたデバイス (プレビュー)",
|
||||||
"cloudPcActions": "クラウド PC アクション (プレビュー)",
|
"cloudPcActions": "クラウド PC アクション (プレビュー)",
|
||||||
"cloudPcMaintenanceWindows": "クラウド PC のメンテナンス期間 (プレビュー)",
|
"cloudPcMaintenanceWindows": "クラウド PC のメンテナンス期間 (プレビュー)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "ユーザーの状態",
|
"userExecutionStatus": "ユーザーの状態",
|
||||||
"wdacSupplementalPolicies": "S モードの補足ポリシー",
|
"wdacSupplementalPolicies": "S モードの補足ポリシー",
|
||||||
"win32CatalogUpdateApp": "Windows (Win32) カタログ アプリの更新プログラム",
|
"win32CatalogUpdateApp": "Windows (Win32) カタログ アプリの更新プログラム",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Windows (Win32) カタログ アプリの更新プログラム (プレビュー)",
|
||||||
"windows10DriverUpdate": "Windows 10 以降向けドライバー更新プログラム",
|
"windows10DriverUpdate": "Windows 10 以降向けドライバー更新プログラム",
|
||||||
"windows10QualityUpdate": "Windows 10 以降向け品質更新プログラム",
|
"windows10QualityUpdate": "Windows 10 以降向け品質更新プログラム",
|
||||||
"windows10UpdateRings": "Windows 10 以降向け更新リング",
|
"windows10UpdateRings": "Windows 10 以降向け更新リング",
|
||||||
"windows10XPolicyFailures": "Windows 10X のポリシー エラー",
|
"windows10XPolicyFailures": "Windows 10X のポリシー エラー",
|
||||||
"windows365Connector": "Windows 365 Citrix コネクタ",
|
|
||||||
"windows365PartnerConnector": "Windows 365 パートナー コネクタ",
|
"windows365PartnerConnector": "Windows 365 パートナー コネクタ",
|
||||||
"windowsDiagnosticData": "Windows データ",
|
"windowsDiagnosticData": "Windows データ",
|
||||||
"windowsEnterpriseCertificate": "Windows Enterprise 証明書",
|
"windowsEnterpriseCertificate": "Windows Enterprise 証明書",
|
||||||
@@ -12709,7 +12748,7 @@
|
|||||||
"DeliveryOptimizationPriority": {
|
"DeliveryOptimizationPriority": {
|
||||||
"backgroundNormal": "バックグラウンド",
|
"backgroundNormal": "バックグラウンド",
|
||||||
"displayText": "{0} でのコンテンツ ダウンロード",
|
"displayText": "{0} でのコンテンツ ダウンロード",
|
||||||
"foreground": "前景",
|
"foreground": "フォアグラウンド",
|
||||||
"header": "配信の最適化の優先度"
|
"header": "配信の最適化の優先度"
|
||||||
},
|
},
|
||||||
"RestartGracePeriod": {
|
"RestartGracePeriod": {
|
||||||
|
|||||||
+136
-97
@@ -227,7 +227,6 @@
|
|||||||
"co": "코르시카어(프랑스)",
|
"co": "코르시카어(프랑스)",
|
||||||
"cs": "체코어(체코)",
|
"cs": "체코어(체코)",
|
||||||
"da": "덴마크어(덴마크)",
|
"da": "덴마크어(덴마크)",
|
||||||
"prs": "다리어(아프가니스탄)",
|
|
||||||
"dv": "디베히어(몰디브)",
|
"dv": "디베히어(몰디브)",
|
||||||
"et": "에스토니아어(에스토니아)",
|
"et": "에스토니아어(에스토니아)",
|
||||||
"fo": "페로어(페로 제도)",
|
"fo": "페로어(페로 제도)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender 바이러스 백신",
|
"defender": "Microsoft Defender 바이러스 백신",
|
||||||
"defenderAntivirus": "Microsoft Defender 바이러스 백신",
|
"defenderAntivirus": "Microsoft Defender 바이러스 백신",
|
||||||
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
||||||
"defenderFirewall": "Microsoft Defender 방화벽",
|
"defenderFirewall": "Windows 방화벽",
|
||||||
"defenderLocalSecurityOptions": "로컬 디바이스 보안 옵션",
|
"defenderLocalSecurityOptions": "로컬 디바이스 보안 옵션",
|
||||||
"defenderSecurityCenter": "Microsoft Defender 보안 센터",
|
"defenderSecurityCenter": "Microsoft Defender 보안 센터",
|
||||||
"deliveryOptimization": "제공 최적화",
|
"deliveryOptimization": "제공 최적화",
|
||||||
@@ -498,7 +497,7 @@
|
|||||||
"disabled": "사용 안 함",
|
"disabled": "사용 안 함",
|
||||||
"enabled": "사용",
|
"enabled": "사용",
|
||||||
"infoBalloonContent": "Windows 11에 적합하지 않은 디바이스에 최신 Windows 10 기능 업데이트를 설치할지 여부 제어",
|
"infoBalloonContent": "Windows 11에 적합하지 않은 디바이스에 최신 Windows 10 기능 업데이트를 설치할지 여부 제어",
|
||||||
"label": "장치에서 Windows 11을 실행할 수 없는 경우 최신 Windows 10 기능 업데이트를 설치합니다.",
|
"label": "장치에서 Windows 11을 실행할 수 없는 경우 최신 Windows 10 기능 업데이트 설치",
|
||||||
"notApplicable": "해당 없음",
|
"notApplicable": "해당 없음",
|
||||||
"summaryLabel": "Windows 11을 실행할 수 없는 디바이스에 Windows 10 설치"
|
"summaryLabel": "Windows 11을 실행할 수 없는 디바이스에 Windows 10 설치"
|
||||||
},
|
},
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"iOS": "iOS/iPadOS 디바이스에서 PIN 대신 지문 ID를 사용하도록 할 수 있습니다. 사용자가 회사 계정을 사용하여 이 앱에 액세스하려고 하면 지문을 제공하라는 메시지가 표시됩니다.",
|
"iOS": "iOS/iPadOS 디바이스에서 PIN 대신 지문 ID를 사용하도록 할 수 있습니다. 사용자가 회사 계정을 사용하여 이 앱에 액세스하려고 하면 지문을 제공하라는 메시지가 표시됩니다.",
|
||||||
"mac": "Mac 디바이스에서 PIN 대신 지문 ID를 사용하도록 할 수 있습니다. 사용자가 회사 계정을 사용하여 이 앱에 액세스하려고 하면 지문을 제공하라는 메시지가 표시됩니다."
|
"mac": "Mac 디바이스에서 PIN 대신 지문 ID를 사용하도록 할 수 있습니다. 사용자가 회사 계정을 사용하여 이 앱에 액세스하려고 하면 지문을 제공하라는 메시지가 표시됩니다."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "다음 옵션 중 하나를 선택하여 이 앱이 데이터를 수신할 수 있는 앱을 지정하세요.",
|
"appSharingFromLevel1": "다음 옵션 중 하나를 선택하여 이 앱이 데이터를 수신할 수 있는 앱을 지정하세요.",
|
||||||
"appSharingFromLevel2": "{0}: 다른 정책 관리 앱에서만 조직 문서 또는 계정의 데이터 받기 허용",
|
"appSharingFromLevel2": "{0}: 다른 정책 관리 앱에서만 조직 문서 또는 계정의 데이터 받기 허용",
|
||||||
"appSharingFromLevel3": "{0}: 모든 앱에서 조직 문서 또는 계정의 데이터 받기 허용",
|
"appSharingFromLevel3": "{0}: 모든 앱에서 조직 문서 또는 계정의 데이터 받기 허용",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "사용할 언어 및 지역을 지정하세요.",
|
"languageInfo": "사용할 언어 및 지역을 지정하세요.",
|
||||||
"licenseAgreement": "Microsoft 소프트웨어 사용 조건",
|
"licenseAgreement": "Microsoft 소프트웨어 사용 조건",
|
||||||
"licenseAgreementInfo": "사용자에게 EULA를 표시할지 여부를 지정합니다.",
|
"licenseAgreementInfo": "사용자에게 EULA를 표시할지 여부를 지정합니다.",
|
||||||
"plugAndForgetDevice": "자체 배포(미리 보기)",
|
"plugAndForgetDevice": "자체 배포",
|
||||||
"plugAndForgetGA": "자체 배포",
|
|
||||||
"privacySettingWarning": "Windows 10, 버전 1903 이상, 또는 Windows 11을 실행하는 디바이스의 진단 데이터 수집에 대한 기본값이 변경되었습니다. ",
|
"privacySettingWarning": "Windows 10, 버전 1903 이상, 또는 Windows 11을 실행하는 디바이스의 진단 데이터 수집에 대한 기본값이 변경되었습니다. ",
|
||||||
"privacySettings": "개인 정보 설정",
|
"privacySettings": "개인 정보 설정",
|
||||||
"privacySettingsInfo": "사용자에게 개인 정보 설정을 표시할지 여부를 지정합니다.",
|
"privacySettingsInfo": "사용자에게 개인 정보 설정을 표시할지 여부를 지정합니다.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "기술자 단계에서 선택한 차단 앱만 실패(미리 보기)",
|
"allowNonBlockingAppInstallation": "기술자 단계에서 선택한 차단 앱만 실패",
|
||||||
"apps": "앱",
|
"apps": "앱",
|
||||||
"appsListName": "애플리케이션 목록",
|
"appsListName": "애플리케이션 목록",
|
||||||
"blockingApps": "차단 앱",
|
"blockingApps": "차단 앱",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "활동",
|
"activity": "활동",
|
||||||
|
"activityName": "작업 이름",
|
||||||
"actor": "행위자(시작한 사람)",
|
"actor": "행위자(시작한 사람)",
|
||||||
|
"actorType": "행위자 유형",
|
||||||
"app": "앱",
|
"app": "앱",
|
||||||
"appName": "앱 이름",
|
"appName": "앱 이름",
|
||||||
"applicationName": "애플리케이션 이름",
|
"applicationName": "애플리케이션 이름",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD 커넥터",
|
"mtdConnector": "MTD 커넥터",
|
||||||
"name": "프로필 이름",
|
"name": "프로필 이름",
|
||||||
"oSVersion": "OS 버전",
|
"oSVersion": "OS 버전",
|
||||||
|
"operationType": "작업 유형",
|
||||||
"os": "OS",
|
"os": "OS",
|
||||||
"packageName": "패키지 이름",
|
"packageName": "패키지 이름",
|
||||||
"partnerName": "파트너",
|
"partnerName": "파트너",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"tooltip": "Touch ID는 지문 인식 기술을 사용하여 iOS 디바이스에서 사용자를 인증합니다. Intune은 LocalAuthentication API를 호출하여 Touch ID를 사용하는 사용자를 인증합니다. 허용되는 경우 Touch ID 지원 디바이스에서 앱에 액세스하는 데 Touch ID를 사용해야 합니다."
|
"tooltip": "Touch ID는 지문 인식 기술을 사용하여 iOS 디바이스에서 사용자를 인증합니다. Intune은 LocalAuthentication API를 호출하여 Touch ID를 사용하는 사용자를 인증합니다. 허용되는 경우 Touch ID 지원 디바이스에서 앱에 액세스하는 데 Touch ID를 사용해야 합니다."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "메시지 앱 이름"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "메시지 앱 패키지 ID"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "메시지 앱 URL 구성표"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "조직 데이터 알림",
|
"label": "조직 데이터 알림",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "차단한 경우 앱에서 보호된 데이터를 인쇄할 수 없습니다."
|
"tooltip": "차단한 경우 앱에서 보호된 데이터를 인쇄할 수 없습니다."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "일반적으로 사용자가 앱에서 하이퍼링크 메시지 링크를 선택하면 미리 채워지고 보낼 준비가 된 전화번호로 메시지 앱이 열립니다. 이 설정의 경우 정책 관리 앱에서 시작될 때 이 콘텐츠 전송 유형을 처리하는 방법을 선택합니다. 이 설정을 적용하려면 추가 단계가 필요할 수 있습니다. 먼저 제외할 앱 선택 목록에서 SMS를 제거했는지 확인합니다. 그런 다음 애플리케이션이 최신 버전의 Intune SDK(버전 > 19.0.0)를 사용하고 있는지 확인합니다.",
|
||||||
"label": "Transfer messaging data to",
|
"label": "다음으로 메시지 데이터 전송",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "일반적으로 사용자가 앱에서 하이퍼링크 메시지 링크를 선택하면 미리 채워지고 보낼 준비가 된 전화번호로 메시지 앱이 열립니다. 이 설정의 경우 정책 관리 앱에서 시작될 때 이 콘텐츠 전송 유형을 처리하는 방법을 선택합니다."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "다른 앱에서 데이터 받기",
|
"label": "다른 앱에서 데이터 받기",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "웹 자격 증명 공급자의 로그인을 허용합니다.",
|
"authenticationWebSignInDescription": "웹 자격 증명 공급자의 로그인을 허용합니다.",
|
||||||
"authenticationWebSignInName": "웹 로그인(사용되지 않는 설정)",
|
"authenticationWebSignInName": "웹 로그인(사용되지 않는 설정)",
|
||||||
"authorizedAppRulesDescription": "인식하고 적용할 로컬 저장소의 권한 있는 방화벽 규칙을 적용합니다.",
|
"authorizedAppRulesDescription": "인식하고 적용할 로컬 저장소의 권한 있는 방화벽 규칙을 적용합니다.",
|
||||||
"authorizedAppRulesName": "로컬 저장소의 권한 있는 애플리케이션 Microsoft Defender 방화벽 규칙",
|
"authorizedAppRulesName": "로컬 스토리지의 권한 있는 애플리케이션 Windows 방화벽 규칙",
|
||||||
"authorizedUsersListHideAdminUsersName": "컴퓨터의 관리자 숨기기",
|
"authorizedUsersListHideAdminUsersName": "컴퓨터의 관리자 숨기기",
|
||||||
"authorizedUsersListHideLocalUsersName": "로컬 사용자 숨기기",
|
"authorizedUsersListHideLocalUsersName": "로컬 사용자 숨기기",
|
||||||
"authorizedUsersListHideMobileAccountsName": "모바일 계정 숨기기",
|
"authorizedUsersListHideMobileAccountsName": "모바일 계정 숨기기",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "이 설정은 사용자 입력이 없어도 모바일 디바이스 화면이 잠기지 않는 시간을 지정합니다. 권장 값은 15분입니다.",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "이 설정은 사용자 입력이 없어도 모바일 디바이스 화면이 잠기지 않는 시간을 지정합니다. 권장 값은 15분입니다.",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "이 설정은 사용자 입력이 없을 경우 얼마의 시간이 지나면 디바이스를 잠기게 할지 지정합니다. 권장 값: 15분",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "이 설정은 사용자 입력이 없을 경우 얼마의 시간이 지나면 디바이스를 잠기게 할지 지정합니다. 권장 값: 15분",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "암호를 요구하기 전까지 최대 비활성 시간(분)",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "암호를 요구하기 전까지 최대 비활성 시간(분)",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "권장 값: 15분",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "모바일 디바이스에서 보유할 수 있는 최신 OS 버전을 선택합니다.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "모바일 디바이스에서 보유할 수 있는 최신 OS 버전을 선택합니다.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "모바일 디바이스에 대한 최대 OS 버전",
|
"complianceMobileOsVersionRestrictionMaximumName": "모바일 디바이스에 대한 최대 OS 버전",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "모바일 디바이스에서 보유할 수 있는 가장 오래된 OS 버전을 선택합니다.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "모바일 디바이스에서 보유할 수 있는 가장 오래된 OS 버전을 선택합니다.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "이 설정은 다시 사용할 수 없는 최근 암호 수를 지정합니다. 권장 값은 5입니다.",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "이 설정은 다시 사용할 수 없는 최근 암호 수를 지정합니다. 권장 값은 5입니다.",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "다시 사용할 수 없는 이전 암호 수",
|
"complianceNumberOfPreviousPasswordsToBlockName": "다시 사용할 수 없는 이전 암호 수",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "권장 값: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "디바이스에서 사용할 수 있는 최신 OS 빌드 버전을 입력합니다(예: 20E252)<br>Apple 신속 보안 대응 업데이트를 최대 OS 빌드로 설정하려면 보조 빌드 버전을 입력하세요(예: 20E772520a).",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "디바이스에서 사용할 수 있는 최신 OS 빌드 버전을 입력합니다(예: 20E252)<br>Apple 신속 보안 대응 업데이트를 최대 OS 빌드로 설정하려면 보조 빌드 버전을 입력하세요(예: 20E772520a).",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "최대 OS 빌드 버전",
|
"complianceOsBuildVersionRestrictionMaximumName": "최대 OS 빌드 버전",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "디바이스에서 사용할 수 있는 가장 오래된 OS 빌드 버전을 입력합니다(예: 20E252)<br>Apple 신속 보안 대응 업데이트를 최소 OS 빌드로 설정하려면 보조 빌드 버전을 입력하세요(예: 20E772520a).",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "디바이스에서 사용할 수 있는 가장 오래된 OS 빌드 버전을 입력합니다(예: 20E252)<br>Apple 신속 보안 대응 업데이트를 최소 OS 빌드로 설정하려면 보조 빌드 버전을 입력하세요(예: 20E772520a).",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Microsoft Defender 보안 인텔리전스를 최신 상태로 유지해야 합니다.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Microsoft Defender 보안 인텔리전스를 최신 상태로 유지해야 합니다.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender 맬웨어 방지 보안 인텔리전스 최신 상태",
|
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender 맬웨어 방지 보안 인텔리전스 최신 상태",
|
||||||
"complianceRequiredPasswordTypeDescription": "이 설정은 암호를 숫자로만 구성할 수 있는지 아니면 암호에 숫자 외의 문자를 포함해야 하는지를 지정합니다. 권장 값의 [필수 암호 형식]은 영숫자, [최소 문자 집합 수]는 1입니다.",
|
"complianceRequiredPasswordTypeDescription": "이 설정은 암호를 숫자로만 구성할 수 있는지 아니면 암호에 숫자 외의 문자를 포함해야 하는지를 지정합니다. 권장 값의 [필수 암호 형식]은 영숫자, [최소 문자 집합 수]는 1입니다.",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "권장 사항: 필요한 암호 유형: 영숫자, 최소 문자 집합 수: 1",
|
||||||
"complianceRootedAllowedDescription": "루팅된 디바이스가 회사 액세스 권한을 가지지 못하도록 합니다.",
|
"complianceRootedAllowedDescription": "루팅된 디바이스가 회사 액세스 권한을 가지지 못하도록 합니다.",
|
||||||
"complianceRootedAllowedName": "루팅된 디바이스",
|
"complianceRootedAllowedName": "루팅된 디바이스",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "이 설정은 디바이스가 USB 디버깅 기능을 사용할 수 없도록 차단할지 여부를 지정합니다.",
|
"complianceSecurityDisableUSBDebuggingDescription": "이 설정은 디바이스가 USB 디버깅 기능을 사용할 수 없도록 차단할지 여부를 지정합니다.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "디바이스에서 실행할 수 있는 가장 오래된 OS 버전을 선택합니다. 운영 체제 버전은 주 버전.부 버전.빌드.수정 버전으로 정의됩니다. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "디바이스에서 실행할 수 있는 가장 오래된 OS 버전을 선택합니다. 운영 체제 버전은 주 버전.부 버전.빌드.수정 버전으로 정의됩니다. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "디바이스에서 사용할 암호 유형을 선택합니다.",
|
"complianceWindowsRequiredPasswordTypeDescription": "디바이스에서 사용할 암호 유형을 선택합니다.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "암호 유형",
|
"complianceWindowsRequiredPasswordTypeName": "암호 유형",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "회사 프로필의 잠금을 해제하려면 암호 보호 사용",
|
||||||
|
"complianceWorkProfileSecurityHeader": "회사 프로필 보안",
|
||||||
"compliantAppsOption": "규격 앱 목록입니다. 목록에 없는 설치된 앱에 대해 비준수를 보고합니다.",
|
"compliantAppsOption": "규격 앱 목록입니다. 목록에 없는 설치된 앱에 대해 비준수를 보고합니다.",
|
||||||
"computerNameStaticPrefixDescription": "컴퓨터에 15자 길이의 이름이 할당됩니다. 접두사를 지정하세요. 나머지 문자는 임의로 지정됩니다.",
|
"computerNameStaticPrefixDescription": "컴퓨터에 15자 길이의 이름이 할당됩니다. 접두사를 지정하세요. 나머지 문자는 임의로 지정됩니다.",
|
||||||
"computerNameStaticPrefixName": "컴퓨터 이름 접두사",
|
"computerNameStaticPrefixName": "컴퓨터 이름 접두사",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Google 도메인 허용 목록",
|
"domainAllowListName": "Google 도메인 허용 목록",
|
||||||
"domainAllowListTableEmptyValueExample": "도메인 입력",
|
"domainAllowListTableEmptyValueExample": "도메인 입력",
|
||||||
"domainAllowListTableName": "도메인",
|
"domainAllowListTableName": "도메인",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "로컬 저장소의 권한 있는 애플리케이션 Microsoft Defender 방화벽 규칙(도메인 네트워크)",
|
"domainAuthorizedAppRulesSummaryLabel": "로컬 저장소의 권한 있는 애플리케이션 Windows 방화벽 규칙(도메인 네트워크)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Microsoft Defender 방화벽(도메인 네트워크)",
|
"domainFirewallEnabledSummaryLabel": "Windows 방화벽(도메인 네트워크)",
|
||||||
"domainGlobalRulesSummaryLabel": "로컬 저장소의 전역 포트 Microsoft Defender 방화벽 규칙(도메인 네트워크)",
|
"domainGlobalRulesSummaryLabel": "로컬 저장소의 전역 포트 Windows 방화벽 규칙(도메인 네트워크)",
|
||||||
"domainIPsecRulesSummaryLabel": "로컬 저장소의 IPsec 규칙(도메인 네트워크)",
|
"domainIPsecRulesSummaryLabel": "로컬 저장소의 IPsec 규칙(도메인 네트워크)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "은폐 모드를 사용한 IPsec 보안 패킷 예외(도메인 네트워크)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "은폐 모드를 사용한 IPsec 보안 패킷 예외(도메인 네트워크)",
|
||||||
"domainInboundConnectionsSummaryLabel": "인바운드 연결에 대한 기본 작업(도메인 네트워크)",
|
"domainInboundConnectionsSummaryLabel": "인바운드 연결에 대한 기본 작업(도메인 네트워크)",
|
||||||
"domainInboundNotificationsSummaryLabel": "인바운드 알림(도메인 네트워크)",
|
"domainInboundNotificationsSummaryLabel": "인바운드 알림(도메인 네트워크)",
|
||||||
"domainLocalStoreSummaryLabel": "로컬 저장소의 Microsoft Defender 방화벽 규칙(도메인 네트워크)",
|
"domainLocalStoreSummaryLabel": "로컬 저장소의 Windows 방화벽 규칙(도메인 네트워크)",
|
||||||
"domainNameSourceOption": "사용자 도메인 이름 원본",
|
"domainNameSourceOption": "사용자 도메인 이름 원본",
|
||||||
"domainNetworkName": "도메인(작업 공간) 네트워크",
|
"domainNetworkName": "도메인(작업 공간) 네트워크",
|
||||||
"domainOutboundConnectionsSummaryLabel": "아웃바운드 연결에 대한 기본 작업(도메인 네트워크)",
|
"domainOutboundConnectionsSummaryLabel": "아웃바운드 연결에 대한 기본 작업(도메인 네트워크)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "대체 인증서를 사용한 SSO(Single Sign-On)",
|
"enableSingleSignOnName": "대체 인증서를 사용한 SSO(Single Sign-On)",
|
||||||
"enableUsePrivateStoreOnly": "프라이빗 저장소만 사용",
|
"enableUsePrivateStoreOnly": "프라이빗 저장소만 사용",
|
||||||
"enableUsePrivateStoreOnlyDescription": "공용 저장소가 아니라 프라이빗 저장소에서만 앱을 다운로드할 수 있습니다.",
|
"enableUsePrivateStoreOnlyDescription": "공용 저장소가 아니라 프라이빗 저장소에서만 앱을 다운로드할 수 있습니다.",
|
||||||
"enableWindowsDefenderFirewallName": "Microsoft Defender 방화벽",
|
"enableWindowsDefenderFirewallName": "Windows 방화벽",
|
||||||
"enableWithUEFILock": "UEFI 잠금과 함께 사용",
|
"enableWithUEFILock": "UEFI 잠금과 함께 사용",
|
||||||
"enableWithoutUEFILock": "UEFI 잠금 없이 사용",
|
"enableWithoutUEFILock": "UEFI 잠금 없이 사용",
|
||||||
"enabledForAzureAdAndHybridOption": "Microsoft Entra 조인 및 하이브리드 조인 디바이스에 대해 키 회전 사용",
|
"enabledForAzureAdAndHybridOption": "Microsoft Entra 조인 및 하이브리드 조인 디바이스에 대해 키 회전 사용",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "다음 앱에 대한 들어오는 연결을 차단합니다.",
|
"firewallAppsBlockedHeader": "다음 앱에 대한 들어오는 연결을 차단합니다.",
|
||||||
"firewallAppsBlockedPageDescription": "들어오는 연결을 차단해야 하는 앱을 선택합니다.",
|
"firewallAppsBlockedPageDescription": "들어오는 연결을 차단해야 하는 앱을 선택합니다.",
|
||||||
"firewallAppsBlockedPageName": "차단된 앱",
|
"firewallAppsBlockedPageName": "차단된 앱",
|
||||||
"firewallCreateRules": "Microsoft Defender 방화벽 규칙을 만듭니다. Endpoint Protection 프로필 하나에 최대 150개의 규칙을 포함할 수 있습니다.",
|
"firewallCreateRules": "Windows 방화벽 규칙을 만듭니다. Endpoint Protection 프로필 하나에 최대 150개의 규칙을 포함할 수 있습니다.",
|
||||||
"firewallRequiredDescription": "방화벽을 켜야 합니다.",
|
"firewallRequiredDescription": "방화벽을 켜야 합니다.",
|
||||||
"firewallRequiredName": "방화벽",
|
"firewallRequiredName": "방화벽",
|
||||||
"firewallRuleAction": "작업",
|
"firewallRuleAction": "작업",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "일반 공급 채널",
|
"generalAvailabilityChannel": "일반 공급 채널",
|
||||||
"generalNetworkSettingsHeader": "일반",
|
"generalNetworkSettingsHeader": "일반",
|
||||||
"genericLocalUsersOrGroupsName": "일반 로컬 사용자 또는 그룹",
|
"genericLocalUsersOrGroupsName": "일반 로컬 사용자 또는 그룹",
|
||||||
"globalConfigurationsDescription": "모든 네트워크 종류에 적용할 수 있는 Microsoft Defender 방화벽 설정을 구성합니다.",
|
"globalConfigurationsDescription": "모든 네트워크 종류에 적용할 수 있는 Windows 방화벽 설정을 구성합니다.",
|
||||||
"globalConfigurationsName": "전역 설정",
|
"globalConfigurationsName": "전역 설정",
|
||||||
"globalRulesDescription": "인식하고 적용할 로컬 저장소의 전역 포트 방화벽 규칙을 적용합니다.",
|
"globalRulesDescription": "인식하고 적용할 로컬 저장소의 전역 포트 방화벽 규칙을 적용합니다.",
|
||||||
"globalRulesName": "로컬 저장소의 전역 포트 Microsoft Defender 방화벽 규칙",
|
"globalRulesName": "로컬 저장소의 전역 포트 Windows 방화벽 규칙",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Google 계정 메일 주소",
|
"googleAccountEmailAddresses": "Google 계정 메일 주소",
|
||||||
"googleAccountEmailAddressesDescription": "세미콜론으로 구분된 전자 메일 주소 목록",
|
"googleAccountEmailAddressesDescription": "세미콜론으로 구분된 전자 메일 주소 목록",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "보안된 데스크톱에서 자격 증명 확인",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "보안된 데스크톱에서 자격 증명 확인",
|
||||||
"localServerCachingHeader": "로컬 서버 캐싱",
|
"localServerCachingHeader": "로컬 서버 캐싱",
|
||||||
"localStoreDescription": "인식하고 적용할 로컬 저장소의 전역 방화벽 규칙을 적용합니다.",
|
"localStoreDescription": "인식하고 적용할 로컬 저장소의 전역 방화벽 규칙을 적용합니다.",
|
||||||
"localStoreName": "로컬 저장소의 Microsoft Defender 방화벽 규칙",
|
"localStoreName": "로컬 저장소의 Windows 방화벽 규칙",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Windows 10 Mobile 디바이스의 잠금 화면에 있을 때 화면 시간 초과를 제어하기 위한 사용자 구성 가능 설정의 표시 여부를 지정합니다. 이 정책을 [허용]으로 설정하면 \"화면 시간 초과\"로 설정된 값이 무시됩니다.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Windows 10 Mobile 디바이스의 잠금 화면에 있을 때 화면 시간 초과를 제어하기 위한 사용자 구성 가능 설정의 표시 여부를 지정합니다. 이 정책을 [허용]으로 설정하면 \"화면 시간 초과\"로 설정된 값이 무시됩니다.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "사용자 구성 가능 화면 시간 초과(모바일 전용)",
|
"lockScreenAllowTimeoutConfigurationName": "사용자 구성 가능 화면 시간 초과(모바일 전용)",
|
||||||
"lockScreenBackgroundImageURLDescription": "사용자 지정 시작 화면 배경 이미지 URL입니다. 엔드포인트 https://로 시작하는 .png 파일이어야 합니다.",
|
"lockScreenBackgroundImageURLDescription": "사용자 지정 시작 화면 배경 이미지 URL입니다. 엔드포인트 https://로 시작하는 .png 파일이어야 합니다.",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "MTU는 1280바이트에서 1400바이트 사이여야 함",
|
"mTUSizeInBytesBounds": "MTU는 1280바이트에서 1400바이트 사이여야 함",
|
||||||
"mTUSizeInBytesName": "최대 전송 단위",
|
"mTUSizeInBytesName": "최대 전송 단위",
|
||||||
"mTUSizeInBytesToolTip": "네트워크에서 전송할 수 있는 가장 큰 데이터 패킷(바이트)입니다. 구성되지 않은 경우 Apple 기본 크기는 1280바이트입니다. iOS 14 이상에 적용됩니다.",
|
"mTUSizeInBytesToolTip": "네트워크에서 전송할 수 있는 가장 큰 데이터 패킷(바이트)입니다. 구성되지 않은 경우 Apple 기본 크기는 1280바이트입니다. iOS 14 이상에 적용됩니다.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "임의 MAC 사용",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "디바이스 기본값 사용",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "NAC 지원과 같이 필요한 경우에만 임의 MAC을 사용합니다. 사용자는 이 설정을 변경할 수 있습니다. Android 13 이상에 적용됩니다.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "디바이스 MAC 사용",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "MAC 주소 임의화",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store 및 식별된 개발자",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store 및 식별된 개발자",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "AirPlay, 다른 디바이스에 대한 화면 공유, 교사가 학생의 화면을 보기 위해 사용하는 교실 앱 기능을 차단합니다. 스크린샷을 차단한 경우 이 설정을 사용할 수 없습니다.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "AirPlay, 다른 디바이스에 대한 화면 공유, 교사가 학생의 화면을 보기 위해 사용하는 교실 앱 기능을 차단합니다. 스크린샷을 차단한 경우 이 설정을 사용할 수 없습니다.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "숫자(4-16)를 입력",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "숫자(4-16)를 입력",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "숫자(6-16)를 입력",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "숫자(6-16)를 입력",
|
||||||
"minimumPasswordLengthName": "최소 암호 길이",
|
"minimumPasswordLengthName": "최소 암호 길이",
|
||||||
|
"minimumPasswordLengthTooltipText": "숫자 입력",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "누락된 업데이트가 자동으로 설치됩니다.",
|
"minimumUpdateAutoInstallClassificationDescription": "누락된 업데이트가 자동으로 설치됩니다.",
|
||||||
"minimumUpdateAutoInstallClassificationName": "지정된 업데이트 분류를 설치합니다.",
|
"minimumUpdateAutoInstallClassificationName": "지정된 업데이트 분류를 설치합니다.",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "중요",
|
"minimumUpdateAutoInstallClassificationValueImportant": "중요",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "수동 프록시 서버 사용",
|
"networkProxyUseManualServerName": "수동 프록시 서버 사용",
|
||||||
"networkProxyUseScriptUrlName": "프록시 스크립트 사용",
|
"networkProxyUseScriptUrlName": "프록시 스크립트 사용",
|
||||||
"networkSettingsName": "네트워크 설정",
|
"networkSettingsName": "네트워크 설정",
|
||||||
"networkSettingsSubtitle": "특정 네트워크 종류에 적용할 수 있는 Microsoft Defender 방화벽 설정을 구성합니다.",
|
"networkSettingsSubtitle": "특정 네트워크 종류에 적용할 수 있는 Windows 방화벽 설정을 구성합니다.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "셀룰러 데이터를 사용하도록 허용하지 않아야 하는 관리되는 iOS 앱을 추가합니다.",
|
"networkUsageRulesBlockCellularHeaderName": "셀룰러 데이터를 사용하도록 허용하지 않아야 하는 관리되는 iOS 앱을 추가합니다.",
|
||||||
"networkUsageRulesBlockCellularName": "셀룰러 데이터 사용 차단",
|
"networkUsageRulesBlockCellularName": "셀룰러 데이터 사용 차단",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "로밍 시 셀룰러 데이터를 사용하도록 허용하지 않아야 하는 관리되는 iOS 앱을 추가합니다.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "로밍 시 셀룰러 데이터를 사용하도록 허용하지 않아야 하는 관리되는 iOS 앱을 추가합니다.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "앱 및 프로세스",
|
"privacyPreferencesTableName": "앱 및 프로세스",
|
||||||
"privacyPublishUserActivitiesDescription": "작업 전환기 등에서 최근에 사용한 리소스의 공유 환경/검색을 차단합니다.",
|
"privacyPublishUserActivitiesDescription": "작업 전환기 등에서 최근에 사용한 리소스의 공유 환경/검색을 차단합니다.",
|
||||||
"privacyPublishUserActivitiesName": "사용자 작업 게시",
|
"privacyPublishUserActivitiesName": "사용자 작업 게시",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "로컬 저장소의 권한 있는 애플리케이션 Microsoft Defender 방화벽 규칙",
|
"privateAuthorizedAppRulesSummaryLabel": "로컬 저장소의 권한 있는 애플리케이션 Windows 방화벽 규칙(프라이빗 네트워크)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Microsoft Defender 방화벽(프라이빗 네트워크)",
|
"privateFirewallEnabledSummaryLabel": "Windows 방화벽(프라이빗 네트워크)",
|
||||||
"privateGlobalRulesSummaryLabel": "로컬 저장소의 전역 포트 Microsoft Defender 방화벽 규칙(프라이빗 네트워크)",
|
"privateGlobalRulesSummaryLabel": "로컬 저장소의 전역 포트 Windows 방화벽 규칙(프라이빗 네트워크)",
|
||||||
"privateIPsecRulesSummaryLabel": "로컬 저장소의 IPsec 규칙(프라이빗 네트워크)",
|
"privateIPsecRulesSummaryLabel": "로컬 저장소의 IPsec 규칙(프라이빗 네트워크)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "은폐 모드를 사용한 IPsec 보안 패킷 예외(프라이빗 네트워크)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "은폐 모드를 사용한 IPsec 보안 패킷 예외(프라이빗 네트워크)",
|
||||||
"privateInboundConnectionsSummaryLabel": "인바운드 연결에 대한 기본 작업(프라이빗 네트워크)",
|
"privateInboundConnectionsSummaryLabel": "인바운드 연결에 대한 기본 작업(프라이빗 네트워크)",
|
||||||
"privateInboundNotificationsSummaryLabel": "인바운드 알림(프라이빗 네트워크)",
|
"privateInboundNotificationsSummaryLabel": "인바운드 알림(프라이빗 네트워크)",
|
||||||
"privateLocalStoreSummaryLabel": "로컬 저장소의 Microsoft Defender 방화벽 규칙(프라이빗 네트워크)",
|
"privateLocalStoreSummaryLabel": "로컬 저장소의 Windows 방화벽 규칙(프라이빗 네트워크)",
|
||||||
"privateNetworkName": "프라이빗(검색 가능) 네트워크",
|
"privateNetworkName": "프라이빗(검색 가능) 네트워크",
|
||||||
"privateOutboundConnectionsSummaryLabel": "아웃바운드 연결에 대한 기본 작업(프라이빗 네트워크)",
|
"privateOutboundConnectionsSummaryLabel": "아웃바운드 연결에 대한 기본 작업(프라이빗 네트워크)",
|
||||||
"privateShieldedSummaryLabel": "차폐(프라이빗 네트워크)",
|
"privateShieldedSummaryLabel": "차폐(프라이빗 네트워크)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "프록시 서버 URL",
|
"proxyServerURLName": "프록시 서버 URL",
|
||||||
"proxyServersAutoDetectionName": "다른 엔터프라이즈 프록시 서버 자동 검색",
|
"proxyServersAutoDetectionName": "다른 엔터프라이즈 프록시 서버 자동 검색",
|
||||||
"proxyUrlExample": "예: itgproxy.contoso.com",
|
"proxyUrlExample": "예: itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "로컬 저장소의 권한 있는 애플리케이션 Microsoft Defender 방화벽 규칙(공용 네트워크)",
|
"publicAuthorizedAppRulesSummaryLabel": "로컬 저장소의 권한 있는 애플리케이션 Windows 방화벽 규칙(공용 네트워크)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Microsoft Defender 방화벽(공용 네트워크)",
|
"publicFirewallEnabledSummaryLabel": "Windows 방화벽(공용 네트워크)",
|
||||||
"publicGlobalRulesSummaryLabel": "로컬 저장소의 전역 포트 Microsoft Defender 방화벽 규칙(공용 네트워크)",
|
"publicGlobalRulesSummaryLabel": "로컬 저장소의 전역 포트 Windows 방화벽 규칙(공용 네트워크)",
|
||||||
"publicIPsecRulesSummaryLabel": "로컬 저장소의 IPsec 규칙(공용 네트워크)",
|
"publicIPsecRulesSummaryLabel": "로컬 저장소의 IPsec 규칙(공용 네트워크)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "은폐 모드를 사용한 IPsec 보안 패킷 예외(공용 네트워크)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "은폐 모드를 사용한 IPsec 보안 패킷 예외(공용 네트워크)",
|
||||||
"publicInboundConnectionsSummaryLabel": "인바운드 연결에 대한 기본 작업(공용 네트워크)",
|
"publicInboundConnectionsSummaryLabel": "인바운드 연결에 대한 기본 작업(공용 네트워크)",
|
||||||
"publicInboundNotificationsSummaryLabel": "인바운드 알림(공용 네트워크)",
|
"publicInboundNotificationsSummaryLabel": "인바운드 알림(공용 네트워크)",
|
||||||
"publicLocalStoreSummaryLabel": "로컬 저장소의 Microsoft Defender 방화벽 규칙(공용 네트워크)",
|
"publicLocalStoreSummaryLabel": "로컬 저장소의 Windows 방화벽 규칙(공용 네트워크)",
|
||||||
"publicNetworkName": "공용(검색 불가능) 네트워크",
|
"publicNetworkName": "공용(검색 불가능) 네트워크",
|
||||||
"publicOutboundConnectionsSummaryLabel": "아웃바운드 연결에 대한 기본 작업(공용 네트워크)",
|
"publicOutboundConnectionsSummaryLabel": "아웃바운드 연결에 대한 기본 작업(공용 네트워크)",
|
||||||
"publicPlayStoreEnabledDescription": "클라이언트 앱에서 제거를 요구한 앱을 제외하고, 사용자가 모든 앱에 대한 액세스 권한을 받습니다. 이 설정을 \"구성하지 않음\"으로 선택하면 사용자는 클라이언트 앱에서 [사용 가능] 또는 [필수]로 나열한 앱에만 액세스할 수 있습니다.",
|
"publicPlayStoreEnabledDescription": "클라이언트 앱에서 제거를 요구한 앱을 제외하고, 사용자가 모든 앱에 대한 액세스 권한을 받습니다. 이 설정을 \"구성하지 않음\"으로 선택하면 사용자는 클라이언트 앱에서 [사용 가능] 또는 [필수]로 나열한 앱에만 액세스할 수 있습니다.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "소프트웨어 KSP에 등록",
|
"sCEPPolicyEnrollToSoftwareKSP": "소프트웨어 KSP에 등록",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "TPM(신뢰할 수 있는 플랫폼 모듈) KSP에 등록, 그러지 않으면 실패",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "TPM(신뢰할 수 있는 플랫폼 모듈) KSP에 등록, 그러지 않으면 실패",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "있는 경우 TPM(신뢰할 수 있는 플랫폼 모듈) KSP에 등록, 그렇지 않으면 소프트웨어 KSP에 등록",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "있는 경우 TPM(신뢰할 수 있는 플랫폼 모듈) KSP에 등록, 그렇지 않으면 소프트웨어 KSP에 등록",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "경고: Microsoft 클라우드 PKI에서 만든 인증 기관에는 모든 용도 EKU(OID 2.5.29.37.0) 또는 Any App Policy EKU(OID 1.3.6.1.4.1.311.10.12.1)를 사용할 수 없습니다.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "대부분의 경우 인증서에는 사용자 또는 디바이스가 서버에 인증할 수 있도록 최소 클라이언트 인증이 필요합니다. 그러나 키의 용도를 추가로 정의하기 위해 추가 사용을 지정할 수 있습니다.",
|
"sCEPPolicyExtendedKeyUsageDescription": "대부분의 경우 인증서에는 사용자 또는 디바이스가 서버에 인증할 수 있도록 최소 클라이언트 인증이 필요합니다. 그러나 키의 용도를 추가로 정의하기 위해 추가 사용을 지정할 수 있습니다.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "확장 키 사용",
|
"sCEPPolicyExtendedKeyUsageName": "확장 키 사용",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "인증서와 함께 해시 알고리즘 유형을 사용합니다. 연결하는 디바이스에서 지원하는 가장 강력한 수준의 보안을 선택해야 합니다.",
|
"sCEPPolicyHashAlgorithmDescription": "인증서와 함께 해시 알고리즘 유형을 사용합니다. 연결하는 디바이스에서 지원하는 가장 강력한 수준의 보안을 선택해야 합니다.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "일 수(1-255)를 입력하세요.",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "일 수(1-255)를 입력하세요.",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "일수 입력(1~365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "일수 입력(1~365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "암호 만료(일)",
|
"workProfilePasswordExpirationInDaysName": "암호 만료(일)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "기간(일) 입력",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "작업 프로필 암호: 최소 암호 길이",
|
"workProfilePasswordMinimumLengthReportingName": "작업 프로필 암호: 최소 암호 길이",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "작업 프로필 암호: 필요한 문자 수",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "작업 프로필 암호: 필요한 문자 수",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "작업 프로필 암호: 필요한 소문자 수",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "작업 프로필 암호: 필요한 소문자 수",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "모든 앱",
|
"anyAppOptionText": "모든 앱",
|
||||||
"anyDestinationAnySourceOptionText": "모든 대상 및 모든 원본",
|
"anyDestinationAnySourceOptionText": "모든 대상 및 모든 원본",
|
||||||
"anyDialerAppOptionText": "모든 전화 걸기 앱",
|
"anyDialerAppOptionText": "모든 전화 걸기 앱",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "모든 메시지 앱",
|
||||||
"anyPolicyManagedDialerAppOptionText": "모든 정책 관리형 전화 걸기 앱",
|
"anyPolicyManagedDialerAppOptionText": "모든 정책 관리형 전화 걸기 앱",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "모든 정책 관리 메시지 앱",
|
||||||
"appAdded": "앱 추가됨",
|
"appAdded": "앱 추가됨",
|
||||||
"appBasedConditionalAccess": "앱 기반 조건부 액세스",
|
"appBasedConditionalAccess": "앱 기반 조건부 액세스",
|
||||||
"appColumnLabel": "앱",
|
"appColumnLabel": "앱",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "MDM 디바이스 ID",
|
"mdmDeviceId": "MDM 디바이스 ID",
|
||||||
"mdmWipInvalidVersionSettings": "하나 이상의 앱에 잘못된 최소/최대 버전 정의가 있습니다.<br /> <br />등록 정책을 사용하는 Windows Information Protection에서는 두 버전이 동일한 것으로 지정되지 않는 한 하나의 최소 또는 최대 버전만 지정할 수 있습니다. 최소 버전만 지정할 경우 최소 버전보다 크거나 같은 버전으로 규칙이 설정되고 최대 버전만 지원할 경우 최대 버전보다 작거나 같은 버전으로 규칙이 설정됩니다.",
|
"mdmWipInvalidVersionSettings": "하나 이상의 앱에 잘못된 최소/최대 버전 정의가 있습니다.<br /> <br />등록 정책을 사용하는 Windows Information Protection에서는 두 버전이 동일한 것으로 지정되지 않는 한 하나의 최소 또는 최대 버전만 지정할 수 있습니다. 최소 버전만 지정할 경우 최소 버전보다 크거나 같은 버전으로 규칙이 설정되고 최대 버전만 지원할 경우 최대 버전보다 작거나 같은 버전으로 규칙이 설정됩니다.",
|
||||||
"mdmWipReport": "MDM Windows Information Protection 보고서",
|
"mdmWipReport": "MDM Windows Information Protection 보고서",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "메시지 앱 이름(Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "메시지 앱 패키지 ID(Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "메시지 앱 URL 구성표(iOS)",
|
||||||
"microsoftDefenderForEndpoint": "엔드포인트용 Microsoft Defender",
|
"microsoftDefenderForEndpoint": "엔드포인트용 Microsoft Defender",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "최소 앱 버전",
|
"minAppVersion": "최소 앱 버전",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "설정 카탈로그",
|
"settingsCatalog": "설정 카탈로그",
|
||||||
"settingsSelectorLabel": "설정",
|
"settingsSelectorLabel": "설정",
|
||||||
"silent": "무음",
|
"silent": "무음",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "특정 메시지 앱",
|
||||||
"specificUserIsLicensedIntune": "{0}에게 Microsoft Intune에 대한 라이선스가 있습니다.",
|
"specificUserIsLicensedIntune": "{0}에게 Microsoft Intune에 대한 라이선스가 있습니다.",
|
||||||
"state": "상태",
|
"state": "상태",
|
||||||
"status": "상태",
|
"status": "상태",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Microsoft Edge 기준",
|
"edgeSecurityBaseline": "Microsoft Edge 기준",
|
||||||
"edgeSecurityBaselinePreview": "미리 보기: Microsoft Edge 기준선",
|
"edgeSecurityBaselinePreview": "미리 보기: Microsoft Edge 기준선",
|
||||||
"editionUpgradeConfiguration": "버전 업그레이드 및 모드 전환",
|
"editionUpgradeConfiguration": "버전 업그레이드 및 모드 전환",
|
||||||
"firewall": "Microsoft Defender 방화벽",
|
"firewall": "Windows 방화벽",
|
||||||
"firewallRules": "Microsoft Defender 방화벽 규칙",
|
"firewallRules": "Windows 방화벽 규칙",
|
||||||
"identityProtection": "계정 보호",
|
"identityProtection": "계정 보호",
|
||||||
"identityProtectionPreview": "계정 보호(미리 보기)",
|
"identityProtectionPreview": "계정 보호(미리 보기)",
|
||||||
"mDMSecurityBaseline1810": "2018년 10월 Windows 10 이상용 MDM 보안 기준",
|
"mDMSecurityBaseline1810": "2018년 10월 Windows 10 이상용 MDM 보안 기준",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "미리 보기: Microsoft Office O365 기준",
|
"office365BaselinePreview": "미리 보기: Microsoft Office O365 기준",
|
||||||
"securityBaselines": "보안 기준",
|
"securityBaselines": "보안 기준",
|
||||||
"test": "테스트 템플릿",
|
"test": "테스트 템플릿",
|
||||||
"testFirewallRulesSecurityTemplateName": "Microsoft Defender 방화벽 규칙(테스트)",
|
"testFirewallRulesSecurityTemplateName": "Windows 방화벽 규칙(테스트)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "계정 보호(테스트)",
|
"testIdentityProtectionSecurityTemplateName": "계정 보호(테스트)",
|
||||||
"windowsSecurityExperience": "Windows 보안 환경"
|
"windowsSecurityExperience": "Windows 보안 환경"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Microsoft Defender 방화벽"
|
"mDE": "Windows 방화벽"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Microsoft Defender 방화벽 규칙"
|
"mDE": "Windows 방화벽 규칙"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "OneDrive 알려진 폴더 이동 설정: 클라우드 구성 템플릿의 Windows 10. https://aka.ms/CloudConfigGuide"
|
"description": "OneDrive 알려진 폴더 이동 설정: 클라우드 구성 템플릿의 Windows 10. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "모바일 디바이스 관리 구성",
|
"expeditedCheckin": "모바일 디바이스 관리 구성",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "확장",
|
"extensions": "확장",
|
||||||
"hardwareConfigurations": "BIOS 구성",
|
"hardwareConfigurations": "BIOS 구성 및 기타 설정",
|
||||||
"identityProtection": "Id 보호",
|
"identityProtection": "Id 보호",
|
||||||
"iosCompliancePolicy": "iOS 준수 정책",
|
"iosCompliancePolicy": "iOS 준수 정책",
|
||||||
"kiosk": "키오스크",
|
"kiosk": "키오스크",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Microsoft Defender 바이러스 백신",
|
"microsoftDefenderAntivirus": "Microsoft Defender 바이러스 백신",
|
||||||
"microsoftDefenderAntivirusexclusions": "Microsoft Defender 바이러스 백신 제외",
|
"microsoftDefenderAntivirusexclusions": "Microsoft Defender 바이러스 백신 제외",
|
||||||
"microsoftDefenderAtpWindows10Desktop": "엔드포인트용 Microsoft Defender(Windows 10 이상을 실행하는 데스크톱 디바이스)",
|
"microsoftDefenderAtpWindows10Desktop": "엔드포인트용 Microsoft Defender(Windows 10 이상을 실행하는 데스크톱 디바이스)",
|
||||||
"microsoftDefenderFirewallRules": "Microsoft Defender 방화벽 규칙",
|
"microsoftDefenderFirewallRules": "Windows 방화벽 규칙",
|
||||||
"microsoftEdgeBaseline": "Microsoft Edge 보안 기준",
|
"microsoftEdgeBaseline": "Microsoft Edge 보안 기준",
|
||||||
"mxProfileZebraOnly": "MX 프로필(Zebra만)",
|
"mxProfileZebraOnly": "MX 프로필(Zebra만)",
|
||||||
"networkBoundary": "네트워크 경계",
|
"networkBoundary": "네트워크 경계",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "신뢰할 수 있는 인증서 - 테스트",
|
"windows10XTrustedCertificate": "신뢰할 수 있는 인증서 - 테스트",
|
||||||
"windows10XVPN": "VPN - 테스트",
|
"windows10XVPN": "VPN - 테스트",
|
||||||
"windows10XWifi": "WIFI - 테스트",
|
"windows10XWifi": "WIFI - 테스트",
|
||||||
|
"windows11SecurityBaseline": "Windows 10 이상용 보안 기준",
|
||||||
"windows8CompliancePolicy": "Windows 8 준수 정책",
|
"windows8CompliancePolicy": "Windows 8 준수 정책",
|
||||||
"windowsHealthMonitoring": "Windows 상태 모니터링",
|
"windowsHealthMonitoring": "Windows 상태 모니터링",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "초기 프로비전을 위해 디바이스를 구성하고 사용자에게 할당합니다.",
|
"description": "초기 프로비전을 위해 장치를 구성합니다.",
|
||||||
"title": "디바이스 준비"
|
"title": "디바이스 준비"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "드라이버 업데이트 수동 승인 및 배포"
|
"manual": "드라이버 업데이트 수동 승인 및 배포"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "대량 작업"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0}일"
|
"value": "{0}일"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "아래에서 작업을 선택하세요.",
|
||||||
"label": "Driver action",
|
"label": "드라이버 작업",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "작업 선택"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "포함된 드라이버"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "대량 작업에 포함할 드라이버 선택"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "포함할 드라이버 선택"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "최대 100개의 드라이버를 선택할 수 있습니다."
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "드라이버를 한 개 이상 선택해야 합니다."
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "선택한 드라이버"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Windows 업데이트에서 사용할 수 있도록 설정",
|
||||||
"bladeTitle": "드라이버 업데이트 Windows 10 이상(미리 보기)",
|
"bladeTitle": "드라이버 업데이트 Windows 10 이상(미리 보기)",
|
||||||
"lastSync": "마지막 동기화:",
|
"lastSync": "마지막 동기화:",
|
||||||
"lastSyncDefaultText": "초기 인벤토리 수집 대기 중",
|
"lastSyncDefaultText": "초기 인벤토리 수집 대기 중",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "내용을 미리 보려면 왼쪽의 알림 메시지를 선택합니다."
|
"placeholder": "내용을 미리 보려면 왼쪽의 알림 메시지를 선택합니다."
|
||||||
},
|
},
|
||||||
"companyContact": "메일 바닥글 - 연락처 정보 포함",
|
"companyContact": "연락처 정보 표시",
|
||||||
"companyLogo": "메일 머리글 - 회사 로고 포함",
|
"companyLogo": "회사 로고 표시",
|
||||||
"companyName": "메일 바닥글 - 회사 이름 포함",
|
"companyName": "회사 이름 표시",
|
||||||
"createEditDescription": "알림 메시지 템플릿을 만들거나 편집합니다.",
|
"createEditDescription": "알림 메시지 템플릿을 만들거나 편집합니다.",
|
||||||
"createMessage": "메시지 만들기",
|
"createMessage": "메시지 만들기",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "장치 세부 정보 표시",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "장치 세부 정보를 검색하면 이메일 알림 수신이 지연될 수 있으므로 이 설정은 기본적으로 꺼져 있습니다.",
|
||||||
"editImpactInfo": "이 알림 메시지 템플릿을 편집하면 이 템플릿을 사용 중인 모든 정책에 영향을 줍니다.",
|
"editImpactInfo": "이 알림 메시지 템플릿을 편집하면 이 템플릿을 사용 중인 모든 정책에 영향을 줍니다.",
|
||||||
"editMessage": "메시지 편집",
|
"editMessage": "메시지 편집",
|
||||||
"email": "전자 메일",
|
"email": "전자 메일",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "전자 메일 바닥글",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "메일 알림의 메일 머리글 및 바닥글 설정은 Endpoint Manager의 테넌트 관리자 노드 내 사용자 지정 설정을 사용합니다.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "전자 메일 헤더",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "사용자 지정 설정 구성",
|
||||||
"formSubTitle": "알림 메일 만들기 또는 수정",
|
"formSubTitle": "알림 메일 만들기 또는 수정",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "머리글 및 바닥글 설정",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "이미지 미리 보기",
|
||||||
"infotext": "알림 메시지를 선택합니다. 새 알림을 만들려면 [디바이스 준수 설정] 워크로드의 [관리] 섹션에서 [알림]으로 이동하세요.",
|
"infotext": "알림 메시지를 선택합니다. 새 알림을 만들려면 [디바이스 준수 설정] 워크로드의 [관리] 섹션에서 [알림]으로 이동하세요.",
|
||||||
"iwLink": "회사 포털 웹 사이트 링크",
|
"iwLink": "회사 포털 웹 사이트 링크 표시",
|
||||||
"listEmpty": "메시지 템플릿이 없습니다.",
|
"listEmpty": "메시지 템플릿이 없습니다.",
|
||||||
"listEmptySelectOnly": "메시지 템플릿이 없습니다. 새 알림을 만들려면 [디바이스 준수 설정] 워크로드의 [관리] 섹션에서 [알림]으로 이동하세요.",
|
"listEmptySelectOnly": "메시지 템플릿이 없습니다. 새 알림을 만들려면 [디바이스 준수 설정] 워크로드의 [관리] 섹션에서 [알림]으로 이동하세요.",
|
||||||
"listSubTitle": "알림 메시지 템플릿 목록",
|
"listSubTitle": "알림 메시지 템플릿 목록",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "알림 메시지 템플릿",
|
"notificationMessageTemplates": "알림 메시지 템플릿",
|
||||||
"rowValidationError": "메시지 템플릿이 하나 이상 필요함",
|
"rowValidationError": "메시지 템플릿이 하나 이상 필요함",
|
||||||
"selectDescription": "알림 메시지를 선택하세요. 새 알림을 만들려면 [디바이스 준수 설정] 워크로드의 [관리] 섹션에서 [알림]으로 이동하세요.",
|
"selectDescription": "알림 메시지를 선택하세요. 새 알림을 만들려면 [디바이스 준수 설정] 워크로드의 [관리] 섹션에서 [알림]으로 이동하세요.",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "테넌트 값",
|
||||||
"testEmailLabel": "미리 보기 메일 보내기",
|
"testEmailLabel": "미리 보기 메일 보내기",
|
||||||
"localeLabel": "로캘",
|
"localeLabel": "로캘",
|
||||||
"isDefaultLocale": "기본값 여부"
|
"isDefaultLocale": "기본값 여부"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "{1} 열 {2}의 {0} 행"
|
"ariaLabel": "{1} 열 {2}의 {0} 행"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "처음부터 시작하고 사용 가능한 인벤토리 속성 라이브러리에서 원하는 속성을 선택하세요."
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "처음부터 시작하여 사용 가능한 설정 라이브러리에서 원하는 설정 선택",
|
"subtitle": "처음부터 시작하여 사용 가능한 설정 라이브러리에서 원하는 설정 선택",
|
||||||
"title": "설정 카탈로그"
|
"title": "설정 카탈로그"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "최소 버전",
|
"minVersion": "최소 버전",
|
||||||
"nameHint": "제한 집합 식별을 위해 표시되는 주 특성입니다.",
|
"nameHint": "제한 집합 식별을 위해 표시되는 주 특성입니다.",
|
||||||
"noAssignmentsStatusBar": "하나 이상의 그룹에 제한을 할당하세요. [속성]을 클릭하세요.",
|
"noAssignmentsStatusBar": "하나 이상의 그룹에 제한을 할당하세요. [속성]을 클릭하세요.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "제한을 편집하려면 관리자여야 합니다.",
|
||||||
"notFound": "제한을 찾을 수 없습니다. 이미 삭제되었을 수 있습니다.",
|
"notFound": "제한을 찾을 수 없습니다. 이미 삭제되었을 수 있습니다.",
|
||||||
"personallyOwned": "개인적으로 소유한 디바이스",
|
"personallyOwned": "개인적으로 소유한 디바이스",
|
||||||
"restriction": "제한",
|
"restriction": "제한",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8 준수 정책",
|
"complianceWindows8": "Windows 8 준수 정책",
|
||||||
"complianceWindowsPhone": "Windows Phone 준수 정책",
|
"complianceWindowsPhone": "Windows Phone 준수 정책",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "속성 카탈로그",
|
||||||
"iosCustom": "사용자 지정",
|
"iosCustom": "사용자 지정",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "파생된 PIV 자격 증명",
|
"iosDerivedCredentialAuthenticationConfiguration": "파생된 PIV 자격 증명",
|
||||||
"iosDeviceFeatures": "디바이스 기능",
|
"iosDeviceFeatures": "디바이스 기능",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS 장치(미리 보기)"
|
"devices": "ChromeOS 디바이스"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "관리자 연락처",
|
"adminContacts": "관리자 연락처",
|
||||||
"appPackaging": "앱 패키징",
|
"appPackaging": "앱 패키징",
|
||||||
"businessGroups": "비즈니스 그룹",
|
"autopatchGroups": "자동 패치 그룹",
|
||||||
"devices": "장치",
|
"devices": "장치",
|
||||||
"feedback": "피드백",
|
"feedback": "피드백",
|
||||||
"gettingStarted": "시작",
|
"gettingStarted": "시작",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "사용자 지정",
|
"brandingAndCustomization": "사용자 지정",
|
||||||
"cartProfiles": "카트 프로필",
|
"cartProfiles": "카트 프로필",
|
||||||
"certificateConnectors": "인증서 커넥터",
|
"certificateConnectors": "인증서 커넥터",
|
||||||
"chromeEnterprise": "Chrome Enterprise(미리 보기)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "클라우드 연결 디바이스(미리 보기)",
|
"cloudAttachedDevices": "클라우드 연결 디바이스(미리 보기)",
|
||||||
"cloudPcActions": "클라우드 PC 작업(미리 보기)",
|
"cloudPcActions": "클라우드 PC 작업(미리 보기)",
|
||||||
"cloudPcMaintenanceWindows": "클라우드 PC 유지 관리 기간(미리 보기)",
|
"cloudPcMaintenanceWindows": "클라우드 PC 유지 관리 기간(미리 보기)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "사용자 상태",
|
"userExecutionStatus": "사용자 상태",
|
||||||
"wdacSupplementalPolicies": "S 모드 추가 정책",
|
"wdacSupplementalPolicies": "S 모드 추가 정책",
|
||||||
"win32CatalogUpdateApp": "Windows용 업데이트(Win32) 카탈로그 앱",
|
"win32CatalogUpdateApp": "Windows용 업데이트(Win32) 카탈로그 앱",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Windows용 업데이트(Win32) 카탈로그 앱(미리 보기)",
|
||||||
"windows10DriverUpdate": "Windows 10 이상용 드라이버 업데이트",
|
"windows10DriverUpdate": "Windows 10 이상용 드라이버 업데이트",
|
||||||
"windows10QualityUpdate": "Windows 10 이상의 품질 업데이트",
|
"windows10QualityUpdate": "Windows 10 이상의 품질 업데이트",
|
||||||
"windows10UpdateRings": "Windows 10 이상용 링 업데이트",
|
"windows10UpdateRings": "Windows 10 이상용 링 업데이트",
|
||||||
"windows10XPolicyFailures": "Windows 10X 정책 실패",
|
"windows10XPolicyFailures": "Windows 10X 정책 실패",
|
||||||
"windows365Connector": "Windows 365 Citrix 커넥터",
|
|
||||||
"windows365PartnerConnector": "Windows 365 파트너 커넥터",
|
"windows365PartnerConnector": "Windows 365 파트너 커넥터",
|
||||||
"windowsDiagnosticData": "Windows 데이터",
|
"windowsDiagnosticData": "Windows 데이터",
|
||||||
"windowsEnterpriseCertificate": "Windows 엔터프라이즈 인증서",
|
"windowsEnterpriseCertificate": "Windows 엔터프라이즈 인증서",
|
||||||
|
|||||||
+137
-98
@@ -227,7 +227,6 @@
|
|||||||
"co": "Corsicaans (Frankrijk)",
|
"co": "Corsicaans (Frankrijk)",
|
||||||
"cs": "Tsjechisch (Tsjechische Republiek)",
|
"cs": "Tsjechisch (Tsjechische Republiek)",
|
||||||
"da": "Deens (Denemarken)",
|
"da": "Deens (Denemarken)",
|
||||||
"prs": "Dari (Afghanistan)",
|
|
||||||
"dv": "Divehi (Maldiven)",
|
"dv": "Divehi (Maldiven)",
|
||||||
"et": "Estisch (Estland)",
|
"et": "Estisch (Estland)",
|
||||||
"fo": "Faeröers (Faröer)",
|
"fo": "Faeröers (Faröer)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender Antivirus",
|
"defender": "Microsoft Defender Antivirus",
|
||||||
"defenderAntivirus": "Microsoft Defender Antivirus",
|
"defenderAntivirus": "Microsoft Defender Antivirus",
|
||||||
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
||||||
"defenderFirewall": "Microsoft Defender Firewall",
|
"defenderFirewall": "Windows Firewall",
|
||||||
"defenderLocalSecurityOptions": "Beveiligingsopties lokaal apparaat",
|
"defenderLocalSecurityOptions": "Beveiligingsopties lokaal apparaat",
|
||||||
"defenderSecurityCenter": "Microsoft Defender-beveiligingscentrum",
|
"defenderSecurityCenter": "Microsoft Defender-beveiligingscentrum",
|
||||||
"deliveryOptimization": "Delivery Optimization",
|
"deliveryOptimization": "Delivery Optimization",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Uitgeschakeld",
|
"disabled": "Uitgeschakeld",
|
||||||
"enabled": "Ingeschakeld",
|
"enabled": "Ingeschakeld",
|
||||||
"infoBalloonContent": "Bepaal of u de nieuwste Windows 10-onderdelenupdate wilt installeren op apparaten die niet in aanmerking komen voor Windows 11",
|
"infoBalloonContent": "Bepaal of u de nieuwste Windows 10-onderdelenupdate wilt installeren op apparaten die niet in aanmerking komen voor Windows 11",
|
||||||
"label": "Wanneer Windows 11 niet kan worden uitgevoerd op een apparaat, installeert u de nieuwste Windows 10-onderdelenupdate",
|
"label": "Wanneer een apparaat niet in aanmerking komt voor het uitvoeren van Windows 11, installeert u de nieuwste Windows 10-onderdelenupdate",
|
||||||
"notApplicable": "Niet van toepassing",
|
"notApplicable": "Niet van toepassing",
|
||||||
"summaryLabel": "Installeer Windows 10 op apparaten waarop Windows 11 niet kan worden uitgevoerd"
|
"summaryLabel": "Installeer Windows 10 op apparaten die niet in aanmerking komen voor Windows 11"
|
||||||
},
|
},
|
||||||
"bladeTitle": "Implementaties van onderdelenupdate",
|
"bladeTitle": "Implementaties van onderdelenupdate",
|
||||||
"deploymentSettingsTitle": "Implementatie-instellingen",
|
"deploymentSettingsTitle": "Implementatie-instellingen",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Selecteer een van de volgende opties om de apps op te geven waarvan deze app gegevens kan ontvangen:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: toestaan dat gegevens uit alle apps worden ontvangen in organisatiedocumenten of -accounts",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "De te gebruiken taal en regio opgeven.",
|
"languageInfo": "De te gebruiken taal en regio opgeven.",
|
||||||
"licenseAgreement": "Licentiebepalingen van Microsoft-software",
|
"licenseAgreement": "Licentiebepalingen van Microsoft-software",
|
||||||
"licenseAgreementInfo": "Opgeven of de gebruiksrechtovereenkomst moet worden weergeven aan gebruikers.",
|
"licenseAgreementInfo": "Opgeven of de gebruiksrechtovereenkomst moet worden weergeven aan gebruikers.",
|
||||||
"plugAndForgetDevice": "Zelf-implementerend (preview)",
|
"plugAndForgetDevice": "Automatische implementatie",
|
||||||
"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. ",
|
"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",
|
"privacySettings": "Privacyinstellingen",
|
||||||
"privacySettingsInfo": "Opgeven of de privacyinstellingen moeten worden weergegeven aan gebruikers.",
|
"privacySettingsInfo": "Opgeven of de privacyinstellingen moeten worden weergegeven aan gebruikers.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Alleen geselecteerde blokkerende apps in de technicusfase laten mislukken (preview)",
|
"allowNonBlockingAppInstallation": "Alleen geselecteerde blokkerende apps in de technicusfase laten mislukken",
|
||||||
"apps": "apps",
|
"apps": "apps",
|
||||||
"appsListName": "Toepassingslijst",
|
"appsListName": "Toepassingslijst",
|
||||||
"blockingApps": "Blokkerende apps",
|
"blockingApps": "Blokkerende apps",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Activiteit",
|
"activity": "Activiteit",
|
||||||
|
"activityName": "Naam van activiteit",
|
||||||
"actor": "Gestart door (actor)",
|
"actor": "Gestart door (actor)",
|
||||||
|
"actorType": "Actortype",
|
||||||
"app": "App",
|
"app": "App",
|
||||||
"appName": "App-naam",
|
"appName": "App-naam",
|
||||||
"applicationName": "Toepassingsnaam",
|
"applicationName": "Toepassingsnaam",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD-connector",
|
"mtdConnector": "MTD-connector",
|
||||||
"name": "Profielnaam",
|
"name": "Profielnaam",
|
||||||
"oSVersion": "Versie van het besturingssysteem",
|
"oSVersion": "Versie van het besturingssysteem",
|
||||||
|
"operationType": "Bewerkingstype",
|
||||||
"os": "Besturingssysteem",
|
"os": "Besturingssysteem",
|
||||||
"packageName": "Pakketnaam",
|
"packageName": "Pakketnaam",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"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."
|
"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."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Naam van berichten-app"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "Pakket-id van berichten-app"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "URL-schema van berichten-app"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Meldingen van organisatiegegevens",
|
"label": "Meldingen van organisatiegegevens",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "Als deze instelling is geblokkeerd, kunnen er geen beveiligde gegevens worden afgedrukt met de app."
|
"tooltip": "Als deze instelling is geblokkeerd, kunnen er geen beveiligde gegevens worden afgedrukt met de app."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Normaal gesproken, wanneer een gebruiker een berichtkoppeling met hyperlink selecteert in een app, wordt een berichten-app geopend met het telefoonnummer dat al is ingevuld en klaar is om te verzenden. Kies voor deze instelling hoe u dit type inhoudsoverdracht wilt verwerken wanneer dit vanuit een door beleid beheerde app wordt gestart. Er zijn mogelijk aanvullende stappen nodig om deze instelling van kracht te laten worden. Controleer eerst of sms is verwijderd uit de lijst Selecteer apps om uit te sluiten. Controleer vervolgens of de toepassing een nieuwere versie van Intune SDK (versie > 19.0.0) gebruikt.",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Berichtgegevens overbrengen naar",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Normaal gesproken, wanneer een gebruiker een berichtkoppeling met hyperlink selecteert in een app, wordt een berichten-app geopend met het telefoonnummer dat al is ingevuld en klaar is om te verzenden. Kies voor deze instelling hoe u dit type inhoudsoverdracht wilt verwerken wanneer dit vanuit een door beleid beheerde app wordt gestart."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Gegevens ontvangen van andere apps",
|
"label": "Gegevens ontvangen van andere apps",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "De provider van de webreferenties toestemming geven om zich aan te melden.",
|
"authenticationWebSignInDescription": "De provider van de webreferenties toestemming geven om zich aan te melden.",
|
||||||
"authenticationWebSignInName": "Webaanmelding (afgeschafte instelling)",
|
"authenticationWebSignInName": "Webaanmelding (afgeschafte instelling)",
|
||||||
"authorizedAppRulesDescription": "Geautoriseerde firewallregels in het lokale archief toepassen zodat deze worden herkend en afgedwongen.",
|
"authorizedAppRulesDescription": "Geautoriseerde firewallregels in het lokale archief toepassen zodat deze worden herkend en afgedwongen.",
|
||||||
"authorizedAppRulesName": "Microsoft Defender Firewall-regels uit het lokale archief voor de gemachtigde toepassing",
|
"authorizedAppRulesName": "Windows Firewall-regels uit het lokale archief voor de gemachtigde toepassing",
|
||||||
"authorizedUsersListHideAdminUsersName": "Beheerders van computer verbergen",
|
"authorizedUsersListHideAdminUsersName": "Beheerders van computer verbergen",
|
||||||
"authorizedUsersListHideLocalUsersName": "Lokale gebruikers verbergen",
|
"authorizedUsersListHideLocalUsersName": "Lokale gebruikers verbergen",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Mobiele accounts verbergen",
|
"authorizedUsersListHideMobileAccountsName": "Mobiele accounts verbergen",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Met deze instelling geeft u aan wat het maximum aantal minuten van inactiviteit is voordat het scherm van het mobiele apparaat wordt vergrendeld. Aanbevolen waarde: 15 minuten",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Met deze instelling geeft u aan wat het maximum aantal minuten van inactiviteit is voordat het scherm van het mobiele apparaat wordt vergrendeld. Aanbevolen waarde: 15 minuten",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Met deze instelling geeft u aan wat het maximum aantal minuten van inactiviteit is voordat het apparaat wordt vergrendeld. Aanbevolen waarde: 15 minuten",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Met deze instelling geeft u aan wat het maximum aantal minuten van inactiviteit is voordat het apparaat wordt vergrendeld. Aanbevolen waarde: 15 minuten",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum aantal minuten van inactiviteit voordat een wachtwoord is vereist",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum aantal minuten van inactiviteit voordat een wachtwoord is vereist",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Aanbevolen waarde: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "De nieuwste toegestane besturingssysteemversie voor een mobiel apparaat selecteren.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "De nieuwste toegestane besturingssysteemversie voor een mobiel apparaat selecteren.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Maximale versie van het besturingssysteem voor mobiele apparaten",
|
"complianceMobileOsVersionRestrictionMaximumName": "Maximale versie van het besturingssysteem voor mobiele apparaten",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "De oudste toegestane besturingssysteemversie voor een mobiel apparaat selecteren.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "De oudste toegestane besturingssysteemversie voor een mobiel apparaat selecteren.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "Met deze instelling geeft u aan wat het aantal onlangs gebruikte wachtwoorden is dat niet opnieuw kan worden gebruikt. Aanbevolen waarde: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "Met deze instelling geeft u aan wat het aantal onlangs gebruikte wachtwoorden is dat niet opnieuw kan worden gebruikt. Aanbevolen waarde: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Aantal vorige wachtwoorden om hergebruik te voorkomen",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Aantal vorige wachtwoorden om hergebruik te voorkomen",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Aanbevolen waarde: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Voer de nieuwste buildversie van het besturingssysteem in die een apparaat kan hebben. Bijvoorbeeld: 20E252<br>Als u een Apple Rapid Security Response-update wilt instellen als de maximale build van het besturingssysteem, voert u de aanvullende buildversie in. Bijvoorbeeld: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Voer de nieuwste buildversie van het besturingssysteem in die een apparaat kan hebben. Bijvoorbeeld: 20E252<br>Als u een Apple Rapid Security Response-update wilt instellen als de maximale build van het besturingssysteem, voert u de aanvullende buildversie in. Bijvoorbeeld: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Maximale buildversie van het besturingssysteem",
|
"complianceOsBuildVersionRestrictionMaximumName": "Maximale buildversie van het besturingssysteem",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Voer de oudste buildversie van het besturingssysteem in die een apparaat mag hebben. Bijvoorbeeld: 20E252<br> Als u een Apple Rapid Security Response-update wilt instellen als de minimale build van het besturingssysteem, voert u de aanvullende buildversie in. Bijvoorbeeld: 20E772520a.",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Voer de oudste buildversie van het besturingssysteem in die een apparaat mag hebben. Bijvoorbeeld: 20E252<br> Als u een Apple Rapid Security Response-update wilt instellen als de minimale build van het besturingssysteem, voert u de aanvullende buildversie in. Bijvoorbeeld: 20E772520a.",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Vereisen dat de beveiligingsinformatie van Microsoft Defender up-to-date is.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Vereisen dat de beveiligingsinformatie van Microsoft Defender up-to-date is.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Beveiligingsinformatie van Microsoft Defender Antimalware up-to-date",
|
"complianceRequireWindowsDefenderSignatureName": "Beveiligingsinformatie van Microsoft Defender Antimalware up-to-date",
|
||||||
"complianceRequiredPasswordTypeDescription": "Met deze instelling geeft u aan of wachtwoorden alleen uit cijfers mogen bestaan, of dat ze ook andere tekens dan cijfers moeten bevatten. Aanbevelingen: Vereist wachtwoordtype: alfanumeriek, minimum aantal tekensets: 1",
|
"complianceRequiredPasswordTypeDescription": "Met deze instelling geeft u aan of wachtwoorden alleen uit cijfers mogen bestaan, of dat ze ook andere tekens dan cijfers moeten bevatten. Aanbevelingen: Vereist wachtwoordtype: alfanumeriek, minimum aantal tekensets: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Aanbevelingen: vereist wachtwoordtype: alfanumeriek, minimum aantal tekensets: 1",
|
||||||
"complianceRootedAllowedDescription": "Voorkomen dat geroote apparaten toegang hebben tot bedrijfsgegevens.",
|
"complianceRootedAllowedDescription": "Voorkomen dat geroote apparaten toegang hebben tot bedrijfsgegevens.",
|
||||||
"complianceRootedAllowedName": "Geroote apparaten",
|
"complianceRootedAllowedName": "Geroote apparaten",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "Met deze instelling geeft u aan of u wilt voorkomen dat het apparaat de functie voor USB-foutopsporing gebruikt.",
|
"complianceSecurityDisableUSBDebuggingDescription": "Met deze instelling geeft u aan of u wilt voorkomen dat het apparaat de functie voor USB-foutopsporing gebruikt.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Selecteer de oudste toegestane besturingssysteemversie voor een apparaat. De besturingssysteemversie wordt gedefinieerd als primair.secundair.build.revisie. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Selecteer de oudste toegestane besturingssysteemversie voor een apparaat. De besturingssysteemversie wordt gedefinieerd als primair.secundair.build.revisie. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Het wachtwoordtype selecteren dat op het apparaat wordt gebruikt.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Het wachtwoordtype selecteren dat op het apparaat wordt gebruikt.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Wachtwoordtype",
|
"complianceWindowsRequiredPasswordTypeName": "Wachtwoordtype",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Een wachtwoord vereisen om het werkprofiel te ontgrendelen",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Beveiliging van werkprofiel",
|
||||||
"compliantAppsOption": "Lijst met compatibele apps. De incompatibiliteit rapporteren van alle geïnstalleerde apps die niet in de lijst staan",
|
"compliantAppsOption": "Lijst met compatibele apps. De incompatibiliteit rapporteren van alle geïnstalleerde apps die niet in de lijst staan",
|
||||||
"computerNameStaticPrefixDescription": "Aan computers wordt een naam van 15 tekens toegewezen. Geef een voorvoegsel op, de rest van de 15 tekens is willekeurig.",
|
"computerNameStaticPrefixDescription": "Aan computers wordt een naam van 15 tekens toegewezen. Geef een voorvoegsel op, de rest van de 15 tekens is willekeurig.",
|
||||||
"computerNameStaticPrefixName": "Computernaamvoorvoegsel",
|
"computerNameStaticPrefixName": "Computernaamvoorvoegsel",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Lijst met toegestane Google-domeinen",
|
"domainAllowListName": "Lijst met toegestane Google-domeinen",
|
||||||
"domainAllowListTableEmptyValueExample": "Geef een domein op",
|
"domainAllowListTableEmptyValueExample": "Geef een domein op",
|
||||||
"domainAllowListTableName": "Domein",
|
"domainAllowListTableName": "Domein",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Microsoft Defender Firewall-regels uit het lokale archief voor de gemachtigde toepassing (domeinnetwerken)",
|
"domainAuthorizedAppRulesSummaryLabel": "Windows Firewall-regels uit het lokale archief voor goedgekeurde toepassingen (domeinnetwerken)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Microsoft Defender firewall (domeinnetwerken)",
|
"domainFirewallEnabledSummaryLabel": "Windows Firewall (domeinnetwerken)",
|
||||||
"domainGlobalRulesSummaryLabel": "Algemene poortregels van Microsoft Defender Firewall uit het lokale archief (domeinnetwerken)",
|
"domainGlobalRulesSummaryLabel": "Algemene poortregels voor Windows Firewall uit het lokale archief (domeinnetwerken)",
|
||||||
"domainIPsecRulesSummaryLabel": "IPsec-regels uit het lokale archief (domeinnetwerken)",
|
"domainIPsecRulesSummaryLabel": "IPsec-regels uit het lokale archief (domeinnetwerken)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "Vrijstelling van met IPsec beveiligd pakket met afgeschermde modus (domeinnetwerken)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "Vrijstelling van met IPsec beveiligd pakket met afgeschermde modus (domeinnetwerken)",
|
||||||
"domainInboundConnectionsSummaryLabel": "De standaardactie voor binnenkomende verbindingen (domeinnetwerken)",
|
"domainInboundConnectionsSummaryLabel": "De standaardactie voor binnenkomende verbindingen (domeinnetwerken)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Binnenkomende meldingen (domeinnetwerken)",
|
"domainInboundNotificationsSummaryLabel": "Binnenkomende meldingen (domeinnetwerken)",
|
||||||
"domainLocalStoreSummaryLabel": "Microsoft Defender Firewall-regels uit het lokale archief (domeinnetwerken)",
|
"domainLocalStoreSummaryLabel": "Windows Firewall-regels uit het lokale archief (domeinnetwerken)",
|
||||||
"domainNameSourceOption": "Bron van gebruikersdomeinnaam",
|
"domainNameSourceOption": "Bron van gebruikersdomeinnaam",
|
||||||
"domainNetworkName": "Domeinnetwerk (werkplek)",
|
"domainNetworkName": "Domeinnetwerk (werkplek)",
|
||||||
"domainOutboundConnectionsSummaryLabel": "De standaardactie voor uitgaande verbindingen (domeinnetwerken)",
|
"domainOutboundConnectionsSummaryLabel": "De standaardactie voor uitgaande verbindingen (domeinnetwerken)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Eenmalige aanmelding (SSO) met een alternatief certificaat",
|
"enableSingleSignOnName": "Eenmalige aanmelding (SSO) met een alternatief certificaat",
|
||||||
"enableUsePrivateStoreOnly": "Alleen privéstore gebruiken",
|
"enableUsePrivateStoreOnly": "Alleen privéstore gebruiken",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Alleen toestaan dat apps worden gedownload uit een privéstore en niet uit de openbare store.",
|
"enableUsePrivateStoreOnlyDescription": "Alleen toestaan dat apps worden gedownload uit een privéstore en niet uit de openbare store.",
|
||||||
"enableWindowsDefenderFirewallName": "Microsoft Defender Firewall",
|
"enableWindowsDefenderFirewallName": "Windows Firewall",
|
||||||
"enableWithUEFILock": "Inschakelen met UEFI-vergrendeling",
|
"enableWithUEFILock": "Inschakelen met UEFI-vergrendeling",
|
||||||
"enableWithoutUEFILock": "Inschakelen zonder UEFI-vergrendeling",
|
"enableWithoutUEFILock": "Inschakelen zonder UEFI-vergrendeling",
|
||||||
"enabledForAzureAdAndHybridOption": "Sleutelrotatie is ingeschakeld voor aan Microsoft Entra en hybride toegevoegde apparaten",
|
"enabledForAzureAdAndHybridOption": "Sleutelrotatie is ingeschakeld voor aan Microsoft Entra en hybride toegevoegde apparaten",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Binnenkomende verbindingen voor de volgende apps blokkeren.",
|
"firewallAppsBlockedHeader": "Binnenkomende verbindingen voor de volgende apps blokkeren.",
|
||||||
"firewallAppsBlockedPageDescription": "Apps selecteren die binnenkomende verbindingen moeten blokkeren.",
|
"firewallAppsBlockedPageDescription": "Apps selecteren die binnenkomende verbindingen moeten blokkeren.",
|
||||||
"firewallAppsBlockedPageName": "Geblokkeerde apps",
|
"firewallAppsBlockedPageName": "Geblokkeerde apps",
|
||||||
"firewallCreateRules": "Regels voor Microsoft Defender Firewall maken. Eén Endpoint Protection-profiel mag maximaal 150 regels bevatten.",
|
"firewallCreateRules": "Windows Firewall-regels maken. Eén Endpoint Protection-profiel mag maximaal 150 regels bevatten.",
|
||||||
"firewallRequiredDescription": "Vereisen dat firewall is ingeschakeld",
|
"firewallRequiredDescription": "Vereisen dat firewall is ingeschakeld",
|
||||||
"firewallRequiredName": "Firewall",
|
"firewallRequiredName": "Firewall",
|
||||||
"firewallRuleAction": "Actie",
|
"firewallRuleAction": "Actie",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Kanaal Algemene beschikbaarheid",
|
"generalAvailabilityChannel": "Kanaal Algemene beschikbaarheid",
|
||||||
"generalNetworkSettingsHeader": "Algemeen",
|
"generalNetworkSettingsHeader": "Algemeen",
|
||||||
"genericLocalUsersOrGroupsName": "Generieke lokale gebruikers of groepen",
|
"genericLocalUsersOrGroupsName": "Generieke lokale gebruikers of groepen",
|
||||||
"globalConfigurationsDescription": "Microsoft Defender Firewall-instellingen configureren die van toepassing zijn op alle netwerktypen.",
|
"globalConfigurationsDescription": "Windows Defender Firewall-instellingen configureren die van toepassing zijn op alle netwerktypen.",
|
||||||
"globalConfigurationsName": "Algemene instellingen",
|
"globalConfigurationsName": "Algemene instellingen",
|
||||||
"globalRulesDescription": "Algemene poortfirewallregels in het lokale archief toepassen zodat deze worden herkend en afgedwongen.",
|
"globalRulesDescription": "Algemene poortfirewallregels in het lokale archief toepassen zodat deze worden herkend en afgedwongen.",
|
||||||
"globalRulesName": "Algemene poortregels van Microsoft Defender Firewall uit het lokale archief",
|
"globalRulesName": "Algemene Windows Firewall-regel voor poorten uit het lokale archief",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "E-mailadressen Google-account",
|
"googleAccountEmailAddresses": "E-mailadressen Google-account",
|
||||||
"googleAccountEmailAddressesDescription": "Lijst met e-mailadressen gescheiden door puntkomma's",
|
"googleAccountEmailAddressesDescription": "Lijst met e-mailadressen gescheiden door puntkomma's",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Vragen om referenties op het beveiligde bureaublad",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Vragen om referenties op het beveiligde bureaublad",
|
||||||
"localServerCachingHeader": "Opslaan in cache van lokale server",
|
"localServerCachingHeader": "Opslaan in cache van lokale server",
|
||||||
"localStoreDescription": "Algemene firewallregels toepassen vanuit het lokale archief zodat deze worden herkend en afgedwongen.",
|
"localStoreDescription": "Algemene firewallregels toepassen vanuit het lokale archief zodat deze worden herkend en afgedwongen.",
|
||||||
"localStoreName": "Microsoft Defender Firewall-regels uit het lokale archief",
|
"localStoreName": "Windows Firewall-regels uit het lokale archief",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Opgeven of een door de gebruiker in te stellen instelling moet worden weergegeven waarmee de time-out van het scherm kan worden ingesteld terwijl het vergrendelingsscherm van Windows 10 Mobile-apparaten wordt weergegeven. Als dit beleid is ingesteld op Toestaan, wordt de waarde die wordt ingesteld met Time-out voor het beeldscherm genegeerd.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Opgeven of een door de gebruiker in te stellen instelling moet worden weergegeven waarmee de time-out van het scherm kan worden ingesteld terwijl het vergrendelingsscherm van Windows 10 Mobile-apparaten wordt weergegeven. Als dit beleid is ingesteld op Toestaan, wordt de waarde die wordt ingesteld met Time-out voor het beeldscherm genegeerd.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Time-out voor het scherm die door de gebruiker kan worden ingesteld (alleen mobiel)",
|
"lockScreenAllowTimeoutConfigurationName": "Time-out voor het scherm die door de gebruiker kan worden ingesteld (alleen mobiel)",
|
||||||
"lockScreenBackgroundImageURLDescription": "URL van de achtergrondafbeelding voor het aangepaste aanmeldingsscherm. Dit moet een PNG-bestand met als eindpunt https:// zijn",
|
"lockScreenBackgroundImageURLDescription": "URL van de achtergrondafbeelding voor het aangepaste aanmeldingsscherm. Dit moet een PNG-bestand met als eindpunt https:// zijn",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "De maximale verzendeenheid moet tussen 1280 en 1400 bytes liggen",
|
"mTUSizeInBytesBounds": "De maximale verzendeenheid moet tussen 1280 en 1400 bytes liggen",
|
||||||
"mTUSizeInBytesName": "Maximale verzendeenheid",
|
"mTUSizeInBytesName": "Maximale verzendeenheid",
|
||||||
"mTUSizeInBytesToolTip": "Het grootste gegevenspakket, in bytes, dat in het netwerk kan worden verzonden. Bij niet configureren is de standaardgrootte voor Apple van 1280 bytes. Is van toepassing op iOS 14 en later.",
|
"mTUSizeInBytesToolTip": "Het grootste gegevenspakket, in bytes, dat in het netwerk kan worden verzonden. Bij niet configureren is de standaardgrootte voor Apple van 1280 bytes. Is van toepassing op iOS 14 en later.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Willekeurige MAC gebruiken",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Standaardapparaat gebruiken",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Gebruik alleen willekeurige MAC wanneer dat nodig is, bijvoorbeeld voor NAC-ondersteuning. Gebruikers kunnen deze instelling wijzigen. Van toepassing op Android 13 en hoger.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "MAC van apparaat gebruiken",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "Willekeurige MAC-adressen",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store en geïdentificeerde ontwikkelaars",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store en geïdentificeerde ontwikkelaars",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Hiermee worden AirPlay, scherm delen met andere apparaten en een functie van de Classroom-app waarmee docenten de schermen van leerlingen/studenten weergeven, geblokkeerd. Deze instelling is niet beschikbaar als u schermopnamen hebt geblokkeerd.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Hiermee worden AirPlay, scherm delen met andere apparaten en een functie van de Classroom-app waarmee docenten de schermen van leerlingen/studenten weergeven, geblokkeerd. Deze instelling is niet beschikbaar als u schermopnamen hebt geblokkeerd.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Voer een getal in (4 - 16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Voer een getal in (4 - 16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Voer een getal in (6 - 16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Voer een getal in (6 - 16)",
|
||||||
"minimumPasswordLengthName": "Minimale wachtwoordlengte",
|
"minimumPasswordLengthName": "Minimale wachtwoordlengte",
|
||||||
|
"minimumPasswordLengthTooltipText": "Voer een getal in",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Ontbrekende updates worden automatisch geïnstalleerd",
|
"minimumUpdateAutoInstallClassificationDescription": "Ontbrekende updates worden automatisch geïnstalleerd",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Opgegeven classificatie van de updates installeren",
|
"minimumUpdateAutoInstallClassificationName": "Opgegeven classificatie van de updates installeren",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Belangrijk",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Belangrijk",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Handmatige proxyserver gebruiken",
|
"networkProxyUseManualServerName": "Handmatige proxyserver gebruiken",
|
||||||
"networkProxyUseScriptUrlName": "Proxyscript gebruiken",
|
"networkProxyUseScriptUrlName": "Proxyscript gebruiken",
|
||||||
"networkSettingsName": "Netwerkinstellingen",
|
"networkSettingsName": "Netwerkinstellingen",
|
||||||
"networkSettingsSubtitle": "Microsoft Defender Firewall-instellingen configureren die van toepassing zijn op specifieke netwerktypen.",
|
"networkSettingsSubtitle": "Windows Firewall-instellingen configureren die van toepassing zijn op specifieke netwerktypen.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Beheerde iOS-apps toevoegen waarvoor het gebruik van mobiel dataverkeer niet moet worden toegestaan.",
|
"networkUsageRulesBlockCellularHeaderName": "Beheerde iOS-apps toevoegen waarvoor het gebruik van mobiel dataverkeer niet moet worden toegestaan.",
|
||||||
"networkUsageRulesBlockCellularName": "Gebruik van mobiel dataverkeer blokkeren",
|
"networkUsageRulesBlockCellularName": "Gebruik van mobiel dataverkeer blokkeren",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Beheerde iOS-apps toevoegen waarvoor het gebruik van mobiel dataverkeer tijdens roaming niet moet worden toegestaan.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Beheerde iOS-apps toevoegen waarvoor het gebruik van mobiel dataverkeer tijdens roaming niet moet worden toegestaan.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "Apps en processen",
|
"privacyPreferencesTableName": "Apps en processen",
|
||||||
"privacyPublishUserActivitiesDescription": "Gedeelde ervaringen/detectie van recent gebruikte resources in taakwisselaar enz. blokkeren.",
|
"privacyPublishUserActivitiesDescription": "Gedeelde ervaringen/detectie van recent gebruikte resources in taakwisselaar enz. blokkeren.",
|
||||||
"privacyPublishUserActivitiesName": "Gebruikersactiviteiten publiceren",
|
"privacyPublishUserActivitiesName": "Gebruikersactiviteiten publiceren",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Microsoft Defender Firewall-regels uit het lokale archief voor de gemachtigde toepassing (particuliere netwerken)",
|
"privateAuthorizedAppRulesSummaryLabel": "Windows Firewall-regels uit het lokale archief voor goedgekeurde toepassingen (particuliere netwerken)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Microsoft Defender firewall (particuliere netwerken)",
|
"privateFirewallEnabledSummaryLabel": "Windows Firewall (particuliere netwerken)",
|
||||||
"privateGlobalRulesSummaryLabel": "Algemene poortregels van Microsoft Defender Firewall uit het lokale archief (particuliere netwerken)",
|
"privateGlobalRulesSummaryLabel": "Algemene poortregels voor Windows Firewall uit het lokale archief (particuliere netwerken)",
|
||||||
"privateIPsecRulesSummaryLabel": "IPsec-regels uit het lokale archief (particuliere netwerken)",
|
"privateIPsecRulesSummaryLabel": "IPsec-regels uit het lokale archief (particuliere netwerken)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "Vrijstelling van met IPsec beveiligd pakket met afgeschermde modus (particuliere netwerken)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "Vrijstelling van met IPsec beveiligd pakket met afgeschermde modus (particuliere netwerken)",
|
||||||
"privateInboundConnectionsSummaryLabel": "De standaardactie voor binnenkomende verbindingen (particuliere netwerken)",
|
"privateInboundConnectionsSummaryLabel": "De standaardactie voor binnenkomende verbindingen (particuliere netwerken)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Binnenkomende meldingen (particuliere netwerken)",
|
"privateInboundNotificationsSummaryLabel": "Binnenkomende meldingen (particuliere netwerken)",
|
||||||
"privateLocalStoreSummaryLabel": "Microsoft Defender Firewall-regels uit het lokale archief (particuliere netwerken)",
|
"privateLocalStoreSummaryLabel": "Windows Firewall-regels uit het lokale archief (particuliere netwerken)",
|
||||||
"privateNetworkName": "Particulier netwerk (detecteerbaar)",
|
"privateNetworkName": "Particulier netwerk (detecteerbaar)",
|
||||||
"privateOutboundConnectionsSummaryLabel": "De standaardactie voor uitgaande verbindingen (particuliere netwerken)",
|
"privateOutboundConnectionsSummaryLabel": "De standaardactie voor uitgaande verbindingen (particuliere netwerken)",
|
||||||
"privateShieldedSummaryLabel": "Afgeschermd (particuliere netwerken)",
|
"privateShieldedSummaryLabel": "Afgeschermd (particuliere netwerken)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "URL van proxyserver",
|
"proxyServerURLName": "URL van proxyserver",
|
||||||
"proxyServersAutoDetectionName": "Automatische detectie van de andere proxyservers in de onderneming",
|
"proxyServersAutoDetectionName": "Automatische detectie van de andere proxyservers in de onderneming",
|
||||||
"proxyUrlExample": "bijvoorbeeld itgproxy.contoso.com",
|
"proxyUrlExample": "bijvoorbeeld itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Microsoft Defender Firewall-regels uit het lokale archief voor de gemachtigde toepassing (openbare netwerken)",
|
"publicAuthorizedAppRulesSummaryLabel": "Windows Firewall-regels uit het lokale archief voor goedgekeurde toepassingen (openbare netwerken)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Microsoft Defender Firewall (openbare netwerken)",
|
"publicFirewallEnabledSummaryLabel": "Windows Firewall (openbare netwerken)",
|
||||||
"publicGlobalRulesSummaryLabel": "Algemene poortregels van Microsoft Defender Firewall uit het lokale archief (openbare netwerken)",
|
"publicGlobalRulesSummaryLabel": "Algemene poortregels voor Windows Firewall uit het lokale archief (openbare netwerken)",
|
||||||
"publicIPsecRulesSummaryLabel": "IPsec-regels uit het lokale archief (openbare netwerken)",
|
"publicIPsecRulesSummaryLabel": "IPsec-regels uit het lokale archief (openbare netwerken)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "Vrijstelling van met IPsec beveiligd pakket met afgeschermde modus (openbare netwerken)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "Vrijstelling van met IPsec beveiligd pakket met afgeschermde modus (openbare netwerken)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Standaardactie voor binnenkomende verbindingen (openbare netwerken)",
|
"publicInboundConnectionsSummaryLabel": "Standaardactie voor binnenkomende verbindingen (openbare netwerken)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Binnenkomende meldingen (openbare netwerken)",
|
"publicInboundNotificationsSummaryLabel": "Binnenkomende meldingen (openbare netwerken)",
|
||||||
"publicLocalStoreSummaryLabel": "Microsoft Defender Firewall-regels uit het lokale archief (openbare netwerken)",
|
"publicLocalStoreSummaryLabel": "Regels voor Windows Firewall uit het lokale archief (openbare netwerken)",
|
||||||
"publicNetworkName": "Openbaar netwerk (niet-detecteerbaar)",
|
"publicNetworkName": "Openbaar netwerk (niet-detecteerbaar)",
|
||||||
"publicOutboundConnectionsSummaryLabel": "De standaardactie voor uitgaande verbindingen (openbare netwerken)",
|
"publicOutboundConnectionsSummaryLabel": "De standaardactie voor uitgaande verbindingen (openbare netwerken)",
|
||||||
"publicPlayStoreEnabledDescription": "Gebruikers krijgen toegang tot alle apps, met uitzondering van de apps waarvoor u bij Client-apps verwijdering hebt vereist. Als u voor deze instelling Niet geconfigureerd kiest, hebben gebruikers alleen toegang tot de apps die u bij Client-apps hebt vermeld als beschikbaar of vereist.",
|
"publicPlayStoreEnabledDescription": "Gebruikers krijgen toegang tot alle apps, met uitzondering van de apps waarvoor u bij Client-apps verwijdering hebt vereist. Als u voor deze instelling Niet geconfigureerd kiest, hebben gebruikers alleen toegang tot de apps die u bij Client-apps hebt vermeld als beschikbaar of vereist.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Registreren in sleutelarchiefprovider voor software",
|
"sCEPPolicyEnrollToSoftwareKSP": "Registreren in sleutelarchiefprovider voor software",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Registreren in de sleutelarchiefprovider voor TPM (Trusted Platform Module), anders mislukt",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Registreren in de sleutelarchiefprovider voor TPM (Trusted Platform Module), anders mislukt",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Registeren in de sleutelarchiefprovider voor TPM (Trusted Platform Module) indien TPM aanwezig is, anders registreren in de sleutelarchiefprovider voor software",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Registeren in de sleutelarchiefprovider voor TPM (Trusted Platform Module) indien TPM aanwezig is, anders registreren in de sleutelarchiefprovider voor software",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "WAARSCHUWING: de Any Purpose EKU (OID 2.5.29.37.0) en de Any App Policy EKU (OID 1.3.6.1.4.1.311.10.12.1) kunnen niet worden gebruikt met een certificeringsinstantie die is gemaakt in Microsoft Cloud PKI.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "In de meeste gevallen vereist het certificaat minstens clientverificatie zodat de gebruiker of het apparaat een verificatie met een server kan uitvoeren. U kunt echter aanvullend gebruik opgeven om het doel van de sleutel verder te definiëren.",
|
"sCEPPolicyExtendedKeyUsageDescription": "In de meeste gevallen vereist het certificaat minstens clientverificatie zodat de gebruiker of het apparaat een verificatie met een server kan uitvoeren. U kunt echter aanvullend gebruik opgeven om het doel van de sleutel verder te definiëren.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Uitgebreide-sleutelgebruik",
|
"sCEPPolicyExtendedKeyUsageName": "Uitgebreide-sleutelgebruik",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Gebruik een hash-algoritmetype voor het certificaat. Zorg dat u het krachtigste beveiligingsniveau selecteert dat door de te verbinden apparaten wordt ondersteund.",
|
"sCEPPolicyHashAlgorithmDescription": "Gebruik een hash-algoritmetype voor het certificaat. Zorg dat u het krachtigste beveiligingsniveau selecteert dat door de te verbinden apparaten wordt ondersteund.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Voer het aantal dagen in (1 - 255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Voer het aantal dagen in (1 - 255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Voer het aantal dagen (1-365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Voer het aantal dagen (1-365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Wachtwoord verloopt (dagen)",
|
"workProfilePasswordExpirationInDaysName": "Wachtwoord verloopt (dagen)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Voer het aantal dagen in",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Werkprofielwachtwoord: minimale wachtwoordlengte",
|
"workProfilePasswordMinimumLengthReportingName": "Werkprofielwachtwoord: minimale wachtwoordlengte",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Werkprofielwachtwoord: vereist aantal tekens",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Werkprofielwachtwoord: vereist aantal tekens",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Werkprofielwachtwoord: vereist aantal kleine letters",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Werkprofielwachtwoord: vereist aantal kleine letters",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "Willekeurige app",
|
"anyAppOptionText": "Willekeurige app",
|
||||||
"anyDestinationAnySourceOptionText": "Elk doel en elke bron",
|
"anyDestinationAnySourceOptionText": "Elk doel en elke bron",
|
||||||
"anyDialerAppOptionText": "Alle kiezer-apps",
|
"anyDialerAppOptionText": "Alle kiezer-apps",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "Elke berichten-app",
|
||||||
"anyPolicyManagedDialerAppOptionText": "Elke door beleid beheerde kiezer-app",
|
"anyPolicyManagedDialerAppOptionText": "Elke door beleid beheerde kiezer-app",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "Elke door het beleid beheerde berichten-app",
|
||||||
"appAdded": "App toegevoegd",
|
"appAdded": "App toegevoegd",
|
||||||
"appBasedConditionalAccess": "Voorwaardelijke toegang op basis van app",
|
"appBasedConditionalAccess": "Voorwaardelijke toegang op basis van app",
|
||||||
"appColumnLabel": "App",
|
"appColumnLabel": "App",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "MDM-apparaat-id",
|
"mdmDeviceId": "MDM-apparaat-id",
|
||||||
"mdmWipInvalidVersionSettings": "Een of meer apps hebben ongeldige definities voor minimum-/maximumversie.<br /> <br />Beleidsregels van Windows-gegevensbescherming met inschrijving ondersteunen alleen het opgeven van de minimum- of de maximumversie, tenzij beide versies zijn gedefinieerd als gelijk. Wanneer alleen de minimumversie is opgegeven, wordt de regel ingesteld op hoger dan of gelijk aan de minimumversie. Wanneer alleen de maximumversie is opgegeven, wordt de regel ingesteld op lager dan of gelijk aan de maximumversie.",
|
"mdmWipInvalidVersionSettings": "Een of meer apps hebben ongeldige definities voor minimum-/maximumversie.<br /> <br />Beleidsregels van Windows-gegevensbescherming met inschrijving ondersteunen alleen het opgeven van de minimum- of de maximumversie, tenzij beide versies zijn gedefinieerd als gelijk. Wanneer alleen de minimumversie is opgegeven, wordt de regel ingesteld op hoger dan of gelijk aan de minimumversie. Wanneer alleen de maximumversie is opgegeven, wordt de regel ingesteld op lager dan of gelijk aan de maximumversie.",
|
||||||
"mdmWipReport": "Rapport voor MDM Windows Information Protection",
|
"mdmWipReport": "Rapport voor MDM Windows Information Protection",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Naam van berichten-app (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "Pakket-id van berichten-app (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "URL-schema van berichten-app (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender voor Eindpunt",
|
"microsoftDefenderForEndpoint": "Microsoft Defender voor Eindpunt",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "Minimale app-versie",
|
"minAppVersion": "Minimale app-versie",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Catalogus met instellingen",
|
"settingsCatalog": "Catalogus met instellingen",
|
||||||
"settingsSelectorLabel": "Instellingen",
|
"settingsSelectorLabel": "Instellingen",
|
||||||
"silent": "Stil",
|
"silent": "Stil",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "Een specifieke berichten-app",
|
||||||
"specificUserIsLicensedIntune": "{0} heeft een licentie voor Microsoft Intune.",
|
"specificUserIsLicensedIntune": "{0} heeft een licentie voor Microsoft Intune.",
|
||||||
"state": "Status",
|
"state": "Status",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Microsoft Edge-basislijn",
|
"edgeSecurityBaseline": "Microsoft Edge-basislijn",
|
||||||
"edgeSecurityBaselinePreview": "Preview-versie: Microsoft Edge-basislijn",
|
"edgeSecurityBaselinePreview": "Preview-versie: Microsoft Edge-basislijn",
|
||||||
"editionUpgradeConfiguration": "Editie-upgrade en modus wisselen",
|
"editionUpgradeConfiguration": "Editie-upgrade en modus wisselen",
|
||||||
"firewall": "Microsoft Defender Firewall",
|
"firewall": "Windows Firewall",
|
||||||
"firewallRules": "Microsoft Defender Firewall-regels",
|
"firewallRules": "Windows Firewall-regels",
|
||||||
"identityProtection": "Accountbeveiliging",
|
"identityProtection": "Accountbeveiliging",
|
||||||
"identityProtectionPreview": "Accountbeveiliging (preview)",
|
"identityProtectionPreview": "Accountbeveiliging (preview)",
|
||||||
"mDMSecurityBaseline1810": "MDM-beveiligingsbasislijn voor Windows 10 en hoger voor oktober 2018",
|
"mDMSecurityBaseline1810": "MDM-beveiligingsbasislijn voor Windows 10 en hoger voor oktober 2018",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Preview: Microsoft Office O365-basislijn",
|
"office365BaselinePreview": "Preview: Microsoft Office O365-basislijn",
|
||||||
"securityBaselines": "Beveiligingsbasislijnen",
|
"securityBaselines": "Beveiligingsbasislijnen",
|
||||||
"test": "Testsjabloon",
|
"test": "Testsjabloon",
|
||||||
"testFirewallRulesSecurityTemplateName": "Microsoft Defender Firewall-regels (Test)",
|
"testFirewallRulesSecurityTemplateName": "Windows Firewall-regels (test)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Accountbeveiliging (test)",
|
"testIdentityProtectionSecurityTemplateName": "Accountbeveiliging (test)",
|
||||||
"windowsSecurityExperience": "Windows-beveiligingservaring"
|
"windowsSecurityExperience": "Windows-beveiligingservaring"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Microsoft Defender Firewall"
|
"mDE": "Windows Firewall"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Microsoft Defender Firewall-regels"
|
"mDE": "Windows Firewall-regels"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "Instellingen voor het verplaatsen van bekende mappen in OneDrive: Windows 10 in de cloudconfiguratiesjabloon. https://aka.ms/CloudConfigGuide"
|
"description": "Instellingen voor het verplaatsen van bekende mappen in OneDrive: Windows 10 in de cloudconfiguratiesjabloon. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Configuratie voor Mobile Device Management",
|
"expeditedCheckin": "Configuratie voor Mobile Device Management",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "Extensies",
|
"extensions": "Extensies",
|
||||||
"hardwareConfigurations": "BIOS-configuraties",
|
"hardwareConfigurations": "BIOS-configuraties en andere instellingen",
|
||||||
"identityProtection": "Identity Protection",
|
"identityProtection": "Identity Protection",
|
||||||
"iosCompliancePolicy": "Nalevingsbeleid van iOS",
|
"iosCompliancePolicy": "Nalevingsbeleid van iOS",
|
||||||
"kiosk": "Kiosk",
|
"kiosk": "Kiosk",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
|
"microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
|
||||||
"microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-uitsluitingen",
|
"microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-uitsluitingen",
|
||||||
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender voor Eindpunt (desktopapparaten met Windows 10 of hoger)",
|
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender voor Eindpunt (desktopapparaten met Windows 10 of hoger)",
|
||||||
"microsoftDefenderFirewallRules": "Microsoft Defender Firewall-regels",
|
"microsoftDefenderFirewallRules": "Windows Firewall-regels",
|
||||||
"microsoftEdgeBaseline": "Beveiligingsbasislijn voor Microsoft Edge",
|
"microsoftEdgeBaseline": "Beveiligingsbasislijn voor Microsoft Edge",
|
||||||
"mxProfileZebraOnly": "MX-profiel (alleen Zebra)",
|
"mxProfileZebraOnly": "MX-profiel (alleen Zebra)",
|
||||||
"networkBoundary": "De grens van het netwerk",
|
"networkBoundary": "De grens van het netwerk",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Vertrouwd certificaat - TEST",
|
"windows10XTrustedCertificate": "Vertrouwd certificaat - TEST",
|
||||||
"windows10XVPN": "VPN - TEST",
|
"windows10XVPN": "VPN - TEST",
|
||||||
"windows10XWifi": "Wi-Fi - TEST",
|
"windows10XWifi": "Wi-Fi - TEST",
|
||||||
|
"windows11SecurityBaseline": "Beveiligingsbasislijn voor Windows 10 en hoger",
|
||||||
"windows8CompliancePolicy": "Nalevingsbeleid van Windows 8",
|
"windows8CompliancePolicy": "Nalevingsbeleid van Windows 8",
|
||||||
"windowsHealthMonitoring": "Windows-statuscontrole",
|
"windowsHealthMonitoring": "Windows-statuscontrole",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Configureer apparaten voor de eerste inrichting en wijs ze toe aan gebruikers.",
|
"description": "Configureer apparaten voor de eerste inrichting.",
|
||||||
"title": "Apparaatvoorbereiding"
|
"title": "Apparaatvoorbereiding"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Stuurprogramma-updates handmatig goedkeuren en implementeren"
|
"manual": "Stuurprogramma-updates handmatig goedkeuren en implementeren"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Bulkacties"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} dagen"
|
"value": "{0} dagen"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Selecteer hieronder een actie.",
|
||||||
"label": "Driver action",
|
"label": "Stuurprogramma-actie",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Selecteer een actie"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Inbegrepen stuurprogramma's"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Selecteer stuurprogramma's die u wilt opnemen in uw bulkactie"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Stuurprogramma's selecteren die moeten worden opgenomen"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "Er kunnen maximaal honderd stuurprogramma's worden geselecteerd"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "Er moet minstens één stuurprogramma zijn geselecteerd."
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Geselecteerde stuurprogramma's"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Beschikbaar maken in Windows Update",
|
||||||
"bladeTitle": "Stuurprogramma-updates Windows 10 en hoger (preview)",
|
"bladeTitle": "Stuurprogramma-updates Windows 10 en hoger (preview)",
|
||||||
"lastSync": "Laatste synchronisatie:",
|
"lastSync": "Laatste synchronisatie:",
|
||||||
"lastSyncDefaultText": "Initiële inventarisverzameling in behandeling",
|
"lastSyncDefaultText": "Initiële inventarisverzameling in behandeling",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Selecteer aan de linkerkant een meldingsbericht om een voorbeeld van de inhoud te bekijken."
|
"placeholder": "Selecteer aan de linkerkant een meldingsbericht om een voorbeeld van de inhoud te bekijken."
|
||||||
},
|
},
|
||||||
"companyContact": "Voettekst van e-mail - Contactgegevens opnemen",
|
"companyContact": "Contactgegevens weergeven",
|
||||||
"companyLogo": "Koptekst van e-mail - Bedrijfslogo opnemen",
|
"companyLogo": "Bedrijfslogo weergeven",
|
||||||
"companyName": "Voettekst van e-mail - Bedrijfsnaam opnemen",
|
"companyName": "Bedrijfsnaam weergeven",
|
||||||
"createEditDescription": "Maak of bewerk meldingsberichtsjablonen.",
|
"createEditDescription": "Maak of bewerk meldingsberichtsjablonen.",
|
||||||
"createMessage": "Bericht maken",
|
"createMessage": "Bericht maken",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Apparaatgegevens weergeven",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "Deze instelling is standaard uitgeschakeld, omdat het ophalen van apparaatgegevens kan leiden tot een vertraging bij het ontvangen van e-mailmeldingen.",
|
||||||
"editImpactInfo": "Als u deze sjabloon voor meldingsberichten bewerkt, heeft dit gevolgen voor alle beleidsregels die de sjabloon gebruiken.",
|
"editImpactInfo": "Als u deze sjabloon voor meldingsberichten bewerkt, heeft dit gevolgen voor alle beleidsregels die de sjabloon gebruiken.",
|
||||||
"editMessage": "Bericht bewerken",
|
"editMessage": "Bericht bewerken",
|
||||||
"email": "e-mail",
|
"email": "e-mail",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "Voettekst van e-mail",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "Instellingen voor kop- en voetteksten voor e-mailmeldingen zijn afhankelijk van aanpassingsinstellingen binnen het tenantbeheerknooppunt in Endpoint Manager.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "Koptekst van e-mail",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Aanpassingsinstellingen configureren",
|
||||||
"formSubTitle": "E-mailmeldingen maken of wijzigen",
|
"formSubTitle": "E-mailmeldingen maken of wijzigen",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Instellingen voor koptekst en voettekst",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Voorbeeld van afbeelding",
|
||||||
"infotext": "Selecteer een meldingsbericht. Ga naar Meldingen in het gedeelte Beheer van de workload Apparaatcompatibiliteit instellen om een nieuwe melding te maken.",
|
"infotext": "Selecteer een meldingsbericht. Ga naar Meldingen in het gedeelte Beheer van de workload Apparaatcompatibiliteit instellen om een nieuwe melding te maken.",
|
||||||
"iwLink": "Koppeling naar website van bedrijfsportal",
|
"iwLink": "Koppeling naar bedrijfsportalwebsite weergeven",
|
||||||
"listEmpty": "Er zijn geen berichtsjablonen.",
|
"listEmpty": "Er zijn geen berichtsjablonen.",
|
||||||
"listEmptySelectOnly": "Er zijn geen berichtsjablonen. Ga naar Meldingen in het gedeelte Beheer van de workload Apparaatcompatibiliteit instellen om een nieuwe melding te maken.",
|
"listEmptySelectOnly": "Er zijn geen berichtsjablonen. Ga naar Meldingen in het gedeelte Beheer van de workload Apparaatcompatibiliteit instellen om een nieuwe melding te maken.",
|
||||||
"listSubTitle": "Lijst met sjablonen voor meldingsberichten",
|
"listSubTitle": "Lijst met sjablonen voor meldingsberichten",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Meldingsberichtsjablonen",
|
"notificationMessageTemplates": "Meldingsberichtsjablonen",
|
||||||
"rowValidationError": "Er is minimaal één berichtsjabloon vereist",
|
"rowValidationError": "Er is minimaal één berichtsjabloon vereist",
|
||||||
"selectDescription": "Selecteer een meldingsbericht. Ga naar Meldingen in het gedeelte Beheer van de workload Apparaatcompatibiliteit instellen om een nieuwe melding te maken.",
|
"selectDescription": "Selecteer een meldingsbericht. Ga naar Meldingen in het gedeelte Beheer van de workload Apparaatcompatibiliteit instellen om een nieuwe melding te maken.",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Tenantwaarde",
|
||||||
"testEmailLabel": "Een voorbeeld van het e-mailbericht verzenden",
|
"testEmailLabel": "Een voorbeeld van het e-mailbericht verzenden",
|
||||||
"localeLabel": "Landinstellingen",
|
"localeLabel": "Landinstellingen",
|
||||||
"isDefaultLocale": "Is standaard"
|
"isDefaultLocale": "Is standaard"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "rij {0} van {1} kolom {2}"
|
"ariaLabel": "rij {0} van {1} kolom {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Begin helemaal opnieuw en selecteer de gewenste eigenschappen in de bibliotheek met beschikbare inventariseigenschappen"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Begin nieuwe instellingen en selecteer de gewenste instellingen in de bibliotheek met beschikbare instellingen",
|
"subtitle": "Begin nieuwe instellingen en selecteer de gewenste instellingen in de bibliotheek met beschikbare instellingen",
|
||||||
"title": "Catalogus met instellingen"
|
"title": "Catalogus met instellingen"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "Minimale versie",
|
"minVersion": "Minimale versie",
|
||||||
"nameHint": "Dit is het primaire kenmerk dat zichtbaar is voor de identificatie van de ingestelde beperking.",
|
"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.",
|
"noAssignmentsStatusBar": "Wijs de beperking toe aan minimaal één groep. Klik op Eigenschappen.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "U moet een beheerder zijn om beperkingen te bewerken.",
|
||||||
"notFound": "Beperking niet gevonden. Het is mogelijk al verwijderd.",
|
"notFound": "Beperking niet gevonden. Het is mogelijk al verwijderd.",
|
||||||
"personallyOwned": "Apparaten met persoonlijke eigendom",
|
"personallyOwned": "Apparaten met persoonlijke eigendom",
|
||||||
"restriction": "Beperking",
|
"restriction": "Beperking",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Nalevingsbeleid van Windows 8",
|
"complianceWindows8": "Nalevingsbeleid van Windows 8",
|
||||||
"complianceWindowsPhone": "Nalevingsbeleid van Windows Phone",
|
"complianceWindowsPhone": "Nalevingsbeleid van Windows Phone",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Eigenschappencatalogus",
|
||||||
"iosCustom": "Aangepast",
|
"iosCustom": "Aangepast",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Afgeleide PIV-referentie",
|
"iosDerivedCredentialAuthenticationConfiguration": "Afgeleide PIV-referentie",
|
||||||
"iosDeviceFeatures": "Apparaatfuncties",
|
"iosDeviceFeatures": "Apparaatfuncties",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS-apparaten (preview)"
|
"devices": "ChromeOS-apparaten"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Contactpersonen van beheerder",
|
"adminContacts": "Contactpersonen van beheerder",
|
||||||
"appPackaging": "Apps verpakken",
|
"appPackaging": "Apps verpakken",
|
||||||
"businessGroups": "Bedrijfsgroepen",
|
"autopatchGroups": "Autopatch-groepen",
|
||||||
"devices": "Apparaten",
|
"devices": "Apparaten",
|
||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"gettingStarted": "Aan de slag",
|
"gettingStarted": "Aan de slag",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Aanpassen",
|
"brandingAndCustomization": "Aanpassen",
|
||||||
"cartProfiles": "Winkelwagenprofielen",
|
"cartProfiles": "Winkelwagenprofielen",
|
||||||
"certificateConnectors": "Certificaatconnectors",
|
"certificateConnectors": "Certificaatconnectors",
|
||||||
"chromeEnterprise": "Chrome Enterprise (preview)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Apparaten met cloudkoppeling (preview)",
|
"cloudAttachedDevices": "Apparaten met cloudkoppeling (preview)",
|
||||||
"cloudPcActions": "Cloud pc-acties (preview)",
|
"cloudPcActions": "Cloud pc-acties (preview)",
|
||||||
"cloudPcMaintenanceWindows": "Onderhoudsvensters voor cloud-pc (preview- versie)",
|
"cloudPcMaintenanceWindows": "Onderhoudsvensters voor cloud-pc (preview- versie)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "Gebruikersstatus",
|
"userExecutionStatus": "Gebruikersstatus",
|
||||||
"wdacSupplementalPolicies": "Aanvullende beleidsregels S-modus",
|
"wdacSupplementalPolicies": "Aanvullende beleidsregels S-modus",
|
||||||
"win32CatalogUpdateApp": "Updates voor Windows-catalogus-apps (Win32)",
|
"win32CatalogUpdateApp": "Updates voor Windows-catalogus-apps (Win32)",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Updates voor Windows-catalogus-apps (Win32) (Preview)",
|
||||||
"windows10DriverUpdate": "Stuurprogramma-updates voor Windows 10 en hoger",
|
"windows10DriverUpdate": "Stuurprogramma-updates voor Windows 10 en hoger",
|
||||||
"windows10QualityUpdate": "Kwaliteitsupdates voor Windows 10 en hoger",
|
"windows10QualityUpdate": "Kwaliteitsupdates voor Windows 10 en hoger",
|
||||||
"windows10UpdateRings": "Ringen bijwerken voor Windows 10 en hoger",
|
"windows10UpdateRings": "Ringen bijwerken voor Windows 10 en hoger",
|
||||||
"windows10XPolicyFailures": "Fouten met Windows 10X-beleid",
|
"windows10XPolicyFailures": "Fouten met Windows 10X-beleid",
|
||||||
"windows365Connector": "Windows 365 Citrix connector",
|
|
||||||
"windows365PartnerConnector": "Windows 365-partnerconnectors",
|
"windows365PartnerConnector": "Windows 365-partnerconnectors",
|
||||||
"windowsDiagnosticData": "Windows-gegevens",
|
"windowsDiagnosticData": "Windows-gegevens",
|
||||||
"windowsEnterpriseCertificate": "Windows Enterprise-certificaat",
|
"windowsEnterpriseCertificate": "Windows Enterprise-certificaat",
|
||||||
|
|||||||
+137
-98
@@ -227,7 +227,6 @@
|
|||||||
"co": "Korsykański (Francja)",
|
"co": "Korsykański (Francja)",
|
||||||
"cs": "Czeski (Czechy)",
|
"cs": "Czeski (Czechy)",
|
||||||
"da": "Duński (Dania)",
|
"da": "Duński (Dania)",
|
||||||
"prs": "Dari (Afganistan)",
|
|
||||||
"dv": "Divehi (Malediwy)",
|
"dv": "Divehi (Malediwy)",
|
||||||
"et": "Estoński (Estonia)",
|
"et": "Estoński (Estonia)",
|
||||||
"fo": "Farerski (Wyspy Owcze)",
|
"fo": "Farerski (Wyspy Owcze)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Program antywirusowy Microsoft Defender",
|
"defender": "Program antywirusowy Microsoft Defender",
|
||||||
"defenderAntivirus": "Program antywirusowy Microsoft Defender",
|
"defenderAntivirus": "Program antywirusowy Microsoft Defender",
|
||||||
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
||||||
"defenderFirewall": "Zapora Microsoft Defender",
|
"defenderFirewall": "Zapora systemu Windows",
|
||||||
"defenderLocalSecurityOptions": "Opcje zabezpieczeń urządzenia lokalnego",
|
"defenderLocalSecurityOptions": "Opcje zabezpieczeń urządzenia lokalnego",
|
||||||
"defenderSecurityCenter": "Centrum zabezpieczeń usługi Microsoft Defender",
|
"defenderSecurityCenter": "Centrum zabezpieczeń usługi Microsoft Defender",
|
||||||
"deliveryOptimization": "Optymalizacja dostarczania",
|
"deliveryOptimization": "Optymalizacja dostarczania",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Wyłączono",
|
"disabled": "Wyłączono",
|
||||||
"enabled": "Włączono",
|
"enabled": "Włączono",
|
||||||
"infoBalloonContent": "Określ, czy zainstalować najnowszą aktualizację funkcji systemu Windows 10 na urządzeniach, które nie kwalifikują się do instalacji systemu Windows 11",
|
"infoBalloonContent": "Określ, czy zainstalować najnowszą aktualizację funkcji systemu Windows 10 na urządzeniach, które nie kwalifikują się do instalacji systemu Windows 11",
|
||||||
"label": "Jeśli na urządzeniu nie można uruchomić systemu Windows 11, zainstaluj najnowszą aktualizację funkcji systemu Windows 10",
|
"label": "Jeśli urządzenie nie kwalifikuje się do uruchomienia systemu Windows 11, zainstaluj najnowszą aktualizację funkcji systemu Windows 10",
|
||||||
"notApplicable": "Nie dotyczy",
|
"notApplicable": "Nie dotyczy",
|
||||||
"summaryLabel": "Zainstaluj system Windows 10 na urządzeniach, na których nie można uruchomić systemu Windows 11"
|
"summaryLabel": "Instalowanie systemu Windows 10 na urządzeniach, które nie kwalifikują się do uruchomienia systemu Windows 11"
|
||||||
},
|
},
|
||||||
"bladeTitle": "Wdrożenia aktualizacji funkcji",
|
"bladeTitle": "Wdrożenia aktualizacji funkcji",
|
||||||
"deploymentSettingsTitle": "Ustawienia wdrożenia",
|
"deploymentSettingsTitle": "Ustawienia wdrożenia",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Wybierz jedną z następujących opcji, aby określić aplikacje, z których ta aplikacja może odbierać dane:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: zezwalaj na odbieranie danych w ramach kont lub dokumentów organizacji z dowolnej aplikacji",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Określ język i region, które będą używane.",
|
"languageInfo": "Określ język i region, które będą używane.",
|
||||||
"licenseAgreement": "Postanowienia licencyjne firmy Microsoft",
|
"licenseAgreement": "Postanowienia licencyjne firmy Microsoft",
|
||||||
"licenseAgreementInfo": "Określ, czy użytkownikom ma być wyświetlana Umowa Licencyjna Użytkownika Oprogramowania (EULA).",
|
"licenseAgreementInfo": "Określ, czy użytkownikom ma być wyświetlana Umowa Licencyjna Użytkownika Oprogramowania (EULA).",
|
||||||
"plugAndForgetDevice": "Wdrażanie samodzielne (wersja zapoznawcza)",
|
"plugAndForgetDevice": "Samodzielne wdrażanie",
|
||||||
"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.",
|
"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",
|
"privacySettings": "Ustawienia prywatności",
|
||||||
"privacySettingsInfo": "Określ, czy użytkownikom mają być wyświetlane ustawienia prywatności.",
|
"privacySettingsInfo": "Określ, czy użytkownikom mają być wyświetlane ustawienia prywatności.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Tylko wybrane aplikacje blokujące zakończone niepowodzeniem w fazie (wersja zapoznawcza)",
|
"allowNonBlockingAppInstallation": "Tylko wybrane aplikacje blokujące zakończone niepowodzeniem w fazie techników",
|
||||||
"apps": "aplikacje",
|
"apps": "aplikacje",
|
||||||
"appsListName": "Lista aplikacji",
|
"appsListName": "Lista aplikacji",
|
||||||
"blockingApps": "Blokowanie aplikacji",
|
"blockingApps": "Blokowanie aplikacji",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Aktywność",
|
"activity": "Aktywność",
|
||||||
|
"activityName": "Nazwa działania",
|
||||||
"actor": "Zainicjowane przez (aktor)",
|
"actor": "Zainicjowane przez (aktor)",
|
||||||
|
"actorType": "Typ aktora",
|
||||||
"app": "Aplikacja",
|
"app": "Aplikacja",
|
||||||
"appName": "Nazwa aplikacji",
|
"appName": "Nazwa aplikacji",
|
||||||
"applicationName": "Nazwa aplikacji",
|
"applicationName": "Nazwa aplikacji",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "Łącznik MTD",
|
"mtdConnector": "Łącznik MTD",
|
||||||
"name": "Nazwa profilu",
|
"name": "Nazwa profilu",
|
||||||
"oSVersion": "Wersja systemu operacyjnego",
|
"oSVersion": "Wersja systemu operacyjnego",
|
||||||
|
"operationType": "Typ operacji",
|
||||||
"os": "System operacyjny",
|
"os": "System operacyjny",
|
||||||
"packageName": "Nazwa pakietu",
|
"packageName": "Nazwa pakietu",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"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ę."
|
"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ę."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Nazwa aplikacji do obsługi wiadomości"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "Identyfikator pakietu aplikacji do obsługi wiadomości"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "Schemat adresu URL aplikacji do obsługi wiadomości"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Powiadomienia dotyczące danych organizacji",
|
"label": "Powiadomienia dotyczące danych organizacji",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "W przypadku zablokowania aplikacja nie może drukować chronionych danych."
|
"tooltip": "W przypadku zablokowania aplikacja nie może drukować chronionych danych."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Zazwyczaj gdy użytkownik wybierze link do wiadomości hiperlinku w aplikacji, zostanie otwarta aplikacja do obsługi wiadomości z wstępnie wypełnionym numerem telefonu i gotową do wysłania. Dla tego ustawienia wybierz sposób obsługi transferu tego typu zawartości, gdy zostanie on zainicjowany z poziomu aplikacji zarządzanej przez zasady. Aby to ustawienie zostało wprowadzone, może być konieczne wykonanie dodatkowych czynności. Najpierw sprawdź, czy wiadomość SMS została usunięta z listy Wybierz aplikacje do wykluczenia. Następnie upewnij się, że aplikacja korzysta z nowszej wersji usługi Intune SDK (wersja > 19.0.0).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Przesyłanie danych wiadomości do",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Zazwyczaj gdy użytkownik wybierze link do wiadomości hiperlinku w aplikacji, zostanie otwarta aplikacja do obsługi wiadomości z wstępnie wypełnionym numerem telefonu i gotową do wysłania. Dla tego ustawienia wybierz sposób obsługi transferu tego typu zawartości, gdy zostanie on zainicjowany z poziomu aplikacji zarządzanej przez zasady."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Odbierz dane z innych aplikacji",
|
"label": "Odbierz dane z innych aplikacji",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "Zezwalaj na internetowego dostawcę poświadczeń na potrzeby logowania się.",
|
"authenticationWebSignInDescription": "Zezwalaj na internetowego dostawcę poświadczeń na potrzeby logowania się.",
|
||||||
"authenticationWebSignInName": "Logowanie internetowe (ustawienie przestarzałe)",
|
"authenticationWebSignInName": "Logowanie internetowe (ustawienie przestarzałe)",
|
||||||
"authorizedAppRulesDescription": "Zastosuj autoryzowane reguły zapory w magazynie lokalnym do rozpoznawania i wymuszania.",
|
"authorizedAppRulesDescription": "Zastosuj autoryzowane reguły zapory w magazynie lokalnym do rozpoznawania i wymuszania.",
|
||||||
"authorizedAppRulesName": "Reguły zapory Microsoft Defender autoryzowanych aplikacji z magazynu lokalnego",
|
"authorizedAppRulesName": "Reguły zapory systemu Windows autoryzowanej aplikacji z magazynu lokalnego",
|
||||||
"authorizedUsersListHideAdminUsersName": "Ukryj administratorów komputera",
|
"authorizedUsersListHideAdminUsersName": "Ukryj administratorów komputera",
|
||||||
"authorizedUsersListHideLocalUsersName": "Ukryj użytkowników lokalnych",
|
"authorizedUsersListHideLocalUsersName": "Ukryj użytkowników lokalnych",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Ukryj konta urządzeń przenośnych",
|
"authorizedUsersListHideMobileAccountsName": "Ukryj konta urządzeń przenośnych",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "To ustawienie określa czas bez interwencji użytkownika, po którym ekran urządzenia przenośnego jest blokowany. Zalecana wartość: 15 minut",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "To ustawienie określa czas bez interwencji użytkownika, po którym ekran urządzenia przenośnego jest blokowany. Zalecana wartość: 15 minut",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "To ustawienie określa czas braku aktywności użytkownika, po którym urządzenie będzie blokowane. Zalecana wartość: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "To ustawienie określa czas braku aktywności użytkownika, po którym urządzenie będzie blokowane. Zalecana wartość: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maksymalna liczba minut braku aktywności przed wymaganiem wprowadzenia hasła",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maksymalna liczba minut braku aktywności przed wymaganiem wprowadzenia hasła",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Zalecana wartość: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Wybierz najnowszą wersję systemu operacyjnego obsługiwaną przez urządzenie przenośne.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Wybierz najnowszą wersję systemu operacyjnego obsługiwaną przez urządzenie przenośne.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Maksymalna wersja systemu operacyjnego dla urządzeń przenośnych",
|
"complianceMobileOsVersionRestrictionMaximumName": "Maksymalna wersja systemu operacyjnego dla urządzeń przenośnych",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Wybierz najstarszą wersję systemu operacyjnego obsługiwaną przez urządzenie przenośne.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Wybierz najstarszą wersję systemu operacyjnego obsługiwaną przez urządzenie przenośne.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "To ustawienie określa liczbę ostatnich haseł, których nie można użyć ponownie. Zalecana wartość: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "To ustawienie określa liczbę ostatnich haseł, których nie można użyć ponownie. Zalecana wartość: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Liczba poprzednich haseł, których nie można użyć ponownie",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Liczba poprzednich haseł, których nie można użyć ponownie",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Zalecana wartość: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Wprowadź najnowszą wersję kompilacji systemu operacyjnego, którą może mieć urządzenie. Na przykład: 20E252<br>. Jeśli chcesz ustawić aktualizację Apple Rapid Security Response jako maksymalną kompilację systemu operacyjnego, wprowadź dodatkową wersję kompilacji. Na przykład: 20E772520a.",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Wprowadź najnowszą wersję kompilacji systemu operacyjnego, którą może mieć urządzenie. Na przykład: 20E252<br>. Jeśli chcesz ustawić aktualizację Apple Rapid Security Response jako maksymalną kompilację systemu operacyjnego, wprowadź dodatkową wersję kompilacji. Na przykład: 20E772520a.",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Maksymalna wersja kompilacji systemu operacyjnego",
|
"complianceOsBuildVersionRestrictionMaximumName": "Maksymalna wersja kompilacji systemu operacyjnego",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Wprowadź najstarszą wersję kompilacji systemu operacyjnego, którą może mieć urządzenie. Na przykład: 20E252<br>. Jeśli chcesz ustawić aktualizację Apple Rapid Security Response jako maksymalną kompilację systemu operacyjnego, wprowadź dodatkową wersję kompilacji. Na przykład: 20E772520a.",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Wprowadź najstarszą wersję kompilacji systemu operacyjnego, którą może mieć urządzenie. Na przykład: 20E252<br>. Jeśli chcesz ustawić aktualizację Apple Rapid Security Response jako maksymalną kompilację systemu operacyjnego, wprowadź dodatkową wersję kompilacji. Na przykład: 20E772520a.",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Wymagaj, aby analiza zabezpieczeń usługi Microsoft Defender była aktualna.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Wymagaj, aby analiza zabezpieczeń usługi Microsoft Defender była aktualna.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Aktualna analiza zabezpieczeń usługi Microsoft Defender Antimalware",
|
"complianceRequireWindowsDefenderSignatureName": "Aktualna analiza zabezpieczeń usługi Microsoft Defender Antimalware",
|
||||||
"complianceRequiredPasswordTypeDescription": "To ustawienie określa, czy hasła mogą składać się tylko z cyfr, czy muszą zawierać znaki inne niż cyfry. Zalecenia: wymagany typ hasła: alfanumeryczne, minimalna liczba zestawów znaków: 1",
|
"complianceRequiredPasswordTypeDescription": "To ustawienie określa, czy hasła mogą składać się tylko z cyfr, czy muszą zawierać znaki inne niż cyfry. Zalecenia: wymagany typ hasła: alfanumeryczne, minimalna liczba zestawów znaków: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Rekomendacje: wymagany typ hasła: alfanumeryczne, minimalna liczba zestawów znaków: 1",
|
||||||
"complianceRootedAllowedDescription": "Zablokuj urządzeniom z odblokowanym dostępem możliwość uzyskiwania dostępu do zasobów firmy.",
|
"complianceRootedAllowedDescription": "Zablokuj urządzeniom z odblokowanym dostępem możliwość uzyskiwania dostępu do zasobów firmy.",
|
||||||
"complianceRootedAllowedName": "Urządzenia z odblokowanym dostępem",
|
"complianceRootedAllowedName": "Urządzenia z odblokowanym dostępem",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "To ustawienie określa, czy na urządzeniu ma być blokowana funkcja debugowania USB.",
|
"complianceSecurityDisableUSBDebuggingDescription": "To ustawienie określa, czy na urządzeniu ma być blokowana funkcja debugowania USB.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Wybierz najstarszą wersję systemu operacyjnego, która może być zainstalowana na urządzeniu. Wersję podaj w formacie wersja_główna.wersja_pomocnicza.kompilacja.poprawka.",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Wybierz najstarszą wersję systemu operacyjnego, która może być zainstalowana na urządzeniu. Wersję podaj w formacie wersja_główna.wersja_pomocnicza.kompilacja.poprawka.",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Wybierz typ hasła dla urządzenia.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Wybierz typ hasła dla urządzenia.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Typ hasła",
|
"complianceWindowsRequiredPasswordTypeName": "Typ hasła",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Wymagaj hasła do odblokowania profilu służbowego",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Bezpieczeństwo profilu służbowego",
|
||||||
"compliantAppsOption": "Lista zgodnych aplikacji. Zgłoś brak zgodności dla wszystkich zainstalowanych aplikacji nieznajdujących się na liście",
|
"compliantAppsOption": "Lista zgodnych aplikacji. Zgłoś brak zgodności dla wszystkich zainstalowanych aplikacji nieznajdujących się na liście",
|
||||||
"computerNameStaticPrefixDescription": "Do komputerów są przypisywane nazwy o długości 15 znaków. Określ prefiks, a pozostałe znaki będą losowe.",
|
"computerNameStaticPrefixDescription": "Do komputerów są przypisywane nazwy o długości 15 znaków. Określ prefiks, a pozostałe znaki będą losowe.",
|
||||||
"computerNameStaticPrefixName": "Prefiks nazwy komputera",
|
"computerNameStaticPrefixName": "Prefiks nazwy komputera",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Lista dozwolonych domen Google",
|
"domainAllowListName": "Lista dozwolonych domen Google",
|
||||||
"domainAllowListTableEmptyValueExample": "Wprowadź domenę",
|
"domainAllowListTableEmptyValueExample": "Wprowadź domenę",
|
||||||
"domainAllowListTableName": "Domena",
|
"domainAllowListTableName": "Domena",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Reguły zapory Microsoft Defender autoryzowanych aplikacji z magazynu lokalnego (sieci domeny)",
|
"domainAuthorizedAppRulesSummaryLabel": "Reguły zapory systemu Windows autoryzowanej aplikacji z magazynu lokalnego (sieci domenowe)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Zapora usługi Microsoft Defender (sieci domeny)",
|
"domainFirewallEnabledSummaryLabel": "Zapora systemu Windows (sieci domenowe)",
|
||||||
"domainGlobalRulesSummaryLabel": "Globalne reguły zapory Microsoft Defender dotyczące portów z magazynu lokalnego (sieci domeny)",
|
"domainGlobalRulesSummaryLabel": "Globalne reguły zapory systemu Windows portów z magazynu lokalnego (sieci domenowe)",
|
||||||
"domainIPsecRulesSummaryLabel": "Reguły protokołu IPsec z magazynu lokalnego (sieci domeny)",
|
"domainIPsecRulesSummaryLabel": "Reguły protokołu IPsec z magazynu lokalnego (sieci domeny)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "Wykluczenie pakietu zabezpieczonego przez protokół IPsec z trybem niewidzialności (sieci domeny)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "Wykluczenie pakietu zabezpieczonego przez protokół IPsec z trybem niewidzialności (sieci domeny)",
|
||||||
"domainInboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń przychodzących (sieci domeny)",
|
"domainInboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń przychodzących (sieci domeny)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Powiadomienia przychodzące (sieci domeny)",
|
"domainInboundNotificationsSummaryLabel": "Powiadomienia przychodzące (sieci domeny)",
|
||||||
"domainLocalStoreSummaryLabel": "Reguły zapory Microsoft Defender z magazynu lokalnego (sieci domeny)",
|
"domainLocalStoreSummaryLabel": "Reguły zapory systemu Windows z magazynu lokalnego (sieci domenowe)",
|
||||||
"domainNameSourceOption": "Źródło nazwy domeny użytkownika",
|
"domainNameSourceOption": "Źródło nazwy domeny użytkownika",
|
||||||
"domainNetworkName": "Sieć z domeną (firmowa)",
|
"domainNetworkName": "Sieć z domeną (firmowa)",
|
||||||
"domainOutboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń wychodzących (sieci domeny)",
|
"domainOutboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń wychodzących (sieci domeny)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Logowanie jednokrotne (SSO) z certyfikatem alternatywnym",
|
"enableSingleSignOnName": "Logowanie jednokrotne (SSO) z certyfikatem alternatywnym",
|
||||||
"enableUsePrivateStoreOnly": "Używaj tylko sklepu prywatnego",
|
"enableUsePrivateStoreOnly": "Używaj tylko sklepu prywatnego",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Zezwala na pobieranie aplikacji tylko ze sklepu prywatnego, a nie ze sklepu publicznego.",
|
"enableUsePrivateStoreOnlyDescription": "Zezwala na pobieranie aplikacji tylko ze sklepu prywatnego, a nie ze sklepu publicznego.",
|
||||||
"enableWindowsDefenderFirewallName": "Zapora Microsoft Defender",
|
"enableWindowsDefenderFirewallName": "Zapora systemu Windows",
|
||||||
"enableWithUEFILock": "Włącz z blokadą UEFI",
|
"enableWithUEFILock": "Włącz z blokadą UEFI",
|
||||||
"enableWithoutUEFILock": "Włącz bez blokady UEFI",
|
"enableWithoutUEFILock": "Włącz bez blokady UEFI",
|
||||||
"enabledForAzureAdAndHybridOption": "Rotacja kluczy włączona dla urządzeń dołączonych lub dołączonych hybrydowo do Microsoft Entra",
|
"enabledForAzureAdAndHybridOption": "Rotacja kluczy włączona dla urządzeń dołączonych lub dołączonych hybrydowo do Microsoft Entra",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Blokuj połączenia przychodzące dla następujących aplikacji.",
|
"firewallAppsBlockedHeader": "Blokuj połączenia przychodzące dla następujących aplikacji.",
|
||||||
"firewallAppsBlockedPageDescription": "Wybierz aplikacje, które powinny blokować połączenia przychodzące.",
|
"firewallAppsBlockedPageDescription": "Wybierz aplikacje, które powinny blokować połączenia przychodzące.",
|
||||||
"firewallAppsBlockedPageName": "Aplikacje zablokowane",
|
"firewallAppsBlockedPageName": "Aplikacje zablokowane",
|
||||||
"firewallCreateRules": "Utwórz reguły zapory Microsoft Defender. Jeden profil programu Endpoint Protection może zawierać maksymalnie 150 reguł.",
|
"firewallCreateRules": "Utwórz reguły Zapory systemu Windows. Jeden profil programu Endpoint Protection może zawierać maksymalnie 150 reguł.",
|
||||||
"firewallRequiredDescription": "Wymagaj włączenia zapory",
|
"firewallRequiredDescription": "Wymagaj włączenia zapory",
|
||||||
"firewallRequiredName": "Zapora",
|
"firewallRequiredName": "Zapora",
|
||||||
"firewallRuleAction": "Akcja",
|
"firewallRuleAction": "Akcja",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Kanał ogólnej dostępności",
|
"generalAvailabilityChannel": "Kanał ogólnej dostępności",
|
||||||
"generalNetworkSettingsHeader": "Ogólne",
|
"generalNetworkSettingsHeader": "Ogólne",
|
||||||
"genericLocalUsersOrGroupsName": "Ogólni użytkownicy lokalni lub grupy lokalne",
|
"genericLocalUsersOrGroupsName": "Ogólni użytkownicy lokalni lub grupy lokalne",
|
||||||
"globalConfigurationsDescription": "Skonfiguruj ustawienia zapory Microsoft Defender mające zastosowanie do wszystkich typów sieci.",
|
"globalConfigurationsDescription": "Skonfiguruj ustawienia zapory systemu Windows mające zastosowanie do wszystkich typów sieci.",
|
||||||
"globalConfigurationsName": "Ustawienia globalne",
|
"globalConfigurationsName": "Ustawienia globalne",
|
||||||
"globalRulesDescription": "Zastosuj globalne reguły zapory portów w magazynie lokalnym do rozpoznawania i wymuszania.",
|
"globalRulesDescription": "Zastosuj globalne reguły zapory portów w magazynie lokalnym do rozpoznawania i wymuszania.",
|
||||||
"globalRulesName": "Globalne reguły zapory Microsoft Defender dotyczące portów z magazynu lokalnego",
|
"globalRulesName": "Globalne reguły zapory systemu Windows portów z magazynu lokalnego",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Adresy e-mail konta Google",
|
"googleAccountEmailAddresses": "Adresy e-mail konta Google",
|
||||||
"googleAccountEmailAddressesDescription": "Lista adresów e-mail rozdzielana średnikami",
|
"googleAccountEmailAddressesDescription": "Lista adresów e-mail rozdzielana średnikami",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Monituj o poświadczenia na bezpiecznym pulpicie",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Monituj o poświadczenia na bezpiecznym pulpicie",
|
||||||
"localServerCachingHeader": "Lokalne buforowanie serwera",
|
"localServerCachingHeader": "Lokalne buforowanie serwera",
|
||||||
"localStoreDescription": "Zastosuj globalne reguły zapory z magazynu lokalnego do rozpoznawania i wymuszania.",
|
"localStoreDescription": "Zastosuj globalne reguły zapory z magazynu lokalnego do rozpoznawania i wymuszania.",
|
||||||
"localStoreName": "Reguły zapory Microsoft Defender z magazynu lokalnego",
|
"localStoreName": "Reguły zapory systemu Windows z magazynu lokalnego",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Określ, czy ma być wyświetlane ustawienie konfigurowane przez użytkownika umożliwiające sterowanie limitem czasu ekranu blokady urządzeń z systemem Windows 10 Mobile. Jeśli dla tych zasad ustawisz wartość Zezwól, wartość podana w ustawieniu „Limit czasu ekranu” będzie ignorowana.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Określ, czy ma być wyświetlane ustawienie konfigurowane przez użytkownika umożliwiające sterowanie limitem czasu ekranu blokady urządzeń z systemem Windows 10 Mobile. Jeśli dla tych zasad ustawisz wartość Zezwól, wartość podana w ustawieniu „Limit czasu ekranu” będzie ignorowana.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Konfigurowany przez użytkownika limit czasu ekranu (tylko urządzenia przenośne)",
|
"lockScreenAllowTimeoutConfigurationName": "Konfigurowany przez użytkownika limit czasu ekranu (tylko urządzenia przenośne)",
|
||||||
"lockScreenBackgroundImageURLDescription": "Adres URL obrazu tła niestandardowego ekranu powitalnego. Musi być plikiem png z punktem końcowym https://",
|
"lockScreenBackgroundImageURLDescription": "Adres URL obrazu tła niestandardowego ekranu powitalnego. Musi być plikiem png z punktem końcowym https://",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "Rozmiar jednostki MTU musi należeć do zakresu od 1280 do 1400 bajtów",
|
"mTUSizeInBytesBounds": "Rozmiar jednostki MTU musi należeć do zakresu od 1280 do 1400 bajtów",
|
||||||
"mTUSizeInBytesName": "Maksymalna jednostka transmisji",
|
"mTUSizeInBytesName": "Maksymalna jednostka transmisji",
|
||||||
"mTUSizeInBytesToolTip": "Największy pakiet danych (w bajtach), jaki można przesłać w sieci. Jeśli to ustawienie nie zostanie skonfigurowane, będzie używany domyślny rozmiar firmy Apple równy 1280 bajtów. Dotyczy systemu iOS 14 i nowszych.",
|
"mTUSizeInBytesToolTip": "Największy pakiet danych (w bajtach), jaki można przesłać w sieci. Jeśli to ustawienie nie zostanie skonfigurowane, będzie używany domyślny rozmiar firmy Apple równy 1280 bajtów. Dotyczy systemu iOS 14 i nowszych.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Korzystanie z losowych adresów MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Użyj domyślnego ustawienia urządzenia",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Korzystanie z losowych adresów MAC tylko wtedy, gdy jest to potrzebne, na przykład w przypadku obsługi translatora adresów sieciowych. Użytkownicy mogą zmienić to ustawienie. Dotyczy systemu Android 13 lub nowszego.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Korzystanie z adresu MAC urządzenia",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "Losowa obsługa adresów MAC",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Sklep Mac App Store i zidentyfikowani deweloperzy",
|
"macAppStoreAndIdentifiedDevelopersOption": "Sklep Mac App Store i zidentyfikowani deweloperzy",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Blokuje funkcję AirPlay, udostępnianie ekranu innym urządzeniom oraz funkcję aplikacji Classroom używaną przez nauczycieli do wyświetlania ekranów uczniów. To ustawienie nie jest dostępne, jeśli zablokowano tworzenie zrzutów ekranów.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Blokuje funkcję AirPlay, udostępnianie ekranu innym urządzeniom oraz funkcję aplikacji Classroom używaną przez nauczycieli do wyświetlania ekranów uczniów. To ustawienie nie jest dostępne, jeśli zablokowano tworzenie zrzutów ekranów.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Wprowadź liczbę (4–16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Wprowadź liczbę (4–16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Wprowadź liczbę (6–16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Wprowadź liczbę (6–16)",
|
||||||
"minimumPasswordLengthName": "Minimalna długość hasła",
|
"minimumPasswordLengthName": "Minimalna długość hasła",
|
||||||
|
"minimumPasswordLengthTooltipText": "Wprowadź liczbę",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Brakujące aktualizacje zostaną zainstalowane automatycznie",
|
"minimumUpdateAutoInstallClassificationDescription": "Brakujące aktualizacje zostaną zainstalowane automatycznie",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Zainstaluj określoną klasyfikację aktualizacji",
|
"minimumUpdateAutoInstallClassificationName": "Zainstaluj określoną klasyfikację aktualizacji",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Ważne",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Ważne",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Użyj ręcznego serwera proxy",
|
"networkProxyUseManualServerName": "Użyj ręcznego serwera proxy",
|
||||||
"networkProxyUseScriptUrlName": "Użyj skryptu serwera proxy",
|
"networkProxyUseScriptUrlName": "Użyj skryptu serwera proxy",
|
||||||
"networkSettingsName": "Ustawienia sieciowe",
|
"networkSettingsName": "Ustawienia sieciowe",
|
||||||
"networkSettingsSubtitle": "Skonfiguruj ustawienia zapory Microsoft Defender mające zastosowanie do określonych typów sieci.",
|
"networkSettingsSubtitle": "Skonfiguruj ustawienia zapory systemu Windows mające zastosowanie do określonych typów sieci.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Dodaj aplikacje zarządzane systemu iOS, które nie powinny używać danych komórkowych.",
|
"networkUsageRulesBlockCellularHeaderName": "Dodaj aplikacje zarządzane systemu iOS, które nie powinny używać danych komórkowych.",
|
||||||
"networkUsageRulesBlockCellularName": "Zablokuj użycie danych komórkowych",
|
"networkUsageRulesBlockCellularName": "Zablokuj użycie danych komórkowych",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Dodaj aplikacje zarządzane systemu iOS, które nie powinny używać danych komórkowych podczas roamingu.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Dodaj aplikacje zarządzane systemu iOS, które nie powinny używać danych komórkowych podczas roamingu.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "Aplikacje i procesy",
|
"privacyPreferencesTableName": "Aplikacje i procesy",
|
||||||
"privacyPublishUserActivitiesDescription": "Blokuj współużytkowane środowiska/odnajdywanie niedawno używanych zasobów w przełączniku zadań itp.",
|
"privacyPublishUserActivitiesDescription": "Blokuj współużytkowane środowiska/odnajdywanie niedawno używanych zasobów w przełączniku zadań itp.",
|
||||||
"privacyPublishUserActivitiesName": "Publikuj działania użytkownika",
|
"privacyPublishUserActivitiesName": "Publikuj działania użytkownika",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Reguły zapory Microsoft Defender autoryzowanych aplikacji z magazynu lokalnego (sieci prywatne)",
|
"privateAuthorizedAppRulesSummaryLabel": "Reguły zapory systemu Windows autoryzowanej aplikacji z magazynu lokalnego (sieci prywatne)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Zapora Microsoft Defender (sieci prywatne)",
|
"privateFirewallEnabledSummaryLabel": "Zapora systemu Windows (sieci prywatne)",
|
||||||
"privateGlobalRulesSummaryLabel": "Globalne reguły zapory Microsoft Defender dotyczące portów z magazynu lokalnego (sieci prywatne)",
|
"privateGlobalRulesSummaryLabel": "Globalne reguły zapory systemu Windows portów z magazynu lokalnego (sieci prywatne)",
|
||||||
"privateIPsecRulesSummaryLabel": "Reguły protokołu IPsec z magazynu lokalnego (sieci prywatne)",
|
"privateIPsecRulesSummaryLabel": "Reguły protokołu IPsec z magazynu lokalnego (sieci prywatne)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "Wykluczenie pakietu zabezpieczonego przez protokół IPsec z trybem niewidzialności (sieci prywatne)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "Wykluczenie pakietu zabezpieczonego przez protokół IPsec z trybem niewidzialności (sieci prywatne)",
|
||||||
"privateInboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń przychodzących (sieci prywatne)",
|
"privateInboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń przychodzących (sieci prywatne)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Powiadomienia przychodzące (sieci prywatne)",
|
"privateInboundNotificationsSummaryLabel": "Powiadomienia przychodzące (sieci prywatne)",
|
||||||
"privateLocalStoreSummaryLabel": "Reguły zapory Microsoft Defender z magazynu lokalnego (sieci prywatne)",
|
"privateLocalStoreSummaryLabel": "Reguły zapory systemu Windows z magazynu lokalnego (sieci prywatne)",
|
||||||
"privateNetworkName": "Sieć prywatna (wykrywalna)",
|
"privateNetworkName": "Sieć prywatna (wykrywalna)",
|
||||||
"privateOutboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń wychodzących (sieci prywatne)",
|
"privateOutboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń wychodzących (sieci prywatne)",
|
||||||
"privateShieldedSummaryLabel": "Z osłoną (sieci prywatne)",
|
"privateShieldedSummaryLabel": "Z osłoną (sieci prywatne)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "Adres URL serwera proxy",
|
"proxyServerURLName": "Adres URL serwera proxy",
|
||||||
"proxyServersAutoDetectionName": "Automatyczne wykrywanie innych serwerów proxy przedsiębiorstwa",
|
"proxyServersAutoDetectionName": "Automatyczne wykrywanie innych serwerów proxy przedsiębiorstwa",
|
||||||
"proxyUrlExample": "np. itgproxy.contoso.com",
|
"proxyUrlExample": "np. itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Reguły zapory Microsoft Defender autoryzowanych aplikacji z magazynu lokalnego (sieci publiczne)",
|
"publicAuthorizedAppRulesSummaryLabel": "Reguły zapory systemu Windows autoryzowanej aplikacji z magazynu lokalnego (sieci publiczne)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Zapora Microsoft Defender (sieci publiczne)",
|
"publicFirewallEnabledSummaryLabel": "Zapora systemu Windows (sieci publiczne)",
|
||||||
"publicGlobalRulesSummaryLabel": "Globalne reguły zapory Microsoft Defender dotyczące portów z magazynu lokalnego (sieci publiczne)",
|
"publicGlobalRulesSummaryLabel": "Globalne reguły zapory systemu Windows portów z magazynu lokalnego (sieci publiczne)",
|
||||||
"publicIPsecRulesSummaryLabel": "Reguły protokołu IPsec z magazynu lokalnego (sieci publiczne)",
|
"publicIPsecRulesSummaryLabel": "Reguły protokołu IPsec z magazynu lokalnego (sieci publiczne)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "Wykluczenie pakietu zabezpieczonego przez protokół IPsec z trybem niewidzialności (sieci publiczne)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "Wykluczenie pakietu zabezpieczonego przez protokół IPsec z trybem niewidzialności (sieci publiczne)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń przychodzących (sieci publiczne)",
|
"publicInboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń przychodzących (sieci publiczne)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Powiadomienia przychodzące (sieci publiczne)",
|
"publicInboundNotificationsSummaryLabel": "Powiadomienia przychodzące (sieci publiczne)",
|
||||||
"publicLocalStoreSummaryLabel": "Reguły zapory Microsoft Defender z magazynu lokalnego (sieci publiczne)",
|
"publicLocalStoreSummaryLabel": "Reguły zapory systemu Windows z magazynu lokalnego (sieci publiczne)",
|
||||||
"publicNetworkName": "Sieć publiczna (niewykrywalna)",
|
"publicNetworkName": "Sieć publiczna (niewykrywalna)",
|
||||||
"publicOutboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń wychodzących (sieci publiczne)",
|
"publicOutboundConnectionsSummaryLabel": "Domyślna akcja dla połączeń wychodzących (sieci publiczne)",
|
||||||
"publicPlayStoreEnabledDescription": "Użytkownicy mogą uzyskiwać dostęp do wszystkich aplikacji, z wyjątkiem tych, których odinstalowanie jest wymagane w aplikacjach klienckich. Jeśli dla tego ustawienia wybierzesz opcję „Nie skonfigurowano”, użytkownicy będą mogli uzyskiwać dostęp tylko do aplikacji wymienionych jako dostępne lub wymagane w aplikacjach klienckich.",
|
"publicPlayStoreEnabledDescription": "Użytkownicy mogą uzyskiwać dostęp do wszystkich aplikacji, z wyjątkiem tych, których odinstalowanie jest wymagane w aplikacjach klienckich. Jeśli dla tego ustawienia wybierzesz opcję „Nie skonfigurowano”, użytkownicy będą mogli uzyskiwać dostęp tylko do aplikacji wymienionych jako dostępne lub wymagane w aplikacjach klienckich.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Zarejestruj u dostawcy magazynu kluczy oprogramowania",
|
"sCEPPolicyEnrollToSoftwareKSP": "Zarejestruj u dostawcy magazynu kluczy oprogramowania",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Zarejestruj u dostawcy magazynu kluczy modułu Trusted Platform Module (TPM), w przeciwnym razie niepowodzenie",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Zarejestruj u dostawcy magazynu kluczy modułu Trusted Platform Module (TPM), w przeciwnym razie niepowodzenie",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Zarejestruj u dostawcy magazynu kluczy modułu Trusted Platform Module (TPM), w przeciwnym razie u dostawcy magazynu kluczy oprogramowania",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Zarejestruj u dostawcy magazynu kluczy modułu Trusted Platform Module (TPM), w przeciwnym razie u dostawcy magazynu kluczy oprogramowania",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "OSTRZEŻENIE: z urzędem certyfikacji utworzonym w infrastrukturze PKI platformy Microsoft Cloud nie można używać żadnego EKU celu (OID 2.5.29.37.0) ani żadnego EKU zasad aplikacji (OID 1.3.6.1.4.1.311.10.12.1).",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "W większości przypadków certyfikat wymaga co najmniej uwierzytelniania klienta, aby można było uwierzytelnić użytkownika lub urządzenie na serwerze. Możesz jednak określić dodatkowe zastosowania w celu dokładniejszego zdefiniowania celu klucza.",
|
"sCEPPolicyExtendedKeyUsageDescription": "W większości przypadków certyfikat wymaga co najmniej uwierzytelniania klienta, aby można było uwierzytelnić użytkownika lub urządzenie na serwerze. Możesz jednak określić dodatkowe zastosowania w celu dokładniejszego zdefiniowania celu klucza.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Użycie kluczy rozszerzonych",
|
"sCEPPolicyExtendedKeyUsageName": "Użycie kluczy rozszerzonych",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Użyj typu algorytmu wyznaczania wartości skrótu z certyfikatem. Wybierz najwyższy poziom zabezpieczeń obsługiwany przez łączące się urządzenia.",
|
"sCEPPolicyHashAlgorithmDescription": "Użyj typu algorytmu wyznaczania wartości skrótu z certyfikatem. Wybierz najwyższy poziom zabezpieczeń obsługiwany przez łączące się urządzenia.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Wprowadź liczbę dni (1–255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Wprowadź liczbę dni (1–255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Wprowadź liczbę dni (1–365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Wprowadź liczbę dni (1–365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Okres ważności hasła (dni)",
|
"workProfilePasswordExpirationInDaysName": "Okres ważności hasła (dni)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Wprowadź liczbę dni",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Hasło profilu służbowego: minimalna długość hasła",
|
"workProfilePasswordMinimumLengthReportingName": "Hasło profilu służbowego: minimalna długość hasła",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Hasło profilu służbowego: wymagana liczba znaków ",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Hasło profilu służbowego: wymagana liczba znaków ",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Hasło profilu służbowego: wymagana liczba małych liter",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Hasło profilu służbowego: wymagana liczba małych liter",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "Dowolna aplikacja",
|
"anyAppOptionText": "Dowolna aplikacja",
|
||||||
"anyDestinationAnySourceOptionText": "Dowolne miejsce docelowe i dowolne źródło",
|
"anyDestinationAnySourceOptionText": "Dowolne miejsce docelowe i dowolne źródło",
|
||||||
"anyDialerAppOptionText": "Dowolna aplikacja wybierania numerów",
|
"anyDialerAppOptionText": "Dowolna aplikacja wybierania numerów",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "Dowolna aplikacja do obsługi wiadomości",
|
||||||
"anyPolicyManagedDialerAppOptionText": "Dowolna zarządzana przez zasady aplikacja wybierania numerów",
|
"anyPolicyManagedDialerAppOptionText": "Dowolna zarządzana przez zasady aplikacja wybierania numerów",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "Dowolna aplikacja do obsługi wiadomości zarządzanych przez zasady",
|
||||||
"appAdded": "Dodano aplikację",
|
"appAdded": "Dodano aplikację",
|
||||||
"appBasedConditionalAccess": "Dostęp warunkowy na podstawie aplikacji",
|
"appBasedConditionalAccess": "Dostęp warunkowy na podstawie aplikacji",
|
||||||
"appColumnLabel": "Aplikacja",
|
"appColumnLabel": "Aplikacja",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "Identyfikator urządzenia MDM",
|
"mdmDeviceId": "Identyfikator urządzenia MDM",
|
||||||
"mdmWipInvalidVersionSettings": "Co najmniej jedna aplikacja zawiera nieprawidłowe definicje wersji minimalnej lub maksymalnej.<br /> <br />Rozwiązanie Windows Information Protection z zasadami rejestracji obsługuje określanie tylko jednej wersji minimalnej lub maksymalnej, chyba że obie określone wersje są takie same. Gdy określona jest tylko wersja minimalna, reguła jest ustawiana dla wersji większej lub równej wersji minimalnej. Podobnie jest w przypadku określenia tylko wersji maksymalnej — reguła jest ustawiana dla wersji mniejszej lub równej wersji maksymalnej.",
|
"mdmWipInvalidVersionSettings": "Co najmniej jedna aplikacja zawiera nieprawidłowe definicje wersji minimalnej lub maksymalnej.<br /> <br />Rozwiązanie Windows Information Protection z zasadami rejestracji obsługuje określanie tylko jednej wersji minimalnej lub maksymalnej, chyba że obie określone wersje są takie same. Gdy określona jest tylko wersja minimalna, reguła jest ustawiana dla wersji większej lub równej wersji minimalnej. Podobnie jest w przypadku określenia tylko wersji maksymalnej — reguła jest ustawiana dla wersji mniejszej lub równej wersji maksymalnej.",
|
||||||
"mdmWipReport": "Raport usługi MDM — Windows Information Protection",
|
"mdmWipReport": "Raport usługi MDM — Windows Information Protection",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Nazwa aplikacji do obsługi wiadomości (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "Identyfikator pakietu aplikacji do obsługi wiadomości (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "Schemat adresu URL aplikacji do obsługi wiadomości (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender For Endpoint",
|
"microsoftDefenderForEndpoint": "Microsoft Defender For Endpoint",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "Minimalna wersja aplikacji",
|
"minAppVersion": "Minimalna wersja aplikacji",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Wykaz ustawień",
|
"settingsCatalog": "Wykaz ustawień",
|
||||||
"settingsSelectorLabel": "Ustawienia",
|
"settingsSelectorLabel": "Ustawienia",
|
||||||
"silent": "Cichy",
|
"silent": "Cichy",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "Określona aplikacja do obsługi wiadomości",
|
||||||
"specificUserIsLicensedIntune": "Użytkownik {0} ma licencję na korzystanie z usługi Microsoft Intune.",
|
"specificUserIsLicensedIntune": "Użytkownik {0} ma licencję na korzystanie z usługi Microsoft Intune.",
|
||||||
"state": "Stan",
|
"state": "Stan",
|
||||||
"status": "Stan",
|
"status": "Stan",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Punkt odniesienia programu Microsoft Edge",
|
"edgeSecurityBaseline": "Punkt odniesienia programu Microsoft Edge",
|
||||||
"edgeSecurityBaselinePreview": "Wersja zapoznawcza: punkt odniesienia programu Microsoft Edge",
|
"edgeSecurityBaselinePreview": "Wersja zapoznawcza: punkt odniesienia programu Microsoft Edge",
|
||||||
"editionUpgradeConfiguration": "Uaktualnianie wersji i przełączanie trybu",
|
"editionUpgradeConfiguration": "Uaktualnianie wersji i przełączanie trybu",
|
||||||
"firewall": "Zapora Microsoft Defender",
|
"firewall": "Zapora systemu Windows",
|
||||||
"firewallRules": "Reguły zapory Microsoft Defender",
|
"firewallRules": "Reguły zapory systemu Windows",
|
||||||
"identityProtection": "Ochrona konta",
|
"identityProtection": "Ochrona konta",
|
||||||
"identityProtectionPreview": "Ochrona konta (wersja zapoznawcza)",
|
"identityProtectionPreview": "Ochrona konta (wersja zapoznawcza)",
|
||||||
"mDMSecurityBaseline1810": "Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych z października 2018 r.",
|
"mDMSecurityBaseline1810": "Plan bazowy zabezpieczeń MDM dla systemu Windows 10 i nowszych z października 2018 r.",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Podgląd: punkt odniesienia dla usługi Microsoft Office O365",
|
"office365BaselinePreview": "Podgląd: punkt odniesienia dla usługi Microsoft Office O365",
|
||||||
"securityBaselines": "Punkty odniesienia zabezpieczeń",
|
"securityBaselines": "Punkty odniesienia zabezpieczeń",
|
||||||
"test": "Testuj szablon",
|
"test": "Testuj szablon",
|
||||||
"testFirewallRulesSecurityTemplateName": "Reguły zapory Microsoft Defender (test)",
|
"testFirewallRulesSecurityTemplateName": "Reguły zapory systemu Windows (test)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Ochrona konta (test)",
|
"testIdentityProtectionSecurityTemplateName": "Ochrona konta (test)",
|
||||||
"windowsSecurityExperience": "Środowisko zabezpieczeń systemu Windows"
|
"windowsSecurityExperience": "Środowisko zabezpieczeń systemu Windows"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Zapora Microsoft Defender"
|
"mDE": "Zapora systemu Windows"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Reguły zapory Microsoft Defender"
|
"mDE": "Reguły zapory systemu Windows"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "Ustawienia przenoszenia znanych folderów usługi OneDrive: Windows 10 w szablonie konfiguracji chmury. https://aka.ms/CloudConfigGuide"
|
"description": "Ustawienia przenoszenia znanych folderów usługi OneDrive: Windows 10 w szablonie konfiguracji chmury. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Konfiguracja zarządzania urządzeniami przenośnymi",
|
"expeditedCheckin": "Konfiguracja zarządzania urządzeniami przenośnymi",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "Rozszerzenia",
|
"extensions": "Rozszerzenia",
|
||||||
"hardwareConfigurations": "Konfiguracje BIOS",
|
"hardwareConfigurations": "Konfiguracje systemu BIOS i inny ustawień",
|
||||||
"identityProtection": "Identity Protection",
|
"identityProtection": "Identity Protection",
|
||||||
"iosCompliancePolicy": "Zasady dotyczące zgodności dla systemu iOS",
|
"iosCompliancePolicy": "Zasady dotyczące zgodności dla systemu iOS",
|
||||||
"kiosk": "Kiosk",
|
"kiosk": "Kiosk",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Program antywirusowy Microsoft Defender",
|
"microsoftDefenderAntivirus": "Program antywirusowy Microsoft Defender",
|
||||||
"microsoftDefenderAntivirusexclusions": "Wykluczenia programu Microsoft Defender Antivirus",
|
"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)",
|
"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",
|
"microsoftDefenderFirewallRules": "Reguły zapory systemu Windows",
|
||||||
"microsoftEdgeBaseline": "Plan bazowy zabezpieczeń dla przeglądarki Microsoft Edge",
|
"microsoftEdgeBaseline": "Plan bazowy zabezpieczeń dla przeglądarki Microsoft Edge",
|
||||||
"mxProfileZebraOnly": "Profil MX (tylko Zebra)",
|
"mxProfileZebraOnly": "Profil MX (tylko Zebra)",
|
||||||
"networkBoundary": "Granica sieci",
|
"networkBoundary": "Granica sieci",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Zaufany certyfikat — TEST",
|
"windows10XTrustedCertificate": "Zaufany certyfikat — TEST",
|
||||||
"windows10XVPN": "VPN — TEST",
|
"windows10XVPN": "VPN — TEST",
|
||||||
"windows10XWifi": "WIFI — TEST",
|
"windows10XWifi": "WIFI — TEST",
|
||||||
|
"windows11SecurityBaseline": "Punkt odniesienia zabezpieczeń dla systemu Windows 10 i nowszego",
|
||||||
"windows8CompliancePolicy": "Zasady dotyczące zgodności dla systemu Windows 8",
|
"windows8CompliancePolicy": "Zasady dotyczące zgodności dla systemu Windows 8",
|
||||||
"windowsHealthMonitoring": "Monitorowanie kondycji systemu Windows",
|
"windowsHealthMonitoring": "Monitorowanie kondycji systemu Windows",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Skonfiguruj urządzenia na potrzeby wstępnej aprowizacji i przypisz je do użytkowników.",
|
"description": "Skonfiguruj urządzenia na potrzeby wstępnej aprowizacji.",
|
||||||
"title": "Przygotowywanie urządzenia"
|
"title": "Przygotowywanie urządzenia"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Ręczne zatwierdzanie i wdrażanie aktualizacji sterowników"
|
"manual": "Ręczne zatwierdzanie i wdrażanie aktualizacji sterowników"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Akcje zbiorcze"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} dni"
|
"value": "{0} dni"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Wybierz akcję poniżej.",
|
||||||
"label": "Driver action",
|
"label": "Akcja sterownika",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Wybierz akcję"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Dołączone sterowniki"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Wybierz sterowniki do uwzględnienia w akcji zbiorczej"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Wybierz sterowniki do uwzględnienia"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "Można wybrać maksymalnie sto sterowników"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "Należy wybrać co najmniej jeden sterownik"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Wybrane sterowniki:"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Udostępnij w usłudze Windows Update",
|
||||||
"bladeTitle": "Aktualizacje sterowników dla systemu Windows 10 i nowszych (wersja zapoznawcza)",
|
"bladeTitle": "Aktualizacje sterowników dla systemu Windows 10 i nowszych (wersja zapoznawcza)",
|
||||||
"lastSync": "Ostatnia synchronizacja:",
|
"lastSync": "Ostatnia synchronizacja:",
|
||||||
"lastSyncDefaultText": "Oczekiwanie na początkowe zbieranie spisów",
|
"lastSyncDefaultText": "Oczekiwanie na początkowe zbieranie spisów",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Wybierz komunikat powiadomienia z lewej strony, aby wyświetlić podgląd zawartości."
|
"placeholder": "Wybierz komunikat powiadomienia z lewej strony, aby wyświetlić podgląd zawartości."
|
||||||
},
|
},
|
||||||
"companyContact": "Stopka wiadomości e-mail — uwzględnij informacje kontaktowe",
|
"companyContact": "Pokaż informacje kontaktowe",
|
||||||
"companyLogo": "Nagłówek wiadomości e-mail — uwzględnij logo firmy",
|
"companyLogo": "Pokaż logo firmy",
|
||||||
"companyName": "Stopka wiadomości e-mail — uwzględnij nazwę firmy",
|
"companyName": "Pokaż nazwę firmy",
|
||||||
"createEditDescription": "Utwórz lub edytuj szablony powiadomienia.",
|
"createEditDescription": "Utwórz lub edytuj szablony powiadomienia.",
|
||||||
"createMessage": "Utwórz wiadomość",
|
"createMessage": "Utwórz wiadomość",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Pokaż szczegóły urządzenia",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "To ustawienie jest domyślnie wyłączone, ponieważ pobieranie szczegółów urządzenia może spowodować opóźnienie odbierania wiadomości e-mail z powiadomieniami.",
|
||||||
"editImpactInfo": "Edycja tego szablonu komunikatów z powiadomieniem będzie miała wpływ na wszystkie zasady korzystającego z tego szablonu.",
|
"editImpactInfo": "Edycja tego szablonu komunikatów z powiadomieniem będzie miała wpływ na wszystkie zasady korzystającego z tego szablonu.",
|
||||||
"editMessage": "Edytuj wiadomość",
|
"editMessage": "Edytuj wiadomość",
|
||||||
"email": "wiadomość e-mail",
|
"email": "wiadomość e-mail",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "Stopka wiadomość e-mail",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "Ustawienia nagłówka i stopki wiadomości e-mail dla powiadomień e-mail zależą od ustawień dostosowywania w węźle administratora dzierżawy w programie Endpoint Manager.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "Nagłówek wiadomości e-mail",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Konfiguruj ustawienia dostosowywania",
|
||||||
"formSubTitle": "Tworzenie lub modyfikowanie wiadomości e-mail z powiadomieniem",
|
"formSubTitle": "Tworzenie lub modyfikowanie wiadomości e-mail z powiadomieniem",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Ustawienia nagłówka i stopki",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Podgląd obrazu",
|
||||||
"infotext": "Wybierz komunikat powiadomienia. Aby utworzyć nowe powiadomienie, przejdź do obszaru Powiadomienie w sekcji Zarządzaj obciążenia Ustaw zgodność urządzenia.",
|
"infotext": "Wybierz komunikat powiadomienia. Aby utworzyć nowe powiadomienie, przejdź do obszaru Powiadomienie w sekcji Zarządzaj obciążenia Ustaw zgodność urządzenia.",
|
||||||
"iwLink": "Link do witryny internetowej Portal firmy",
|
"iwLink": "Pokaż link do witryny internetowej portalu firmy",
|
||||||
"listEmpty": "Brak szablonów komunikatów.",
|
"listEmpty": "Brak szablonów komunikatów.",
|
||||||
"listEmptySelectOnly": "Brak szablonów komunikatów. Aby utworzyć nowe powiadomienie, przejdź do obszaru Powiadomienia w sekcji Zarządzanie obciążenia Ustaw zgodność urządzenia.",
|
"listEmptySelectOnly": "Brak szablonów komunikatów. Aby utworzyć nowe powiadomienie, przejdź do obszaru Powiadomienia w sekcji Zarządzanie obciążenia Ustaw zgodność urządzenia.",
|
||||||
"listSubTitle": "Lista szablonów powiadomień",
|
"listSubTitle": "Lista szablonów powiadomień",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Szablony wiadomości z powiadomieniami",
|
"notificationMessageTemplates": "Szablony wiadomości z powiadomieniami",
|
||||||
"rowValidationError": "Wymagany jest co najmniej jeden szablon wiadomości",
|
"rowValidationError": "Wymagany jest co najmniej jeden szablon wiadomości",
|
||||||
"selectDescription": "Wybierz powiadomienie. Aby utworzyć nowe powiadomienie, przejdź do obszaru Powiadomienia w sekcji zarządzania obciążenia Ustaw zgodność urządzenia.",
|
"selectDescription": "Wybierz powiadomienie. Aby utworzyć nowe powiadomienie, przejdź do obszaru Powiadomienia w sekcji zarządzania obciążenia Ustaw zgodność urządzenia.",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Wartość dzierżawy",
|
||||||
"testEmailLabel": "Wyślij podgląd wiadomości e-mail",
|
"testEmailLabel": "Wyślij podgląd wiadomości e-mail",
|
||||||
"localeLabel": "Ustawienia regionalne",
|
"localeLabel": "Ustawienia regionalne",
|
||||||
"isDefaultLocale": "Domyślne"
|
"isDefaultLocale": "Domyślne"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "wiersz {0} z {1} kolumny {2}"
|
"ariaLabel": "wiersz {0} z {1} kolumny {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Rozpocznij od podstaw i wybierz odpowiednie właściwości z biblioteki dostępnych właściwości spisu"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Zacznij od zera i wybierz żądane ustawienia z biblioteki dostępnych ustawień",
|
"subtitle": "Zacznij od zera i wybierz żądane ustawienia z biblioteki dostępnych ustawień",
|
||||||
"title": "Wykaz ustawień"
|
"title": "Wykaz ustawień"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "Wersja minimalna",
|
"minVersion": "Wersja minimalna",
|
||||||
"nameHint": "To będzie główny atrybut widoczny w celu identyfikacji zestawu ograniczeń.",
|
"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.",
|
"noAssignmentsStatusBar": "Przypisz ograniczenie do co najmniej jednej grupy. Kliknij pozycję Właściwości.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "Aby edytować ograniczenia, musisz być administratorem.",
|
||||||
"notFound": "Nie znaleziono ograniczenia. Być może zostało już usunięte.",
|
"notFound": "Nie znaleziono ograniczenia. Być może zostało już usunięte.",
|
||||||
"personallyOwned": "Urządzenia osobiste",
|
"personallyOwned": "Urządzenia osobiste",
|
||||||
"restriction": "Ograniczenie",
|
"restriction": "Ograniczenie",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Zasady dotyczące zgodności dla systemu Windows 8",
|
"complianceWindows8": "Zasady dotyczące zgodności dla systemu Windows 8",
|
||||||
"complianceWindowsPhone": "Zasady dotyczące zgodności dla systemu Windows Phone",
|
"complianceWindowsPhone": "Zasady dotyczące zgodności dla systemu Windows Phone",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Wykaz właściwości",
|
||||||
"iosCustom": "Niestandardowe",
|
"iosCustom": "Niestandardowe",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Pochodne poświadczenie PIV ",
|
"iosDerivedCredentialAuthenticationConfiguration": "Pochodne poświadczenie PIV ",
|
||||||
"iosDeviceFeatures": "Funkcje urządzenia",
|
"iosDeviceFeatures": "Funkcje urządzenia",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Urządzenia z systemem operacyjnym Chrome (wersja zapoznawcza)"
|
"devices": "Urządzenia z systemem ChromeOS"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Kontakty administracyjne",
|
"adminContacts": "Kontakty administracyjne",
|
||||||
"appPackaging": "Pakiety aplikacji",
|
"appPackaging": "Pakiety aplikacji",
|
||||||
"businessGroups": "Grupy biznesowe",
|
"autopatchGroups": "Grupy poprawek automatycznych",
|
||||||
"devices": "Urządzenia",
|
"devices": "Urządzenia",
|
||||||
"feedback": "Opinie",
|
"feedback": "Opinie",
|
||||||
"gettingStarted": "Wprowadzenie",
|
"gettingStarted": "Wprowadzenie",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Dostosowywanie",
|
"brandingAndCustomization": "Dostosowywanie",
|
||||||
"cartProfiles": "Profile koszyków",
|
"cartProfiles": "Profile koszyków",
|
||||||
"certificateConnectors": "Łączniki certyfikatu",
|
"certificateConnectors": "Łączniki certyfikatu",
|
||||||
"chromeEnterprise": "Chrome Enterprise (wersja zapoznawcza)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Urządzenia podłączone do chmury (wersja zapoznawcza)",
|
"cloudAttachedDevices": "Urządzenia podłączone do chmury (wersja zapoznawcza)",
|
||||||
"cloudPcActions": "Akcje dotyczące komputerów w chmurze (wersja zapoznawcza)",
|
"cloudPcActions": "Akcje dotyczące komputerów w chmurze (wersja zapoznawcza)",
|
||||||
"cloudPcMaintenanceWindows": "Okna obsługi komputera w chmurze (wersja zapoznawcza)",
|
"cloudPcMaintenanceWindows": "Okna obsługi komputera w chmurze (wersja zapoznawcza)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "Stan użytkownika",
|
"userExecutionStatus": "Stan użytkownika",
|
||||||
"wdacSupplementalPolicies": "Uzupełniające zasady trybu S",
|
"wdacSupplementalPolicies": "Uzupełniające zasady trybu S",
|
||||||
"win32CatalogUpdateApp": "Aktualizacje dla aplikacji wykazu systemu Windows (Win32)",
|
"win32CatalogUpdateApp": "Aktualizacje dla aplikacji wykazu systemu Windows (Win32)",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Aktualizacje dla aplikacji wykazu systemu Windows (Win32) (wersja zapoznawcza)",
|
||||||
"windows10DriverUpdate": "Aktualizacje sterowników dla systemu Windows 10 i nowszych",
|
"windows10DriverUpdate": "Aktualizacje sterowników dla systemu Windows 10 i nowszych",
|
||||||
"windows10QualityUpdate": "Aktualizacje dotyczące jakości dla systemu Windows 10 i nowszych",
|
"windows10QualityUpdate": "Aktualizacje dotyczące jakości dla systemu Windows 10 i nowszych",
|
||||||
"windows10UpdateRings": "Pierścienie aktualizacji dla systemu Windows 10 i nowszego",
|
"windows10UpdateRings": "Pierścienie aktualizacji dla systemu Windows 10 i nowszego",
|
||||||
"windows10XPolicyFailures": "Błędy zasad systemu Windows 10X",
|
"windows10XPolicyFailures": "Błędy zasad systemu Windows 10X",
|
||||||
"windows365Connector": "Łącznik systemu Windows 365 Citrix",
|
|
||||||
"windows365PartnerConnector": "Łączniki partnerów systemu Windows 365",
|
"windows365PartnerConnector": "Łączniki partnerów systemu Windows 365",
|
||||||
"windowsDiagnosticData": "Dane systemu Windows",
|
"windowsDiagnosticData": "Dane systemu Windows",
|
||||||
"windowsEnterpriseCertificate": "Certyfikat przedsiębiorstwa systemu Windows",
|
"windowsEnterpriseCertificate": "Certyfikat przedsiębiorstwa systemu Windows",
|
||||||
|
|||||||
@@ -227,7 +227,6 @@
|
|||||||
"co": "Corsican (France)",
|
"co": "Corsican (France)",
|
||||||
"cs": "Czech (Czech Republic)",
|
"cs": "Czech (Czech Republic)",
|
||||||
"da": "Danish (Denmark)",
|
"da": "Danish (Denmark)",
|
||||||
"prs": "Dari (Afghanistan)",
|
|
||||||
"dv": "Divehi (Maldives)",
|
"dv": "Divehi (Maldives)",
|
||||||
"et": "Estonian (Estonia)",
|
"et": "Estonian (Estonia)",
|
||||||
"fo": "Faroese (Faroe Islands)",
|
"fo": "Faroese (Faroe Islands)",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Specify the language and region that will be used.",
|
"languageInfo": "Specify the language and region that will be used.",
|
||||||
"licenseAgreement": "Microsoft Software License Terms",
|
"licenseAgreement": "Microsoft Software License Terms",
|
||||||
"licenseAgreementInfo": "Specify whether to show the EULA to users.",
|
"licenseAgreementInfo": "Specify whether to show the EULA to users.",
|
||||||
"plugAndForgetDevice": "Self-Deploying (preview)",
|
"plugAndForgetDevice": "Self-Deploying",
|
||||||
"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. ",
|
"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",
|
"privacySettings": "Privacy settings",
|
||||||
"privacySettingsInfo": "Specify whether to show privacy settings to users.",
|
"privacySettingsInfo": "Specify whether to show privacy settings to users.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Only fail selected blocking apps in technician phase (preview)",
|
"allowNonBlockingAppInstallation": "Only fail selected blocking apps in technician phase",
|
||||||
"apps": "apps",
|
"apps": "apps",
|
||||||
"appsListName": "Application list",
|
"appsListName": "Application list",
|
||||||
"blockingApps": "Blocking apps",
|
"blockingApps": "Blocking apps",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Activity",
|
"activity": "Activity",
|
||||||
|
"activityName": "Activity name",
|
||||||
"actor": "Initiated by (actor)",
|
"actor": "Initiated by (actor)",
|
||||||
|
"actorType": "Actor type",
|
||||||
"app": "App",
|
"app": "App",
|
||||||
"appName": "App name",
|
"appName": "App name",
|
||||||
"applicationName": "Application name",
|
"applicationName": "Application name",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD Connector",
|
"mtdConnector": "MTD Connector",
|
||||||
"name": "Profile name",
|
"name": "Profile name",
|
||||||
"oSVersion": "OS Version",
|
"oSVersion": "OS Version",
|
||||||
|
"operationType": "Operation type",
|
||||||
"os": "OS",
|
"os": "OS",
|
||||||
"packageName": "Package name",
|
"packageName": "Package name",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1549,7 +1551,7 @@
|
|||||||
"tooltip": "If blocked, the app cannot print protected data."
|
"tooltip": "If blocked, the app cannot print protected data."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 19.0.0).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Transfer messaging data to",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
||||||
},
|
},
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "This setting specifies the length of time without user input after which the mobile device screen is locked. Recommended value: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "This setting specifies the length of time without user input after which the mobile device screen is locked. Recommended value: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "This setting specifies the length of time without user input after which the device is locked. Recommended value: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "This setting specifies the length of time without user input after which the device is locked. Recommended value: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum minutes of inactivity before password is required",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum minutes of inactivity before password is required",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Recommended value: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Maximum OS version for mobile devices",
|
"complianceMobileOsVersionRestrictionMaximumName": "Maximum OS version for mobile devices",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "This setting specifies the number of recent passwords that cannot be reused. Recommended value: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "This setting specifies the number of recent passwords that cannot be reused. Recommended value: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Number of previous passwords to prevent reuse",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Number of previous passwords to prevent reuse",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Recommended value: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Enter the newest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the maximum OS build, enter the supplemental build version. For example: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Enter the newest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the maximum OS build, enter the supplemental build version. For example: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Maximum OS build version",
|
"complianceOsBuildVersionRestrictionMaximumName": "Maximum OS build version",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Enter the oldest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the minimum OS build, enter the supplemental build version. For example: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Enter the oldest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the minimum OS build, enter the supplemental build version. For example: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Require Microsoft Defender security intelligence to be up-to-date.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Require Microsoft Defender security intelligence to be up-to-date.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware security intelligence up-to-date",
|
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware security intelligence up-to-date",
|
||||||
"complianceRequiredPasswordTypeDescription": "This setting specifies whether passwords are allowed to be comprised only of numeric characters, or whether they must contain characters other than numbers. Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
"complianceRequiredPasswordTypeDescription": "This setting specifies whether passwords are allowed to be comprised only of numeric characters, or whether they must contain characters other than numbers. Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
||||||
"complianceRootedAllowedDescription": "Prevent rooted devices from having corporate access.",
|
"complianceRootedAllowedDescription": "Prevent rooted devices from having corporate access.",
|
||||||
"complianceRootedAllowedName": "Rooted devices",
|
"complianceRootedAllowedName": "Rooted devices",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "This setting specifies whether to prevent the device from using the USB debugging feature.",
|
"complianceSecurityDisableUSBDebuggingDescription": "This setting specifies whether to prevent the device from using the USB debugging feature.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Select the oldest OS version a device can have. The operating system version is defined as major.minor.build.revision. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Select the oldest OS version a device can have. The operating system version is defined as major.minor.build.revision. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Select the password type that will be on the device.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Select the password type that will be on the device.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Password type",
|
"complianceWindowsRequiredPasswordTypeName": "Password type",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Require a password to unlock work profile",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Work Profile Security",
|
||||||
"compliantAppsOption": "Compliant apps list. Report noncompliance for any installed apps not in list",
|
"compliantAppsOption": "Compliant apps list. Report noncompliance for any installed apps not in list",
|
||||||
"computerNameStaticPrefixDescription": "Computers are assigned 15 characters long name. Specify a prefix, rest of 15 characters will be random.",
|
"computerNameStaticPrefixDescription": "Computers are assigned 15 characters long name. Specify a prefix, rest of 15 characters will be random.",
|
||||||
"computerNameStaticPrefixName": "Computer name prefix",
|
"computerNameStaticPrefixName": "Computer name prefix",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "MTU must be between 1280 and 1400 bytes",
|
"mTUSizeInBytesBounds": "MTU must be between 1280 and 1400 bytes",
|
||||||
"mTUSizeInBytesName": "Maximum transmission unit",
|
"mTUSizeInBytesName": "Maximum transmission unit",
|
||||||
"mTUSizeInBytesToolTip": "The largest packet of data, in bytes, that can be transmitted on the network. When not configured, the Apple default size is 1280 bytes. Applies to iOS 14 and later.",
|
"mTUSizeInBytesToolTip": "The largest packet of data, in bytes, that can be transmitted on the network. When not configured, the Apple default size is 1280 bytes. Applies to iOS 14 and later.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Use randomized MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Use device default",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Use randomized MAC only when needed, such as for NAC support. Users can change this setting. Applies to Android 13 and later.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Use device MAC",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "MAC address randomization",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store and identified developers",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store and identified developers",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Blocks AirPlay, screen sharing to other devices, and a Classroom app feature used by teachers to view their students' screens. This setting isn't available if you've blocked screenshots.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Blocks AirPlay, screen sharing to other devices, and a Classroom app feature used by teachers to view their students' screens. This setting isn't available if you've blocked screenshots.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Enter a number (4-16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Enter a number (4-16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Enter a number (6-16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Enter a number (6-16)",
|
||||||
"minimumPasswordLengthName": "Minimum password length",
|
"minimumPasswordLengthName": "Minimum password length",
|
||||||
|
"minimumPasswordLengthTooltipText": "Enter a number",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Missing updates will install automatically",
|
"minimumUpdateAutoInstallClassificationDescription": "Missing updates will install automatically",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Install specified classification of updates",
|
"minimumUpdateAutoInstallClassificationName": "Install specified classification of updates",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Enroll to Software KSP",
|
"sCEPPolicyEnrollToSoftwareKSP": "Enroll to Software KSP",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Enroll to Trusted Platform Module (TPM) KSP, otherwise fail",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Enroll to Trusted Platform Module (TPM) KSP, otherwise fail",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Enroll to Trusted Platform Module (TPM) KSP if present, otherwise Software KSP",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Enroll to Trusted Platform Module (TPM) KSP if present, otherwise Software KSP",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "WARNING: Neither the Any Purpose EKU (OID 2.5.29.37.0) nor the Any App Policy EKU (OID 1.3.6.1.4.1.311.10.12.1) can be used with a certification authority created in Microsoft Cloud PKI.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "In most cases, the certificate requires at least Client Authentication so that the user or device can authenticate to a server. However, you can specify additional usages to further define the purpose of the key.",
|
"sCEPPolicyExtendedKeyUsageDescription": "In most cases, the certificate requires at least Client Authentication so that the user or device can authenticate to a server. However, you can specify additional usages to further define the purpose of the key.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Extended key usage",
|
"sCEPPolicyExtendedKeyUsageName": "Extended key usage",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Use a hash algorithm type with the certificate. Make sure to select the strongest level of security that the connecting devices support.",
|
"sCEPPolicyHashAlgorithmDescription": "Use a hash algorithm type with the certificate. Make sure to select the strongest level of security that the connecting devices support.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Enter number of days (1-255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Enter number of days (1-255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Enter number of days (1 - 365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Enter number of days (1 - 365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Password expiration (days)",
|
"workProfilePasswordExpirationInDaysName": "Password expiration (days)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Enter number of days",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Work Profile password: Minimum password length",
|
"workProfilePasswordMinimumLengthReportingName": "Work Profile password: Minimum password length",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Work Profile password: Number of characters required",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Work Profile password: Number of characters required",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Work Profile password: Number of lowercase characters required",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Work Profile password: Number of lowercase characters required",
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Mobile device management configuration",
|
"expeditedCheckin": "Mobile device management configuration",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "Extensions",
|
"extensions": "Extensions",
|
||||||
"hardwareConfigurations": "BIOS Configurations",
|
"hardwareConfigurations": "BIOS Configurations and other settings",
|
||||||
"identityProtection": "Identity protection",
|
"identityProtection": "Identity protection",
|
||||||
"iosCompliancePolicy": "iOS compliance policy",
|
"iosCompliancePolicy": "iOS compliance policy",
|
||||||
"kiosk": "Kiosk",
|
"kiosk": "Kiosk",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Trusted certificate - TEST",
|
"windows10XTrustedCertificate": "Trusted certificate - TEST",
|
||||||
"windows10XVPN": "VPN - TEST",
|
"windows10XVPN": "VPN - TEST",
|
||||||
"windows10XWifi": "WIFI - TEST",
|
"windows10XWifi": "WIFI - TEST",
|
||||||
|
"windows11SecurityBaseline": "Security Baseline for Windows 10 and later",
|
||||||
"windows8CompliancePolicy": "Windows 8 compliance policy",
|
"windows8CompliancePolicy": "Windows 8 compliance policy",
|
||||||
"windowsHealthMonitoring": "Windows health monitoring",
|
"windowsHealthMonitoring": "Windows health monitoring",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Configure devices for initial provisioning and assign to users.",
|
"description": "Configure devices for initial provisioning.",
|
||||||
"title": "Device preparation"
|
"title": "Device preparation"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "row {0} of {1} column {2}"
|
"ariaLabel": "row {0} of {1} column {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Start from scratch and select the properties you want from the library of available inventory properties"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Start from scratch and select settings you want from the library of available settings",
|
"subtitle": "Start from scratch and select settings you want from the library of available settings",
|
||||||
"title": "Settings catalog"
|
"title": "Settings catalog"
|
||||||
@@ -11947,7 +11985,7 @@
|
|||||||
"minVersion": "Min Version",
|
"minVersion": "Min Version",
|
||||||
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
|
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
|
||||||
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
|
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
||||||
"notFound": "Restriction not found. It may have already been deleted.",
|
"notFound": "Restriction not found. It may have already been deleted.",
|
||||||
"personallyOwned": "Personally owned devices",
|
"personallyOwned": "Personally owned devices",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8 compliance policy",
|
"complianceWindows8": "Windows 8 compliance policy",
|
||||||
"complianceWindowsPhone": "Windows Phone compliance policy",
|
"complianceWindowsPhone": "Windows Phone compliance policy",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Properties catalog",
|
||||||
"iosCustom": "Custom",
|
"iosCustom": "Custom",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
|
"iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
|
||||||
"iosDeviceFeatures": "Device features",
|
"iosDeviceFeatures": "Device features",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS devices (preview)"
|
"devices": "ChromeOS devices"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Admin contacts",
|
"adminContacts": "Admin contacts",
|
||||||
"appPackaging": "App packaging",
|
"appPackaging": "App packaging",
|
||||||
"businessGroups": "Business Groups",
|
"autopatchGroups": "Autopatch groups",
|
||||||
"devices": "Devices",
|
"devices": "Devices",
|
||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"gettingStarted": "Getting started",
|
"gettingStarted": "Getting started",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Customization",
|
"brandingAndCustomization": "Customization",
|
||||||
"cartProfiles": "Cart profiles",
|
"cartProfiles": "Cart profiles",
|
||||||
"certificateConnectors": "Certificate connectors",
|
"certificateConnectors": "Certificate connectors",
|
||||||
"chromeEnterprise": "Chrome Enterprise (preview)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Cloud attached devices (preview)",
|
"cloudAttachedDevices": "Cloud attached devices (preview)",
|
||||||
"cloudPcActions": "Cloud PC actions (preview)",
|
"cloudPcActions": "Cloud PC actions (preview)",
|
||||||
"cloudPcMaintenanceWindows": "Cloud PC maintenance windows (Preview)",
|
"cloudPcMaintenanceWindows": "Cloud PC maintenance windows (Preview)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "User status",
|
"userExecutionStatus": "User status",
|
||||||
"wdacSupplementalPolicies": "S mode supplemental policies",
|
"wdacSupplementalPolicies": "S mode supplemental policies",
|
||||||
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
|
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Updates for Windows (Win32) catalog apps (Preview)",
|
||||||
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
|
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
|
||||||
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
|
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
|
||||||
"windows10UpdateRings": "Update rings for Windows 10 and later",
|
"windows10UpdateRings": "Update rings for Windows 10 and later",
|
||||||
"windows10XPolicyFailures": "Windows 10X policy failures",
|
"windows10XPolicyFailures": "Windows 10X policy failures",
|
||||||
"windows365Connector": "Windows 365 Citrix connector",
|
|
||||||
"windows365PartnerConnector": "Windows 365 partner connectors",
|
"windows365PartnerConnector": "Windows 365 partner connectors",
|
||||||
"windowsDiagnosticData": "Windows data",
|
"windowsDiagnosticData": "Windows data",
|
||||||
"windowsEnterpriseCertificate": "Windows enterprise certificate",
|
"windowsEnterpriseCertificate": "Windows enterprise certificate",
|
||||||
|
|||||||
+137
-98
@@ -227,7 +227,6 @@
|
|||||||
"co": "Корсиканский (Франция)",
|
"co": "Корсиканский (Франция)",
|
||||||
"cs": "Чешский (Чешская Республика)",
|
"cs": "Чешский (Чешская Республика)",
|
||||||
"da": "Датский (Дания)",
|
"da": "Датский (Дания)",
|
||||||
"prs": "Дари (Афганистан)",
|
|
||||||
"dv": "Мальдивский (Мальдивы)",
|
"dv": "Мальдивский (Мальдивы)",
|
||||||
"et": "Эстонский (Эстония)",
|
"et": "Эстонский (Эстония)",
|
||||||
"fo": "Фарерский (Фарерские о-ва)",
|
"fo": "Фарерский (Фарерские о-ва)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Антивирусная программа в Microsoft Defender",
|
"defender": "Антивирусная программа в Microsoft Defender",
|
||||||
"defenderAntivirus": "Антивирусная программа в Microsoft Defender",
|
"defenderAntivirus": "Антивирусная программа в Microsoft Defender",
|
||||||
"defenderExploitGuard": "Exploit Guard в Microsoft Defender",
|
"defenderExploitGuard": "Exploit Guard в Microsoft Defender",
|
||||||
"defenderFirewall": "Брандмауэр в Microsoft Defender",
|
"defenderFirewall": "Брандмауэр Windows",
|
||||||
"defenderLocalSecurityOptions": "Параметры безопасности локального устройства",
|
"defenderLocalSecurityOptions": "Параметры безопасности локального устройства",
|
||||||
"defenderSecurityCenter": "Центр безопасности в Microsoft Defender",
|
"defenderSecurityCenter": "Центр безопасности в Microsoft Defender",
|
||||||
"deliveryOptimization": "Оптимизация доставки",
|
"deliveryOptimization": "Оптимизация доставки",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Отключено",
|
"disabled": "Отключено",
|
||||||
"enabled": "Включено",
|
"enabled": "Включено",
|
||||||
"infoBalloonContent": "Управляйте тем, нужно ли устанавливать последнее обновление компонентов Windows 10 на устройства, не подходящие для Windows 11",
|
"infoBalloonContent": "Управляйте тем, нужно ли устанавливать последнее обновление компонентов Windows 10 на устройства, не подходящие для Windows 11",
|
||||||
"label": "Если на устройстве не удается запустить Windows 11, установите последнее обновление компонентов Windows 10.",
|
"label": "Если устройство не подходит для запуска Windows 11, установите последнее обновление компонентов Windows 10",
|
||||||
"notApplicable": "Неприменимо",
|
"notApplicable": "Неприменимо",
|
||||||
"summaryLabel": "Установка Windows 10 на устройствах, не поддерживающих Windows 11"
|
"summaryLabel": "Установите Windows 10 на устройства, не поддерживающие Windows 11."
|
||||||
},
|
},
|
||||||
"bladeTitle": "Развертывания обновления компонентов",
|
"bladeTitle": "Развертывания обновления компонентов",
|
||||||
"deploymentSettingsTitle": "Параметры развертывания",
|
"deploymentSettingsTitle": "Параметры развертывания",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"iOS": "На устройствах iOS или iPadOS можно разрешить идентификацию с помощью отпечатка пальца вместо ПИН-кода. При открытии этого приложения с рабочей учетной записью пользователи будут получать запрос на предоставление отпечатков пальцев.",
|
"iOS": "На устройствах iOS или iPadOS можно разрешить идентификацию с помощью отпечатка пальца вместо ПИН-кода. При открытии этого приложения с рабочей учетной записью пользователи будут получать запрос на предоставление отпечатков пальцев.",
|
||||||
"mac": "На устройствах Mac можно разрешить идентификацию с помощью отпечатка пальца вместо ПИН-кода. При открытии этого приложения с рабочей учетной записью пользователи будут получать запрос на предоставление отпечатка."
|
"mac": "На устройствах Mac можно разрешить идентификацию с помощью отпечатка пальца вместо ПИН-кода. При открытии этого приложения с рабочей учетной записью пользователи будут получать запрос на предоставление отпечатка."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Выберите один из следующих вариантов, чтобы указать приложения, от которых это приложение может получать данные.",
|
"appSharingFromLevel1": "Выберите один из следующих вариантов, чтобы указать приложения, от которых это приложение может получать данные.",
|
||||||
"appSharingFromLevel2": "{0}: разрешить получение данных из корпоративных документов и учетных записей только других управляемых политикой приложений.",
|
"appSharingFromLevel2": "{0}: разрешить получение данных из корпоративных документов и учетных записей только других управляемых политикой приложений.",
|
||||||
"appSharingFromLevel3": "{0}: разрешить получение данных из корпоративных документов и учетных записей любого приложения.",
|
"appSharingFromLevel3": "{0}: разрешить получение данных из корпоративных документов и учетных записей любого приложения.",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Укажите язык и регион, которые будут использоваться.",
|
"languageInfo": "Укажите язык и регион, которые будут использоваться.",
|
||||||
"licenseAgreement": "Условия лицензионного соглашения корпорации Майкрософт",
|
"licenseAgreement": "Условия лицензионного соглашения корпорации Майкрософт",
|
||||||
"licenseAgreementInfo": "Укажите, следует ли показывать условия лицензии пользователям.",
|
"licenseAgreementInfo": "Укажите, следует ли показывать условия лицензии пользователям.",
|
||||||
"plugAndForgetDevice": "Самостоятельное развертывание (предварительная версия)",
|
"plugAndForgetDevice": "Самостоятельное развертывание",
|
||||||
"plugAndForgetGA": "Самостоятельное развертывание",
|
|
||||||
"privacySettingWarning": "Изменено значение по умолчанию для сбора диагностических данных на устройствах под управлением Windows 10 версии 1903 и более поздних версий или Windows 11. ",
|
"privacySettingWarning": "Изменено значение по умолчанию для сбора диагностических данных на устройствах под управлением Windows 10 версии 1903 и более поздних версий или Windows 11. ",
|
||||||
"privacySettings": "Настройки приватности",
|
"privacySettings": "Настройки приватности",
|
||||||
"privacySettingsInfo": "Укажите, следует ли показывать пользователям параметры конфиденциальности.",
|
"privacySettingsInfo": "Укажите, следует ли показывать пользователям параметры конфиденциальности.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Не удается блокировать только выбранные приложения на этапе технического обслуживания (предварительная версия)",
|
"allowNonBlockingAppInstallation": "Не удается блокировать только выбранные приложения на этапе технического обслуживания",
|
||||||
"apps": "приложения",
|
"apps": "приложения",
|
||||||
"appsListName": "Список приложений",
|
"appsListName": "Список приложений",
|
||||||
"blockingApps": "Блокировка приложений",
|
"blockingApps": "Блокировка приложений",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Действие",
|
"activity": "Действие",
|
||||||
|
"activityName": "Имя действия",
|
||||||
"actor": "Кем инициировано (субъект)",
|
"actor": "Кем инициировано (субъект)",
|
||||||
|
"actorType": "Тип субъекта",
|
||||||
"app": "Приложение",
|
"app": "Приложение",
|
||||||
"appName": "Имя приложения",
|
"appName": "Имя приложения",
|
||||||
"applicationName": "Имя приложения",
|
"applicationName": "Имя приложения",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "Соединитель MTD",
|
"mtdConnector": "Соединитель MTD",
|
||||||
"name": "Имя профиля",
|
"name": "Имя профиля",
|
||||||
"oSVersion": "Версия ОС",
|
"oSVersion": "Версия ОС",
|
||||||
|
"operationType": "Тип операции",
|
||||||
"os": "ОС",
|
"os": "ОС",
|
||||||
"packageName": "Имя пакета",
|
"packageName": "Имя пакета",
|
||||||
"partnerName": "Партнер",
|
"partnerName": "Партнер",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"tooltip": "Touch ID использует технологию распознавания отпечатков пальцев для проверки подлинности пользователей на устройствах с iOS. Intune вызывает API LocalAuthentication для проверки подлинности пользователей с помощью Touch ID. Если Touch ID разрешена, ее следует использовать для доступа к приложению на устройстве с поддержкой Touch ID."
|
"tooltip": "Touch ID использует технологию распознавания отпечатков пальцев для проверки подлинности пользователей на устройствах с iOS. Intune вызывает API LocalAuthentication для проверки подлинности пользователей с помощью Touch ID. Если Touch ID разрешена, ее следует использовать для доступа к приложению на устройстве с поддержкой Touch ID."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Имя приложения для обмена сообщениями"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "ИД пакета приложения для обмена сообщениями"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "Схема URL-адресов приложения для обмена сообщениями"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Уведомления о данных организации",
|
"label": "Уведомления о данных организации",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "Если задать блокировку, приложение не сможет печатать защищенные данные."
|
"tooltip": "Если задать блокировку, приложение не сможет печатать защищенные данные."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Обычно, когда пользователь выбирает в приложении гиперссылку для обмена сообщениями, приложение для обмена сообщениями открывается с предварительно заполненным полем номера телефона и готово к отправке. Для использования этого параметра выберите способ обработки этого типа передачи содержимого, когда передача инициируется из приложения, управляемого политикой. Чтобы этот параметр вступил в силу, могут потребоваться дополнительные действия. Сначала проверьте, что текстовое сообщение было удалено из списка \"Выбрать исключаемые приложения\". Затем убедитесь, что приложение использует более новую версию пакета SDK для Intune (версия 19.0.0 и выше).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Передавать данные обмена сообщениями в",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Обычно, когда пользователь выбирает в приложении гиперссылку для обмена сообщениями, приложение для обмена сообщениями открывается с предварительно заполненным полем номера телефона и готово к отправке. Для использования этого параметра выберите способ обработки этого типа передачи содержимого, когда передача инициируется из приложения, управляемого политикой."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Получать данные из других приложений",
|
"label": "Получать данные из других приложений",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "Разрешите этот веб-поставщик учетных данных для входа.",
|
"authenticationWebSignInDescription": "Разрешите этот веб-поставщик учетных данных для входа.",
|
||||||
"authenticationWebSignInName": "Веб-вход (устаревший параметр)",
|
"authenticationWebSignInName": "Веб-вход (устаревший параметр)",
|
||||||
"authorizedAppRulesDescription": "Примените авторизованные правила брандмауэра в локальном хранилище, которые требуется распознать и применить.",
|
"authorizedAppRulesDescription": "Примените авторизованные правила брандмауэра в локальном хранилище, которые требуется распознать и применить.",
|
||||||
"authorizedAppRulesName": "Авторизованные правила брандмауэра в Microsoft Defender для приложения из локального хранилища",
|
"authorizedAppRulesName": "Авторизованные правила брандмауэра Windows для приложения из локального хранилища",
|
||||||
"authorizedUsersListHideAdminUsersName": "Скрыть администраторов компьютера",
|
"authorizedUsersListHideAdminUsersName": "Скрыть администраторов компьютера",
|
||||||
"authorizedUsersListHideLocalUsersName": "Скрыть локальных пользователей",
|
"authorizedUsersListHideLocalUsersName": "Скрыть локальных пользователей",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Скрыть учетные записи мобильных устройств",
|
"authorizedUsersListHideMobileAccountsName": "Скрыть учетные записи мобильных устройств",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Этот параметр определяет максимальное время бездействия пользователя (в минутах), по истечении которого устройство блокируется. Рекомендуемое значение: 15 минут.",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Этот параметр определяет максимальное время бездействия пользователя (в минутах), по истечении которого устройство блокируется. Рекомендуемое значение: 15 минут.",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Этот параметр указывает время бездействия пользователя, по истечении которого устройство блокируется. Рекомендуемое значение: 15 минут",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Этот параметр указывает время бездействия пользователя, по истечении которого устройство блокируется. Рекомендуемое значение: 15 минут",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Максимальное время бездействия (в минутах), по истечении которого запрашивается пароль",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Максимальное время бездействия (в минутах), по истечении которого запрашивается пароль",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Рекомендуемое значение: 15 мин",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Выберите самую новую версию ОС, которую может иметь мобильное устройство.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Выберите самую новую версию ОС, которую может иметь мобильное устройство.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Максимальная версия ОС для мобильных устройств",
|
"complianceMobileOsVersionRestrictionMaximumName": "Максимальная версия ОС для мобильных устройств",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Выберите самую старую версию ОС, которую может иметь мобильное устройство.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Выберите самую старую версию ОС, которую может иметь мобильное устройство.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "Этот параметр определяет число недавних паролей, которые нельзя использовать повторно. Рекомендуемое значение: 5.",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "Этот параметр определяет число недавних паролей, которые нельзя использовать повторно. Рекомендуемое значение: 5.",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Число предыдущих паролей для запрета повторного использования",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Число предыдущих паролей для запрета повторного использования",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Рекомендуемое значение: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Введите самую позднюю версию сборки ОС, которая может быть на устройстве, например 20E252.<br>Если нужно использовать обновление Apple Rapid Security Response в качестве максимального номера сборки ОС, введите дополнительную версию сборки, например 20E772520a.",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Введите самую позднюю версию сборки ОС, которая может быть на устройстве, например 20E252.<br>Если нужно использовать обновление Apple Rapid Security Response в качестве максимального номера сборки ОС, введите дополнительную версию сборки, например 20E772520a.",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Максимальная версия сборки ОС",
|
"complianceOsBuildVersionRestrictionMaximumName": "Максимальная версия сборки ОС",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Введите самую раннюю версию сборки ОС, которая может быть на устройстве, например 20E252.<br>Если нужно использовать обновление Apple Rapid Security Response в качестве минимального номера сборки ОС, введите дополнительную версию сборки, например 20E772520a.",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Введите самую раннюю версию сборки ОС, которая может быть на устройстве, например 20E252.<br>Если нужно использовать обновление Apple Rapid Security Response в качестве минимального номера сборки ОС, введите дополнительную версию сборки, например 20E772520a.",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Требование того, чтобы механизм обнаружения угроз Microsoft Defender был в актуальном состоянии.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Требование того, чтобы механизм обнаружения угроз Microsoft Defender был в актуальном состоянии.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Актуальность механизма обнаружения угроз антивредоносного ПО в Microsoft Defender",
|
"complianceRequireWindowsDefenderSignatureName": "Актуальность механизма обнаружения угроз антивредоносного ПО в Microsoft Defender",
|
||||||
"complianceRequiredPasswordTypeDescription": "Этот параметр определяет, могут ли пароли состоять только из цифр или должны содержать символы, отличные от цифр. Рекомендации: требуемый тип пароля — \"Буквенно-цифровой\"; минимальное число наборов символов: 1.",
|
"complianceRequiredPasswordTypeDescription": "Этот параметр определяет, могут ли пароли состоять только из цифр или должны содержать символы, отличные от цифр. Рекомендации: требуемый тип пароля — \"Буквенно-цифровой\"; минимальное число наборов символов: 1.",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Рекомендации. Требуемый тип пароля: буквенно-цифровой, минимальное количество кодировок: 1",
|
||||||
"complianceRootedAllowedDescription": "Предотвращение корпоративного доступа к устройствам с административным доступом.",
|
"complianceRootedAllowedDescription": "Предотвращение корпоративного доступа к устройствам с административным доступом.",
|
||||||
"complianceRootedAllowedName": "Устройства с административным доступом",
|
"complianceRootedAllowedName": "Устройства с административным доступом",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "Этот параметр определяет, будет ли устройству запрещено использование функции отладки по USB.",
|
"complianceSecurityDisableUSBDebuggingDescription": "Этот параметр определяет, будет ли устройству запрещено использование функции отладки по USB.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Выберите самую раннюю допустимую версию ОС для устройства. Версия операционной системы указывается в формате \"основной номер.дополнительный номер.сборка.редакция\". ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Выберите самую раннюю допустимую версию ОС для устройства. Версия операционной системы указывается в формате \"основной номер.дополнительный номер.сборка.редакция\". ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Выберите тип пароля для устройства.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Выберите тип пароля для устройства.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Тип пароля",
|
"complianceWindowsRequiredPasswordTypeName": "Тип пароля",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Требовать пароль для разблокировки рабочего профиля",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Безопасность рабочего профиля",
|
||||||
"compliantAppsOption": "Список соответствующих приложений. Сообщать о несоответствии для любых установленных приложений, не включенных в список",
|
"compliantAppsOption": "Список соответствующих приложений. Сообщать о несоответствии для любых установленных приложений, не включенных в список",
|
||||||
"computerNameStaticPrefixDescription": "Каждому компьютеру назначается случайное имя длиной 15 символов. Укажите префикс для этого имени, остальные 15 символов будут случайными.",
|
"computerNameStaticPrefixDescription": "Каждому компьютеру назначается случайное имя длиной 15 символов. Укажите префикс для этого имени, остальные 15 символов будут случайными.",
|
||||||
"computerNameStaticPrefixName": "Префикс имени компьютера",
|
"computerNameStaticPrefixName": "Префикс имени компьютера",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Список разрешенных доменов Google",
|
"domainAllowListName": "Список разрешенных доменов Google",
|
||||||
"domainAllowListTableEmptyValueExample": "Введите домен",
|
"domainAllowListTableEmptyValueExample": "Введите домен",
|
||||||
"domainAllowListTableName": "Домен",
|
"domainAllowListTableName": "Домен",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Авторизованные правила брандмауэра в Microsoft Defender для приложения из локального хранилища (доменные сети)",
|
"domainAuthorizedAppRulesSummaryLabel": "Правила брандмауэра Windows для авторизованных приложений из локального хранилища (доменные сети)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Брандмауэр в Microsoft Defender (доменные сети)",
|
"domainFirewallEnabledSummaryLabel": "Брандмауэр Windows (доменные сети)",
|
||||||
"domainGlobalRulesSummaryLabel": "Глобальные правила для портов брандмауэра в Microsoft Defender из локального хранилища (доменные сети)",
|
"domainGlobalRulesSummaryLabel": "Правила брандмауэра Windows для глобального порта из локального хранилища (доменные сети)",
|
||||||
"domainIPsecRulesSummaryLabel": "Правила IPsec из локального хранилища (доменные сети)",
|
"domainIPsecRulesSummaryLabel": "Правила IPsec из локального хранилища (доменные сети)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "Исключение пакетов, защищенных IPsec, в скрытом режиме (доменные сети)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "Исключение пакетов, защищенных IPsec, в скрытом режиме (доменные сети)",
|
||||||
"domainInboundConnectionsSummaryLabel": "Действие по умолчанию для входящих подключений (доменные сети)",
|
"domainInboundConnectionsSummaryLabel": "Действие по умолчанию для входящих подключений (доменные сети)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Входящие уведомления (доменные сети)",
|
"domainInboundNotificationsSummaryLabel": "Входящие уведомления (доменные сети)",
|
||||||
"domainLocalStoreSummaryLabel": "Правила брандмауэра в Microsoft Defender из локального хранилища (доменные сети)",
|
"domainLocalStoreSummaryLabel": "Правила брандмауэра Windows из локального хранилища (доменные сети)",
|
||||||
"domainNameSourceOption": "Источник доменного имени пользователя",
|
"domainNameSourceOption": "Источник доменного имени пользователя",
|
||||||
"domainNetworkName": "Доменная сеть (рабочее место)",
|
"domainNetworkName": "Доменная сеть (рабочее место)",
|
||||||
"domainOutboundConnectionsSummaryLabel": "Действие по умолчанию для исходящих подключений (доменные сети)",
|
"domainOutboundConnectionsSummaryLabel": "Действие по умолчанию для исходящих подключений (доменные сети)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Единый вход с альтернативным сертификатом",
|
"enableSingleSignOnName": "Единый вход с альтернативным сертификатом",
|
||||||
"enableUsePrivateStoreOnly": "Использовать только частный магазин",
|
"enableUsePrivateStoreOnly": "Использовать только частный магазин",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Разрешает скачивать приложения только из частного магазина, а не из общедоступного.",
|
"enableUsePrivateStoreOnlyDescription": "Разрешает скачивать приложения только из частного магазина, а не из общедоступного.",
|
||||||
"enableWindowsDefenderFirewallName": "Брандмауэр в Microsoft Defender",
|
"enableWindowsDefenderFirewallName": "Брандмауэр Windows",
|
||||||
"enableWithUEFILock": "Включить с блокировкой UEFI",
|
"enableWithUEFILock": "Включить с блокировкой UEFI",
|
||||||
"enableWithoutUEFILock": "Включить без блокировки UEFI",
|
"enableWithoutUEFILock": "Включить без блокировки UEFI",
|
||||||
"enabledForAzureAdAndHybridOption": "Для устройств, подключенных к Microsoft Entra, и устройств с гибридным присоединением включена периодическая смена ключей",
|
"enabledForAzureAdAndHybridOption": "Для устройств, подключенных к Microsoft Entra, и устройств с гибридным присоединением включена периодическая смена ключей",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Блокировать входящие подключения для следующих приложений.",
|
"firewallAppsBlockedHeader": "Блокировать входящие подключения для следующих приложений.",
|
||||||
"firewallAppsBlockedPageDescription": "Выберите приложения, которые должны блокировать входящие подключения.",
|
"firewallAppsBlockedPageDescription": "Выберите приложения, которые должны блокировать входящие подключения.",
|
||||||
"firewallAppsBlockedPageName": "Заблокированные приложения",
|
"firewallAppsBlockedPageName": "Заблокированные приложения",
|
||||||
"firewallCreateRules": "Создание правил брандмауэра в Microsoft Defender. Один профиль Endpoint Protection может включать до 150 правил.",
|
"firewallCreateRules": "Создание правил брандмауэра Windows. Один профиль Endpoint Protection может включать до 150 правил.",
|
||||||
"firewallRequiredDescription": "Требовать включенный брандмауэр",
|
"firewallRequiredDescription": "Требовать включенный брандмауэр",
|
||||||
"firewallRequiredName": "Брандмауэр",
|
"firewallRequiredName": "Брандмауэр",
|
||||||
"firewallRuleAction": "Действие",
|
"firewallRuleAction": "Действие",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Канал общей доступности",
|
"generalAvailabilityChannel": "Канал общей доступности",
|
||||||
"generalNetworkSettingsHeader": "Общие",
|
"generalNetworkSettingsHeader": "Общие",
|
||||||
"genericLocalUsersOrGroupsName": "Универсальные локальные пользователи или группы",
|
"genericLocalUsersOrGroupsName": "Универсальные локальные пользователи или группы",
|
||||||
"globalConfigurationsDescription": "Настройте параметры брандмауэра в Microsoft Defender, применимые ко всем типам сетей.",
|
"globalConfigurationsDescription": "Настройка параметров брандмауэра Windows, применяемых ко всем типам сетей.",
|
||||||
"globalConfigurationsName": "Глобальные параметры",
|
"globalConfigurationsName": "Глобальные параметры",
|
||||||
"globalRulesDescription": "Примените глобальные правила для портов брандмауэра в локальном хранилище, которые требуется распознать и применить.",
|
"globalRulesDescription": "Примените глобальные правила для портов брандмауэра в локальном хранилище, которые требуется распознать и применить.",
|
||||||
"globalRulesName": "Глобальные правила для портов брандмауэра в Microsoft Defender из локального хранилища",
|
"globalRulesName": "Глобальные правила брандмауэра Windows для порта из локального хранилища",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Адреса электронной почты учетных записей Google",
|
"googleAccountEmailAddresses": "Адреса электронной почты учетных записей Google",
|
||||||
"googleAccountEmailAddressesDescription": "Список адресов электронной почты, разделенных точками с запятой",
|
"googleAccountEmailAddressesDescription": "Список адресов электронной почты, разделенных точками с запятой",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Запрашивать учетные данные на безопасном рабочем столе",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Запрашивать учетные данные на безопасном рабочем столе",
|
||||||
"localServerCachingHeader": "Кэширование локального сервера",
|
"localServerCachingHeader": "Кэширование локального сервера",
|
||||||
"localStoreDescription": "Примените глобальные правила брандмауэра из локального хранилища, которые требуется распознать и применить.",
|
"localStoreDescription": "Примените глобальные правила брандмауэра из локального хранилища, которые требуется распознать и применить.",
|
||||||
"localStoreName": "Правила брандмауэра в Microsoft Defender из локального хранилища",
|
"localStoreName": "Правила брандмауэра Windows из локального хранилища",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Укажите, следует ли показывать настраиваемый пользователем параметр, чтобы управлять временем ожидания для экрана на экране блокировки мобильных устройств с ОС Windows 10. Если в политике задано \"Разрешить\", значение \"Время ожидания экрана\" игнорируется.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Укажите, следует ли показывать настраиваемый пользователем параметр, чтобы управлять временем ожидания для экрана на экране блокировки мобильных устройств с ОС Windows 10. Если в политике задано \"Разрешить\", значение \"Время ожидания экрана\" игнорируется.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Настраиваемое пользователем время ожидания экрана (только мобильные устройства)",
|
"lockScreenAllowTimeoutConfigurationName": "Настраиваемое пользователем время ожидания экрана (только мобильные устройства)",
|
||||||
"lockScreenBackgroundImageURLDescription": "URL-адрес фонового изображения для настраиваемого экрана приветствия. Это должен быть PNG-файл с конечной точкой https://",
|
"lockScreenBackgroundImageURLDescription": "URL-адрес фонового изображения для настраиваемого экрана приветствия. Это должен быть PNG-файл с конечной точкой https://",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "Максимальный передаваемый блок данных (MTU) должен находиться в диапазоне от 1280 до 1400 байт",
|
"mTUSizeInBytesBounds": "Максимальный передаваемый блок данных (MTU) должен находиться в диапазоне от 1280 до 1400 байт",
|
||||||
"mTUSizeInBytesName": "Максимальный передаваемый блок данных",
|
"mTUSizeInBytesName": "Максимальный передаваемый блок данных",
|
||||||
"mTUSizeInBytesToolTip": "Наибольший размер пакета данных (в байтах), который может быть передан по сети. Если параметр не задан, используется размер Apple по умолчанию — 1280 байт. Применяется к iOS 14 и более поздним версиям.",
|
"mTUSizeInBytesToolTip": "Наибольший размер пакета данных (в байтах), который может быть передан по сети. Если параметр не задан, используется размер Apple по умолчанию — 1280 байт. Применяется к iOS 14 и более поздним версиям.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Использовать случайный MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Использовать параметры устройства по умолчанию",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Использовать случайный MAC только при необходимости, например для поддержки NAC. Пользователи могут изменить этот параметр. Применяется к Android 13 и более поздним версиям.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Использовать MAC устройства",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "Случайное назначение MAC-адреса",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store и известные разработчики",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store и известные разработчики",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Блокирует AirPlay, демонстрацию экрана на другие устройства и функцию приложения Classroom, используемую преподавателями для просмотра экранов учащихся. Этот параметр недоступен, если заблокированы снимки экрана.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Блокирует AirPlay, демонстрацию экрана на другие устройства и функцию приложения Classroom, используемую преподавателями для просмотра экранов учащихся. Этот параметр недоступен, если заблокированы снимки экрана.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Введите число (4–16).",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Введите число (4–16).",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Введите число (6–16).",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Введите число (6–16).",
|
||||||
"minimumPasswordLengthName": "Минимальная длина пароля",
|
"minimumPasswordLengthName": "Минимальная длина пароля",
|
||||||
|
"minimumPasswordLengthTooltipText": "Введите число",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Отсутствующие обновления будут установлены автоматически",
|
"minimumUpdateAutoInstallClassificationDescription": "Отсутствующие обновления будут установлены автоматически",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Установить указанную классификацию обновлений",
|
"minimumUpdateAutoInstallClassificationName": "Установить указанную классификацию обновлений",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Важно",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Важно",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Использовать ручную настройку прокси-сервера",
|
"networkProxyUseManualServerName": "Использовать ручную настройку прокси-сервера",
|
||||||
"networkProxyUseScriptUrlName": "Использовать скрипт прокси-сервера",
|
"networkProxyUseScriptUrlName": "Использовать скрипт прокси-сервера",
|
||||||
"networkSettingsName": "Параметры сети",
|
"networkSettingsName": "Параметры сети",
|
||||||
"networkSettingsSubtitle": "Настройте параметры брандмауэра в Microsoft Defender, применяемые к определенным типам сетей.",
|
"networkSettingsSubtitle": "Настройка параметров брандмауэра Windows, применяемых к конкретным типам сетей.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Добавьте управляемые приложения iOS, которым запрещено использовать сети мобильной связи.",
|
"networkUsageRulesBlockCellularHeaderName": "Добавьте управляемые приложения iOS, которым запрещено использовать сети мобильной связи.",
|
||||||
"networkUsageRulesBlockCellularName": "Блокировать использование передачи данных",
|
"networkUsageRulesBlockCellularName": "Блокировать использование передачи данных",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Добавьте управляемые приложения iOS, которым запрещено использовать передачу данных в роуминге.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Добавьте управляемые приложения iOS, которым запрещено использовать передачу данных в роуминге.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "Приложения и процессы",
|
"privacyPreferencesTableName": "Приложения и процессы",
|
||||||
"privacyPublishUserActivitiesDescription": "Блокировать общие возможности, обнаружение недавно использованных ресурсов в переключателе задач и т. д.",
|
"privacyPublishUserActivitiesDescription": "Блокировать общие возможности, обнаружение недавно использованных ресурсов в переключателе задач и т. д.",
|
||||||
"privacyPublishUserActivitiesName": "Опубликовать действия пользователя",
|
"privacyPublishUserActivitiesName": "Опубликовать действия пользователя",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Авторизованные правила брандмауэра в Microsoft Defender для приложения из локального хранилища (частные сети)",
|
"privateAuthorizedAppRulesSummaryLabel": "Правила брандмауэра Windows для авторизованных приложений из локального хранилища (частные сети)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Брандмауэр в Microsoft Defender (частные сети)",
|
"privateFirewallEnabledSummaryLabel": "Брандмауэр Windows (частные сети)",
|
||||||
"privateGlobalRulesSummaryLabel": "Глобальные правила для портов брандмауэра в Microsoft Defender из локального хранилища (частные сети)",
|
"privateGlobalRulesSummaryLabel": "Правила брандмауэра Windows для глобального порта из локального хранилища (частные сети)",
|
||||||
"privateIPsecRulesSummaryLabel": "Правила IPsec из локального хранилища (частные сети)",
|
"privateIPsecRulesSummaryLabel": "Правила IPsec из локального хранилища (частные сети)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "Исключение пакетов, защищенных IPsec, в скрытом режиме (частные сети)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "Исключение пакетов, защищенных IPsec, в скрытом режиме (частные сети)",
|
||||||
"privateInboundConnectionsSummaryLabel": "Действие по умолчанию для входящих подключений (частные сети)",
|
"privateInboundConnectionsSummaryLabel": "Действие по умолчанию для входящих подключений (частные сети)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Входящие уведомления (частные сети)",
|
"privateInboundNotificationsSummaryLabel": "Входящие уведомления (частные сети)",
|
||||||
"privateLocalStoreSummaryLabel": "Правила брандмауэра в Microsoft Defender из локального хранилища (частные сети)",
|
"privateLocalStoreSummaryLabel": "Правила брандмауэра Windows из локального хранилища (частные сети)",
|
||||||
"privateNetworkName": "Частная сеть (обнаруживаемая)",
|
"privateNetworkName": "Частная сеть (обнаруживаемая)",
|
||||||
"privateOutboundConnectionsSummaryLabel": "Действие по умолчанию для исходящих подключений (частные сети)",
|
"privateOutboundConnectionsSummaryLabel": "Действие по умолчанию для исходящих подключений (частные сети)",
|
||||||
"privateShieldedSummaryLabel": "Экранированные (частные сети)",
|
"privateShieldedSummaryLabel": "Экранированные (частные сети)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "URL-адрес прокси-сервера",
|
"proxyServerURLName": "URL-адрес прокси-сервера",
|
||||||
"proxyServersAutoDetectionName": "Автоматическое обнаружение других корпоративных прокси-серверов",
|
"proxyServersAutoDetectionName": "Автоматическое обнаружение других корпоративных прокси-серверов",
|
||||||
"proxyUrlExample": "например, itgproxy.contoso.com",
|
"proxyUrlExample": "например, itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Авторизованные правила брандмауэра в Microsoft Defender для приложения из локального хранилища (общедоступные сети)",
|
"publicAuthorizedAppRulesSummaryLabel": "Правила брандмауэра Windows для авторизованных приложений из локального хранилища (общедоступные сети)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Брандмауэр в Microsoft Defender (общедоступные сети)",
|
"publicFirewallEnabledSummaryLabel": "Брандмауэр Windows (общедоступные сети)",
|
||||||
"publicGlobalRulesSummaryLabel": "Глобальные правила для портов брандмауэра в Microsoft Defender из локального хранилища (общедоступные сети)",
|
"publicGlobalRulesSummaryLabel": "Правила брандмауэра Windows для глобального порта из локального хранилища (общедоступные сети)",
|
||||||
"publicIPsecRulesSummaryLabel": "Правила IPsec из локального хранилища (общедоступные сети)",
|
"publicIPsecRulesSummaryLabel": "Правила IPsec из локального хранилища (общедоступные сети)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "Исключение пакетов, защищенных IPsec, в скрытом режиме (общедоступные сети)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "Исключение пакетов, защищенных IPsec, в скрытом режиме (общедоступные сети)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Действие по умолчанию для входящих подключений (общедоступные сети)",
|
"publicInboundConnectionsSummaryLabel": "Действие по умолчанию для входящих подключений (общедоступные сети)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Входящие уведомления (общедоступные сети)",
|
"publicInboundNotificationsSummaryLabel": "Входящие уведомления (общедоступные сети)",
|
||||||
"publicLocalStoreSummaryLabel": "Правила брандмауэра в Microsoft Defender из локального хранилища (общедоступные сети)",
|
"publicLocalStoreSummaryLabel": "Правила брандмауэра Windows из локального хранилища (общедоступные сети)",
|
||||||
"publicNetworkName": "Публичная сеть (необнаруживаемая)",
|
"publicNetworkName": "Публичная сеть (необнаруживаемая)",
|
||||||
"publicOutboundConnectionsSummaryLabel": "Действие по умолчанию для исходящих подключений (общедоступные сети)",
|
"publicOutboundConnectionsSummaryLabel": "Действие по умолчанию для исходящих подключений (общедоступные сети)",
|
||||||
"publicPlayStoreEnabledDescription": "Пользователи получат доступ ко всем приложениям за исключением тех приложений, которые помечены как удаляемые в разделе \"Клиентские приложения\". Если выбрать для этого параметра значение \"Не настроено\", пользователи получат доступ только к приложениям, которые помечены как доступные или обязательные в разделе \"Клиентcкие приложения\".",
|
"publicPlayStoreEnabledDescription": "Пользователи получат доступ ко всем приложениям за исключением тех приложений, которые помечены как удаляемые в разделе \"Клиентские приложения\". Если выбрать для этого параметра значение \"Не настроено\", пользователи получат доступ только к приложениям, которые помечены как доступные или обязательные в разделе \"Клиентcкие приложения\".",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Зарегистрировать в KSP программного обеспечения",
|
"sCEPPolicyEnrollToSoftwareKSP": "Зарегистрировать в KSP программного обеспечения",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Зарегистрировать в KSP доверенного платформенного модуля (TPM), в противном случае создать сбой",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Зарегистрировать в KSP доверенного платформенного модуля (TPM), в противном случае создать сбой",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Зарегистрировать в KSP доверенного платформенного модуля (TPM) при его наличии, в противном случае зарегистрировать в KSP программного обеспечения",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Зарегистрировать в KSP доверенного платформенного модуля (TPM) при его наличии, в противном случае зарегистрировать в KSP программного обеспечения",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "ВНИМАНИЕ! Ни EKU любого назначения (OID 2.5.29.37.0), ни EKU политики любых приложений (OID 1.3.6.1.4.1.311.10.12.1) не могут использоваться с центром сертификации, созданным в Microsoft Cloud PKI.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "В большинстве случаев для сертификата нужно пройти хотя бы проверку подлинности клиента, чтобы пользователь или устройство могли получить доступ к серверу. Однако вы можете указать дополнительные варианты использования, чтобы еще точнее определить назначение ключа.",
|
"sCEPPolicyExtendedKeyUsageDescription": "В большинстве случаев для сертификата нужно пройти хотя бы проверку подлинности клиента, чтобы пользователь или устройство могли получить доступ к серверу. Однако вы можете указать дополнительные варианты использования, чтобы еще точнее определить назначение ключа.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Расширенное использование ключа",
|
"sCEPPolicyExtendedKeyUsageName": "Расширенное использование ключа",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Используйте в сертификате тип хэш-алгоритма. Выберите самый высокий уровень безопасности, который поддерживается на подключаемом устройстве.",
|
"sCEPPolicyHashAlgorithmDescription": "Используйте в сертификате тип хэш-алгоритма. Выберите самый высокий уровень безопасности, который поддерживается на подключаемом устройстве.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Введите число дней (1–255).",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Введите число дней (1–255).",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Введите число дней (1–365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Введите число дней (1–365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Срок действия пароля (в днях)",
|
"workProfilePasswordExpirationInDaysName": "Срок действия пароля (в днях)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Введите количество дней",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Пароль рабочего профиля: минимальная длина пароля",
|
"workProfilePasswordMinimumLengthReportingName": "Пароль рабочего профиля: минимальная длина пароля",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Пароль рабочего профиля: необходимое количество символов",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Пароль рабочего профиля: необходимое количество символов",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Пароль рабочего профиля: необходимое количество символов в нижнем регистре",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Пароль рабочего профиля: необходимое количество символов в нижнем регистре",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "Любое приложение",
|
"anyAppOptionText": "Любое приложение",
|
||||||
"anyDestinationAnySourceOptionText": "Любой пункт назначения и любой источник",
|
"anyDestinationAnySourceOptionText": "Любой пункт назначения и любой источник",
|
||||||
"anyDialerAppOptionText": "Любое приложение набора номера",
|
"anyDialerAppOptionText": "Любое приложение набора номера",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "Любое приложение для обмена сообщениями",
|
||||||
"anyPolicyManagedDialerAppOptionText": "Любое приложение набора номера, управляемое политикой",
|
"anyPolicyManagedDialerAppOptionText": "Любое приложение набора номера, управляемое политикой",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "Любое приложение для обмена сообщениями, управляемое политикой",
|
||||||
"appAdded": "Приложение добавлено.",
|
"appAdded": "Приложение добавлено.",
|
||||||
"appBasedConditionalAccess": "Условный доступ на основе приложения",
|
"appBasedConditionalAccess": "Условный доступ на основе приложения",
|
||||||
"appColumnLabel": "Приложение",
|
"appColumnLabel": "Приложение",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "Идентификатор устройства MDM",
|
"mdmDeviceId": "Идентификатор устройства MDM",
|
||||||
"mdmWipInvalidVersionSettings": "Одно приложение или несколько содержат определения минимальной или максимальной версии.<br /> <br />Windows Information Protection с политиками регистрации поддерживает только одну минимальную или максимальную версию, если обе версии не указаны как эквивалентные. Если указана только минимальная версия, правило задается от минимальной версии. Аналогично, если указана только максимальная версия, правило задается вплоть до максимальной версии.",
|
"mdmWipInvalidVersionSettings": "Одно приложение или несколько содержат определения минимальной или максимальной версии.<br /> <br />Windows Information Protection с политиками регистрации поддерживает только одну минимальную или максимальную версию, если обе версии не указаны как эквивалентные. Если указана только минимальная версия, правило задается от минимальной версии. Аналогично, если указана только максимальная версия, правило задается вплоть до максимальной версии.",
|
||||||
"mdmWipReport": "Отчет Windows Information Protection в MDM",
|
"mdmWipReport": "Отчет Windows Information Protection в MDM",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Имя приложения для обмена сообщениями (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "ИД пакета приложения для обмена сообщениями (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "Схема URL-адресов приложения для обмена сообщениями (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender для конечной точки",
|
"microsoftDefenderForEndpoint": "Microsoft Defender для конечной точки",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "Минимальная версия приложения",
|
"minAppVersion": "Минимальная версия приложения",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Каталог параметров",
|
"settingsCatalog": "Каталог параметров",
|
||||||
"settingsSelectorLabel": "Параметры",
|
"settingsSelectorLabel": "Параметры",
|
||||||
"silent": "Без звука",
|
"silent": "Без звука",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "Специальное приложение для обмена сообщениями",
|
||||||
"specificUserIsLicensedIntune": "У пользователя {0} есть лицензия для Microsoft Intune.",
|
"specificUserIsLicensedIntune": "У пользователя {0} есть лицензия для Microsoft Intune.",
|
||||||
"state": "Состояние",
|
"state": "Состояние",
|
||||||
"status": "Состояние",
|
"status": "Состояние",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Базовая конфигурация Microsoft Edge",
|
"edgeSecurityBaseline": "Базовая конфигурация Microsoft Edge",
|
||||||
"edgeSecurityBaselinePreview": "Предварительная версия: базовые показатели Microsoft Edge",
|
"edgeSecurityBaselinePreview": "Предварительная версия: базовые показатели Microsoft Edge",
|
||||||
"editionUpgradeConfiguration": "Обновление выпуска и переключение режима",
|
"editionUpgradeConfiguration": "Обновление выпуска и переключение режима",
|
||||||
"firewall": "Брандмауэр в Microsoft Defender",
|
"firewall": "Брандмауэр Windows",
|
||||||
"firewallRules": "Правила брандмауэра в Microsoft Defender",
|
"firewallRules": "Правила брандмауэра Windows",
|
||||||
"identityProtection": "Защита учетных записей",
|
"identityProtection": "Защита учетных записей",
|
||||||
"identityProtectionPreview": "Защита учетных записей (предварительная версия)",
|
"identityProtectionPreview": "Защита учетных записей (предварительная версия)",
|
||||||
"mDMSecurityBaseline1810": "Базовая конфигурация безопасности MDM для Windows 10 и более поздних версий на октябрь 2018 г.",
|
"mDMSecurityBaseline1810": "Базовая конфигурация безопасности MDM для Windows 10 и более поздних версий на октябрь 2018 г.",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Предварительная версия: базовый показатель Microsoft Office O365",
|
"office365BaselinePreview": "Предварительная версия: базовый показатель Microsoft Office O365",
|
||||||
"securityBaselines": "Базовые показатели системы безопасности",
|
"securityBaselines": "Базовые показатели системы безопасности",
|
||||||
"test": "Тестовый шаблон",
|
"test": "Тестовый шаблон",
|
||||||
"testFirewallRulesSecurityTemplateName": "Правила брандмауэра в Microsoft Defender (тест)",
|
"testFirewallRulesSecurityTemplateName": "Правила брандмауэра Windows (тест)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Защита учетных записей (тест)",
|
"testIdentityProtectionSecurityTemplateName": "Защита учетных записей (тест)",
|
||||||
"windowsSecurityExperience": "Интерфейс безопасности Windows"
|
"windowsSecurityExperience": "Интерфейс безопасности Windows"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Брандмауэр в Microsoft Defender"
|
"mDE": "Брандмауэр Windows"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Правила брандмауэра в Microsoft Defender"
|
"mDE": "Правила брандмауэра Windows"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "Параметры перемещения известных папок OneDrive: Windows 10 в шаблоне конфигурации облака. https://aka.ms/CloudConfigGuide"
|
"description": "Параметры перемещения известных папок OneDrive: Windows 10 в шаблоне конфигурации облака. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Конфигурация управления мобильным устройством",
|
"expeditedCheckin": "Конфигурация управления мобильным устройством",
|
||||||
"exploitProtection": "Защита от эксплойтов",
|
"exploitProtection": "Защита от эксплойтов",
|
||||||
"extensions": "Расширения",
|
"extensions": "Расширения",
|
||||||
"hardwareConfigurations": "Конфигурации BIOS",
|
"hardwareConfigurations": "Конфигурации BIOS и другие параметры",
|
||||||
"identityProtection": "Защита идентификации",
|
"identityProtection": "Защита идентификации",
|
||||||
"iosCompliancePolicy": "Политика соответствия для iOS",
|
"iosCompliancePolicy": "Политика соответствия для iOS",
|
||||||
"kiosk": "Киоск",
|
"kiosk": "Киоск",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Антивирусная программа в Microsoft Defender",
|
"microsoftDefenderAntivirus": "Антивирусная программа в Microsoft Defender",
|
||||||
"microsoftDefenderAntivirusexclusions": "Исключения антивирусной программы в Microsoft Defender",
|
"microsoftDefenderAntivirusexclusions": "Исключения антивирусной программы в Microsoft Defender",
|
||||||
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender для конечной точки (настольные компьютеры под управлением Windows 10 или более поздних версий)",
|
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender для конечной точки (настольные компьютеры под управлением Windows 10 или более поздних версий)",
|
||||||
"microsoftDefenderFirewallRules": "Правила брандмауэра в Microsoft Defender",
|
"microsoftDefenderFirewallRules": "Правила брандмауэра Windows",
|
||||||
"microsoftEdgeBaseline": "Базовая конфигурация безопасности для Microsoft Edge",
|
"microsoftEdgeBaseline": "Базовая конфигурация безопасности для Microsoft Edge",
|
||||||
"mxProfileZebraOnly": "Профиль MX (только Zebra)",
|
"mxProfileZebraOnly": "Профиль MX (только Zebra)",
|
||||||
"networkBoundary": "Граница сети",
|
"networkBoundary": "Граница сети",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Доверенный сертификат — тест",
|
"windows10XTrustedCertificate": "Доверенный сертификат — тест",
|
||||||
"windows10XVPN": "VPN — тест",
|
"windows10XVPN": "VPN — тест",
|
||||||
"windows10XWifi": "WIFI — тест",
|
"windows10XWifi": "WIFI — тест",
|
||||||
|
"windows11SecurityBaseline": "Базовая конфигурация безопасности для Windows 10 и более поздних версий",
|
||||||
"windows8CompliancePolicy": "Политика соответствия для Windows 8",
|
"windows8CompliancePolicy": "Политика соответствия для Windows 8",
|
||||||
"windowsHealthMonitoring": "Мониторинг работоспособности Windows",
|
"windowsHealthMonitoring": "Мониторинг работоспособности Windows",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Настройте устройства для начальной подготовки и назначьте их пользователям.",
|
"description": "Настройка устройств для начальной подготовки.",
|
||||||
"title": "Подготовка устройства"
|
"title": "Подготовка устройства"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Ручное утверждение и развертывание обновлений драйверов"
|
"manual": "Ручное утверждение и развертывание обновлений драйверов"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Массовые действия"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} дн."
|
"value": "{0} дн."
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Выберите действие ниже.",
|
||||||
"label": "Driver action",
|
"label": "Действие драйвера",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Выберите действие"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Включенные драйверы"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Выберите водителей для включения в массовое действие"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Выберите драйверы для включения"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "Можно выбрать не более ста драйверов"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "Необходимо выбрать хотя бы один драйвер"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Выбранные драйверы"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Сделать доступным в Центре обновления Windows",
|
||||||
"bladeTitle": "Обновления драйверов Windows 10 и более поздних версий (предварительная версия)",
|
"bladeTitle": "Обновления драйверов Windows 10 и более поздних версий (предварительная версия)",
|
||||||
"lastSync": "Последняя синхронизация:",
|
"lastSync": "Последняя синхронизация:",
|
||||||
"lastSyncDefaultText": "Ожидание первоначального сбора данных инвентаризации",
|
"lastSyncDefaultText": "Ожидание первоначального сбора данных инвентаризации",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Выберите уведомление в левой части, чтобы просмотреть его содержимое."
|
"placeholder": "Выберите уведомление в левой части, чтобы просмотреть его содержимое."
|
||||||
},
|
},
|
||||||
"companyContact": "Нижний колонтитул электронного письма — включить контактные данные",
|
"companyContact": "Показать контактные данные",
|
||||||
"companyLogo": "Заголовок электронного письма — включить логотип компании",
|
"companyLogo": "Показать логотип организации",
|
||||||
"companyName": "Нижний колонтитул электронного письма — включить имя компании",
|
"companyName": "Показать название организации",
|
||||||
"createEditDescription": "Создание или изменение шаблонов сообщений с уведомлениями.",
|
"createEditDescription": "Создание или изменение шаблонов сообщений с уведомлениями.",
|
||||||
"createMessage": "Создать сообщение",
|
"createMessage": "Создать сообщение",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Показать сведения об устройстве",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "По умолчанию этот параметр отключен, так как получение сведений об устройстве может привести к задержке получения уведомлений по электронной почте.",
|
||||||
"editImpactInfo": "Изменение этого шаблона сообщений с уведомлениями повлияет на все политики, которые используют этот шаблон.",
|
"editImpactInfo": "Изменение этого шаблона сообщений с уведомлениями повлияет на все политики, которые используют этот шаблон.",
|
||||||
"editMessage": "Изменить сообщение",
|
"editMessage": "Изменить сообщение",
|
||||||
"email": "электронная почта",
|
"email": "электронная почта",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "Нижний колонтитул сообщения электронной почты",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "Параметры колонтитулов для уведомлений по электронной почте зависят от параметров персонализации в узле администрирования клиента в Endpoint Manager.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "Заголовок сообщения электронной почты",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Настроить параметры персонализации",
|
||||||
"formSubTitle": "Создание или изменение электронных писем с уведомлениями.",
|
"formSubTitle": "Создание или изменение электронных писем с уведомлениями.",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Настройки верхнего и нижнего колонтитула",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Предварительный просмотр изображения",
|
||||||
"infotext": "Выберите уведомление. Чтобы создать уведомление, перейдите в подраздел \"Уведомление\" раздела \"Управление\" рабочей нагрузки \"Задание соответствия устройства требованиям\".",
|
"infotext": "Выберите уведомление. Чтобы создать уведомление, перейдите в подраздел \"Уведомление\" раздела \"Управление\" рабочей нагрузки \"Задание соответствия устройства требованиям\".",
|
||||||
"iwLink": "Ссылка на веб-сайт корпоративного портала",
|
"iwLink": "Показать ссылку на веб-сайт корпоративного портала",
|
||||||
"listEmpty": "Шаблонов сообщений нет.",
|
"listEmpty": "Шаблонов сообщений нет.",
|
||||||
"listEmptySelectOnly": "Шаблонов сообщений нет. Чтобы создать уведомление, откройте раздел \"Уведомления\" в разделе \"Управление\" рабочей нагрузки \"Задание соответствия устройства требованиям\".",
|
"listEmptySelectOnly": "Шаблонов сообщений нет. Чтобы создать уведомление, откройте раздел \"Уведомления\" в разделе \"Управление\" рабочей нагрузки \"Задание соответствия устройства требованиям\".",
|
||||||
"listSubTitle": "Список шаблонов сообщений с уведомлениями",
|
"listSubTitle": "Список шаблонов сообщений с уведомлениями",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Шаблоны уведомлений",
|
"notificationMessageTemplates": "Шаблоны уведомлений",
|
||||||
"rowValidationError": "Требуется минимум один шаблон сообщения.",
|
"rowValidationError": "Требуется минимум один шаблон сообщения.",
|
||||||
"selectDescription": "Выберите сообщение с уведомлением. Чтобы создать уведомление, перейдите в подраздел \"Уведомления\" раздела \"Управление\" рабочей нагрузки \"Задание соответствия устройства требованиям\".",
|
"selectDescription": "Выберите сообщение с уведомлением. Чтобы создать уведомление, перейдите в подраздел \"Уведомления\" раздела \"Управление\" рабочей нагрузки \"Задание соответствия устройства требованиям\".",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Стоимость арендатора",
|
||||||
"testEmailLabel": "Отправить предварительную версию электронного письма",
|
"testEmailLabel": "Отправить предварительную версию электронного письма",
|
||||||
"localeLabel": "Языковой стандарт",
|
"localeLabel": "Языковой стандарт",
|
||||||
"isDefaultLocale": "По умолчанию"
|
"isDefaultLocale": "По умолчанию"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "строка {0} из {1} столбца {2}"
|
"ariaLabel": "строка {0} из {1} столбца {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Начните с нуля и выберите нужные свойства в библиотеке доступных свойств инвентаризации"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Начните с нуля и выберите нужные параметры в библиотеке доступных параметров",
|
"subtitle": "Начните с нуля и выберите нужные параметры в библиотеке доступных параметров",
|
||||||
"title": "Каталог параметров"
|
"title": "Каталог параметров"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "Минимальная версия",
|
"minVersion": "Минимальная версия",
|
||||||
"nameHint": "Это основной видимый атрибут для идентификации набора ограничений.",
|
"nameHint": "Это основной видимый атрибут для идентификации набора ограничений.",
|
||||||
"noAssignmentsStatusBar": "Назначьте ограничение по меньшей мере одной группе. Щелкните \"Свойства\".",
|
"noAssignmentsStatusBar": "Назначьте ограничение по меньшей мере одной группе. Щелкните \"Свойства\".",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "Для изменения ограничений необходимо быть администратором.",
|
||||||
"notFound": "Ограничение не найдено. Возможно, оно уже удалено.",
|
"notFound": "Ограничение не найдено. Возможно, оно уже удалено.",
|
||||||
"personallyOwned": "Личные устройства",
|
"personallyOwned": "Личные устройства",
|
||||||
"restriction": "Ограничение",
|
"restriction": "Ограничение",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Политика соответствия для Windows 8",
|
"complianceWindows8": "Политика соответствия для Windows 8",
|
||||||
"complianceWindowsPhone": "Политика соответствия для Windows Phone",
|
"complianceWindowsPhone": "Политика соответствия для Windows Phone",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Каталог свойств",
|
||||||
"iosCustom": "Настраиваемая",
|
"iosCustom": "Настраиваемая",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Производные учетные данные PIV",
|
"iosDerivedCredentialAuthenticationConfiguration": "Производные учетные данные PIV",
|
||||||
"iosDeviceFeatures": "Функции устройства",
|
"iosDeviceFeatures": "Функции устройства",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Устройства Chrome OS (предварительная версия)"
|
"devices": "Устройства ChromeOS"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Контакты администратора",
|
"adminContacts": "Контакты администратора",
|
||||||
"appPackaging": "Упаковка приложений",
|
"appPackaging": "Упаковка приложений",
|
||||||
"businessGroups": "Бизнес-группы",
|
"autopatchGroups": "Группы автоисправления",
|
||||||
"devices": "Устройства",
|
"devices": "Устройства",
|
||||||
"feedback": "Отзывы и предложения",
|
"feedback": "Отзывы и предложения",
|
||||||
"gettingStarted": "Приступая к работе",
|
"gettingStarted": "Приступая к работе",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Настройка",
|
"brandingAndCustomization": "Настройка",
|
||||||
"cartProfiles": "Профили для покупок",
|
"cartProfiles": "Профили для покупок",
|
||||||
"certificateConnectors": "Соединители сертификатов",
|
"certificateConnectors": "Соединители сертификатов",
|
||||||
"chromeEnterprise": "Chrome Enterprise (предварительная версия)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Устройства с присоединением к облаку (предварительная версия)",
|
"cloudAttachedDevices": "Устройства с присоединением к облаку (предварительная версия)",
|
||||||
"cloudPcActions": "Действия облачного компьютера (предварительная версия)",
|
"cloudPcActions": "Действия облачного компьютера (предварительная версия)",
|
||||||
"cloudPcMaintenanceWindows": "Периоды обслуживания облачного компьютера (предварительная версия)",
|
"cloudPcMaintenanceWindows": "Периоды обслуживания облачного компьютера (предварительная версия)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "Состояние пользователя",
|
"userExecutionStatus": "Состояние пользователя",
|
||||||
"wdacSupplementalPolicies": "Дополнительные политики режима S",
|
"wdacSupplementalPolicies": "Дополнительные политики режима S",
|
||||||
"win32CatalogUpdateApp": "Обновления для приложений каталога Windows (Win32)",
|
"win32CatalogUpdateApp": "Обновления для приложений каталога Windows (Win32)",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Обновления для приложений каталога Windows (Win32) (предварительная версия)",
|
||||||
"windows10DriverUpdate": "Обновления драйверов для Windows 10 и более поздних версий",
|
"windows10DriverUpdate": "Обновления драйверов для Windows 10 и более поздних версий",
|
||||||
"windows10QualityUpdate": "Исправления для Windows 10 и более поздних версий",
|
"windows10QualityUpdate": "Исправления для Windows 10 и более поздних версий",
|
||||||
"windows10UpdateRings": "Круги обновления для Windows 10 и более поздних версий",
|
"windows10UpdateRings": "Круги обновления для Windows 10 и более поздних версий",
|
||||||
"windows10XPolicyFailures": "Сбои политики Windows 10X",
|
"windows10XPolicyFailures": "Сбои политики Windows 10X",
|
||||||
"windows365Connector": "Соединитель Citrix для Windows 365",
|
|
||||||
"windows365PartnerConnector": "Соединители партнеров Windows 365",
|
"windows365PartnerConnector": "Соединители партнеров Windows 365",
|
||||||
"windowsDiagnosticData": "Данные Windows",
|
"windowsDiagnosticData": "Данные Windows",
|
||||||
"windowsEnterpriseCertificate": "Сертификат Windows Корпоративная",
|
"windowsEnterpriseCertificate": "Сертификат Windows Корпоративная",
|
||||||
|
|||||||
+144
-105
@@ -227,7 +227,6 @@
|
|||||||
"co": "Korsikanska (Frankrike)",
|
"co": "Korsikanska (Frankrike)",
|
||||||
"cs": "Tjeckiska (Tjeckien)",
|
"cs": "Tjeckiska (Tjeckien)",
|
||||||
"da": "Danska (Danmark)",
|
"da": "Danska (Danmark)",
|
||||||
"prs": "Dari (Afghanistan)",
|
|
||||||
"dv": "Divehi (Maldiverna)",
|
"dv": "Divehi (Maldiverna)",
|
||||||
"et": "Estniska (Estland)",
|
"et": "Estniska (Estland)",
|
||||||
"fo": "Färöiska (Färöarna)",
|
"fo": "Färöiska (Färöarna)",
|
||||||
@@ -303,7 +302,7 @@
|
|||||||
"Category": {
|
"Category": {
|
||||||
"airPlay": "AirPlay",
|
"airPlay": "AirPlay",
|
||||||
"airPrint": "AirPrint",
|
"airPrint": "AirPrint",
|
||||||
"androidDefenderAtp": "Microsoft Defender for Endpoint",
|
"androidDefenderAtp": "Microsoft Defender för Endpoint",
|
||||||
"androidDeviceOwnerApplications": "Program",
|
"androidDeviceOwnerApplications": "Program",
|
||||||
"androidDeviceOwnerPolicyMessages": "Anpassad supportinformation",
|
"androidDeviceOwnerPolicyMessages": "Anpassad supportinformation",
|
||||||
"androidForWorkPassword": "Enhetslösenord",
|
"androidForWorkPassword": "Enhetslösenord",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender Antivirus",
|
"defender": "Microsoft Defender Antivirus",
|
||||||
"defenderAntivirus": "Microsoft Defender Antivirus",
|
"defenderAntivirus": "Microsoft Defender Antivirus",
|
||||||
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
||||||
"defenderFirewall": "Microsoft Defender-brandvägg",
|
"defenderFirewall": "Windows-brandväggen",
|
||||||
"defenderLocalSecurityOptions": "Säkerhetsalternativ för lokal enhet",
|
"defenderLocalSecurityOptions": "Säkerhetsalternativ för lokal enhet",
|
||||||
"defenderSecurityCenter": "Microsoft Defender Säkerhetscenter",
|
"defenderSecurityCenter": "Microsoft Defender Säkerhetscenter",
|
||||||
"deliveryOptimization": "Leveransoptimering",
|
"deliveryOptimization": "Leveransoptimering",
|
||||||
@@ -376,7 +375,7 @@
|
|||||||
"homeScreenLayout": "Hemskärmslayout",
|
"homeScreenLayout": "Hemskärmslayout",
|
||||||
"iOSWallpaper": "Skrivbordsunderlägg",
|
"iOSWallpaper": "Skrivbordsunderlägg",
|
||||||
"importedPFX": "PKCS-importerat certifikat",
|
"importedPFX": "PKCS-importerat certifikat",
|
||||||
"iosDefenderAtp": "Microsoft Defender for Endpoint",
|
"iosDefenderAtp": "Microsoft Defender för Endpoint",
|
||||||
"iosKiosk": "Kiosk",
|
"iosKiosk": "Kiosk",
|
||||||
"kernelExtensions": "Kerneltillägg",
|
"kernelExtensions": "Kerneltillägg",
|
||||||
"keyboardAndDictionary": "Tangentbord och ordlista",
|
"keyboardAndDictionary": "Tangentbord och ordlista",
|
||||||
@@ -390,7 +389,7 @@
|
|||||||
"logging": "Rapportering och telemetri",
|
"logging": "Rapportering och telemetri",
|
||||||
"loginItems": "Inloggningsalternativ",
|
"loginItems": "Inloggningsalternativ",
|
||||||
"loginWindow": "Inloggningsfönster",
|
"loginWindow": "Inloggningsfönster",
|
||||||
"macDefenderAtp": "Microsoft Defender for Endpoint",
|
"macDefenderAtp": "Microsoft Defender för Endpoint",
|
||||||
"maintenance": "Underhåll",
|
"maintenance": "Underhåll",
|
||||||
"malware": "Skadlig kod",
|
"malware": "Skadlig kod",
|
||||||
"messaging": "Meddelanden",
|
"messaging": "Meddelanden",
|
||||||
@@ -445,8 +444,8 @@
|
|||||||
"webContentFilter": "Webbinnehållsfilter",
|
"webContentFilter": "Webbinnehållsfilter",
|
||||||
"wiFi": "Trådlöst",
|
"wiFi": "Trådlöst",
|
||||||
"win10Wifi": "Trådlöst",
|
"win10Wifi": "Trådlöst",
|
||||||
"windowsAtp": "Microsoft Defender for Endpoint",
|
"windowsAtp": "Microsoft Defender för Endpoint",
|
||||||
"windowsDefenderATP": "Microsoft Defender for Endpoint",
|
"windowsDefenderATP": "Microsoft Defender för Endpoint",
|
||||||
"windowsHelloForBusiness": "Windows Hello för företag",
|
"windowsHelloForBusiness": "Windows Hello för företag",
|
||||||
"windowsSpotlight": "Windows Spotlight",
|
"windowsSpotlight": "Windows Spotlight",
|
||||||
"wiredNetwork": "Kabelanslutet nätverk",
|
"wiredNetwork": "Kabelanslutet nätverk",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Inaktiverat",
|
"disabled": "Inaktiverat",
|
||||||
"enabled": "Aktiverat",
|
"enabled": "Aktiverat",
|
||||||
"infoBalloonContent": "Kontrollera om den senaste Windows 10 funktionsuppdateringen för enheter som inte är berättigade till Windows 11",
|
"infoBalloonContent": "Kontrollera om den senaste Windows 10 funktionsuppdateringen för enheter som inte är berättigade till Windows 11",
|
||||||
"label": "När en enhet inte kan köra Windows 11 installerar du den senaste Windows 10 funktionsuppdateringen",
|
"label": "När en enhet inte är berättigad att köra Windows 11, installera den senaste Windows 10-funktionsuppdateringen",
|
||||||
"notApplicable": "Ej tillämpligt",
|
"notApplicable": "Ej tillämpligt",
|
||||||
"summaryLabel": "Installera Windows 10 på enheter som inte kan köra Windows 11"
|
"summaryLabel": "Installera Windows 10 på enheter som inte är berättigade att köra Windows 11"
|
||||||
},
|
},
|
||||||
"bladeTitle": "Funktionsuppdateringsdistributioner",
|
"bladeTitle": "Funktionsuppdateringsdistributioner",
|
||||||
"deploymentSettingsTitle": "Distributionsinställningar",
|
"deploymentSettingsTitle": "Distributionsinställningar",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"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:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: Tillåt mottagning av data i organisationsdokument eller konton från valfri app",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Ange det språk och den region som ska användas.",
|
"languageInfo": "Ange det språk och den region som ska användas.",
|
||||||
"licenseAgreement": "Licensvillkor för programvara från Microsoft",
|
"licenseAgreement": "Licensvillkor för programvara från Microsoft",
|
||||||
"licenseAgreementInfo": "Ange om licensavtalet ska visas för användarna.",
|
"licenseAgreementInfo": "Ange om licensavtalet ska visas för användarna.",
|
||||||
"plugAndForgetDevice": "Självdistribution (förhandsversion)",
|
"plugAndForgetDevice": "Självdistribution",
|
||||||
"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. ",
|
"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",
|
"privacySettings": "Sekretessinställningar",
|
||||||
"privacySettingsInfo": "Ange om sekretessinställningar ska visas för användarna.",
|
"privacySettingsInfo": "Ange om sekretessinställningar ska visas för användarna.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Misslyckas bara med valda blockeringsappar i teknikfasen (förhandsversion)",
|
"allowNonBlockingAppInstallation": "Misslyckas bara med valda blockeringsappar i teknikfasen",
|
||||||
"apps": "appar",
|
"apps": "appar",
|
||||||
"appsListName": "Programlista",
|
"appsListName": "Programlista",
|
||||||
"blockingApps": "Blockera appar",
|
"blockingApps": "Blockera appar",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Aktivitet",
|
"activity": "Aktivitet",
|
||||||
|
"activityName": "Namn på aktivitet",
|
||||||
"actor": "Initierat av (actor)",
|
"actor": "Initierat av (actor)",
|
||||||
|
"actorType": "Typ av aktör",
|
||||||
"app": "App",
|
"app": "App",
|
||||||
"appName": "Appnamn",
|
"appName": "Appnamn",
|
||||||
"applicationName": "Programnamn",
|
"applicationName": "Programnamn",
|
||||||
@@ -1207,7 +1208,7 @@
|
|||||||
"eventLevel": "Nivå",
|
"eventLevel": "Nivå",
|
||||||
"excluded": "Utesluten",
|
"excluded": "Utesluten",
|
||||||
"failure": "Fel",
|
"failure": "Fel",
|
||||||
"featureUpdateDeferral": "Uppskjuten funktion",
|
"featureUpdateDeferral": "Uppskjutningsperiod funktion",
|
||||||
"featureUpdateVersion": "Funktionsuppdateringsversion",
|
"featureUpdateVersion": "Funktionsuppdateringsversion",
|
||||||
"featureUpdatesPaused": "Funktion (pausad)",
|
"featureUpdatesPaused": "Funktion (pausad)",
|
||||||
"featureUpdatesStatus": "Funktion",
|
"featureUpdatesStatus": "Funktion",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "Anslutningsprogram för skydd mot mobilhot",
|
"mtdConnector": "Anslutningsprogram för skydd mot mobilhot",
|
||||||
"name": "Profilnamn",
|
"name": "Profilnamn",
|
||||||
"oSVersion": "Operativsystemversion",
|
"oSVersion": "Operativsystemversion",
|
||||||
|
"operationType": "Åtgärdstyp",
|
||||||
"os": "OS",
|
"os": "OS",
|
||||||
"packageName": "Paketnamn",
|
"packageName": "Paketnamn",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1242,7 +1244,7 @@
|
|||||||
"profiles": "Profiler",
|
"profiles": "Profiler",
|
||||||
"publicAddress": "Offentlig adress",
|
"publicAddress": "Offentlig adress",
|
||||||
"publisher": "Utgivare",
|
"publisher": "Utgivare",
|
||||||
"qualityUpdateDeferral": "Uppskjuten kvalitet",
|
"qualityUpdateDeferral": "Uppskjutningsperiod kvalitet",
|
||||||
"qualityUpdateRelease": "Kvalitetsuppdateringsversion",
|
"qualityUpdateRelease": "Kvalitetsuppdateringsversion",
|
||||||
"qualityUpdateVersion": "Kvalitetsuppdateringsversion",
|
"qualityUpdateVersion": "Kvalitetsuppdateringsversion",
|
||||||
"qualityUpdatesPaused": "Kvalitet (pausad)",
|
"qualityUpdatesPaused": "Kvalitet (pausad)",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"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."
|
"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."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Meddelandeappens namn"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "Paket-ID för meddelandeapp"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "URL-schema för meddelandeapp"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Organisationsdatameddelanden",
|
"label": "Organisationsdatameddelanden",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "Skyddade data kan inte skrivas ut från appen om det har inaktiverats."
|
"tooltip": "Skyddade data kan inte skrivas ut från appen om det har inaktiverats."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "När en användare väljer en hyperlänkad meddelandelänk i en app öppnas vanligtvis en meddelandeapp med telefonnumret ifyllt och redo att skicka. 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 SMS har tagits bort från listan över appar som ska undantas. Kontrollera sedan att programmet använder en nyare version av Intune SDK (version > 19.0.0).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Överför meddelandedata till",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "När en användare väljer en hyperlänkad meddelandelänk i en app öppnas vanligtvis en meddelandeapp med telefonnumret ifyllt och redo att skicka. 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."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Ta emot data från andra appar",
|
"label": "Ta emot data från andra appar",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "Tillåt webbautentiseringsprovidern för inloggning.",
|
"authenticationWebSignInDescription": "Tillåt webbautentiseringsprovidern för inloggning.",
|
||||||
"authenticationWebSignInName": "Webbinloggning (inaktuell inställning)",
|
"authenticationWebSignInName": "Webbinloggning (inaktuell inställning)",
|
||||||
"authorizedAppRulesDescription": "Använd godkända brandväggsregler i det lokala arkivet, så att de identifieras och tillämpas.",
|
"authorizedAppRulesDescription": "Använd godkända brandväggsregler i det lokala arkivet, så att de identifieras och tillämpas.",
|
||||||
"authorizedAppRulesName": "Microsoft Defender-brandväggsregler för auktoriserat program från lokalt arkiv",
|
"authorizedAppRulesName": "Regler för auktoriserat program för Windows-brandväggen från det lokala arkivet",
|
||||||
"authorizedUsersListHideAdminUsersName": "Dölj datorns administratörer",
|
"authorizedUsersListHideAdminUsersName": "Dölj datorns administratörer",
|
||||||
"authorizedUsersListHideLocalUsersName": "Dölj lokala användare",
|
"authorizedUsersListHideLocalUsersName": "Dölj lokala användare",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Dölj mobilkonton",
|
"authorizedUsersListHideMobileAccountsName": "Dölj mobilkonton",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Den här inställningen anger efter hur lång tid utan användaraktivitet som skärmen på den mobila enheten ska låsas. Rekommenderat värde: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Den här inställningen anger efter hur lång tid utan användaraktivitet som skärmen på den mobila enheten ska låsas. Rekommenderat värde: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Den här inställningen anger efter hur lång tid utan användarinmatning som enheten ska låsas. Rekommenderat värde: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Den här inställningen anger efter hur lång tid utan användarinmatning som enheten ska låsas. Rekommenderat värde: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximalt antal minuter av inaktivitet innan lösenord krävs",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximalt antal minuter av inaktivitet innan lösenord krävs",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Rekommenderat värde: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Välj den senaste operativsystemsversion en mobilenhet kan ha.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Välj den senaste operativsystemsversion en mobilenhet kan ha.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Högsta operativsystemsversion för mobila enheter",
|
"complianceMobileOsVersionRestrictionMaximumName": "Högsta operativsystemsversion för mobila enheter",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Välj den äldsta operativsystemsversion en mobilenhet kan ha.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Välj den äldsta operativsystemsversion en mobilenhet kan ha.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "Den här inställningen anger antalet senast använda lösenord som inte får återanvändas. Rekommenderat värde: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "Den här inställningen anger antalet senast använda lösenord som inte får återanvändas. Rekommenderat värde: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Antal tidigare lösenord för att förhindra återanvändning",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Antal tidigare lösenord för att förhindra återanvändning",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Rekommenderat värde: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Ange den senaste versionen för operativsystem som en enhet kan ha. Exempel: 20E252<br>Om du vill ange en Apple Rapid Security Response-uppdatering som högsta operativsystemversion anger du den kompletterande versionen. Exempel: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Ange den senaste versionen för operativsystem som en enhet kan ha. Exempel: 20E252<br>Om du vill ange en Apple Rapid Security Response-uppdatering som högsta operativsystemversion anger du den kompletterande versionen. Exempel: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Högsta operativsystembyggversion",
|
"complianceOsBuildVersionRestrictionMaximumName": "Högsta operativsystembyggversion",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Ange den äldsta versionen för operativsystem som en enhet kan ha. Exempel: 20E252<br>Om du vill ange en Apple Rapid Security Response-uppdatering som lägsta operativsystemversion anger du den kompletterande versionen. Exempel: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Ange den äldsta versionen för operativsystem som en enhet kan ha. Exempel: 20E252<br>Om du vill ange en Apple Rapid Security Response-uppdatering som lägsta operativsystemversion anger du den kompletterande versionen. Exempel: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Kräv att Microsoft Defender-säkerhetsinformationen ska vara uppdaterad.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Kräv att Microsoft Defender-säkerhetsinformationen ska vara uppdaterad.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware-säkerhetsinformationen är uppdaterad",
|
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware-säkerhetsinformationen är uppdaterad",
|
||||||
"complianceRequiredPasswordTypeDescription": "Den här inställningen anger om lösenord enbart får innehålla numeriska tecken, eller om de måste innehålla andra tecken än siffror. Rekommendationer: Krav på lösenordstyp: alfanumeriskt, minsta antal teckenuppsättningar: 1",
|
"complianceRequiredPasswordTypeDescription": "Den här inställningen anger om lösenord enbart får innehålla numeriska tecken, eller om de måste innehålla andra tecken än siffror. Rekommendationer: Krav på lösenordstyp: alfanumeriskt, minsta antal teckenuppsättningar: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Rekommendationer: Obligatorisk lösenordstyp: Alfanumeriskt, Minsta antal teckenuppsättningar: 1",
|
||||||
"complianceRootedAllowedDescription": "Förhindra företagsåtkomst för rotade enheter.",
|
"complianceRootedAllowedDescription": "Förhindra företagsåtkomst för rotade enheter.",
|
||||||
"complianceRootedAllowedName": "Rotade enheter",
|
"complianceRootedAllowedName": "Rotade enheter",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "Den här inställningen anger om enheten ska hindras från att använda USB-felsökningsfunktionen.",
|
"complianceSecurityDisableUSBDebuggingDescription": "Den här inställningen anger om enheten ska hindras från att använda USB-felsökningsfunktionen.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Välj den äldsta operativsystemversion en enhet kan ha. Operativsystemversionen definieras som major.minor.build.revision. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Välj den äldsta operativsystemversion en enhet kan ha. Operativsystemversionen definieras som major.minor.build.revision. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Välj den lösenordstyp som ska gälla på enheten.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Välj den lösenordstyp som ska gälla på enheten.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Typ av lösenord",
|
"complianceWindowsRequiredPasswordTypeName": "Typ av lösenord",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Kräv lösenord för att låsa upp arbetsprofil",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Säkerhet för arbetsprofil",
|
||||||
"compliantAppsOption": "Lista över kompatibla appar. Rapportera inkompatibilitet för installerade appar om inte finns i listan",
|
"compliantAppsOption": "Lista över kompatibla appar. Rapportera inkompatibilitet för installerade appar om inte finns i listan",
|
||||||
"computerNameStaticPrefixDescription": "Datorer tilldelas ett namn på 15 tecken. Ange ett prefix, de återstående 15 tecknen anges slumpmässigt.",
|
"computerNameStaticPrefixDescription": "Datorer tilldelas ett namn på 15 tecken. Ange ett prefix, de återstående 15 tecknen anges slumpmässigt.",
|
||||||
"computerNameStaticPrefixName": "Datornamnprefix",
|
"computerNameStaticPrefixName": "Datornamnprefix",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Lista över tillåtna Google-domäner",
|
"domainAllowListName": "Lista över tillåtna Google-domäner",
|
||||||
"domainAllowListTableEmptyValueExample": "Ange en domän",
|
"domainAllowListTableEmptyValueExample": "Ange en domän",
|
||||||
"domainAllowListTableName": "Domän",
|
"domainAllowListTableName": "Domän",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Microsoft Defender-brandväggsregler för auktoriserat program från lokalt arkiv (domännätverk)",
|
"domainAuthorizedAppRulesSummaryLabel": "Regler för auktoriserat program för Windows-brandväggen från det lokala arkivet (domännätverk)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Microsoft Defender-brandvägg (domännätverk)",
|
"domainFirewallEnabledSummaryLabel": "Windows-brandvägg (domännätverk)",
|
||||||
"domainGlobalRulesSummaryLabel": "Microsoft Defender-brandväggsregler för global port från lokalt arkiv (domännätverk)",
|
"domainGlobalRulesSummaryLabel": "Globala portregler för Windows-brandväggen från det lokala arkivet (domännätverk)",
|
||||||
"domainIPsecRulesSummaryLabel": "IPsec-regler från det lokala arkivet (domännätverk)",
|
"domainIPsecRulesSummaryLabel": "IPsec-regler från det lokala arkivet (domännätverk)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "Undantag av IPSec-skyddade paket med dolt läge (domännätverk)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "Undantag av IPSec-skyddade paket med dolt läge (domännätverk)",
|
||||||
"domainInboundConnectionsSummaryLabel": "Standardåtgärd för inkommande anslutningar (domännätverk)",
|
"domainInboundConnectionsSummaryLabel": "Standardåtgärd för inkommande anslutningar (domännätverk)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Inkommande meddelanden (domännätverk)",
|
"domainInboundNotificationsSummaryLabel": "Inkommande meddelanden (domännätverk)",
|
||||||
"domainLocalStoreSummaryLabel": "Microsoft Defender-brandväggsregler från lokalt arkiv (domännätverk)",
|
"domainLocalStoreSummaryLabel": "Windows-brandväggsregler från lokalt arkiv (domännätverk)",
|
||||||
"domainNameSourceOption": "Källa för användardomännamn",
|
"domainNameSourceOption": "Källa för användardomännamn",
|
||||||
"domainNetworkName": "Domännätverk (arbetsyta)",
|
"domainNetworkName": "Domännätverk (arbetsyta)",
|
||||||
"domainOutboundConnectionsSummaryLabel": "Standardåtgärd för utgående anslutningar (domännätverk)",
|
"domainOutboundConnectionsSummaryLabel": "Standardåtgärd för utgående anslutningar (domännätverk)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Enkel inloggning med alternativt certifikat",
|
"enableSingleSignOnName": "Enkel inloggning med alternativt certifikat",
|
||||||
"enableUsePrivateStoreOnly": "Använd endast privat katalog",
|
"enableUsePrivateStoreOnly": "Använd endast privat katalog",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Tillåter endast nedladdning av appar från en privat katalog och inte från den gemensamma.",
|
"enableUsePrivateStoreOnlyDescription": "Tillåter endast nedladdning av appar från en privat katalog och inte från den gemensamma.",
|
||||||
"enableWindowsDefenderFirewallName": "Microsoft Defender-brandvägg",
|
"enableWindowsDefenderFirewallName": "Windows-brandvägg",
|
||||||
"enableWithUEFILock": "Aktivera med UEFI-lås",
|
"enableWithUEFILock": "Aktivera med UEFI-lås",
|
||||||
"enableWithoutUEFILock": "Aktivera utan UEFI-lås",
|
"enableWithoutUEFILock": "Aktivera utan UEFI-lås",
|
||||||
"enabledForAzureAdAndHybridOption": "Nyckelrotering har aktiverats för Microsoft Entra-anslutna och hybridanslutna enheter",
|
"enabledForAzureAdAndHybridOption": "Nyckelrotering har aktiverats för Microsoft Entra-anslutna och hybridanslutna enheter",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Blockera inkommande anslutningar för följande appar:",
|
"firewallAppsBlockedHeader": "Blockera inkommande anslutningar för följande appar:",
|
||||||
"firewallAppsBlockedPageDescription": "Välj appar som ska blockera inkommande anslutningar.",
|
"firewallAppsBlockedPageDescription": "Välj appar som ska blockera inkommande anslutningar.",
|
||||||
"firewallAppsBlockedPageName": "Blockerade appar",
|
"firewallAppsBlockedPageName": "Blockerade appar",
|
||||||
"firewallCreateRules": "Skapa regler för Microsoft Defender-brandväggen. En Endpoint Protection-profil kan innehålla upp till 150 regler.",
|
"firewallCreateRules": "Skapa Windows-brandväggsregler. En Endpoint Protection-profil kan innehålla upp till 150 regler.",
|
||||||
"firewallRequiredDescription": "Kräv aktiverad brandvägg",
|
"firewallRequiredDescription": "Kräv aktiverad brandvägg",
|
||||||
"firewallRequiredName": "Brandvägg",
|
"firewallRequiredName": "Brandvägg",
|
||||||
"firewallRuleAction": "Åtgärd",
|
"firewallRuleAction": "Åtgärd",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Kanal för allmän tillgänglighet",
|
"generalAvailabilityChannel": "Kanal för allmän tillgänglighet",
|
||||||
"generalNetworkSettingsHeader": "Allmänt",
|
"generalNetworkSettingsHeader": "Allmänt",
|
||||||
"genericLocalUsersOrGroupsName": "Allmänna lokala användare eller grupper",
|
"genericLocalUsersOrGroupsName": "Allmänna lokala användare eller grupper",
|
||||||
"globalConfigurationsDescription": "Ställ in Microsoft Defender-brandväggsinställningar för alla nätverkstyper.",
|
"globalConfigurationsDescription": "Ställ in Windows-brandväggsinställningar för alla nätverkstyper.",
|
||||||
"globalConfigurationsName": "Globala inställningar",
|
"globalConfigurationsName": "Globala inställningar",
|
||||||
"globalRulesDescription": "Använd globala portbrandväggsregler i det lokala arkivet, så att de identifieras och tillämpas.",
|
"globalRulesDescription": "Använd globala portbrandväggsregler i det lokala arkivet, så att de identifieras och tillämpas.",
|
||||||
"globalRulesName": "Microsoft Defender-brandväggsregler för global port från lokalt arkiv",
|
"globalRulesName": "Globala portregler för Windows-brandväggen från det lokala arkivet",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "E-postadresser för Google-konto",
|
"googleAccountEmailAddresses": "E-postadresser för Google-konto",
|
||||||
"googleAccountEmailAddressesDescription": "Semikolonavgränsad lista över e-postadresser",
|
"googleAccountEmailAddressesDescription": "Semikolonavgränsad lista över e-postadresser",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Fråga om autentiseringsuppgifter på skyddat skrivbord",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Fråga om autentiseringsuppgifter på skyddat skrivbord",
|
||||||
"localServerCachingHeader": "Lokal servercachelagring",
|
"localServerCachingHeader": "Lokal servercachelagring",
|
||||||
"localStoreDescription": "Använd globala brandväggsregler från det lokala arkivet, så att de identifieras och tillämpas.",
|
"localStoreDescription": "Använd globala brandväggsregler från det lokala arkivet, så att de identifieras och tillämpas.",
|
||||||
"localStoreName": "Microsoft Defender-brandväggsregler från det lokala arkivet",
|
"localStoreName": "Windows-brandväggsregler från det lokala arkivet",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Ange om en användarangiven inställning för att styra skärmtidsgräns i låsskärmsläge ska visas på Windows 10 Mobile-enheter. Om principen ställs in på Tillåt ignoreras det inställda skärmtidsgränsvärdet.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Ange om en användarangiven inställning för att styra skärmtidsgräns i låsskärmsläge ska visas på Windows 10 Mobile-enheter. Om principen ställs in på Tillåt ignoreras det inställda skärmtidsgränsvärdet.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Skärmtidsgräns kan ställas in av användaren (endast Mobile)",
|
"lockScreenAllowTimeoutConfigurationName": "Skärmtidsgräns kan ställas in av användaren (endast Mobile)",
|
||||||
"lockScreenBackgroundImageURLDescription": "Anpassad webbadress till bakgrundsbild för välkomstskärm. Måste vara en .png-fil med slutpunkt https://",
|
"lockScreenBackgroundImageURLDescription": "Anpassad webbadress till bakgrundsbild för välkomstskärm. Måste vara en .png-fil med slutpunkt https://",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "Högsta överföringsenhet måste vara mellan 1 280 och 1 400 byte",
|
"mTUSizeInBytesBounds": "Högsta överföringsenhet måste vara mellan 1 280 och 1 400 byte",
|
||||||
"mTUSizeInBytesName": "Högsta överföringsenhet",
|
"mTUSizeInBytesName": "Högsta överföringsenhet",
|
||||||
"mTUSizeInBytesToolTip": "Det största datapaketet, i byte, som kan överföras på nätverket. Om inget har angetts är standardstorleken i Apple 1 280 byte. Avser iOS 14 och senare.",
|
"mTUSizeInBytesToolTip": "Det största datapaketet, i byte, som kan överföras på nätverket. Om inget har angetts är standardstorleken i Apple 1 280 byte. Avser iOS 14 och senare.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Använd slumpmässig MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Använd enhetens standard",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Använd endast slumpmässig MAC vid behov, t.ex. för NAC-stöd. Användare kan ändra den här inställningen. Gäller Android 13 och senare.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Använd enhetens MAC",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "Slumpgenerering av MAC-adress",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store och identifierade utvecklare",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store och identifierade utvecklare",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Blockerar AirPlay, skärmdelning med andra enheter och en Klassrum-appfunktion som används av lärarna för att visa elevernas skärmar. Den här inställningen är inte tillgänglig om du har blockerat skärmbilder.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Blockerar AirPlay, skärmdelning med andra enheter och en Klassrum-appfunktion som används av lärarna för att visa elevernas skärmar. Den här inställningen är inte tillgänglig om du har blockerat skärmbilder.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Ange ett tal (4–16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Ange ett tal (4–16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Ange ett tal (6–16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Ange ett tal (6–16)",
|
||||||
"minimumPasswordLengthName": "Minsta längd på lösenord",
|
"minimumPasswordLengthName": "Minsta längd på lösenord",
|
||||||
|
"minimumPasswordLengthTooltipText": "Ange ett tal",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Uppdateringar som saknas installeras automatiskt",
|
"minimumUpdateAutoInstallClassificationDescription": "Uppdateringar som saknas installeras automatiskt",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Installera angiven klassificering av uppdateringar",
|
"minimumUpdateAutoInstallClassificationName": "Installera angiven klassificering av uppdateringar",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Viktigt",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Viktigt",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Använd manuell proxyserver",
|
"networkProxyUseManualServerName": "Använd manuell proxyserver",
|
||||||
"networkProxyUseScriptUrlName": "Använd proxyskript",
|
"networkProxyUseScriptUrlName": "Använd proxyskript",
|
||||||
"networkSettingsName": "Nätverksinställningar",
|
"networkSettingsName": "Nätverksinställningar",
|
||||||
"networkSettingsSubtitle": "Ställ in Microsoft Defender-brandväggsinställningar för särskilda nätverkstyper.",
|
"networkSettingsSubtitle": "Ställ in Windows-brandväggsinställningar för särskilda typer av nätverk.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Lägg till hanterade iOS-appar som inte får använda mobildata.",
|
"networkUsageRulesBlockCellularHeaderName": "Lägg till hanterade iOS-appar som inte får använda mobildata.",
|
||||||
"networkUsageRulesBlockCellularName": "Blockera användning av mobildata",
|
"networkUsageRulesBlockCellularName": "Blockera användning av mobildata",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Lägg till hanterade iOS-appar som inte får använda mobildata vid nätverksväxling.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Lägg till hanterade iOS-appar som inte får använda mobildata vid nätverksväxling.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "Appar och processer",
|
"privacyPreferencesTableName": "Appar och processer",
|
||||||
"privacyPublishUserActivitiesDescription": "Blockera delade upplevelser/identifiering av nyligen använda resurser i aktivitetsväxlaren osv.",
|
"privacyPublishUserActivitiesDescription": "Blockera delade upplevelser/identifiering av nyligen använda resurser i aktivitetsväxlaren osv.",
|
||||||
"privacyPublishUserActivitiesName": "Publicera användaraktiviteter",
|
"privacyPublishUserActivitiesName": "Publicera användaraktiviteter",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Microsoft Defender-brandväggsregler för auktoriserat program från lokalt arkiv (privata nätverk)",
|
"privateAuthorizedAppRulesSummaryLabel": "Regler för auktoriserat program för Windows-brandväggen från det lokala arkivet (privata nätverk)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Microsoft Defender-brandvägg (privata nätverk)",
|
"privateFirewallEnabledSummaryLabel": "Windows-brandvägg (privata nätverk)",
|
||||||
"privateGlobalRulesSummaryLabel": "Microsoft Defender-brandväggsregler för global port från lokalt arkiv (privata nätverk)",
|
"privateGlobalRulesSummaryLabel": "Globala portregler för Windows-brandväggen från det lokala arkivet (privata nätverk)",
|
||||||
"privateIPsecRulesSummaryLabel": "IPsec-regler från det lokala arkivet (privata nätverk)",
|
"privateIPsecRulesSummaryLabel": "IPsec-regler från det lokala arkivet (privata nätverk)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "Undantag av IPSec-skyddade paket med dolt läge (privata nätverk)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "Undantag av IPSec-skyddade paket med dolt läge (privata nätverk)",
|
||||||
"privateInboundConnectionsSummaryLabel": "Standardåtgärd för inkommande anslutningar (privata nätverk)",
|
"privateInboundConnectionsSummaryLabel": "Standardåtgärd för inkommande anslutningar (privata nätverk)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Inkommande meddelanden (privata nätverk)",
|
"privateInboundNotificationsSummaryLabel": "Inkommande meddelanden (privata nätverk)",
|
||||||
"privateLocalStoreSummaryLabel": "Microsoft Defender-brandväggsregler från lokalt arkiv (privata nätverk)",
|
"privateLocalStoreSummaryLabel": "Windows-brandväggsregler från lokalt arkiv (privata nätverk)",
|
||||||
"privateNetworkName": "Privat (synligt) nätverk",
|
"privateNetworkName": "Privat (synligt) nätverk",
|
||||||
"privateOutboundConnectionsSummaryLabel": "Standardåtgärd för utgående anslutningar (privata nätverk)",
|
"privateOutboundConnectionsSummaryLabel": "Standardåtgärd för utgående anslutningar (privata nätverk)",
|
||||||
"privateShieldedSummaryLabel": "Skärmat (privata nätverk)",
|
"privateShieldedSummaryLabel": "Skärmat (privata nätverk)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "Webbadress till proxyserver",
|
"proxyServerURLName": "Webbadress till proxyserver",
|
||||||
"proxyServersAutoDetectionName": "Autoidentifiering av andra företags proxyservrar",
|
"proxyServersAutoDetectionName": "Autoidentifiering av andra företags proxyservrar",
|
||||||
"proxyUrlExample": "t.ex. itgproxy.contoso.com",
|
"proxyUrlExample": "t.ex. itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Microsoft Defender-brandväggsregler för auktoriserat program från lokalt arkiv (offentliga nätverk)",
|
"publicAuthorizedAppRulesSummaryLabel": "Regler för auktoriserat program för Windows-brandväggen från det lokala arkivet (offentliga nätverk)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Microsoft Defender-brandvägg (offentliga nätverk)",
|
"publicFirewallEnabledSummaryLabel": "Windows-brandvägg (offentliga nätverk)",
|
||||||
"publicGlobalRulesSummaryLabel": "Microsoft Defender-brandväggsregler för global port från lokalt arkiv (offentliga nätverk)",
|
"publicGlobalRulesSummaryLabel": "Globala portregler för Windows-brandväggen från det lokala arkivet (offentliga nätverk)",
|
||||||
"publicIPsecRulesSummaryLabel": "IPsec-regler från det lokala arkivet (offentliga nätverk)",
|
"publicIPsecRulesSummaryLabel": "IPsec-regler från det lokala arkivet (offentliga nätverk)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "Undantag av IPSec-skyddade paket med dolt läge (offentliga nätverk)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "Undantag av IPSec-skyddade paket med dolt läge (offentliga nätverk)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Standardåtgärd för inkommande anslutningar (offentliga nätverk)",
|
"publicInboundConnectionsSummaryLabel": "Standardåtgärd för inkommande anslutningar (offentliga nätverk)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Inkommande meddelanden (offentliga nätverk)",
|
"publicInboundNotificationsSummaryLabel": "Inkommande meddelanden (offentliga nätverk)",
|
||||||
"publicLocalStoreSummaryLabel": "Microsoft Defender-brandväggsregler från lokalt arkiv (offentliga nätverk)",
|
"publicLocalStoreSummaryLabel": "Windows-brandväggsregler från det lokala arkivet (offentliga nätverk)",
|
||||||
"publicNetworkName": "Offentligt (osynligt) nätverk",
|
"publicNetworkName": "Offentligt (osynligt) nätverk",
|
||||||
"publicOutboundConnectionsSummaryLabel": "Standardåtgärd för utgående anslutningar (offentliga nätverk)",
|
"publicOutboundConnectionsSummaryLabel": "Standardåtgärd för utgående anslutningar (offentliga nätverk)",
|
||||||
"publicPlayStoreEnabledDescription": "Användarna får åtkomst till alla appar, förutom dem du har krävt ska avinstalleras i klientappar. Om du väljer Inte konfigurerat för den här inställningen har användarna bara åtkomst till de appar du listat som tillgängliga eller nödvändiga i klientappar.",
|
"publicPlayStoreEnabledDescription": "Användarna får åtkomst till alla appar, förutom dem du har krävt ska avinstalleras i klientappar. Om du väljer Inte konfigurerat för den här inställningen har användarna bara åtkomst till de appar du listat som tillgängliga eller nödvändiga i klientappar.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Registrera till programvaruprovider för nyckellagring",
|
"sCEPPolicyEnrollToSoftwareKSP": "Registrera till programvaruprovider för nyckellagring",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Registrera till nyckellagringsprovider för TPM (Trusted Platform Module), rapportera annars fel",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Registrera till nyckellagringsprovider för TPM (Trusted Platform Module), rapportera annars fel",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Registrera till nyckellagringsprovider för TPM (Trusted Platform Module) om TPM finns, annars till programvaruprovider för nyckellagring",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Registrera till nyckellagringsprovider för TPM (Trusted Platform Module) om TPM finns, annars till programvaruprovider för nyckellagring",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "VARNING! Varken EKU för alla syften (OID 2.5.29.37.0) eller EKU för appprinciper (OID 1.3.6.1.4.1.311.10.12.1) kan användas med en certifikatutfärdare som skapats i Microsoft Cloud PKI.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "I de flesta fall krävs minst klientautentisering för certifikatet så att användaren eller enheten kan autentiseras till en server. Men du kan också ange andra användningstyper för att ytterligare definiera syftet med nyckeln.",
|
"sCEPPolicyExtendedKeyUsageDescription": "I de flesta fall krävs minst klientautentisering för certifikatet så att användaren eller enheten kan autentiseras till en server. Men du kan också ange andra användningstyper för att ytterligare definiera syftet med nyckeln.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Förbättrad nyckelanvändning",
|
"sCEPPolicyExtendedKeyUsageName": "Förbättrad nyckelanvändning",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Använd en typ av hashalgoritm med certifikatet. Se till att välja den starkaste säkerhetsnivån som kan användas med de anslutande enheterna.",
|
"sCEPPolicyHashAlgorithmDescription": "Använd en typ av hashalgoritm med certifikatet. Se till att välja den starkaste säkerhetsnivån som kan användas med de anslutande enheterna.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Ange antalet dagar (1–255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Ange antalet dagar (1–255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Ange antal dagar (1–365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Ange antal dagar (1–365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Lösenordets giltighetstid (dagar)",
|
"workProfilePasswordExpirationInDaysName": "Lösenordets giltighetstid (dagar)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Ange antal dagar",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Lösenord för arbetsprofil: Minsta längd på lösenord",
|
"workProfilePasswordMinimumLengthReportingName": "Lösenord för arbetsprofil: Minsta längd på lösenord",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Lösenord för arbetsprofil: antal tecken som krävs",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Lösenord för arbetsprofil: antal tecken som krävs",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Lösenord för arbetsprofil: Antal gemener som krävs",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Lösenord för arbetsprofil: Antal gemener som krävs",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "Valfri app",
|
"anyAppOptionText": "Valfri app",
|
||||||
"anyDestinationAnySourceOptionText": "Alla mål och alla källor",
|
"anyDestinationAnySourceOptionText": "Alla mål och alla källor",
|
||||||
"anyDialerAppOptionText": "Valfri uppringningsapp",
|
"anyDialerAppOptionText": "Valfri uppringningsapp",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "Valfri meddelandeapp",
|
||||||
"anyPolicyManagedDialerAppOptionText": "Valfri principhanterad uppringningsapp",
|
"anyPolicyManagedDialerAppOptionText": "Valfri principhanterad uppringningsapp",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "Alla principhanterade meddelandeappar",
|
||||||
"appAdded": "Appen har lagts till",
|
"appAdded": "Appen har lagts till",
|
||||||
"appBasedConditionalAccess": "Appbaserad villkorlig åtkomst",
|
"appBasedConditionalAccess": "Appbaserad villkorlig åtkomst",
|
||||||
"appColumnLabel": "App",
|
"appColumnLabel": "App",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "ID för hanterad mobilenhet",
|
"mdmDeviceId": "ID för hanterad mobilenhet",
|
||||||
"mdmWipInvalidVersionSettings": "En eller flera appar innehåller ogiltiga definitioner av högsta och lägsta tillåtna version.<br /> <br />Enligt Windows informationsskydd med registreringsprinciper kan du bara ange en version, såvida de inte är likvärdiga. Om endast den lägsta versionen anges, ställs regeln in på större än eller lika med den lägsta versionen. Och om endast maxversionen anges, ställs regeln in på mindre än lika med maxversionen.",
|
"mdmWipInvalidVersionSettings": "En eller flera appar innehåller ogiltiga definitioner av högsta och lägsta tillåtna version.<br /> <br />Enligt Windows informationsskydd med registreringsprinciper kan du bara ange en version, såvida de inte är likvärdiga. Om endast den lägsta versionen anges, ställs regeln in på större än eller lika med den lägsta versionen. Och om endast maxversionen anges, ställs regeln in på mindre än lika med maxversionen.",
|
||||||
"mdmWipReport": "Rapport över Windows informationsskydd med mobilenhetshantering",
|
"mdmWipReport": "Rapport över Windows informationsskydd med mobilenhetshantering",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Meddelandeappens namn (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "Paket-ID för meddelandeapp (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "URL-schema för meddelandeapp (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender för Endpoint",
|
"microsoftDefenderForEndpoint": "Microsoft Defender för Endpoint",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "Lägsta appversion",
|
"minAppVersion": "Lägsta appversion",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Inställningskatalog",
|
"settingsCatalog": "Inställningskatalog",
|
||||||
"settingsSelectorLabel": "Inställningar",
|
"settingsSelectorLabel": "Inställningar",
|
||||||
"silent": "Tyst",
|
"silent": "Tyst",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "En specifik meddelandeapp",
|
||||||
"specificUserIsLicensedIntune": "{0} är licensierad för Microsoft Intune.",
|
"specificUserIsLicensedIntune": "{0} är licensierad för Microsoft Intune.",
|
||||||
"state": "Tillstånd",
|
"state": "Tillstånd",
|
||||||
"status": "Status",
|
"status": "Status",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Microsoft Edge-baslinje",
|
"edgeSecurityBaseline": "Microsoft Edge-baslinje",
|
||||||
"edgeSecurityBaselinePreview": "Förhandsversion: Microsoft Edge-baslinje",
|
"edgeSecurityBaselinePreview": "Förhandsversion: Microsoft Edge-baslinje",
|
||||||
"editionUpgradeConfiguration": "Utgåveuppgradering och lägesväxling",
|
"editionUpgradeConfiguration": "Utgåveuppgradering och lägesväxling",
|
||||||
"firewall": "Microsoft Defender-brandvägg",
|
"firewall": "Windows-brandvägg",
|
||||||
"firewallRules": "Microsoft Defender-brandväggsregler",
|
"firewallRules": "Windows-brandväggsregler",
|
||||||
"identityProtection": "Kontoskydd",
|
"identityProtection": "Kontoskydd",
|
||||||
"identityProtectionPreview": "Kontoskydd (förhandsversion)",
|
"identityProtectionPreview": "Kontoskydd (förhandsversion)",
|
||||||
"mDMSecurityBaseline1810": "MDM-säkerhetsbaslinje för Windows 10 och senare för oktober 2018",
|
"mDMSecurityBaseline1810": "MDM-säkerhetsbaslinje för Windows 10 och senare för oktober 2018",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Förhandsversion: Microsoft Office O365-baslinje",
|
"office365BaselinePreview": "Förhandsversion: Microsoft Office O365-baslinje",
|
||||||
"securityBaselines": "Säkerhetsbaslinjer",
|
"securityBaselines": "Säkerhetsbaslinjer",
|
||||||
"test": "Testmall",
|
"test": "Testmall",
|
||||||
"testFirewallRulesSecurityTemplateName": "Microsoft Defender-brandväggsregler (test)",
|
"testFirewallRulesSecurityTemplateName": "Windows-brandväggsregler (test)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Kontoskydd (test)",
|
"testIdentityProtectionSecurityTemplateName": "Kontoskydd (test)",
|
||||||
"windowsSecurityExperience": "Windows-säkerhetsupplevelse"
|
"windowsSecurityExperience": "Windows-säkerhetsupplevelse"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Microsoft Defender-brandväggen"
|
"mDE": "Windows-brandvägg"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Microsoft Defender-brandväggsregler"
|
"mDE": "Windows-brandväggsregler"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "Inställningar för flytt av känd mapp i OneDrive: Windows 10 i molnkonfigurationsmallen. https://aka.ms/CloudConfigGuide"
|
"description": "Inställningar för flytt av känd mapp i OneDrive: Windows 10 i molnkonfigurationsmallen. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Konfiguration för hantering av mobil enhet",
|
"expeditedCheckin": "Konfiguration för hantering av mobil enhet",
|
||||||
"exploitProtection": "Sårbarhetsskydd",
|
"exploitProtection": "Sårbarhetsskydd",
|
||||||
"extensions": "Tillägg",
|
"extensions": "Tillägg",
|
||||||
"hardwareConfigurations": "BIOS-konfigurationer",
|
"hardwareConfigurations": "BIOS-konfigurationer och andra inställningar",
|
||||||
"identityProtection": "Identitetsskydd",
|
"identityProtection": "Identitetsskydd",
|
||||||
"iosCompliancePolicy": "Kompatibilitetsprincip för iOS",
|
"iosCompliancePolicy": "Kompatibilitetsprincip för iOS",
|
||||||
"kiosk": "Kiosk",
|
"kiosk": "Kiosk",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
|
"microsoftDefenderAntivirus": "Microsoft Defender Antivirus",
|
||||||
"microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-uteslutning",
|
"microsoftDefenderAntivirusexclusions": "Microsoft Defender Antivirus-uteslutning",
|
||||||
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender för Endpoint (stationära enheter som kör Windows 10 eller senare)",
|
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender för Endpoint (stationära enheter som kör Windows 10 eller senare)",
|
||||||
"microsoftDefenderFirewallRules": "Microsoft Defender-brandväggsregler",
|
"microsoftDefenderFirewallRules": "Windows-brandväggsregler",
|
||||||
"microsoftEdgeBaseline": "Säkerhetsbaslinje för Microsoft Edge",
|
"microsoftEdgeBaseline": "Säkerhetsbaslinje för Microsoft Edge",
|
||||||
"mxProfileZebraOnly": "MX-profil (endast Zebra)",
|
"mxProfileZebraOnly": "MX-profil (endast Zebra)",
|
||||||
"networkBoundary": "Nätverksgräns",
|
"networkBoundary": "Nätverksgräns",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Betrott certifikat – TEST",
|
"windows10XTrustedCertificate": "Betrott certifikat – TEST",
|
||||||
"windows10XVPN": "VPN – TEST",
|
"windows10XVPN": "VPN – TEST",
|
||||||
"windows10XWifi": "WIFI – TEST",
|
"windows10XWifi": "WIFI – TEST",
|
||||||
|
"windows11SecurityBaseline": "Säkerhetsbaslinje för Windows 10 och senare",
|
||||||
"windows8CompliancePolicy": "Kompatibilitetsprincip för Windows 8",
|
"windows8CompliancePolicy": "Kompatibilitetsprincip för Windows 8",
|
||||||
"windowsHealthMonitoring": "Hälsoövervakning i Windows",
|
"windowsHealthMonitoring": "Hälsoövervakning i Windows",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Konfigurera enheter för inledande etablering och tilldela till användare.",
|
"description": "Konfigurera enheter för inledande etablering.",
|
||||||
"title": "Enhetsförberedelse"
|
"title": "Enhetsförberedelse"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Godkänn och distribuera drivrutinsuppdateringar manuellt"
|
"manual": "Godkänn och distribuera drivrutinsuppdateringar manuellt"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Massåtgärder"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} dagar"
|
"value": "{0} dagar"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Välj en åtgärd nedan.",
|
||||||
"label": "Driver action",
|
"label": "Drivrutinsåtgärd",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Välj en åtgärd"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Drivrutiner som ingår"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Välj drivrutiner som ska ingå i massåtgärden"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Välj drivrutiner som ska inkluderas"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "Högst hundra drivrutiner kan väljas"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "Minst en drivrutin ska väljas"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Valda drivrutiner"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Gör tillgängligt i Windows Update",
|
||||||
"bladeTitle": "Drivrutinsuppdateringar Windows 10 och senare (förhandsversion)",
|
"bladeTitle": "Drivrutinsuppdateringar Windows 10 och senare (förhandsversion)",
|
||||||
"lastSync": "Senaste synkronisering:",
|
"lastSync": "Senaste synkronisering:",
|
||||||
"lastSyncDefaultText": "Väntar på inledande inventeringsinsamling",
|
"lastSyncDefaultText": "Väntar på inledande inventeringsinsamling",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Välj ett aviseringsmeddelande från vänster och förhandsvisa innehållet."
|
"placeholder": "Välj ett aviseringsmeddelande från vänster och förhandsvisa innehållet."
|
||||||
},
|
},
|
||||||
"companyContact": "E-postsidfot: ange kontaktuppgifter",
|
"companyContact": "Visa kontaktuppgifter",
|
||||||
"companyLogo": "E-postsidhuvud: ange företagslogotyp",
|
"companyLogo": "Visa företagslogotyp",
|
||||||
"companyName": "E-post-sidfot: ange företagsnamn",
|
"companyName": "Visa företagsnamn",
|
||||||
"createEditDescription": "Skapa eller redigera mallar för aviseringsmeddelanden.",
|
"createEditDescription": "Skapa eller redigera mallar för aviseringsmeddelanden.",
|
||||||
"createMessage": "Skapa meddelande",
|
"createMessage": "Skapa meddelande",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Visa enhetsinformation",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "Den här inställningen är inaktiverad som standard eftersom hämtning av enhetsinformation kan orsaka en fördröjning i e-postaviseringar som tas emot.",
|
||||||
"editImpactInfo": "När du redigerar den här notismeddelandemallen påverkas alla principer där mallen används.",
|
"editImpactInfo": "När du redigerar den här notismeddelandemallen påverkas alla principer där mallen används.",
|
||||||
"editMessage": "Redigera meddelande",
|
"editMessage": "Redigera meddelande",
|
||||||
"email": "e-post",
|
"email": "e-post",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "E-postsidfot",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "Inställningarna för e-posthuvud och sidfot för e-postmeddelanden beror på de anpassade inställningarna för klientadministratörsnoden i Endpoint Manager.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "E-postsidhuvud",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Ställ in anpassningsinställningar",
|
||||||
"formSubTitle": "Skapa eller ändra e-postaviseringar",
|
"formSubTitle": "Skapa eller ändra e-postaviseringar",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Inställningar för sidhuvud och sidfot",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Förhandsvisning av avbildning",
|
||||||
"infotext": "Välj ett aviseringsmeddelande. Om du vill skapa en ny avisering går du till Aviseringar i hanteringsavsnittet i arbetsbelastningen Ange enhetsefterlevnad.",
|
"infotext": "Välj ett aviseringsmeddelande. Om du vill skapa en ny avisering går du till Aviseringar i hanteringsavsnittet i arbetsbelastningen Ange enhetsefterlevnad.",
|
||||||
"iwLink": "Länk till företagsportalens webbplats",
|
"iwLink": "Visa länken till företagsportalens webbplats",
|
||||||
"listEmpty": "Inga meddelandemallar.",
|
"listEmpty": "Inga meddelandemallar.",
|
||||||
"listEmptySelectOnly": "Inga meddelandemallar. Om du vill skapa en ny avisering går du till Aviseringar i hanteringsavsnittet i arbetsbelastningen Ange enhetsefterlevnad.",
|
"listEmptySelectOnly": "Inga meddelandemallar. Om du vill skapa en ny avisering går du till Aviseringar i hanteringsavsnittet i arbetsbelastningen Ange enhetsefterlevnad.",
|
||||||
"listSubTitle": "Lista över mallar för e-postaviseringar",
|
"listSubTitle": "Lista över mallar för e-postaviseringar",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Mallar för aviseringsmeddelanden",
|
"notificationMessageTemplates": "Mallar för aviseringsmeddelanden",
|
||||||
"rowValidationError": "Minst en meddelandemall måste anges",
|
"rowValidationError": "Minst en meddelandemall måste anges",
|
||||||
"selectDescription": "Välj en e-postavisering. Om du vill skapa en ny avisering går du till Aviseringar i hanteringsavsnittet i arbetsbelastningen Ange enhetsefterlevnad.",
|
"selectDescription": "Välj en e-postavisering. Om du vill skapa en ny avisering går du till Aviseringar i hanteringsavsnittet i arbetsbelastningen Ange enhetsefterlevnad.",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Klientorganisationsvärde",
|
||||||
"testEmailLabel": "Skicka förhandsgranskad e-post",
|
"testEmailLabel": "Skicka förhandsgranskad e-post",
|
||||||
"localeLabel": "Nationella inställningar",
|
"localeLabel": "Nationella inställningar",
|
||||||
"isDefaultLocale": "Är standard"
|
"isDefaultLocale": "Är standard"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "rad {0} av {1} kolumn {2}"
|
"ariaLabel": "rad {0} av {1} kolumn {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Börja från början och välj de egenskaper du vill använda i biblioteket med tillgängliga lageregenskaper"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Börja från början och välj önskade inställningar från biblioteket med tillgängliga inställningar",
|
"subtitle": "Börja från början och välj önskade inställningar från biblioteket med tillgängliga inställningar",
|
||||||
"title": "Inställningskatalog"
|
"title": "Inställningskatalog"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "Lägsta version",
|
"minVersion": "Lägsta version",
|
||||||
"nameHint": "Det här är det primära attributet som visas för att identifiera begränsningsuppsättningen.",
|
"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.",
|
"noAssignmentsStatusBar": "Koppla en begränsning till minst en grupp. Klicka på Egenskaper.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "Du måste vara administratör för att kunna redigera begränsningar.",
|
||||||
"notFound": "Begränsningen hittades inte. Den kanske redan har tagits bort.",
|
"notFound": "Begränsningen hittades inte. Den kanske redan har tagits bort.",
|
||||||
"personallyOwned": "Privatägda enheter",
|
"personallyOwned": "Privatägda enheter",
|
||||||
"restriction": "Begränsning",
|
"restriction": "Begränsning",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Kompatibilitetsprincip för Windows 8",
|
"complianceWindows8": "Kompatibilitetsprincip för Windows 8",
|
||||||
"complianceWindowsPhone": "Kompatibilitetsprincip för Windows Phone",
|
"complianceWindowsPhone": "Kompatibilitetsprincip för Windows Phone",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Egenskapskatalog",
|
||||||
"iosCustom": "Anpassade",
|
"iosCustom": "Anpassade",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Härledd PIV-autentiseringsuppgift",
|
"iosDerivedCredentialAuthenticationConfiguration": "Härledd PIV-autentiseringsuppgift",
|
||||||
"iosDeviceFeatures": "Enhetsfunktioner",
|
"iosDeviceFeatures": "Enhetsfunktioner",
|
||||||
@@ -12520,7 +12559,7 @@
|
|||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Administratörskontakter",
|
"adminContacts": "Administratörskontakter",
|
||||||
"appPackaging": "Appaket",
|
"appPackaging": "Appaket",
|
||||||
"businessGroups": "Affärsgrupper",
|
"autopatchGroups": "Autokorrigeringsgrupper",
|
||||||
"devices": "Enheter",
|
"devices": "Enheter",
|
||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"gettingStarted": "Komma igång",
|
"gettingStarted": "Komma igång",
|
||||||
@@ -12537,7 +12576,7 @@
|
|||||||
},
|
},
|
||||||
"actions": "Åtgärder vid inkompatibilitet",
|
"actions": "Åtgärder vid inkompatibilitet",
|
||||||
"advancedExchangeSettings": "Exchange Online-inställningar",
|
"advancedExchangeSettings": "Exchange Online-inställningar",
|
||||||
"advancedThreatProtection": "Microsoft Defender for Endpoint",
|
"advancedThreatProtection": "Microsoft Defender för Endpoint",
|
||||||
"allApps": "Alla appar",
|
"allApps": "Alla appar",
|
||||||
"allDevices": "Alla enheter",
|
"allDevices": "Alla enheter",
|
||||||
"androidFotaDeployments": "Android FOTA-distributioner",
|
"androidFotaDeployments": "Android FOTA-distributioner",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Anpassning",
|
"brandingAndCustomization": "Anpassning",
|
||||||
"cartProfiles": "Kundvagnsprofiler",
|
"cartProfiles": "Kundvagnsprofiler",
|
||||||
"certificateConnectors": "Certifikatanslutningsprogram",
|
"certificateConnectors": "Certifikatanslutningsprogram",
|
||||||
"chromeEnterprise": "Chrome Enterprise (förhandsversion)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Molnanslutna enheter (förhandsversion)",
|
"cloudAttachedDevices": "Molnanslutna enheter (förhandsversion)",
|
||||||
"cloudPcActions": "Åtgärder för molnbaserad dator (förhandsversion)",
|
"cloudPcActions": "Åtgärder för molnbaserad dator (förhandsversion)",
|
||||||
"cloudPcMaintenanceWindows": "Underhållsperioder för molnbaserade datorer (förhandsversion)",
|
"cloudPcMaintenanceWindows": "Underhållsperioder för molnbaserade datorer (förhandsversion)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "Användarstatus",
|
"userExecutionStatus": "Användarstatus",
|
||||||
"wdacSupplementalPolicies": "Tilläggsprinciper för S-läge",
|
"wdacSupplementalPolicies": "Tilläggsprinciper för S-läge",
|
||||||
"win32CatalogUpdateApp": "Uppdateringar för Windows-katalogappar (Win32)",
|
"win32CatalogUpdateApp": "Uppdateringar för Windows-katalogappar (Win32)",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Uppdateringar för Windows-katalogappar (Win32) (förhandsversion)",
|
||||||
"windows10DriverUpdate": "Drivrutinsuppdateringar för Windows 10 och senare",
|
"windows10DriverUpdate": "Drivrutinsuppdateringar för Windows 10 och senare",
|
||||||
"windows10QualityUpdate": "Kvalitetsuppdateringar för Windows 10 och senare",
|
"windows10QualityUpdate": "Kvalitetsuppdateringar för Windows 10 och senare",
|
||||||
"windows10UpdateRings": "Uppdateringringar för Windows 10 och senare",
|
"windows10UpdateRings": "Uppdateringringar för Windows 10 och senare",
|
||||||
"windows10XPolicyFailures": "Windows 10X-principfel",
|
"windows10XPolicyFailures": "Windows 10X-principfel",
|
||||||
"windows365Connector": "Windows 365 Citrix-anslutningsprogram",
|
|
||||||
"windows365PartnerConnector": "Windows 365 partnerkopplingar",
|
"windows365PartnerConnector": "Windows 365 partnerkopplingar",
|
||||||
"windowsDiagnosticData": "Windows-data",
|
"windowsDiagnosticData": "Windows-data",
|
||||||
"windowsEnterpriseCertificate": "Windows Enterprise-certifikat",
|
"windowsEnterpriseCertificate": "Windows Enterprise-certifikat",
|
||||||
|
|||||||
+137
-98
@@ -227,7 +227,6 @@
|
|||||||
"co": "Korsika lehçesi (Fransa)",
|
"co": "Korsika lehçesi (Fransa)",
|
||||||
"cs": "Çekçe (Çek Cumhuriyeti)",
|
"cs": "Çekçe (Çek Cumhuriyeti)",
|
||||||
"da": "Danca (Danimarka)",
|
"da": "Danca (Danimarka)",
|
||||||
"prs": "Dari dili (Afganistan)",
|
|
||||||
"dv": "Divehi (Maldivler)",
|
"dv": "Divehi (Maldivler)",
|
||||||
"et": "Estonca (Estonya)",
|
"et": "Estonca (Estonya)",
|
||||||
"fo": "Faroe dili (Faroe Adaları)",
|
"fo": "Faroe dili (Faroe Adaları)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender Virüsten Koruma",
|
"defender": "Microsoft Defender Virüsten Koruma",
|
||||||
"defenderAntivirus": "Microsoft Defender Virüsten Koruma",
|
"defenderAntivirus": "Microsoft Defender Virüsten Koruma",
|
||||||
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
"defenderExploitGuard": "Microsoft Defender Exploit Guard",
|
||||||
"defenderFirewall": "Microsoft Defender Güvenlik Duvarı",
|
"defenderFirewall": "Windows Güvenlik Duvarı",
|
||||||
"defenderLocalSecurityOptions": "Yerel cihaz güvenlik seçenekleri",
|
"defenderLocalSecurityOptions": "Yerel cihaz güvenlik seçenekleri",
|
||||||
"defenderSecurityCenter": "Microsoft Defender Güvenlik Merkezi",
|
"defenderSecurityCenter": "Microsoft Defender Güvenlik Merkezi",
|
||||||
"deliveryOptimization": "Teslim İyileştirme",
|
"deliveryOptimization": "Teslim İyileştirme",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "Devre dışı",
|
"disabled": "Devre dışı",
|
||||||
"enabled": "Etkin",
|
"enabled": "Etkin",
|
||||||
"infoBalloonContent": "En son Windows 10 özellik güncelleştirmesinin Windows 11 için uygun olmayan cihazlara yüklenip yüklenemeyeceğini denetleyin",
|
"infoBalloonContent": "En son Windows 10 özellik güncelleştirmesinin Windows 11 için uygun olmayan cihazlara yüklenip yüklenemeyeceğini denetleyin",
|
||||||
"label": "Bir cihaz Windows 11'i çalıştıramıyorsa, en son Windows 10 güncelleştirmesini yükleyin",
|
"label": "Bir cihaz Windows 11'i çalıştırmaya uygun değilse en son Windows 10 özellik güncelleştirmesini çalıştırın",
|
||||||
"notApplicable": "Uygulanamaz",
|
"notApplicable": "Uygulanamaz",
|
||||||
"summaryLabel": "Windows 11'i çalıştıramayan cihazlara Windows 10'u yükleyin"
|
"summaryLabel": "Windows 11 çalıştırmaya uygun olmayan cihazlara Windows 10 yükleyin"
|
||||||
},
|
},
|
||||||
"bladeTitle": "Özellik güncelleştirmesi dağıtımları",
|
"bladeTitle": "Özellik güncelleştirmesi dağıtımları",
|
||||||
"deploymentSettingsTitle": "Dağıtım ayarları",
|
"deploymentSettingsTitle": "Dağıtım ayarları",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Bu uygulamanın veri alabileceği uygulamaları belirtmek için aşağıdaki seçeneklerden birini belirtin:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: Kuruluş belgeleri veya hesaplarındaki verilerin tüm uygulamalardan alınmasına izin ver",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Kullanılacak dili ve bölgeyi belirtin.",
|
"languageInfo": "Kullanılacak dili ve bölgeyi belirtin.",
|
||||||
"licenseAgreement": "Microsoft Yazılım Lisans Koşulları",
|
"licenseAgreement": "Microsoft Yazılım Lisans Koşulları",
|
||||||
"licenseAgreementInfo": "EULA'nın kullanıcılara gösterilip gösterilmeyeceğini belirtin.",
|
"licenseAgreementInfo": "EULA'nın kullanıcılara gösterilip gösterilmeyeceğini belirtin.",
|
||||||
"plugAndForgetDevice": "Otomatik Dağıtım (önizleme)",
|
"plugAndForgetDevice": "Kendi Kendine Dağıtılıyor",
|
||||||
"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. ",
|
"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ı",
|
"privacySettings": "Gizlilik ayarları",
|
||||||
"privacySettingsInfo": "Gizlilik ayarlarının kullanıcılara gösterilip gösterilmeyeceğini belirtin.",
|
"privacySettingsInfo": "Gizlilik ayarlarının kullanıcılara gösterilip gösterilmeyeceğini belirtin.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Yalnızca teknisyen aşamasında seçili engelleyici uygulamaları başarısız kıl (önizleme)",
|
"allowNonBlockingAppInstallation": "Yalnızca teknisyen aşamasında seçili engelleyici uygulamaları başarısız kıl",
|
||||||
"apps": "uygulamalar",
|
"apps": "uygulamalar",
|
||||||
"appsListName": "Uygulama listesi",
|
"appsListName": "Uygulama listesi",
|
||||||
"blockingApps": "Engelleyici uygulamalar",
|
"blockingApps": "Engelleyici uygulamalar",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Etkinlik",
|
"activity": "Etkinlik",
|
||||||
|
"activityName": "Etkinlik adı",
|
||||||
"actor": "Başlatan (aktör)",
|
"actor": "Başlatan (aktör)",
|
||||||
|
"actorType": "Aktör türü",
|
||||||
"app": "Uygulama",
|
"app": "Uygulama",
|
||||||
"appName": "Uygulama adı",
|
"appName": "Uygulama adı",
|
||||||
"applicationName": "Uygulama adı",
|
"applicationName": "Uygulama adı",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD Bağlayıcısı",
|
"mtdConnector": "MTD Bağlayıcısı",
|
||||||
"name": "Profil adı",
|
"name": "Profil adı",
|
||||||
"oSVersion": "İS Sürümü",
|
"oSVersion": "İS Sürümü",
|
||||||
|
"operationType": "İşlem türü",
|
||||||
"os": "İşletim Sistemi",
|
"os": "İşletim Sistemi",
|
||||||
"packageName": "Paket adı",
|
"packageName": "Paket adı",
|
||||||
"partnerName": "İş Ortağı",
|
"partnerName": "İş Ortağı",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"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."
|
"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."
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "Mesajlaşma Uygulaması Adı"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "Mesajlaşma Uygulaması Paket Kimliği"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "Mesajlaşma Uygulaması URL Şeması"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "Kuruluş verileri bildirimleri",
|
"label": "Kuruluş verileri bildirimleri",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "Engellenmişse, uygulama korumalı verileri yazdıramaz."
|
"tooltip": "Engellenmişse, uygulama korumalı verileri yazdıramaz."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Genellikle kullanıcı, uygulamada köprü içeren bir mesajlaşma bağlantısı seçtiğinde, mesajlaşma uygulaması önceden doldurulmuş telefon numarasıyla arama yapmaya hazır bir halde 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. Bu ayarın etkili olması için ek adımlar gerekebilir. İlk olarak, sms'in “muaf tutulacak uygulamaları Seç” listesinden kaldırılmış olduğunu doğrulayın. Daha sonra uygulamanın, Intune SDK'sının daha yeni bir sürümünü (19.0.0 üzeri bir sürüm) kullandığından emin olun.",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Mesajlaşma verilerini şuraya aktar:",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Genellikle kullanıcı, uygulamada köprü içeren bir mesajlaşma bağlantısı seçtiğinde, mesajlaşma uygulaması önceden doldurulmuş telefon numarasıyla arama yapmaya hazır bir halde 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."
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "Diğer uygulamalardan veri al",
|
"label": "Diğer uygulamalardan veri al",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "Oturum açması için web kimlik bilgisi sağlayıcısına izin verin.",
|
"authenticationWebSignInDescription": "Oturum açması için web kimlik bilgisi sağlayıcısına izin verin.",
|
||||||
"authenticationWebSignInName": "Web üzerinde oturum açma (kullanım dışı ayar)",
|
"authenticationWebSignInName": "Web üzerinde oturum açma (kullanım dışı ayar)",
|
||||||
"authorizedAppRulesDescription": "Tanınıp zorlanması için yerel depoda yetkili güvenlik duvarı kuralları uygulayın.",
|
"authorizedAppRulesDescription": "Tanınıp zorlanması için yerel depoda yetkili güvenlik duvarı kuralları uygulayın.",
|
||||||
"authorizedAppRulesName": "Yerel depodan yetkili uygulama Microsoft Defender Güvenlik Duvarı kuralları",
|
"authorizedAppRulesName": "Yerel depodan alınan yetkili uygulama Windows Güvenlik Duvarı kuralları",
|
||||||
"authorizedUsersListHideAdminUsersName": "Bilgisayarın yöneticilerini gizle",
|
"authorizedUsersListHideAdminUsersName": "Bilgisayarın yöneticilerini gizle",
|
||||||
"authorizedUsersListHideLocalUsersName": "Yerel kullanıcıları gizle",
|
"authorizedUsersListHideLocalUsersName": "Yerel kullanıcıları gizle",
|
||||||
"authorizedUsersListHideMobileAccountsName": "Mobil hesapları gizle",
|
"authorizedUsersListHideMobileAccountsName": "Mobil hesapları gizle",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Bu ayar, mobil cihaz ekranı kilitlenmeden önce geçmesi gereken, kullanıcı girişi yapılmayan süreyi belirtir. Önerilen değer: 15 dakika",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "Bu ayar, mobil cihaz ekranı kilitlenmeden önce geçmesi gereken, kullanıcı girişi yapılmayan süreyi belirtir. Önerilen değer: 15 dakika",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Bu ayar, cihaz kilitlendikten sonra kullanıcı girişi olmadan geçecek süreyi belirtir. Önerilen değer: 15 dakika",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "Bu ayar, cihaz kilitlendikten sonra kullanıcı girişi olmadan geçecek süreyi belirtir. Önerilen değer: 15 dakika",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Parola istenmeden önce geçmesi gereken, işlem yapılmayan dakika sayısı",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Parola istenmeden önce geçmesi gereken, işlem yapılmayan dakika sayısı",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Önerilen değer: 15 dk",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Bir mobil cihazın sahip olabileceği en yeni işletim sistemi sürümünü seçin.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Bir mobil cihazın sahip olabileceği en yeni işletim sistemi sürümünü seçin.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Mobil cihazlar için en yüksek işletim sistemi sürümü",
|
"complianceMobileOsVersionRestrictionMaximumName": "Mobil cihazlar için en yüksek işletim sistemi sürümü",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Bir mobil cihazın sahip olabileceği en eski işletim sistemi sürümünü seçin.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Bir mobil cihazın sahip olabileceği en eski işletim sistemi sürümünü seçin.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "Bu ayar, son kullanılan kaç parolanın yeniden kullanılamayacağını belirtir. Önerilen değer: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "Bu ayar, son kullanılan kaç parolanın yeniden kullanılamayacağını belirtir. Önerilen değer: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Yeniden kullanılması önlenecek önceki parola sayısı",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Yeniden kullanılması önlenecek önceki parola sayısı",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Önerilen değer: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Cihazın sahip olabileceği en yeni işletim sistemi derleme sürümünü girin. Örneğin: 20E252<br>Bir Apple Rapid Security Response güncelleştirmesini en yüksek işletim sistemi derlemesi olarak ayarlamak istiyorsanız, ek derleme sürümünü girin. Örneğin: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Cihazın sahip olabileceği en yeni işletim sistemi derleme sürümünü girin. Örneğin: 20E252<br>Bir Apple Rapid Security Response güncelleştirmesini en yüksek işletim sistemi derlemesi olarak ayarlamak istiyorsanız, ek derleme sürümünü girin. Örneğin: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "En yüksek işletim sistemi derleme sürümü",
|
"complianceOsBuildVersionRestrictionMaximumName": "En yüksek işletim sistemi derleme sürümü",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Cihazın sahip olabileceği en eski işletim sistemi derleme sürümünü girin. Örneğin: 20E252<br>Bir Apple Rapid Security Response güncelleştirmesini en düşük işletim sistemi derlemesi olarak ayarlamak istiyorsanız, ek derleme sürümünü girin. Örneğin: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Cihazın sahip olabileceği en eski işletim sistemi derleme sürümünü girin. Örneğin: 20E252<br>Bir Apple Rapid Security Response güncelleştirmesini en düşük işletim sistemi derlemesi olarak ayarlamak istiyorsanız, ek derleme sürümünü girin. Örneğin: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Microsoft Defender güvenlik bilgilerinin güncel olmasını gerekli kılın.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Microsoft Defender güvenlik bilgilerinin güncel olmasını gerekli kılın.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Kötü Amaçlı Yazılımdan Koruma Uygulaması güvenlik bilgileri güncel",
|
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Kötü Amaçlı Yazılımdan Koruma Uygulaması güvenlik bilgileri güncel",
|
||||||
"complianceRequiredPasswordTypeDescription": "Bu ayar, parolaların yalnızca sayısal karakterlerden oluşmasına izin verildiğini veya parolalarda sayı olmayan karakterler kullanılması gerektiğini belirtir. Öneriler: Gerekli parola türü: Alfasayısal, En az karakter kümesi sayısı: 1",
|
"complianceRequiredPasswordTypeDescription": "Bu ayar, parolaların yalnızca sayısal karakterlerden oluşmasına izin verildiğini veya parolalarda sayı olmayan karakterler kullanılması gerektiğini belirtir. Öneriler: Gerekli parola türü: Alfasayısal, En az karakter kümesi sayısı: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Öneriler: Gerekli parola türü: Alfasayısal, Minimum karakter kümesi sayısı: 1",
|
||||||
"complianceRootedAllowedDescription": "Köklü cihazların şirket erişimini engelleyin.",
|
"complianceRootedAllowedDescription": "Köklü cihazların şirket erişimini engelleyin.",
|
||||||
"complianceRootedAllowedName": "Köklü cihazlar",
|
"complianceRootedAllowedName": "Köklü cihazlar",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "Bu ayar, cihazın USB hata ayıklama özelliğini kullanmasının engellenip engellenmeyeceğini belirtir.",
|
"complianceSecurityDisableUSBDebuggingDescription": "Bu ayar, cihazın USB hata ayıklama özelliğini kullanmasının engellenip engellenmeyeceğini belirtir.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Bir cihazın çalıştırabileceği en eski işletim sistemi sürümünü seçin. İşletim sistemi sürümü major.minor.build.revision olarak tanımlanır. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Bir cihazın çalıştırabileceği en eski işletim sistemi sürümünü seçin. İşletim sistemi sürümü major.minor.build.revision olarak tanımlanır. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Cihazda olacak parola türünü seçin.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Cihazda olacak parola türünü seçin.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Parola türü",
|
"complianceWindowsRequiredPasswordTypeName": "Parola türü",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "İş profilinin kilidini açmak için parola gerektir",
|
||||||
|
"complianceWorkProfileSecurityHeader": "İş Profili Güvenliği",
|
||||||
"compliantAppsOption": "Uyumlu uygulama listesi. Listede olmayan yüklü uygulamaların uyumsuzluğunu raporlayın",
|
"compliantAppsOption": "Uyumlu uygulama listesi. Listede olmayan yüklü uygulamaların uyumsuzluğunu raporlayın",
|
||||||
"computerNameStaticPrefixDescription": "Bilgisayarlara 15 karakter uzunluğunda bir ad atanır. Bir ön ek belirtin, 15 karakterin geriye kalan kısmı rastgele atanacaktır.",
|
"computerNameStaticPrefixDescription": "Bilgisayarlara 15 karakter uzunluğunda bir ad atanır. Bir ön ek belirtin, 15 karakterin geriye kalan kısmı rastgele atanacaktır.",
|
||||||
"computerNameStaticPrefixName": "Bilgisayar adı ön eki",
|
"computerNameStaticPrefixName": "Bilgisayar adı ön eki",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Google etki alanı izin verilenler listesi",
|
"domainAllowListName": "Google etki alanı izin verilenler listesi",
|
||||||
"domainAllowListTableEmptyValueExample": "Etki alanı girin",
|
"domainAllowListTableEmptyValueExample": "Etki alanı girin",
|
||||||
"domainAllowListTableName": "Etki alanı",
|
"domainAllowListTableName": "Etki alanı",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "Yerel depodaki yetkili uygulama Microsoft Defender Güvenlik Duvarı kuralları (Etki alanı ağları)",
|
"domainAuthorizedAppRulesSummaryLabel": "Yerel depodaki yetkili uygulama Windows Güvenlik Duvarı kuralları (Etki alanı ağları)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Microsoft Defender Güvenlik Duvarı (Etki alanı ağları)",
|
"domainFirewallEnabledSummaryLabel": "Windows Güvenlik Duvarı (Etki alanı ağları)",
|
||||||
"domainGlobalRulesSummaryLabel": "Yerel depodaki genel bağlantı noktası Microsoft Defender Güvenlik Duvarı kuralları (Etki alanı ağları)",
|
"domainGlobalRulesSummaryLabel": "Yerel depodaki genel bağlantı noktası Windows Güvenlik Duvarı kuralları (Etki alanı ağları)",
|
||||||
"domainIPsecRulesSummaryLabel": "Yerel depodaki IPsec kuralları (Etki alanı ağları)",
|
"domainIPsecRulesSummaryLabel": "Yerel depodaki IPsec kuralları (Etki alanı ağları)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "Gizlilik Modunda güvenliği IPsec tarafından sağlanan paket muafiyeti (Etki alanı ağları)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "Gizlilik Modunda güvenliği IPsec tarafından sağlanan paket muafiyeti (Etki alanı ağları)",
|
||||||
"domainInboundConnectionsSummaryLabel": "Gelen bağlantılar için varsayılan eylem (Etki alanı ağları)",
|
"domainInboundConnectionsSummaryLabel": "Gelen bağlantılar için varsayılan eylem (Etki alanı ağları)",
|
||||||
"domainInboundNotificationsSummaryLabel": "Gelen bildirimler (Etki alanı ağları)",
|
"domainInboundNotificationsSummaryLabel": "Gelen bildirimler (Etki alanı ağları)",
|
||||||
"domainLocalStoreSummaryLabel": "Yerel depodaki Microsoft Defender Güvenlik Duvarı kuralları (Etki alanı ağları)",
|
"domainLocalStoreSummaryLabel": "Yerel depodaki Windows Güvenlik Duvarı kuralları (Etki alanı ağları)",
|
||||||
"domainNameSourceOption": "Kullanıcı etki alanı adı kaynağı",
|
"domainNameSourceOption": "Kullanıcı etki alanı adı kaynağı",
|
||||||
"domainNetworkName": "Etki alanı (çalışma alanı) ağı",
|
"domainNetworkName": "Etki alanı (çalışma alanı) ağı",
|
||||||
"domainOutboundConnectionsSummaryLabel": "Giden bağlantılar için varsayılan eylem (Etki alanı ağları)",
|
"domainOutboundConnectionsSummaryLabel": "Giden bağlantılar için varsayılan eylem (Etki alanı ağları)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "Alternatif sertifikayla çoklu oturum açma (SSO)",
|
"enableSingleSignOnName": "Alternatif sertifikayla çoklu oturum açma (SSO)",
|
||||||
"enableUsePrivateStoreOnly": "Yalnızca özel mağazayı kullan",
|
"enableUsePrivateStoreOnly": "Yalnızca özel mağazayı kullan",
|
||||||
"enableUsePrivateStoreOnlyDescription": "Uygulamaların, ortak mağaza yerine yalnızca özel mağazadan indirilebilmelerine izin verir.",
|
"enableUsePrivateStoreOnlyDescription": "Uygulamaların, ortak mağaza yerine yalnızca özel mağazadan indirilebilmelerine izin verir.",
|
||||||
"enableWindowsDefenderFirewallName": "Microsoft Defender Güvenlik Duvarı",
|
"enableWindowsDefenderFirewallName": "Windows Güvenlik Duvarı",
|
||||||
"enableWithUEFILock": "UEFI kilidiyle etkinleştir",
|
"enableWithUEFILock": "UEFI kilidiyle etkinleştir",
|
||||||
"enableWithoutUEFILock": "UEFI kilidi olmadan etkinleştir",
|
"enableWithoutUEFILock": "UEFI kilidi olmadan etkinleştir",
|
||||||
"enabledForAzureAdAndHybridOption": "Microsoft Entra'ya katılmış ve hibrite katılmış cihazlar için anahtar döndürme etkinleştirildi",
|
"enabledForAzureAdAndHybridOption": "Microsoft Entra'ya katılmış ve hibrite katılmış cihazlar için anahtar döndürme etkinleştirildi",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "Aşağıdaki uygulamalar için gelen bağlantıları engelleyin.",
|
"firewallAppsBlockedHeader": "Aşağıdaki uygulamalar için gelen bağlantıları engelleyin.",
|
||||||
"firewallAppsBlockedPageDescription": "Gelen bağlantıları engellemesi gereken uygulamaları seçin.",
|
"firewallAppsBlockedPageDescription": "Gelen bağlantıları engellemesi gereken uygulamaları seçin.",
|
||||||
"firewallAppsBlockedPageName": "Engellenen uygulamalar",
|
"firewallAppsBlockedPageName": "Engellenen uygulamalar",
|
||||||
"firewallCreateRules": "Microsoft Defender Güvenlik Duvarı kuralları oluşturun. Bir Endpoint Protection profili en fazla 150 kural içerebilir.",
|
"firewallCreateRules": "Windows Güvenlik Duvarı kuralları oluşturun. Bir Endpoint Protection profili en fazla 150 kural içerebilir.",
|
||||||
"firewallRequiredDescription": "Güvenlik duvarının açık olmasını gerekli kıl",
|
"firewallRequiredDescription": "Güvenlik duvarının açık olmasını gerekli kıl",
|
||||||
"firewallRequiredName": "Güvenlik Duvarı",
|
"firewallRequiredName": "Güvenlik Duvarı",
|
||||||
"firewallRuleAction": "Eylem",
|
"firewallRuleAction": "Eylem",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "Genel Kullanılabilirlik kanalı",
|
"generalAvailabilityChannel": "Genel Kullanılabilirlik kanalı",
|
||||||
"generalNetworkSettingsHeader": "Genel",
|
"generalNetworkSettingsHeader": "Genel",
|
||||||
"genericLocalUsersOrGroupsName": "Genel yerel kullanıcılar veya gruplar",
|
"genericLocalUsersOrGroupsName": "Genel yerel kullanıcılar veya gruplar",
|
||||||
"globalConfigurationsDescription": "Tüm ağ türlerine uygulanabilen Microsoft Defender Güvenlik Duvarı ayarları yapılandırın.",
|
"globalConfigurationsDescription": "Tüm ağ türlerine uygulanabilen Windows Güvenlik Duvarı ayarları yapılandırın.",
|
||||||
"globalConfigurationsName": "Genel ayarlar",
|
"globalConfigurationsName": "Genel ayarlar",
|
||||||
"globalRulesDescription": "Tanınıp zorlanması için yerel depoda genel bağlantı noktası güvenlik duvarı kuralları uygulayın.",
|
"globalRulesDescription": "Tanınıp zorlanması için yerel depoda genel bağlantı noktası güvenlik duvarı kuralları uygulayın.",
|
||||||
"globalRulesName": "Yerel depodaki genel bağlantı noktası Microsoft Defender Güvenlik Duvarı kuralları",
|
"globalRulesName": "Yerel depodan alınan genel bağlantı noktası Windows Güvenlik Duvarı kuralları",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Google hesabı e-posta adresleri",
|
"googleAccountEmailAddresses": "Google hesabı e-posta adresleri",
|
||||||
"googleAccountEmailAddressesDescription": "E-posta adreslerinin noktalı virgülle ayrılmış listesi",
|
"googleAccountEmailAddressesDescription": "E-posta adreslerinin noktalı virgülle ayrılmış listesi",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Güvenli masaüstünde kimlik bilgileri iste",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "Güvenli masaüstünde kimlik bilgileri iste",
|
||||||
"localServerCachingHeader": "Yerel Sunucu Önbelleğe Alma",
|
"localServerCachingHeader": "Yerel Sunucu Önbelleğe Alma",
|
||||||
"localStoreDescription": "Yerel depodaki genel güvenlik duvarı kurallarını tanınıp zorlanmak üzere uygulayın.",
|
"localStoreDescription": "Yerel depodaki genel güvenlik duvarı kurallarını tanınıp zorlanmak üzere uygulayın.",
|
||||||
"localStoreName": "Yerel depodaki Microsoft Defender Güvenlik Duvarı kuralları",
|
"localStoreName": "Yerel depodan alınan Windows Güvenlik Duvarı kuralları",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "Windows 10 Mobile cihazlarda kilit ekranındayken ekran zaman aşımını denetlemek için kullanıcı tarafından yapılandırılabilen bir ayarın gösterilip gösterilmeyeceğini belirtin. Bu ilke İzin ver olarak ayarlanırsa, \"Ekran zaman aşımı\" tarafından ayarlanan değer geçersiz kılınır.",
|
"lockScreenAllowTimeoutConfigurationDescription": "Windows 10 Mobile cihazlarda kilit ekranındayken ekran zaman aşımını denetlemek için kullanıcı tarafından yapılandırılabilen bir ayarın gösterilip gösterilmeyeceğini belirtin. Bu ilke İzin ver olarak ayarlanırsa, \"Ekran zaman aşımı\" tarafından ayarlanan değer geçersiz kılınır.",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "Kullanıcı tarafından yapılandırılabilir ekran zaman aşımı (yalnızca mobil)",
|
"lockScreenAllowTimeoutConfigurationName": "Kullanıcı tarafından yapılandırılabilir ekran zaman aşımı (yalnızca mobil)",
|
||||||
"lockScreenBackgroundImageURLDescription": "Özel hoş geldiniz ekranı arka plan görüntüsü URL'si. Uç noktası https:// olan bir .png dosyası olmalıdır",
|
"lockScreenBackgroundImageURLDescription": "Özel hoş geldiniz ekranı arka plan görüntüsü URL'si. Uç noktası https:// olan bir .png dosyası olmalıdır",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "MTU, 1280 ile 1400 bayt arasında olmalıdır",
|
"mTUSizeInBytesBounds": "MTU, 1280 ile 1400 bayt arasında olmalıdır",
|
||||||
"mTUSizeInBytesName": "Maksimum iletim birimi",
|
"mTUSizeInBytesName": "Maksimum iletim birimi",
|
||||||
"mTUSizeInBytesToolTip": "Ağda iletilebilecek en büyük veri paketi (bayt cinsinden). Yapılandırılmadığında, Apple varsayılan boyutu 1280 bayttır. iOS 14 ve üzeri sürümler için geçerlidir.",
|
"mTUSizeInBytesToolTip": "Ağda iletilebilecek en büyük veri paketi (bayt cinsinden). Yapılandırılmadığında, Apple varsayılan boyutu 1280 bayttır. iOS 14 ve üzeri sürümler için geçerlidir.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Rastgele MAC kullan",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Cihaz varsayılanını kullan",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Yalnızca NAC desteği gibi bir durum için gerektiğinde rastgele MAC kullanın. Kullanıcılar bu ayarı değiştirebilir. Android 13 ve üzeri sürümler için geçerlidir.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Cihaz MAC'si kullan",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "MAC adresini rastgele seçme",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store ve tanımlanan geliştiriciler",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store ve tanımlanan geliştiriciler",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "AirPlay'i, diğer cihazlara ekran paylaşımı yapılmasını ve Derslik uygulamasının öğretmenler tarafından öğrencilerin ekranlarını görüntülemek için kullanılan özelliğini engeller. Ekran görüntüleri engellenmişse bu ayar kullanılamaz.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "AirPlay'i, diğer cihazlara ekran paylaşımı yapılmasını ve Derslik uygulamasının öğretmenler tarafından öğrencilerin ekranlarını görüntülemek için kullanılan özelliğini engeller. Ekran görüntüleri engellenmişse bu ayar kullanılamaz.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Bir sayı girin (4-16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Bir sayı girin (4-16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Bir sayı girin (6-16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Bir sayı girin (6-16)",
|
||||||
"minimumPasswordLengthName": "Minimum parola uzunluğu",
|
"minimumPasswordLengthName": "Minimum parola uzunluğu",
|
||||||
|
"minimumPasswordLengthTooltipText": "Bir sayı girin",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Eksik güncelleştirmeler otomatik olarak yüklenir",
|
"minimumUpdateAutoInstallClassificationDescription": "Eksik güncelleştirmeler otomatik olarak yüklenir",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Güncelleştirmelerin belirtilen sınıflandırmasını yükleyin",
|
"minimumUpdateAutoInstallClassificationName": "Güncelleştirmelerin belirtilen sınıflandırmasını yükleyin",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Önemli",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Önemli",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "Proxy sunucusunu el ile gir",
|
"networkProxyUseManualServerName": "Proxy sunucusunu el ile gir",
|
||||||
"networkProxyUseScriptUrlName": "Proxy betiği kullan",
|
"networkProxyUseScriptUrlName": "Proxy betiği kullan",
|
||||||
"networkSettingsName": "Ağ ayarları",
|
"networkSettingsName": "Ağ ayarları",
|
||||||
"networkSettingsSubtitle": "Belirli ağ türlerine uygulanabilen Microsoft Defender Güvenlik Duvarı ayarları yapılandırın.",
|
"networkSettingsSubtitle": "Belirli ağ türlerine uygulanabilen Windows Güvenlik Duvarı ayarları yapılandırın.",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "Hücresel veri kullanma izni olmayacak yönetilen iOS uygulamaları ekleyin.",
|
"networkUsageRulesBlockCellularHeaderName": "Hücresel veri kullanma izni olmayacak yönetilen iOS uygulamaları ekleyin.",
|
||||||
"networkUsageRulesBlockCellularName": "Hücresel veri kullanımını engelleyin",
|
"networkUsageRulesBlockCellularName": "Hücresel veri kullanımını engelleyin",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "Dolaşım sırasında hücresel veri kullanma izni olmayacak yönetilen iOS uygulamaları ekleyin.",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "Dolaşım sırasında hücresel veri kullanma izni olmayacak yönetilen iOS uygulamaları ekleyin.",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "Uygulamalar ve işlemler",
|
"privacyPreferencesTableName": "Uygulamalar ve işlemler",
|
||||||
"privacyPublishUserActivitiesDescription": "Görev değiştiricide vb. paylaşılan deneyimleri/son kullanılan kaynakları bulmayı engelleyin.",
|
"privacyPublishUserActivitiesDescription": "Görev değiştiricide vb. paylaşılan deneyimleri/son kullanılan kaynakları bulmayı engelleyin.",
|
||||||
"privacyPublishUserActivitiesName": "Kullanıcı etkinliklerini yayımla",
|
"privacyPublishUserActivitiesName": "Kullanıcı etkinliklerini yayımla",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "Yerel depodaki yetkili uygulama Microsoft Defender Güvenlik Duvarı kuralları (Özel ağlar)",
|
"privateAuthorizedAppRulesSummaryLabel": "Yerel depodaki yetkili uygulama Windows Güvenlik Duvarı kuralları (Özel ağlar)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Microsoft Defender Güvenlik Duvarı (Özel ağlar)",
|
"privateFirewallEnabledSummaryLabel": "Windows Güvenlik Duvarı (Özel ağlar)",
|
||||||
"privateGlobalRulesSummaryLabel": "Yerel depodaki genel bağlantı noktası Microsoft Defender Güvenlik Duvarı kuralları (Özel ağlar)",
|
"privateGlobalRulesSummaryLabel": "Yerel depodaki genel bağlantı noktası Windows Güvenlik Duvarı kuralları (Özel ağlar)",
|
||||||
"privateIPsecRulesSummaryLabel": "Yerel depodaki IPsec kuralları (Özel ağlar)",
|
"privateIPsecRulesSummaryLabel": "Yerel depodaki IPsec kuralları (Özel ağlar)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "Gizlilik Modunda güvenliği IPsec tarafından sağlanan paket muafiyeti (Özel ağlar)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "Gizlilik Modunda güvenliği IPsec tarafından sağlanan paket muafiyeti (Özel ağlar)",
|
||||||
"privateInboundConnectionsSummaryLabel": "Gelen bağlantılar için varsayılan eylem (Özel ağlar)",
|
"privateInboundConnectionsSummaryLabel": "Gelen bağlantılar için varsayılan eylem (Özel ağlar)",
|
||||||
"privateInboundNotificationsSummaryLabel": "Gelen bildirimler (Özel ağlar)",
|
"privateInboundNotificationsSummaryLabel": "Gelen bildirimler (Özel ağlar)",
|
||||||
"privateLocalStoreSummaryLabel": "Yerel depodaki Microsoft Defender Güvenlik Duvarı kuralları (Özel ağlar)",
|
"privateLocalStoreSummaryLabel": "Yerel depodaki Windows Güvenlik Duvarı kuralları (Özel ağlar)",
|
||||||
"privateNetworkName": "Özel (bulunabilir) ağ",
|
"privateNetworkName": "Özel (bulunabilir) ağ",
|
||||||
"privateOutboundConnectionsSummaryLabel": "Giden bağlantılar için varsayılan eylem (Özel ağlar)",
|
"privateOutboundConnectionsSummaryLabel": "Giden bağlantılar için varsayılan eylem (Özel ağlar)",
|
||||||
"privateShieldedSummaryLabel": "Korumalı (Özel ağlar)",
|
"privateShieldedSummaryLabel": "Korumalı (Özel ağlar)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "Proxy sunucu URL'si",
|
"proxyServerURLName": "Proxy sunucu URL'si",
|
||||||
"proxyServersAutoDetectionName": "Diğer kuruluş proxy sunucularını otomatik algılama",
|
"proxyServersAutoDetectionName": "Diğer kuruluş proxy sunucularını otomatik algılama",
|
||||||
"proxyUrlExample": "Örnek: itgproxy.contoso.com",
|
"proxyUrlExample": "Örnek: itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "Yerel depodaki yetkili uygulama Microsoft Defender Güvenlik Duvarı kuralları (Genel ağlar)",
|
"publicAuthorizedAppRulesSummaryLabel": "Yerel depodaki yetkili uygulama Windows Güvenlik Duvarı kuralları (Genel ağlar)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Microsoft Defender Güvenlik Duvarı (Genel ağlar)",
|
"publicFirewallEnabledSummaryLabel": "Windows Güvenlik Duvarı (Genel ağlar)",
|
||||||
"publicGlobalRulesSummaryLabel": "Yerel depodaki genel bağlantı noktası Microsoft Defender Güvenlik Duvarı kuralları (Genel ağlar)",
|
"publicGlobalRulesSummaryLabel": "Yerel depodaki genel bağlantı noktası Windows Güvenlik Duvarı kuralları (Genel ağlar)",
|
||||||
"publicIPsecRulesSummaryLabel": "Yerel depodaki IPsec kuralları (Genel ağlar)",
|
"publicIPsecRulesSummaryLabel": "Yerel depodaki IPsec kuralları (Genel ağlar)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "Gizlilik Modunda güvenliği IPsec tarafından sağlanan paket muafiyeti (Genel ağlar)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "Gizlilik Modunda güvenliği IPsec tarafından sağlanan paket muafiyeti (Genel ağlar)",
|
||||||
"publicInboundConnectionsSummaryLabel": "Gelen bağlantılar için varsayılan eylem (Genel ağlar)",
|
"publicInboundConnectionsSummaryLabel": "Gelen bağlantılar için varsayılan eylem (Genel ağlar)",
|
||||||
"publicInboundNotificationsSummaryLabel": "Gelen bildirimler (Genel ağlar)",
|
"publicInboundNotificationsSummaryLabel": "Gelen bildirimler (Genel ağlar)",
|
||||||
"publicLocalStoreSummaryLabel": "Yerel depodaki Microsoft Defender Güvenlik Duvarı kuralları (Genel ağlar)",
|
"publicLocalStoreSummaryLabel": "Yerel depodaki Windows Güvenlik Duvarı kuralları (Genel ağlar)",
|
||||||
"publicNetworkName": "Ortak (bulunamayan) ağ",
|
"publicNetworkName": "Ortak (bulunamayan) ağ",
|
||||||
"publicOutboundConnectionsSummaryLabel": "Giden bağlantılar için varsayılan eylem (Genel ağlar)",
|
"publicOutboundConnectionsSummaryLabel": "Giden bağlantılar için varsayılan eylem (Genel ağlar)",
|
||||||
"publicPlayStoreEnabledDescription": "Kullanıcılar, İstemci Uygulamaları'nda kaldırılmasını gerekli kıldığınız uygulamalar hariç tüm uygulamalara erişir. Bu ayar için \"Yapılandırılmadı\" değerini seçerseniz, kullanıcılar yalnızca İstemci Uygulamaları'nda kullanılabilir veya gerekli olarak listelediğiniz uygulamalara erişebilir.",
|
"publicPlayStoreEnabledDescription": "Kullanıcılar, İstemci Uygulamaları'nda kaldırılmasını gerekli kıldığınız uygulamalar hariç tüm uygulamalara erişir. Bu ayar için \"Yapılandırılmadı\" değerini seçerseniz, kullanıcılar yalnızca İstemci Uygulamaları'nda kullanılabilir veya gerekli olarak listelediğiniz uygulamalara erişebilir.",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Yazılım KSP'sine kaydet",
|
"sCEPPolicyEnrollToSoftwareKSP": "Yazılım KSP'sine kaydet",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Güvenilir Platform Modülü (TPM) KSP'sine kaydol, aksi halde hata ver",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Güvenilir Platform Modülü (TPM) KSP'sine kaydol, aksi halde hata ver",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Varsa Güvenilir Platform Modülü (TPM) KSP'sine, aksi halde Yazılım KSP'sine kaydol",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Varsa Güvenilir Platform Modülü (TPM) KSP'sine, aksi halde Yazılım KSP'sine kaydol",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "UYARI: Microsoft Bulut PKI'da oluşturulan bir sertifika yetkilisi ile Herhangi Bir Amaçlı EKU (OID 2.5.29.37.0) veya Herhangi Bir Uygulama İlkesi EKU'su (OID 1.3.6.1.4.1.311.10.12.1) kullanılamaz.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "Çoğu durumda, kullanıcı veya cihazın sunucuda kimliğini doğrulayabilmesi için sertifika en azından İstemci Kimlik Doğrulaması gerektirir. Ancak daha fazla anahtar amacı tanımlamak için ek kullanımlar belirtebilirsiniz.",
|
"sCEPPolicyExtendedKeyUsageDescription": "Çoğu durumda, kullanıcı veya cihazın sunucuda kimliğini doğrulayabilmesi için sertifika en azından İstemci Kimlik Doğrulaması gerektirir. Ancak daha fazla anahtar amacı tanımlamak için ek kullanımlar belirtebilirsiniz.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Genişletilmiş anahtar kullanımı",
|
"sCEPPolicyExtendedKeyUsageName": "Genişletilmiş anahtar kullanımı",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Sertifikayla bir karma algoritma türü kullanın. Bağlı cihazların desteklediği en güçlü güvenlik düzeyini seçtiğinizden emin olun.",
|
"sCEPPolicyHashAlgorithmDescription": "Sertifikayla bir karma algoritma türü kullanın. Bağlı cihazların desteklediği en güçlü güvenlik düzeyini seçtiğinizden emin olun.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Gün sayısını girin (1-255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Gün sayısını girin (1-255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Gün sayısını girin (1-365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Gün sayısını girin (1-365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Parola bitiş tarihi (gün)",
|
"workProfilePasswordExpirationInDaysName": "Parola bitiş tarihi (gün)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Gün sayısını girin",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "İş Profili parolası: Minimum parola uzunluğu",
|
"workProfilePasswordMinimumLengthReportingName": "İş Profili parolası: Minimum parola uzunluğu",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "İş Profili parolası: Gerekli karakter sayısı",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "İş Profili parolası: Gerekli karakter sayısı",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "İş Profili parolası: Gerekli küçük harf karakter sayısı",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "İş Profili parolası: Gerekli küçük harf karakter sayısı",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "Herhangi bir uygulama",
|
"anyAppOptionText": "Herhangi bir uygulama",
|
||||||
"anyDestinationAnySourceOptionText": "Tüm hedefler ve tüm kaynaklar",
|
"anyDestinationAnySourceOptionText": "Tüm hedefler ve tüm kaynaklar",
|
||||||
"anyDialerAppOptionText": "Herhangi bir numara çevirici uygulaması",
|
"anyDialerAppOptionText": "Herhangi bir numara çevirici uygulaması",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "Herhangi bir mesajlaşma uygulaması",
|
||||||
"anyPolicyManagedDialerAppOptionText": "İlke ile yönetilen herhangi bir numara çevirici uygulaması",
|
"anyPolicyManagedDialerAppOptionText": "İlke ile yönetilen herhangi bir numara çevirici uygulaması",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "İlkeyle yönetilen herhangi bir mesajlaşma uygulaması",
|
||||||
"appAdded": "Uygulama eklendi",
|
"appAdded": "Uygulama eklendi",
|
||||||
"appBasedConditionalAccess": "Uygulama temelli koşullu erişim",
|
"appBasedConditionalAccess": "Uygulama temelli koşullu erişim",
|
||||||
"appColumnLabel": "Uygulama",
|
"appColumnLabel": "Uygulama",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "MDM Cihaz Kimliği",
|
"mdmDeviceId": "MDM Cihaz Kimliği",
|
||||||
"mdmWipInvalidVersionSettings": "Bir veya birden fazla uygulamanın en düşük/en yüksek sürüm tanımı geçersiz.<br /> <br />Kayıt ile Windows Bilgi Koruması ilkeleri, en düşük veya en yüksek sürümlerden her ikisi de eşit olarak belirtilmediği takdirde yalnızca birini belirtmeyi destekler. Yalnızca en düşük sürüm belirtildiğinde kural, en düşük sürümden daha yüksek veya bu sürüme eşit olarak ayarlanır. Benzer şekilde yalnızca en yüksek sürüm belirtildiğinde kural, en yüksek sürümden daha düşük veya bu sürüme eşit olarak ayarlanır.",
|
"mdmWipInvalidVersionSettings": "Bir veya birden fazla uygulamanın en düşük/en yüksek sürüm tanımı geçersiz.<br /> <br />Kayıt ile Windows Bilgi Koruması ilkeleri, en düşük veya en yüksek sürümlerden her ikisi de eşit olarak belirtilmediği takdirde yalnızca birini belirtmeyi destekler. Yalnızca en düşük sürüm belirtildiğinde kural, en düşük sürümden daha yüksek veya bu sürüme eşit olarak ayarlanır. Benzer şekilde yalnızca en yüksek sürüm belirtildiğinde kural, en yüksek sürümden daha düşük veya bu sürüme eşit olarak ayarlanır.",
|
||||||
"mdmWipReport": "MDM Windows Bilgi Koruması Raporu",
|
"mdmWipReport": "MDM Windows Bilgi Koruması Raporu",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "Mesajlaşma Uygulaması Adı (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "Mesajlaşma Uygulaması Paket Kimliği (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "Mesajlaşma Uygulaması URL Şeması (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Uç Nokta için Microsoft Defender",
|
"microsoftDefenderForEndpoint": "Uç Nokta için Microsoft Defender",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "En düşük uygulama sürümü",
|
"minAppVersion": "En düşük uygulama sürümü",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "Ayarlar kataloğu",
|
"settingsCatalog": "Ayarlar kataloğu",
|
||||||
"settingsSelectorLabel": "Ayarlar",
|
"settingsSelectorLabel": "Ayarlar",
|
||||||
"silent": "Sessiz",
|
"silent": "Sessiz",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "Belirli bir mesajlaşma uygulaması",
|
||||||
"specificUserIsLicensedIntune": "{0} adlı kullanıcıya Microsoft Intune lisansı atandı.",
|
"specificUserIsLicensedIntune": "{0} adlı kullanıcıya Microsoft Intune lisansı atandı.",
|
||||||
"state": "Durum",
|
"state": "Durum",
|
||||||
"status": "Durum",
|
"status": "Durum",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Microsoft Edge temeli",
|
"edgeSecurityBaseline": "Microsoft Edge temeli",
|
||||||
"edgeSecurityBaselinePreview": "Önizleme: Microsoft Edge taban çizgisi",
|
"edgeSecurityBaselinePreview": "Önizleme: Microsoft Edge taban çizgisi",
|
||||||
"editionUpgradeConfiguration": "Sürüm yükseltme ve mod değiştirme",
|
"editionUpgradeConfiguration": "Sürüm yükseltme ve mod değiştirme",
|
||||||
"firewall": "Microsoft Defender Güvenlik Duvarı",
|
"firewall": "Windows Güvenlik Duvarı",
|
||||||
"firewallRules": "Microsoft Defender Güvenlik Duvarı kuralları",
|
"firewallRules": "Windows Güvenlik Duvarı kuralları",
|
||||||
"identityProtection": "Hesap koruması",
|
"identityProtection": "Hesap koruması",
|
||||||
"identityProtectionPreview": "Hesap koruması (önizleme)",
|
"identityProtectionPreview": "Hesap koruması (önizleme)",
|
||||||
"mDMSecurityBaseline1810": "Ekim 2018 için Windows 10 ve üzeri için MDM Güvenlik Temeli",
|
"mDMSecurityBaseline1810": "Ekim 2018 için Windows 10 ve üzeri için MDM Güvenlik Temeli",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "Önizleme: Microsoft Office O365 temeli",
|
"office365BaselinePreview": "Önizleme: Microsoft Office O365 temeli",
|
||||||
"securityBaselines": "Güvenlik Temelleri",
|
"securityBaselines": "Güvenlik Temelleri",
|
||||||
"test": "Test Şablonu",
|
"test": "Test Şablonu",
|
||||||
"testFirewallRulesSecurityTemplateName": "Microsoft Defender Güvenlik Duvarı kuralları (Test)",
|
"testFirewallRulesSecurityTemplateName": "Windows Güvenlik Duvarı kuralları (Test)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "Hesap koruması (Test)",
|
"testIdentityProtectionSecurityTemplateName": "Hesap koruması (Test)",
|
||||||
"windowsSecurityExperience": "Windows Güvenliği deneyimi"
|
"windowsSecurityExperience": "Windows Güvenliği deneyimi"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Microsoft Defender Güvenlik Duvarı"
|
"mDE": "Windows Güvenlik Duvarı"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Microsoft Defender Güvenlik Duvarı Kuralları"
|
"mDE": "Windows Güvenlik Duvarı Kuralları"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "OneDrive Bilinen Klasör Taşıma ayarları: Bulut yapılandırma şablonunda Windows 10. https://aka.ms/CloudConfigGuide"
|
"description": "OneDrive Bilinen Klasör Taşıma ayarları: Bulut yapılandırma şablonunda Windows 10. https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Mobil cihaz yönetimi yapılandırması",
|
"expeditedCheckin": "Mobil cihaz yönetimi yapılandırması",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "Uzantılar",
|
"extensions": "Uzantılar",
|
||||||
"hardwareConfigurations": "BIOS Yapılandırmaları",
|
"hardwareConfigurations": "BIOS Yapılandırmaları ve diğer ayarlar profili",
|
||||||
"identityProtection": "Kimlik koruması",
|
"identityProtection": "Kimlik koruması",
|
||||||
"iosCompliancePolicy": "iOS uyumluluk ilkesi",
|
"iosCompliancePolicy": "iOS uyumluluk ilkesi",
|
||||||
"kiosk": "Kiosk",
|
"kiosk": "Kiosk",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Microsoft Defender Virüsten Koruma",
|
"microsoftDefenderAntivirus": "Microsoft Defender Virüsten Koruma",
|
||||||
"microsoftDefenderAntivirusexclusions": "Microsoft Defender Virüsten Koruma dışlamaları",
|
"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ı)",
|
"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ı",
|
"microsoftDefenderFirewallRules": "Windows Güvenlik Duvarı Kuralları",
|
||||||
"microsoftEdgeBaseline": "Microsoft Edge için Güvenlik Temeli",
|
"microsoftEdgeBaseline": "Microsoft Edge için Güvenlik Temeli",
|
||||||
"mxProfileZebraOnly": "MX profili (yalnızca Zebra)",
|
"mxProfileZebraOnly": "MX profili (yalnızca Zebra)",
|
||||||
"networkBoundary": "Ağ sınırı",
|
"networkBoundary": "Ağ sınırı",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Güvenilen sertifika - TEST",
|
"windows10XTrustedCertificate": "Güvenilen sertifika - TEST",
|
||||||
"windows10XVPN": "VPN - TEST",
|
"windows10XVPN": "VPN - TEST",
|
||||||
"windows10XWifi": "WIFI - TEST",
|
"windows10XWifi": "WIFI - TEST",
|
||||||
|
"windows11SecurityBaseline": "Windows 10 ve sonrası için Güvenlik Temelleri",
|
||||||
"windows8CompliancePolicy": "Windows 8 uyumluluk ilkesi",
|
"windows8CompliancePolicy": "Windows 8 uyumluluk ilkesi",
|
||||||
"windowsHealthMonitoring": "Windows işlevsel durum izleme",
|
"windowsHealthMonitoring": "Windows işlevsel durum izleme",
|
||||||
"windowsInformationProtection": "Windows Bilgi Koruması",
|
"windowsInformationProtection": "Windows Bilgi Koruması",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Cihazları ilk sağlama için yapılandırın ve kullanıcılara atayın.",
|
"description": "Cihazları ilk sağlama için yapılandırın.",
|
||||||
"title": "Cihaz hazırlama"
|
"title": "Cihaz hazırlama"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "Sürücü güncelleştirmelerini kendiniz onaylayıp dağıtın"
|
"manual": "Sürücü güncelleştirmelerini kendiniz onaylayıp dağıtın"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "Toplu eylemler"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} gün"
|
"value": "{0} gün"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "Aşağıdan bir eylem seçin.",
|
||||||
"label": "Driver action",
|
"label": "Sürücü eylemi",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "Eylem seçin"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "Dahil edilen sürücüler"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "Toplu işleminize dahil edilecek sürücüleri seçin"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "Dahil edilecek sürücüleri seçin"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "En fazla yüz sürücü seçilebilir"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "En az bir sürücü seçilmelidir"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "Seçili sürücüler"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "Windows Update'te kullanılabilir yap",
|
||||||
"bladeTitle": "Sürücü güncelleştirmeleri Windows 10 ve sonrası (önizleme)",
|
"bladeTitle": "Sürücü güncelleştirmeleri Windows 10 ve sonrası (önizleme)",
|
||||||
"lastSync": "Son eşitleme:",
|
"lastSync": "Son eşitleme:",
|
||||||
"lastSyncDefaultText": "İlk envanter koleksiyonu beklemede",
|
"lastSyncDefaultText": "İlk envanter koleksiyonu beklemede",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "Sol taraftaki önizleme içeriğinden bir bildirim iletisi seçin."
|
"placeholder": "Sol taraftaki önizleme içeriğinden bir bildirim iletisi seçin."
|
||||||
},
|
},
|
||||||
"companyContact": "E-posta alt bilgisi - İletişim bilgilerini ekleyin",
|
"companyContact": "İletişim bilgilerini göster",
|
||||||
"companyLogo": "E-posta üst bilgisi - Şirket logosunu ekleyin",
|
"companyLogo": "Şirket logosunu göster",
|
||||||
"companyName": "E-posta alt bilgisi - Şirket adını ekleyin",
|
"companyName": "Şirket adını göster",
|
||||||
"createEditDescription": "Bildirim iletisi şablonları oluşturun veya düzenleyin.",
|
"createEditDescription": "Bildirim iletisi şablonları oluşturun veya düzenleyin.",
|
||||||
"createMessage": "İleti oluştur",
|
"createMessage": "İleti oluştur",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "Cihaz ayrıntılarını göster",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "Cihaz ayrıntılarını almak e-posta bildirimlerini almada gecikmeye neden olduğundan bu ayar varsayılan olarak kapalıdır.",
|
||||||
"editImpactInfo": "Bu bildirim iletisi şablonunu düzenlemek, bu şablonu kullanan tüm ilkeleri etkiler.",
|
"editImpactInfo": "Bu bildirim iletisi şablonunu düzenlemek, bu şablonu kullanan tüm ilkeleri etkiler.",
|
||||||
"editMessage": "İletiyi düzenle",
|
"editMessage": "İletiyi düzenle",
|
||||||
"email": "e-posta",
|
"email": "e-posta",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "E-posta Alt Bilgisi",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "E-posta bildirimleri için e-posta üst bilgi ve alt bilgi ayarları, Uç Nokta yöneticisinde bulunan Kiracı yönetici düğümündeki Özelleştirme ayarlarına bağlıdır.",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "Posta Üst Bilgisi",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "Özelleştirme ayarlarını yapılandırın",
|
||||||
"formSubTitle": "Bildirim e-postaları oluşturma veya düzenleme",
|
"formSubTitle": "Bildirim e-postaları oluşturma veya düzenleme",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "Üst bilgi ve alt bilgi ayarları",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "Görüntü Önizleme",
|
||||||
"infotext": "Bir bildirim iletisi seçin. Yeni bir bildirim oluşturmak için lütfen Cihaz Uyumluluğunu Ayarla iş yükünün Yönetim bölümündeki Bildirim'e gidin.",
|
"infotext": "Bir bildirim iletisi seçin. Yeni bir bildirim oluşturmak için lütfen Cihaz Uyumluluğunu Ayarla iş yükünün Yönetim bölümündeki Bildirim'e gidin.",
|
||||||
"iwLink": "Şirket Portalı Web Sitesi Bağlantısı",
|
"iwLink": "Şirket portalı web sitesi bağlantısını göster",
|
||||||
"listEmpty": "İleti şablonu yok.",
|
"listEmpty": "İleti şablonu yok.",
|
||||||
"listEmptySelectOnly": "İleti şablonu yok. Yeni bir bildirim oluşturmak için, lütfen Cihaz Uyumluluğu Ayarla iş yükünün Yönet bölümündeki Bildirimler bölümünü ziyaret edin.",
|
"listEmptySelectOnly": "İleti şablonu yok. Yeni bir bildirim oluşturmak için, lütfen Cihaz Uyumluluğu Ayarla iş yükünün Yönet bölümündeki Bildirimler bölümünü ziyaret edin.",
|
||||||
"listSubTitle": "Bildirim iletisi şablonları listesi",
|
"listSubTitle": "Bildirim iletisi şablonları listesi",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "Bildirim iletisi şablonları",
|
"notificationMessageTemplates": "Bildirim iletisi şablonları",
|
||||||
"rowValidationError": "En az bir ileti şablonu gerekiyor",
|
"rowValidationError": "En az bir ileti şablonu gerekiyor",
|
||||||
"selectDescription": "Bir bildirim iletisi seçin. Yeni bir bildirim oluşturmak için, lütfen Cihaz Uyumluluğunu Ayarla iş yükünün Yönetim bölümündeki Bildirimler'e gidin.",
|
"selectDescription": "Bir bildirim iletisi seçin. Yeni bir bildirim oluşturmak için, lütfen Cihaz Uyumluluğunu Ayarla iş yükünün Yönetim bölümündeki Bildirimler'e gidin.",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "Kiracı Değeri",
|
||||||
"testEmailLabel": "Önizleme e-postası gönder",
|
"testEmailLabel": "Önizleme e-postası gönder",
|
||||||
"localeLabel": "Yerel ayar",
|
"localeLabel": "Yerel ayar",
|
||||||
"isDefaultLocale": "Varsayılan Değer"
|
"isDefaultLocale": "Varsayılan Değer"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "sütun {2} satır {0} / {1}"
|
"ariaLabel": "sütun {2} satır {0} / {1}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Baştan başlayın ve kullanılabilir envanter özellikleri kitaplığından istediğiniz özellikleri seçin"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Baştan başlayın ve kullanılabilir ayarlar kitaplığından istediğiniz ayarları seçin",
|
"subtitle": "Baştan başlayın ve kullanılabilir ayarlar kitaplığından istediğiniz ayarları seçin",
|
||||||
"title": "Ayarlar kataloğu"
|
"title": "Ayarlar kataloğu"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "En Düşük 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.",
|
"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.",
|
"noAssignmentsStatusBar": "Kısıtlamayı en az bir gruba atayın. Özellikler'e tıklayın.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "Kısıtlamaları düzenlemek için yönetici olmanız gerekiyor.",
|
||||||
"notFound": "Kısıtlama bulunamadı. Silinmiş olabilir.",
|
"notFound": "Kısıtlama bulunamadı. Silinmiş olabilir.",
|
||||||
"personallyOwned": "Kişilere ait cihazlar",
|
"personallyOwned": "Kişilere ait cihazlar",
|
||||||
"restriction": "Kısıtlama",
|
"restriction": "Kısıtlama",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8 uyumluluk ilkesi",
|
"complianceWindows8": "Windows 8 uyumluluk ilkesi",
|
||||||
"complianceWindowsPhone": "Windows Phone uyumluluk ilkesi",
|
"complianceWindowsPhone": "Windows Phone uyumluluk ilkesi",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Özellikler kataloğu",
|
||||||
"iosCustom": "Özel",
|
"iosCustom": "Özel",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Türetilmiş PIV kimlik bilgisi",
|
"iosDerivedCredentialAuthenticationConfiguration": "Türetilmiş PIV kimlik bilgisi",
|
||||||
"iosDeviceFeatures": "Cihaz özellikleri",
|
"iosDeviceFeatures": "Cihaz özellikleri",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS cihazları (önizleme)"
|
"devices": "Chrome işletim sistemi cihazları"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Yönetici kişileri",
|
"adminContacts": "Yönetici kişileri",
|
||||||
"appPackaging": "Uygulama paketleme",
|
"appPackaging": "Uygulama paketleme",
|
||||||
"businessGroups": "İş Grupları",
|
"autopatchGroups": "Otomatik yama grupları",
|
||||||
"devices": "Cihazlar",
|
"devices": "Cihazlar",
|
||||||
"feedback": "Geri Bildirim",
|
"feedback": "Geri Bildirim",
|
||||||
"gettingStarted": "Başlarken",
|
"gettingStarted": "Başlarken",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Özelleştirme",
|
"brandingAndCustomization": "Özelleştirme",
|
||||||
"cartProfiles": "Kart profilleri",
|
"cartProfiles": "Kart profilleri",
|
||||||
"certificateConnectors": "Sertifika bağlayıcıları",
|
"certificateConnectors": "Sertifika bağlayıcıları",
|
||||||
"chromeEnterprise": "Chrome Enterprise (önizleme)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Buluta ekli cihazlar (önizleme)",
|
"cloudAttachedDevices": "Buluta ekli cihazlar (önizleme)",
|
||||||
"cloudPcActions": "Bulut PC eylemleri (önizleme)",
|
"cloudPcActions": "Bulut PC eylemleri (önizleme)",
|
||||||
"cloudPcMaintenanceWindows": "Bulut PC bakım pencereleri (Önizleme)",
|
"cloudPcMaintenanceWindows": "Bulut PC bakım pencereleri (Önizleme)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "Kullanıcı durumu",
|
"userExecutionStatus": "Kullanıcı durumu",
|
||||||
"wdacSupplementalPolicies": "S modu ek ilkeleri",
|
"wdacSupplementalPolicies": "S modu ek ilkeleri",
|
||||||
"win32CatalogUpdateApp": "Windows (Win32) katalog uygulamaları için güncelleştirmeler",
|
"win32CatalogUpdateApp": "Windows (Win32) katalog uygulamaları için güncelleştirmeler",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Windows (Win32) katalog uygulamaları için güncelleştirmeler (Önizleme)",
|
||||||
"windows10DriverUpdate": "Windows 10 ve üzeri için sürücü güncelleştirmeleri",
|
"windows10DriverUpdate": "Windows 10 ve üzeri için sürücü güncelleştirmeleri",
|
||||||
"windows10QualityUpdate": "Windows 10 ve üstü için kalite güncelleştirmeleri",
|
"windows10QualityUpdate": "Windows 10 ve üstü için kalite güncelleştirmeleri",
|
||||||
"windows10UpdateRings": "Windows 10 ve sonraki sürümler için güncelleştirme kademeleri",
|
"windows10UpdateRings": "Windows 10 ve sonraki sürümler için güncelleştirme kademeleri",
|
||||||
"windows10XPolicyFailures": "Windows 10X ilke hataları",
|
"windows10XPolicyFailures": "Windows 10X ilke hataları",
|
||||||
"windows365Connector": "Windows 365 Citrix bağlayıcısı",
|
|
||||||
"windows365PartnerConnector": "Windows 365 iş ortağı bağlayıcıları",
|
"windows365PartnerConnector": "Windows 365 iş ortağı bağlayıcıları",
|
||||||
"windowsDiagnosticData": "Windows verileri",
|
"windowsDiagnosticData": "Windows verileri",
|
||||||
"windowsEnterpriseCertificate": "Windows Enterprise sertifikası",
|
"windowsEnterpriseCertificate": "Windows Enterprise sertifikası",
|
||||||
|
|||||||
@@ -227,7 +227,6 @@
|
|||||||
"co": "Corsican (France)",
|
"co": "Corsican (France)",
|
||||||
"cs": "Czech (Czech Republic)",
|
"cs": "Czech (Czech Republic)",
|
||||||
"da": "Danish (Denmark)",
|
"da": "Danish (Denmark)",
|
||||||
"prs": "Dari (Afghanistan)",
|
|
||||||
"dv": "Divehi (Maldives)",
|
"dv": "Divehi (Maldives)",
|
||||||
"et": "Estonian (Estonia)",
|
"et": "Estonian (Estonia)",
|
||||||
"fo": "Faroese (Faroe Islands)",
|
"fo": "Faroese (Faroe Islands)",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Specify the language and region that will be used.",
|
"languageInfo": "Specify the language and region that will be used.",
|
||||||
"licenseAgreement": "Microsoft Software License Terms",
|
"licenseAgreement": "Microsoft Software License Terms",
|
||||||
"licenseAgreementInfo": "Specify whether to show the EULA to users.",
|
"licenseAgreementInfo": "Specify whether to show the EULA to users.",
|
||||||
"plugAndForgetDevice": "Self-Deploying (preview)",
|
"plugAndForgetDevice": "Self-Deploying",
|
||||||
"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. ",
|
"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",
|
"privacySettings": "Privacy settings",
|
||||||
"privacySettingsInfo": "Specify whether to show privacy settings to users.",
|
"privacySettingsInfo": "Specify whether to show privacy settings to users.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Only fail selected blocking apps in technician phase (preview)",
|
"allowNonBlockingAppInstallation": "Only fail selected blocking apps in technician phase",
|
||||||
"apps": "apps",
|
"apps": "apps",
|
||||||
"appsListName": "Application list",
|
"appsListName": "Application list",
|
||||||
"blockingApps": "Blocking apps",
|
"blockingApps": "Blocking apps",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Activity",
|
"activity": "Activity",
|
||||||
|
"activityName": "Activity name",
|
||||||
"actor": "Initiated by (actor)",
|
"actor": "Initiated by (actor)",
|
||||||
|
"actorType": "Actor type",
|
||||||
"app": "App",
|
"app": "App",
|
||||||
"appName": "App name",
|
"appName": "App name",
|
||||||
"applicationName": "Application name",
|
"applicationName": "Application name",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD Connector",
|
"mtdConnector": "MTD Connector",
|
||||||
"name": "Profile name",
|
"name": "Profile name",
|
||||||
"oSVersion": "OS Version",
|
"oSVersion": "OS Version",
|
||||||
|
"operationType": "Operation type",
|
||||||
"os": "OS",
|
"os": "OS",
|
||||||
"packageName": "Package name",
|
"packageName": "Package name",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1549,7 +1551,7 @@
|
|||||||
"tooltip": "If blocked, the app cannot print protected data."
|
"tooltip": "If blocked, the app cannot print protected data."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 19.0.0).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Transfer messaging data to",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
||||||
},
|
},
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "This setting specifies the length of time without user input after which the mobile device screen is locked. Recommended value: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "This setting specifies the length of time without user input after which the mobile device screen is locked. Recommended value: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "This setting specifies the length of time without user input after which the device is locked. Recommended value: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "This setting specifies the length of time without user input after which the device is locked. Recommended value: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum minutes of inactivity before password is required",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum minutes of inactivity before password is required",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Recommended value: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Maximum OS version for mobile devices",
|
"complianceMobileOsVersionRestrictionMaximumName": "Maximum OS version for mobile devices",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "This setting specifies the number of recent passwords that cannot be reused. Recommended value: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "This setting specifies the number of recent passwords that cannot be reused. Recommended value: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Number of previous passwords to prevent reuse",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Number of previous passwords to prevent reuse",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Recommended value: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Enter the newest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the maximum OS build, enter the supplemental build version. For example: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Enter the newest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the maximum OS build, enter the supplemental build version. For example: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Maximum OS build version",
|
"complianceOsBuildVersionRestrictionMaximumName": "Maximum OS build version",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Enter the oldest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the minimum OS build, enter the supplemental build version. For example: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Enter the oldest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the minimum OS build, enter the supplemental build version. For example: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Require Microsoft Defender security intelligence to be up-to-date.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Require Microsoft Defender security intelligence to be up-to-date.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware security intelligence up-to-date",
|
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware security intelligence up-to-date",
|
||||||
"complianceRequiredPasswordTypeDescription": "This setting specifies whether passwords are allowed to be comprised only of numeric characters, or whether they must contain characters other than numbers. Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
"complianceRequiredPasswordTypeDescription": "This setting specifies whether passwords are allowed to be comprised only of numeric characters, or whether they must contain characters other than numbers. Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
||||||
"complianceRootedAllowedDescription": "Prevent rooted devices from having corporate access.",
|
"complianceRootedAllowedDescription": "Prevent rooted devices from having corporate access.",
|
||||||
"complianceRootedAllowedName": "Rooted devices",
|
"complianceRootedAllowedName": "Rooted devices",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "This setting specifies whether to prevent the device from using the USB debugging feature.",
|
"complianceSecurityDisableUSBDebuggingDescription": "This setting specifies whether to prevent the device from using the USB debugging feature.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Select the oldest OS version a device can have. The operating system version is defined as major.minor.build.revision. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Select the oldest OS version a device can have. The operating system version is defined as major.minor.build.revision. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Select the password type that will be on the device.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Select the password type that will be on the device.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Password type",
|
"complianceWindowsRequiredPasswordTypeName": "Password type",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Require a password to unlock work profile",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Work Profile Security",
|
||||||
"compliantAppsOption": "Compliant apps list. Report noncompliance for any installed apps not in list",
|
"compliantAppsOption": "Compliant apps list. Report noncompliance for any installed apps not in list",
|
||||||
"computerNameStaticPrefixDescription": "Computers are assigned 15 characters long name. Specify a prefix, rest of 15 characters will be random.",
|
"computerNameStaticPrefixDescription": "Computers are assigned 15 characters long name. Specify a prefix, rest of 15 characters will be random.",
|
||||||
"computerNameStaticPrefixName": "Computer name prefix",
|
"computerNameStaticPrefixName": "Computer name prefix",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "MTU must be between 1280 and 1400 bytes",
|
"mTUSizeInBytesBounds": "MTU must be between 1280 and 1400 bytes",
|
||||||
"mTUSizeInBytesName": "Maximum transmission unit",
|
"mTUSizeInBytesName": "Maximum transmission unit",
|
||||||
"mTUSizeInBytesToolTip": "The largest packet of data, in bytes, that can be transmitted on the network. When not configured, the Apple default size is 1280 bytes. Applies to iOS 14 and later.",
|
"mTUSizeInBytesToolTip": "The largest packet of data, in bytes, that can be transmitted on the network. When not configured, the Apple default size is 1280 bytes. Applies to iOS 14 and later.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Use randomized MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Use device default",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Use randomized MAC only when needed, such as for NAC support. Users can change this setting. Applies to Android 13 and later.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Use device MAC",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "MAC address randomization",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store and identified developers",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store and identified developers",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Blocks AirPlay, screen sharing to other devices, and a Classroom app feature used by teachers to view their students' screens. This setting isn't available if you've blocked screenshots.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Blocks AirPlay, screen sharing to other devices, and a Classroom app feature used by teachers to view their students' screens. This setting isn't available if you've blocked screenshots.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Enter a number (4-16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Enter a number (4-16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Enter a number (6-16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Enter a number (6-16)",
|
||||||
"minimumPasswordLengthName": "Minimum password length",
|
"minimumPasswordLengthName": "Minimum password length",
|
||||||
|
"minimumPasswordLengthTooltipText": "Enter a number",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Missing updates will install automatically",
|
"minimumUpdateAutoInstallClassificationDescription": "Missing updates will install automatically",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Install specified classification of updates",
|
"minimumUpdateAutoInstallClassificationName": "Install specified classification of updates",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Enroll to Software KSP",
|
"sCEPPolicyEnrollToSoftwareKSP": "Enroll to Software KSP",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Enroll to Trusted Platform Module (TPM) KSP, otherwise fail",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Enroll to Trusted Platform Module (TPM) KSP, otherwise fail",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Enroll to Trusted Platform Module (TPM) KSP if present, otherwise Software KSP",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Enroll to Trusted Platform Module (TPM) KSP if present, otherwise Software KSP",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "WARNING: Neither the Any Purpose EKU (OID 2.5.29.37.0) nor the Any App Policy EKU (OID 1.3.6.1.4.1.311.10.12.1) can be used with a certification authority created in Microsoft Cloud PKI.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "In most cases, the certificate requires at least Client Authentication so that the user or device can authenticate to a server. However, you can specify additional usages to further define the purpose of the key.",
|
"sCEPPolicyExtendedKeyUsageDescription": "In most cases, the certificate requires at least Client Authentication so that the user or device can authenticate to a server. However, you can specify additional usages to further define the purpose of the key.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Extended key usage",
|
"sCEPPolicyExtendedKeyUsageName": "Extended key usage",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Use a hash algorithm type with the certificate. Make sure to select the strongest level of security that the connecting devices support.",
|
"sCEPPolicyHashAlgorithmDescription": "Use a hash algorithm type with the certificate. Make sure to select the strongest level of security that the connecting devices support.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Enter number of days (1-255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Enter number of days (1-255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Enter number of days (1 - 365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Enter number of days (1 - 365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Password expiration (days)",
|
"workProfilePasswordExpirationInDaysName": "Password expiration (days)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Enter number of days",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Work Profile password: Minimum password length",
|
"workProfilePasswordMinimumLengthReportingName": "Work Profile password: Minimum password length",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Work Profile password: Number of characters required",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Work Profile password: Number of characters required",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Work Profile password: Number of lowercase characters required",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Work Profile password: Number of lowercase characters required",
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Mobile device management configuration",
|
"expeditedCheckin": "Mobile device management configuration",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "Extensions",
|
"extensions": "Extensions",
|
||||||
"hardwareConfigurations": "BIOS Configurations",
|
"hardwareConfigurations": "BIOS Configurations and other settings",
|
||||||
"identityProtection": "Identity protection",
|
"identityProtection": "Identity protection",
|
||||||
"iosCompliancePolicy": "iOS compliance policy",
|
"iosCompliancePolicy": "iOS compliance policy",
|
||||||
"kiosk": "Kiosk",
|
"kiosk": "Kiosk",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Trusted certificate - TEST",
|
"windows10XTrustedCertificate": "Trusted certificate - TEST",
|
||||||
"windows10XVPN": "VPN - TEST",
|
"windows10XVPN": "VPN - TEST",
|
||||||
"windows10XWifi": "WIFI - TEST",
|
"windows10XWifi": "WIFI - TEST",
|
||||||
|
"windows11SecurityBaseline": "Security Baseline for Windows 10 and later",
|
||||||
"windows8CompliancePolicy": "Windows 8 compliance policy",
|
"windows8CompliancePolicy": "Windows 8 compliance policy",
|
||||||
"windowsHealthMonitoring": "Windows health monitoring",
|
"windowsHealthMonitoring": "Windows health monitoring",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Configure devices for initial provisioning and assign to users.",
|
"description": "Configure devices for initial provisioning.",
|
||||||
"title": "Device preparation"
|
"title": "Device preparation"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "row {0} of {1} column {2}"
|
"ariaLabel": "row {0} of {1} column {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Start from scratch and select the properties you want from the library of available inventory properties"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Start from scratch and select settings you want from the library of available settings",
|
"subtitle": "Start from scratch and select settings you want from the library of available settings",
|
||||||
"title": "Settings catalog"
|
"title": "Settings catalog"
|
||||||
@@ -11947,7 +11985,7 @@
|
|||||||
"minVersion": "Min Version",
|
"minVersion": "Min Version",
|
||||||
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
|
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
|
||||||
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
|
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
||||||
"notFound": "Restriction not found. It may have already been deleted.",
|
"notFound": "Restriction not found. It may have already been deleted.",
|
||||||
"personallyOwned": "Personally owned devices",
|
"personallyOwned": "Personally owned devices",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8 compliance policy",
|
"complianceWindows8": "Windows 8 compliance policy",
|
||||||
"complianceWindowsPhone": "Windows Phone compliance policy",
|
"complianceWindowsPhone": "Windows Phone compliance policy",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Properties catalog",
|
||||||
"iosCustom": "Custom",
|
"iosCustom": "Custom",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
|
"iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
|
||||||
"iosDeviceFeatures": "Device features",
|
"iosDeviceFeatures": "Device features",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS devices (preview)"
|
"devices": "ChromeOS devices"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Admin contacts",
|
"adminContacts": "Admin contacts",
|
||||||
"appPackaging": "App packaging",
|
"appPackaging": "App packaging",
|
||||||
"businessGroups": "Business Groups",
|
"autopatchGroups": "Autopatch groups",
|
||||||
"devices": "Devices",
|
"devices": "Devices",
|
||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"gettingStarted": "Getting started",
|
"gettingStarted": "Getting started",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Customization",
|
"brandingAndCustomization": "Customization",
|
||||||
"cartProfiles": "Cart profiles",
|
"cartProfiles": "Cart profiles",
|
||||||
"certificateConnectors": "Certificate connectors",
|
"certificateConnectors": "Certificate connectors",
|
||||||
"chromeEnterprise": "Chrome Enterprise (preview)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Cloud attached devices (preview)",
|
"cloudAttachedDevices": "Cloud attached devices (preview)",
|
||||||
"cloudPcActions": "Cloud PC actions (preview)",
|
"cloudPcActions": "Cloud PC actions (preview)",
|
||||||
"cloudPcMaintenanceWindows": "Cloud PC maintenance windows (Preview)",
|
"cloudPcMaintenanceWindows": "Cloud PC maintenance windows (Preview)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "User status",
|
"userExecutionStatus": "User status",
|
||||||
"wdacSupplementalPolicies": "S mode supplemental policies",
|
"wdacSupplementalPolicies": "S mode supplemental policies",
|
||||||
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
|
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Updates for Windows (Win32) catalog apps (Preview)",
|
||||||
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
|
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
|
||||||
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
|
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
|
||||||
"windows10UpdateRings": "Update rings for Windows 10 and later",
|
"windows10UpdateRings": "Update rings for Windows 10 and later",
|
||||||
"windows10XPolicyFailures": "Windows 10X policy failures",
|
"windows10XPolicyFailures": "Windows 10X policy failures",
|
||||||
"windows365Connector": "Windows 365 Citrix connector",
|
|
||||||
"windows365PartnerConnector": "Windows 365 partner connectors",
|
"windows365PartnerConnector": "Windows 365 partner connectors",
|
||||||
"windowsDiagnosticData": "Windows data",
|
"windowsDiagnosticData": "Windows data",
|
||||||
"windowsEnterpriseCertificate": "Windows enterprise certificate",
|
"windowsEnterpriseCertificate": "Windows enterprise certificate",
|
||||||
|
|||||||
@@ -227,7 +227,6 @@
|
|||||||
"co": "Corsican (France)",
|
"co": "Corsican (France)",
|
||||||
"cs": "Czech (Czech Republic)",
|
"cs": "Czech (Czech Republic)",
|
||||||
"da": "Danish (Denmark)",
|
"da": "Danish (Denmark)",
|
||||||
"prs": "Dari (Afghanistan)",
|
|
||||||
"dv": "Divehi (Maldives)",
|
"dv": "Divehi (Maldives)",
|
||||||
"et": "Estonian (Estonia)",
|
"et": "Estonian (Estonia)",
|
||||||
"fo": "Faroese (Faroe Islands)",
|
"fo": "Faroese (Faroe Islands)",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Specify the language and region that will be used.",
|
"languageInfo": "Specify the language and region that will be used.",
|
||||||
"licenseAgreement": "Microsoft Software License Terms",
|
"licenseAgreement": "Microsoft Software License Terms",
|
||||||
"licenseAgreementInfo": "Specify whether to show the EULA to users.",
|
"licenseAgreementInfo": "Specify whether to show the EULA to users.",
|
||||||
"plugAndForgetDevice": "Self-Deploying (preview)",
|
"plugAndForgetDevice": "Self-Deploying",
|
||||||
"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. ",
|
"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",
|
"privacySettings": "Privacy settings",
|
||||||
"privacySettingsInfo": "Specify whether to show privacy settings to users.",
|
"privacySettingsInfo": "Specify whether to show privacy settings to users.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Only fail selected blocking apps in technician phase (preview)",
|
"allowNonBlockingAppInstallation": "Only fail selected blocking apps in technician phase",
|
||||||
"apps": "apps",
|
"apps": "apps",
|
||||||
"appsListName": "Application list",
|
"appsListName": "Application list",
|
||||||
"blockingApps": "Blocking apps",
|
"blockingApps": "Blocking apps",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Activity",
|
"activity": "Activity",
|
||||||
|
"activityName": "Activity name",
|
||||||
"actor": "Initiated by (actor)",
|
"actor": "Initiated by (actor)",
|
||||||
|
"actorType": "Actor type",
|
||||||
"app": "App",
|
"app": "App",
|
||||||
"appName": "App name",
|
"appName": "App name",
|
||||||
"applicationName": "Application name",
|
"applicationName": "Application name",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD Connector",
|
"mtdConnector": "MTD Connector",
|
||||||
"name": "Profile name",
|
"name": "Profile name",
|
||||||
"oSVersion": "OS Version",
|
"oSVersion": "OS Version",
|
||||||
|
"operationType": "Operation type",
|
||||||
"os": "OS",
|
"os": "OS",
|
||||||
"packageName": "Package name",
|
"packageName": "Package name",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1549,7 +1551,7 @@
|
|||||||
"tooltip": "If blocked, the app cannot print protected data."
|
"tooltip": "If blocked, the app cannot print protected data."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 19.0.0).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Transfer messaging data to",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
||||||
},
|
},
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "This setting specifies the length of time without user input after which the mobile device screen is locked. Recommended value: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "This setting specifies the length of time without user input after which the mobile device screen is locked. Recommended value: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "This setting specifies the length of time without user input after which the device is locked. Recommended value: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "This setting specifies the length of time without user input after which the device is locked. Recommended value: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum minutes of inactivity before password is required",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum minutes of inactivity before password is required",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Recommended value: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Maximum OS version for mobile devices",
|
"complianceMobileOsVersionRestrictionMaximumName": "Maximum OS version for mobile devices",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "This setting specifies the number of recent passwords that cannot be reused. Recommended value: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "This setting specifies the number of recent passwords that cannot be reused. Recommended value: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Number of previous passwords to prevent reuse",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Number of previous passwords to prevent reuse",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Recommended value: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Enter the newest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the maximum OS build, enter the supplemental build version. For example: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Enter the newest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the maximum OS build, enter the supplemental build version. For example: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Maximum OS build version",
|
"complianceOsBuildVersionRestrictionMaximumName": "Maximum OS build version",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Enter the oldest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the minimum OS build, enter the supplemental build version. For example: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Enter the oldest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the minimum OS build, enter the supplemental build version. For example: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Require Microsoft Defender security intelligence to be up-to-date.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Require Microsoft Defender security intelligence to be up-to-date.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware security intelligence up-to-date",
|
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware security intelligence up-to-date",
|
||||||
"complianceRequiredPasswordTypeDescription": "This setting specifies whether passwords are allowed to be comprised only of numeric characters, or whether they must contain characters other than numbers. Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
"complianceRequiredPasswordTypeDescription": "This setting specifies whether passwords are allowed to be comprised only of numeric characters, or whether they must contain characters other than numbers. Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
||||||
"complianceRootedAllowedDescription": "Prevent rooted devices from having corporate access.",
|
"complianceRootedAllowedDescription": "Prevent rooted devices from having corporate access.",
|
||||||
"complianceRootedAllowedName": "Rooted devices",
|
"complianceRootedAllowedName": "Rooted devices",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "This setting specifies whether to prevent the device from using the USB debugging feature.",
|
"complianceSecurityDisableUSBDebuggingDescription": "This setting specifies whether to prevent the device from using the USB debugging feature.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Select the oldest OS version a device can have. The operating system version is defined as major.minor.build.revision. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Select the oldest OS version a device can have. The operating system version is defined as major.minor.build.revision. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Select the password type that will be on the device.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Select the password type that will be on the device.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Password type",
|
"complianceWindowsRequiredPasswordTypeName": "Password type",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Require a password to unlock work profile",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Work Profile Security",
|
||||||
"compliantAppsOption": "Compliant apps list. Report noncompliance for any installed apps not in list",
|
"compliantAppsOption": "Compliant apps list. Report noncompliance for any installed apps not in list",
|
||||||
"computerNameStaticPrefixDescription": "Computers are assigned 15 characters long name. Specify a prefix, rest of 15 characters will be random.",
|
"computerNameStaticPrefixDescription": "Computers are assigned 15 characters long name. Specify a prefix, rest of 15 characters will be random.",
|
||||||
"computerNameStaticPrefixName": "Computer name prefix",
|
"computerNameStaticPrefixName": "Computer name prefix",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "MTU must be between 1280 and 1400 bytes",
|
"mTUSizeInBytesBounds": "MTU must be between 1280 and 1400 bytes",
|
||||||
"mTUSizeInBytesName": "Maximum transmission unit",
|
"mTUSizeInBytesName": "Maximum transmission unit",
|
||||||
"mTUSizeInBytesToolTip": "The largest packet of data, in bytes, that can be transmitted on the network. When not configured, the Apple default size is 1280 bytes. Applies to iOS 14 and later.",
|
"mTUSizeInBytesToolTip": "The largest packet of data, in bytes, that can be transmitted on the network. When not configured, the Apple default size is 1280 bytes. Applies to iOS 14 and later.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Use randomized MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Use device default",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Use randomized MAC only when needed, such as for NAC support. Users can change this setting. Applies to Android 13 and later.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Use device MAC",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "MAC address randomization",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store and identified developers",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store and identified developers",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Blocks AirPlay, screen sharing to other devices, and a Classroom app feature used by teachers to view their students' screens. This setting isn't available if you've blocked screenshots.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Blocks AirPlay, screen sharing to other devices, and a Classroom app feature used by teachers to view their students' screens. This setting isn't available if you've blocked screenshots.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Enter a number (4-16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Enter a number (4-16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Enter a number (6-16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Enter a number (6-16)",
|
||||||
"minimumPasswordLengthName": "Minimum password length",
|
"minimumPasswordLengthName": "Minimum password length",
|
||||||
|
"minimumPasswordLengthTooltipText": "Enter a number",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Missing updates will install automatically",
|
"minimumUpdateAutoInstallClassificationDescription": "Missing updates will install automatically",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Install specified classification of updates",
|
"minimumUpdateAutoInstallClassificationName": "Install specified classification of updates",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Enroll to Software KSP",
|
"sCEPPolicyEnrollToSoftwareKSP": "Enroll to Software KSP",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Enroll to Trusted Platform Module (TPM) KSP, otherwise fail",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Enroll to Trusted Platform Module (TPM) KSP, otherwise fail",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Enroll to Trusted Platform Module (TPM) KSP if present, otherwise Software KSP",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Enroll to Trusted Platform Module (TPM) KSP if present, otherwise Software KSP",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "WARNING: Neither the Any Purpose EKU (OID 2.5.29.37.0) nor the Any App Policy EKU (OID 1.3.6.1.4.1.311.10.12.1) can be used with a certification authority created in Microsoft Cloud PKI.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "In most cases, the certificate requires at least Client Authentication so that the user or device can authenticate to a server. However, you can specify additional usages to further define the purpose of the key.",
|
"sCEPPolicyExtendedKeyUsageDescription": "In most cases, the certificate requires at least Client Authentication so that the user or device can authenticate to a server. However, you can specify additional usages to further define the purpose of the key.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Extended key usage",
|
"sCEPPolicyExtendedKeyUsageName": "Extended key usage",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Use a hash algorithm type with the certificate. Make sure to select the strongest level of security that the connecting devices support.",
|
"sCEPPolicyHashAlgorithmDescription": "Use a hash algorithm type with the certificate. Make sure to select the strongest level of security that the connecting devices support.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Enter number of days (1-255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Enter number of days (1-255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Enter number of days (1 - 365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Enter number of days (1 - 365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Password expiration (days)",
|
"workProfilePasswordExpirationInDaysName": "Password expiration (days)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Enter number of days",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Work Profile password: Minimum password length",
|
"workProfilePasswordMinimumLengthReportingName": "Work Profile password: Minimum password length",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Work Profile password: Number of characters required",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Work Profile password: Number of characters required",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Work Profile password: Number of lowercase characters required",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Work Profile password: Number of lowercase characters required",
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Mobile device management configuration",
|
"expeditedCheckin": "Mobile device management configuration",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "Extensions",
|
"extensions": "Extensions",
|
||||||
"hardwareConfigurations": "BIOS Configurations",
|
"hardwareConfigurations": "BIOS Configurations and other settings",
|
||||||
"identityProtection": "Identity protection",
|
"identityProtection": "Identity protection",
|
||||||
"iosCompliancePolicy": "iOS compliance policy",
|
"iosCompliancePolicy": "iOS compliance policy",
|
||||||
"kiosk": "Kiosk",
|
"kiosk": "Kiosk",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Trusted certificate - TEST",
|
"windows10XTrustedCertificate": "Trusted certificate - TEST",
|
||||||
"windows10XVPN": "VPN - TEST",
|
"windows10XVPN": "VPN - TEST",
|
||||||
"windows10XWifi": "WIFI - TEST",
|
"windows10XWifi": "WIFI - TEST",
|
||||||
|
"windows11SecurityBaseline": "Security Baseline for Windows 10 and later",
|
||||||
"windows8CompliancePolicy": "Windows 8 compliance policy",
|
"windows8CompliancePolicy": "Windows 8 compliance policy",
|
||||||
"windowsHealthMonitoring": "Windows health monitoring",
|
"windowsHealthMonitoring": "Windows health monitoring",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Configure devices for initial provisioning and assign to users.",
|
"description": "Configure devices for initial provisioning.",
|
||||||
"title": "Device preparation"
|
"title": "Device preparation"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "row {0} of {1} column {2}"
|
"ariaLabel": "row {0} of {1} column {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Start from scratch and select the properties you want from the library of available inventory properties"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Start from scratch and select settings you want from the library of available settings",
|
"subtitle": "Start from scratch and select settings you want from the library of available settings",
|
||||||
"title": "Settings catalog"
|
"title": "Settings catalog"
|
||||||
@@ -11947,7 +11985,7 @@
|
|||||||
"minVersion": "Min Version",
|
"minVersion": "Min Version",
|
||||||
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
|
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
|
||||||
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
|
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
||||||
"notFound": "Restriction not found. It may have already been deleted.",
|
"notFound": "Restriction not found. It may have already been deleted.",
|
||||||
"personallyOwned": "Personally owned devices",
|
"personallyOwned": "Personally owned devices",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8 compliance policy",
|
"complianceWindows8": "Windows 8 compliance policy",
|
||||||
"complianceWindowsPhone": "Windows Phone compliance policy",
|
"complianceWindowsPhone": "Windows Phone compliance policy",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Properties catalog",
|
||||||
"iosCustom": "Custom",
|
"iosCustom": "Custom",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
|
"iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
|
||||||
"iosDeviceFeatures": "Device features",
|
"iosDeviceFeatures": "Device features",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS devices (preview)"
|
"devices": "ChromeOS devices"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Admin contacts",
|
"adminContacts": "Admin contacts",
|
||||||
"appPackaging": "App packaging",
|
"appPackaging": "App packaging",
|
||||||
"businessGroups": "Business Groups",
|
"autopatchGroups": "Autopatch groups",
|
||||||
"devices": "Devices",
|
"devices": "Devices",
|
||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"gettingStarted": "Getting started",
|
"gettingStarted": "Getting started",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Customization",
|
"brandingAndCustomization": "Customization",
|
||||||
"cartProfiles": "Cart profiles",
|
"cartProfiles": "Cart profiles",
|
||||||
"certificateConnectors": "Certificate connectors",
|
"certificateConnectors": "Certificate connectors",
|
||||||
"chromeEnterprise": "Chrome Enterprise (preview)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Cloud attached devices (preview)",
|
"cloudAttachedDevices": "Cloud attached devices (preview)",
|
||||||
"cloudPcActions": "Cloud PC actions (preview)",
|
"cloudPcActions": "Cloud PC actions (preview)",
|
||||||
"cloudPcMaintenanceWindows": "Cloud PC maintenance windows (Preview)",
|
"cloudPcMaintenanceWindows": "Cloud PC maintenance windows (Preview)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "User status",
|
"userExecutionStatus": "User status",
|
||||||
"wdacSupplementalPolicies": "S mode supplemental policies",
|
"wdacSupplementalPolicies": "S mode supplemental policies",
|
||||||
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
|
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Updates for Windows (Win32) catalog apps (Preview)",
|
||||||
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
|
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
|
||||||
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
|
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
|
||||||
"windows10UpdateRings": "Update rings for Windows 10 and later",
|
"windows10UpdateRings": "Update rings for Windows 10 and later",
|
||||||
"windows10XPolicyFailures": "Windows 10X policy failures",
|
"windows10XPolicyFailures": "Windows 10X policy failures",
|
||||||
"windows365Connector": "Windows 365 Citrix connector",
|
|
||||||
"windows365PartnerConnector": "Windows 365 partner connectors",
|
"windows365PartnerConnector": "Windows 365 partner connectors",
|
||||||
"windowsDiagnosticData": "Windows data",
|
"windowsDiagnosticData": "Windows data",
|
||||||
"windowsEnterpriseCertificate": "Windows enterprise certificate",
|
"windowsEnterpriseCertificate": "Windows enterprise certificate",
|
||||||
|
|||||||
+148
-109
@@ -227,7 +227,6 @@
|
|||||||
"co": "科西嘉语(法国)",
|
"co": "科西嘉语(法国)",
|
||||||
"cs": "捷克语(捷克共和国)",
|
"cs": "捷克语(捷克共和国)",
|
||||||
"da": "丹麦语(丹麦)",
|
"da": "丹麦语(丹麦)",
|
||||||
"prs": "达里语(阿富汗)",
|
|
||||||
"dv": "迪维希语(马尔代夫)",
|
"dv": "迪维希语(马尔代夫)",
|
||||||
"et": "爱沙尼亚语(爱沙尼亚)",
|
"et": "爱沙尼亚语(爱沙尼亚)",
|
||||||
"fo": "法罗语(法罗群岛)",
|
"fo": "法罗语(法罗群岛)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender 防病毒",
|
"defender": "Microsoft Defender 防病毒",
|
||||||
"defenderAntivirus": "Microsoft Defender 防病毒",
|
"defenderAntivirus": "Microsoft Defender 防病毒",
|
||||||
"defenderExploitGuard": "Microsoft Defender 攻击防护",
|
"defenderExploitGuard": "Microsoft Defender 攻击防护",
|
||||||
"defenderFirewall": "Microsoft Defender 防火墙",
|
"defenderFirewall": "Windows 防火墙",
|
||||||
"defenderLocalSecurityOptions": "本地设备安全选项",
|
"defenderLocalSecurityOptions": "本地设备安全选项",
|
||||||
"defenderSecurityCenter": "Microsoft Defender 安全中心",
|
"defenderSecurityCenter": "Microsoft Defender 安全中心",
|
||||||
"deliveryOptimization": "交付优化",
|
"deliveryOptimization": "交付优化",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "已禁用",
|
"disabled": "已禁用",
|
||||||
"enabled": "已启用",
|
"enabled": "已启用",
|
||||||
"infoBalloonContent": "控制是否将最新的 Windows 10 功能更新安装到不符合 Windows 11 条件的设备",
|
"infoBalloonContent": "控制是否将最新的 Windows 10 功能更新安装到不符合 Windows 11 条件的设备",
|
||||||
"label": "当设备无法运行 Windows 11 时,请安装最新的 Windows 10 功能更新",
|
"label": "当设备没有运行 Windows 11 的资格时,请安装最新的 Windows 10 功能更新",
|
||||||
"notApplicable": "不适用",
|
"notApplicable": "不适用",
|
||||||
"summaryLabel": "在无法运行 Windows 11 的设备上安装 Windows 10"
|
"summaryLabel": "在没有 Windows 11 运行资格的设备安装 Windows 10"
|
||||||
},
|
},
|
||||||
"bladeTitle": "功能更新部署",
|
"bladeTitle": "功能更新部署",
|
||||||
"deploymentSettingsTitle": "部署设置",
|
"deploymentSettingsTitle": "部署设置",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"iOS": "在 iOS/iPadOS 设备上,你可以允许使用指纹标识而非 PIN。当用户使用其工作帐户访问该应用时,将提示他们提供其指纹。",
|
"iOS": "在 iOS/iPadOS 设备上,你可以允许使用指纹标识而非 PIN。当用户使用其工作帐户访问该应用时,将提示他们提供其指纹。",
|
||||||
"mac": "在 Mac 设备上,可以允许使用指纹标识代替 PIN。当用户使用其工作帐户访问此应用时,将提示他们提供其指纹。"
|
"mac": "在 Mac 设备上,可以允许使用指纹标识代替 PIN。当用户使用其工作帐户访问此应用时,将提示他们提供其指纹。"
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "选择以下选项之一,指定此应用可从哪些应用接收数据:",
|
"appSharingFromLevel1": "选择以下选项之一,指定此应用可从哪些应用接收数据:",
|
||||||
"appSharingFromLevel2": "{0}: 只允许接收来自其他策略托管应用的组织文档或帐户中的数据",
|
"appSharingFromLevel2": "{0}: 只允许接收来自其他策略托管应用的组织文档或帐户中的数据",
|
||||||
"appSharingFromLevel3": "{0}: 允许接收来自任何应用的组织文档或帐户中的数据",
|
"appSharingFromLevel3": "{0}: 允许接收来自任何应用的组织文档或帐户中的数据",
|
||||||
@@ -841,7 +841,7 @@
|
|||||||
"deviceUseType": "设备使用类型",
|
"deviceUseType": "设备使用类型",
|
||||||
"enrollmentState": "注册状态",
|
"enrollmentState": "注册状态",
|
||||||
"intuneDevice": "关联的 Intune 设备",
|
"intuneDevice": "关联的 Intune 设备",
|
||||||
"lastContacted": "上次联系",
|
"lastContacted": "上次连接",
|
||||||
"make": "制造商",
|
"make": "制造商",
|
||||||
"model": "模型",
|
"model": "模型",
|
||||||
"profile": "分配的配置文件",
|
"profile": "分配的配置文件",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "指定将使用的语言和区域。",
|
"languageInfo": "指定将使用的语言和区域。",
|
||||||
"licenseAgreement": "Microsoft 软件许可条款",
|
"licenseAgreement": "Microsoft 软件许可条款",
|
||||||
"licenseAgreementInfo": "指定是否向用户显示 EULA。",
|
"licenseAgreementInfo": "指定是否向用户显示 EULA。",
|
||||||
"plugAndForgetDevice": "自助部署(预览)",
|
"plugAndForgetDevice": "正在自部署",
|
||||||
"plugAndForgetGA": "正在自部署",
|
|
||||||
"privacySettingWarning": "已针对运行 Windows 10 版本 1903 及更高版本或 Windows 11 的设备更改诊断数据收集的默认值。",
|
"privacySettingWarning": "已针对运行 Windows 10 版本 1903 及更高版本或 Windows 11 的设备更改诊断数据收集的默认值。",
|
||||||
"privacySettings": "隐私设置",
|
"privacySettings": "隐私设置",
|
||||||
"privacySettingsInfo": "指定是否要向用户显示隐私设置。",
|
"privacySettingsInfo": "指定是否要向用户显示隐私设置。",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "仅在技术人员阶段中失败的所选阻止应用(预览)",
|
"allowNonBlockingAppInstallation": "仅在技术人员阶段中失败的所选阻止应用",
|
||||||
"apps": "应用",
|
"apps": "应用",
|
||||||
"appsListName": "应用程序列表",
|
"appsListName": "应用程序列表",
|
||||||
"blockingApps": "正在阻止应用",
|
"blockingApps": "正在阻止应用",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "活动",
|
"activity": "活动",
|
||||||
|
"activityName": "活动名称",
|
||||||
"actor": "发起人(参与者)",
|
"actor": "发起人(参与者)",
|
||||||
|
"actorType": "执行组件类型",
|
||||||
"app": "应用",
|
"app": "应用",
|
||||||
"appName": "应用名称",
|
"appName": "应用名称",
|
||||||
"applicationName": "应用程序名称",
|
"applicationName": "应用程序名称",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD 连接器",
|
"mtdConnector": "MTD 连接器",
|
||||||
"name": "配置文件名称",
|
"name": "配置文件名称",
|
||||||
"oSVersion": "操作系统版本",
|
"oSVersion": "操作系统版本",
|
||||||
|
"operationType": "操作类型",
|
||||||
"os": "OS",
|
"os": "OS",
|
||||||
"packageName": "包名称",
|
"packageName": "包名称",
|
||||||
"partnerName": "合作伙伴",
|
"partnerName": "合作伙伴",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"tooltip": "Touch ID 使用指纹识别技术在 iOS 设备上对用户进行身份验证。Intune 调用 LocalAuthentication API 对使用 Touch ID 的用户进行身份验证。如果允许,必须使用 Touch ID 在支持 Touch ID 的设备上访问该应用。"
|
"tooltip": "Touch ID 使用指纹识别技术在 iOS 设备上对用户进行身份验证。Intune 调用 LocalAuthentication API 对使用 Touch ID 的用户进行身份验证。如果允许,必须使用 Touch ID 在支持 Touch ID 的设备上访问该应用。"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "消息应用名称"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "消息应用包 ID"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "消息应用 URL 方案"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "组织数据通知",
|
"label": "组织数据通知",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "如果阻止,则应用无法打印受保护的数据。"
|
"tooltip": "如果阻止,则应用无法打印受保护的数据。"
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "通常,当用户在应用中选择超链接消息传递链接时,消息传递应用将打开预填充电话号码并准备好发送。对于此设置,请选择从策略管理的应用中启动此类内容传输时要如何对其进行处理。为了使此设置生效,可能还需要其他步骤。首先,验证是否已从“选择要豁免的应用”列表中移除短信。然后,确保该应用程序使用的是较高版本的 Intune SDK (版本 19.0.0)。",
|
||||||
"label": "Transfer messaging data to",
|
"label": "将消息传递数据传输到",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "通常,当用户在应用中选择超链接消息传递链接时,消息传递应用将打开预填充电话号码并准备好发送。对于此设置,请选择从策略管理的应用中启动此类内容传输时要如何对其进行处理。"
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "从其他应用接收数据",
|
"label": "从其他应用接收数据",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "允许使用 Web 凭据提供程序进行登录。",
|
"authenticationWebSignInDescription": "允许使用 Web 凭据提供程序进行登录。",
|
||||||
"authenticationWebSignInName": "Web 登录(已弃用设置)",
|
"authenticationWebSignInName": "Web 登录(已弃用设置)",
|
||||||
"authorizedAppRulesDescription": "应用本地存储中会被识别和被强制执行的已授权防火墙规则。",
|
"authorizedAppRulesDescription": "应用本地存储中会被识别和被强制执行的已授权防火墙规则。",
|
||||||
"authorizedAppRulesName": "来自本地存储的已授权的应用程序 Microsoft Defender 防火墙规则",
|
"authorizedAppRulesName": "来自本地存储的已授权的应用程序 Windows 防火墙规则",
|
||||||
"authorizedUsersListHideAdminUsersName": "隐藏计算机的管理员",
|
"authorizedUsersListHideAdminUsersName": "隐藏计算机的管理员",
|
||||||
"authorizedUsersListHideLocalUsersName": "隐藏本地用户",
|
"authorizedUsersListHideLocalUsersName": "隐藏本地用户",
|
||||||
"authorizedUsersListHideMobileAccountsName": "隐藏移动帐户",
|
"authorizedUsersListHideMobileAccountsName": "隐藏移动帐户",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "此设置指定锁定移动设备屏幕前的用户无输入时长。建议的值: 15 分钟",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "此设置指定锁定移动设备屏幕前的用户无输入时长。建议的值: 15 分钟",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "此设置指定其后锁定设备的无用户输入时长。建议的值: 15 分钟",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "此设置指定其后锁定设备的无用户输入时长。建议的值: 15 分钟",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "要求提供密码之前的最大非活动分钟数",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "要求提供密码之前的最大非活动分钟数",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "推荐值: 15 分钟",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "选择移动设备可具有的最新 OS 版本。",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "选择移动设备可具有的最新 OS 版本。",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "移动设备的最高 OS 版本",
|
"complianceMobileOsVersionRestrictionMaximumName": "移动设备的最高 OS 版本",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "选择移动设备可具有的最早 OS 版本。",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "选择移动设备可具有的最早 OS 版本。",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "此设置指定不能重复使用的最近所用密码数。建议的值: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "此设置指定不能重复使用的最近所用密码数。建议的值: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "要阻止重用的曾用密码数",
|
"complianceNumberOfPreviousPasswordsToBlockName": "要阻止重用的曾用密码数",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "推荐值: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "输入设备可以具有最新 OS 版本。例如: 20E252。<br>如果要将 Apple 快速安全响应更新设置为最大 OS 版本,请输入补充生成版本。例如: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "输入设备可以具有最新 OS 版本。例如: 20E252。<br>如果要将 Apple 快速安全响应更新设置为最大 OS 版本,请输入补充生成版本。例如: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "最高 OS 版本",
|
"complianceOsBuildVersionRestrictionMaximumName": "最高 OS 版本",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "输入设备可以具有最旧 OS 版本。例如: 20E252。<br>如果要将 Apple 快速安全响应更新设置为最小 OS 版本,请输入补充生成版本。例如: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "输入设备可以具有最旧 OS 版本。例如: 20E252。<br>如果要将 Apple 快速安全响应更新设置为最小 OS 版本,请输入补充生成版本。例如: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Microsoft Defender 安全智能必须是最新的。",
|
"complianceRequireWindowsDefenderSignatureDescription": "Microsoft Defender 安全智能必须是最新的。",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender 反恶意软件安全智能是最新的",
|
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender 反恶意软件安全智能是最新的",
|
||||||
"complianceRequiredPasswordTypeDescription": "此设置指定是否允许密码仅包含数字字符,或者密码是否必须包含除数字外的字符。建议: 要求密码类型: 字母数字,字符集的最小数量: 1",
|
"complianceRequiredPasswordTypeDescription": "此设置指定是否允许密码仅包含数字字符,或者密码是否必须包含除数字外的字符。建议: 要求密码类型: 字母数字,字符集的最小数量: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "建议: 所需的密码类型: 字母数字,最小字符集数: 1",
|
||||||
"complianceRootedAllowedDescription": "阻止取得 root 权限的设备具有公司访问权限。",
|
"complianceRootedAllowedDescription": "阻止取得 root 权限的设备具有公司访问权限。",
|
||||||
"complianceRootedAllowedName": "取得 root 权限的设备",
|
"complianceRootedAllowedName": "取得 root 权限的设备",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "此设置指定是否阻止设备使用 USB 调试功能。",
|
"complianceSecurityDisableUSBDebuggingDescription": "此设置指定是否阻止设备使用 USB 调试功能。",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "选择设备可具有的最旧 OS 版本。以 major.minor.build.revision 形式定义操作系统版本。",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "选择设备可具有的最旧 OS 版本。以 major.minor.build.revision 形式定义操作系统版本。",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "选择设备上将使用的密码类型。",
|
"complianceWindowsRequiredPasswordTypeDescription": "选择设备上将使用的密码类型。",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "密码类型",
|
"complianceWindowsRequiredPasswordTypeName": "密码类型",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "需要密码才能解锁工作配置文件",
|
||||||
|
"complianceWorkProfileSecurityHeader": "工作配置文件安全性",
|
||||||
"compliantAppsOption": "合规应用列表。报告不在列表中的任何已安装应用不合规",
|
"compliantAppsOption": "合规应用列表。报告不在列表中的任何已安装应用不合规",
|
||||||
"computerNameStaticPrefixDescription": "计算机分配到 15 个字符长的名称。指定前缀,15 个字符的其余部分将随机确定。",
|
"computerNameStaticPrefixDescription": "计算机分配到 15 个字符长的名称。指定前缀,15 个字符的其余部分将随机确定。",
|
||||||
"computerNameStaticPrefixName": "计算机名前缀",
|
"computerNameStaticPrefixName": "计算机名前缀",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Google 域允许列表",
|
"domainAllowListName": "Google 域允许列表",
|
||||||
"domainAllowListTableEmptyValueExample": "输入域",
|
"domainAllowListTableEmptyValueExample": "输入域",
|
||||||
"domainAllowListTableName": "域",
|
"domainAllowListTableName": "域",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "来自本地存储的已授权的应用程序 Microsoft Defender 防火墙规则(域网络)",
|
"domainAuthorizedAppRulesSummaryLabel": "来自本地存储的授权应用程序 Windows 防火墙规则(域网络)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Microsoft Defender 防火墙(域网络)",
|
"domainFirewallEnabledSummaryLabel": "Windows 防火墙(域网络)",
|
||||||
"domainGlobalRulesSummaryLabel": "来自本地存储的全局端口 Microsoft Defender 防火墙规则(域网络)",
|
"domainGlobalRulesSummaryLabel": "来自本地存储的全局端口 Windows 防火墙规则(域网络)",
|
||||||
"domainIPsecRulesSummaryLabel": "来自本地存储的 IPsec 规则(域网络)",
|
"domainIPsecRulesSummaryLabel": "来自本地存储的 IPsec 规则(域网络)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "IPsec 保护的数据包免除与隐藏模式(域网络)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "IPsec 保护的数据包免除与隐藏模式(域网络)",
|
||||||
"domainInboundConnectionsSummaryLabel": "针对入站连接的默认操作(域网络)",
|
"domainInboundConnectionsSummaryLabel": "针对入站连接的默认操作(域网络)",
|
||||||
"domainInboundNotificationsSummaryLabel": "入站通知(域网络)",
|
"domainInboundNotificationsSummaryLabel": "入站通知(域网络)",
|
||||||
"domainLocalStoreSummaryLabel": "来自本地存储的 Microsoft Defender 防火墙规则(域网络)",
|
"domainLocalStoreSummaryLabel": "来自本地存储的 Windows 防火墙规则(域网络)",
|
||||||
"domainNameSourceOption": "用户域名源",
|
"domainNameSourceOption": "用户域名源",
|
||||||
"domainNetworkName": "域(工作区)网络",
|
"domainNetworkName": "域(工作区)网络",
|
||||||
"domainOutboundConnectionsSummaryLabel": "针对出站连接的默认操作(域网络)",
|
"domainOutboundConnectionsSummaryLabel": "针对出站连接的默认操作(域网络)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "使用替代证书进行单一登录(SSO)",
|
"enableSingleSignOnName": "使用替代证书进行单一登录(SSO)",
|
||||||
"enableUsePrivateStoreOnly": "仅使用专用应用商店",
|
"enableUsePrivateStoreOnly": "仅使用专用应用商店",
|
||||||
"enableUsePrivateStoreOnlyDescription": "仅允许从专用应用商店下载应用,而非从公用应用商店下载。",
|
"enableUsePrivateStoreOnlyDescription": "仅允许从专用应用商店下载应用,而非从公用应用商店下载。",
|
||||||
"enableWindowsDefenderFirewallName": "Microsoft Defender 防火墙",
|
"enableWindowsDefenderFirewallName": "Windows 防火墙",
|
||||||
"enableWithUEFILock": "使用 UEFI 锁启用",
|
"enableWithUEFILock": "使用 UEFI 锁启用",
|
||||||
"enableWithoutUEFILock": "无 UEFI 锁启用",
|
"enableWithoutUEFILock": "无 UEFI 锁启用",
|
||||||
"enabledForAzureAdAndHybridOption": "已为已加入 Microsoft Entra 的设备和混合联接设备启用密钥轮换",
|
"enabledForAzureAdAndHybridOption": "已为已加入 Microsoft Entra 的设备和混合联接设备启用密钥轮换",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "阻止以下应用的传入连接。",
|
"firewallAppsBlockedHeader": "阻止以下应用的传入连接。",
|
||||||
"firewallAppsBlockedPageDescription": "选择应阻止传入连接的应用。",
|
"firewallAppsBlockedPageDescription": "选择应阻止传入连接的应用。",
|
||||||
"firewallAppsBlockedPageName": "已阻止应用",
|
"firewallAppsBlockedPageName": "已阻止应用",
|
||||||
"firewallCreateRules": "创建 Microsoft Defender 防火墙规则。一个 Endpoint Protection 配置文件最多可包含 150 个规则。",
|
"firewallCreateRules": "创建 Windows 防火墙规则。一个 Endpoint Protection 配置文件最多可包含 150 个规则。",
|
||||||
"firewallRequiredDescription": "需要打开防火墙",
|
"firewallRequiredDescription": "需要打开防火墙",
|
||||||
"firewallRequiredName": "防火墙",
|
"firewallRequiredName": "防火墙",
|
||||||
"firewallRuleAction": "操作",
|
"firewallRuleAction": "操作",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "正式发布频道",
|
"generalAvailabilityChannel": "正式发布频道",
|
||||||
"generalNetworkSettingsHeader": "常规",
|
"generalNetworkSettingsHeader": "常规",
|
||||||
"genericLocalUsersOrGroupsName": "通用本地用户或组",
|
"genericLocalUsersOrGroupsName": "通用本地用户或组",
|
||||||
"globalConfigurationsDescription": "配置适用于所有网络类型的 Microsoft Defender 防火墙设置。",
|
"globalConfigurationsDescription": "配置适用于所有网络类型的 Windows 防火墙设置。",
|
||||||
"globalConfigurationsName": "全局设置",
|
"globalConfigurationsName": "全局设置",
|
||||||
"globalRulesDescription": "应用本地存储中要被识别和被强制执行的全局端口防火墙规则。",
|
"globalRulesDescription": "应用本地存储中要被识别和被强制执行的全局端口防火墙规则。",
|
||||||
"globalRulesName": "来自本地存储的全局端口 Microsoft Defender 防火墙规则",
|
"globalRulesName": "来自本地存储的全局端口 Windows 防火墙规则",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Google 帐户电子邮件地址",
|
"googleAccountEmailAddresses": "Google 帐户电子邮件地址",
|
||||||
"googleAccountEmailAddressesDescription": "以分号分隔的电子邮件地址列表",
|
"googleAccountEmailAddressesDescription": "以分号分隔的电子邮件地址列表",
|
||||||
@@ -4170,7 +4177,7 @@
|
|||||||
"healthMonHeader": "通过跟踪设备事件,主动监视设备运行状况。运行状况监视可用于运行 Windows 10 1903 及更高版本或 Windows 11 的设备。",
|
"healthMonHeader": "通过跟踪设备事件,主动监视设备运行状况。运行状况监视可用于运行 Windows 10 1903 及更高版本或 Windows 11 的设备。",
|
||||||
"healthMonScope": "范围",
|
"healthMonScope": "范围",
|
||||||
"healthMonScopeBasic": "基本",
|
"healthMonScopeBasic": "基本",
|
||||||
"healthMonScopeBootPerf": "终结点分析",
|
"healthMonScopeBootPerf": "终端分析",
|
||||||
"healthMonScopeDescription": "要收集的 Windows 事件。",
|
"healthMonScopeDescription": "要收集的 Windows 事件。",
|
||||||
"healthMonScopeWindowsUpdates": "Windows 更新",
|
"healthMonScopeWindowsUpdates": "Windows 更新",
|
||||||
"healthmonEnablementDisabledOption": "禁用",
|
"healthmonEnablementDisabledOption": "禁用",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "安全桌面上的凭据提示",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "安全桌面上的凭据提示",
|
||||||
"localServerCachingHeader": "本地服务器缓存",
|
"localServerCachingHeader": "本地服务器缓存",
|
||||||
"localStoreDescription": "从本地存储应用要被识别和被强制执行的全局防火墙规则。",
|
"localStoreDescription": "从本地存储应用要被识别和被强制执行的全局防火墙规则。",
|
||||||
"localStoreName": "来自本地存储的 Microsoft Defender 防火墙规则",
|
"localStoreName": "来自本地存储的 Windows 防火墙规则",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "指定是否显示用户可配置的设置以控制 Windows 10 移动版设备锁屏界面的屏幕超时。如果将此策略设置为“允许”,则将忽略“屏幕超时”所设置的值。",
|
"lockScreenAllowTimeoutConfigurationDescription": "指定是否显示用户可配置的设置以控制 Windows 10 移动版设备锁屏界面的屏幕超时。如果将此策略设置为“允许”,则将忽略“屏幕超时”所设置的值。",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "用户可配置的屏幕超时(仅限于移动设备)",
|
"lockScreenAllowTimeoutConfigurationName": "用户可配置的屏幕超时(仅限于移动设备)",
|
||||||
"lockScreenBackgroundImageURLDescription": "自定义欢迎屏幕背景图像 URL。必须是 .png 文件且使用终结点 https://",
|
"lockScreenBackgroundImageURLDescription": "自定义欢迎屏幕背景图像 URL。必须是 .png 文件且使用终结点 https://",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "MTU 必须介于 1280 和 1400 字节之间",
|
"mTUSizeInBytesBounds": "MTU 必须介于 1280 和 1400 字节之间",
|
||||||
"mTUSizeInBytesName": "最大传输单元",
|
"mTUSizeInBytesName": "最大传输单元",
|
||||||
"mTUSizeInBytesToolTip": "可在网络上传输的最大数据包(以字节为单位)。未配置时,Apple 的默认大小为 1280 字节。适用于 iOS 14 及更高版本。",
|
"mTUSizeInBytesToolTip": "可在网络上传输的最大数据包(以字节为单位)。未配置时,Apple 的默认大小为 1280 字节。适用于 iOS 14 及更高版本。",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "使用随机 MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "使用设备默认设置",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "仅在需要时使用随机 MAC,例如 NAC 支持。用户可以更改此设置。适用于 Android 13 及更高版本。",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "使用设备 MAC",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "MAC 地址随机化",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac 应用商店和确定的开发人员",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac 应用商店和确定的开发人员",
|
||||||
"macAppStoreOption": "Mac 应用商店",
|
"macAppStoreOption": "Mac 应用商店",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "阻止 AirPlay、“与其他设备的屏幕共享”以及 Classroom 应用功能,其中教师使用此功能查看其学生的屏幕。如果已阻止屏幕截图,则此设置不可用。",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "阻止 AirPlay、“与其他设备的屏幕共享”以及 Classroom 应用功能,其中教师使用此功能查看其学生的屏幕。如果已阻止屏幕截图,则此设置不可用。",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "输入一个数字(4-16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "输入一个数字(4-16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "输入一个数字(6-16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "输入一个数字(6-16)",
|
||||||
"minimumPasswordLengthName": "密码长度下限",
|
"minimumPasswordLengthName": "密码长度下限",
|
||||||
|
"minimumPasswordLengthTooltipText": "输入一个数字",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "将自动安装缺少的更新",
|
"minimumUpdateAutoInstallClassificationDescription": "将自动安装缺少的更新",
|
||||||
"minimumUpdateAutoInstallClassificationName": "安装指定的更新类别",
|
"minimumUpdateAutoInstallClassificationName": "安装指定的更新类别",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "重要事项",
|
"minimumUpdateAutoInstallClassificationValueImportant": "重要事项",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "使用手动代理服务器",
|
"networkProxyUseManualServerName": "使用手动代理服务器",
|
||||||
"networkProxyUseScriptUrlName": "使用代理脚本",
|
"networkProxyUseScriptUrlName": "使用代理脚本",
|
||||||
"networkSettingsName": "网络设置",
|
"networkSettingsName": "网络设置",
|
||||||
"networkSettingsSubtitle": "配置适用于特定网络类型的 Microsoft Defender 防火墙设置。",
|
"networkSettingsSubtitle": "配置适用于特定网络类型的 Windows 防火墙设置。",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "添加不应允许使用任何手机网络数据的托管 iOS 应用。",
|
"networkUsageRulesBlockCellularHeaderName": "添加不应允许使用任何手机网络数据的托管 iOS 应用。",
|
||||||
"networkUsageRulesBlockCellularName": "阻止使用手机网络数据",
|
"networkUsageRulesBlockCellularName": "阻止使用手机网络数据",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "添加漫游时不应允许使用任何手机网络数据的托管 iOS 应用。",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "添加漫游时不应允许使用任何手机网络数据的托管 iOS 应用。",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "应用和进程",
|
"privacyPreferencesTableName": "应用和进程",
|
||||||
"privacyPublishUserActivitiesDescription": "阻止任务切换器等应用中最近使用的资源的共享体验/发现功能",
|
"privacyPublishUserActivitiesDescription": "阻止任务切换器等应用中最近使用的资源的共享体验/发现功能",
|
||||||
"privacyPublishUserActivitiesName": "发布用户活动",
|
"privacyPublishUserActivitiesName": "发布用户活动",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "来自本地存储的已授权的应用程序 Microsoft Defender 防火墙规则(专用网络)",
|
"privateAuthorizedAppRulesSummaryLabel": "来自本地存储的授权应用程序 Windows 防火墙规则(专用网络)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Microsoft Defender 防火墙(专用网络)",
|
"privateFirewallEnabledSummaryLabel": "Windows 防火墙(专用网络)",
|
||||||
"privateGlobalRulesSummaryLabel": "来自本地存储的全局端口 Microsoft Defender 防火墙规则(专用网络)",
|
"privateGlobalRulesSummaryLabel": "来自本地存储的全局端口 Windows 防火墙规则(专用网络)",
|
||||||
"privateIPsecRulesSummaryLabel": "来自本地存储的 IPsec 规则(专用网络)",
|
"privateIPsecRulesSummaryLabel": "来自本地存储的 IPsec 规则(专用网络)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "IPsec 保护的数据包免除与隐藏模式(专用网络)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "IPsec 保护的数据包免除与隐藏模式(专用网络)",
|
||||||
"privateInboundConnectionsSummaryLabel": "针对入站连接的默认操作(专用网络)",
|
"privateInboundConnectionsSummaryLabel": "针对入站连接的默认操作(专用网络)",
|
||||||
"privateInboundNotificationsSummaryLabel": "入站通知(专用网络)",
|
"privateInboundNotificationsSummaryLabel": "入站通知(专用网络)",
|
||||||
"privateLocalStoreSummaryLabel": "来自本地存储的 Microsoft Defender 防火墙规则(专用网络)",
|
"privateLocalStoreSummaryLabel": "来自本地存储的 Windows 防火墙规则(专用网络)",
|
||||||
"privateNetworkName": "专用(可发现的)网络",
|
"privateNetworkName": "专用(可发现的)网络",
|
||||||
"privateOutboundConnectionsSummaryLabel": "针对出站连接的默认操作(专用网络)",
|
"privateOutboundConnectionsSummaryLabel": "针对出站连接的默认操作(专用网络)",
|
||||||
"privateShieldedSummaryLabel": "已屏蔽(专用网络)",
|
"privateShieldedSummaryLabel": "已屏蔽(专用网络)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "代理服务器 URL",
|
"proxyServerURLName": "代理服务器 URL",
|
||||||
"proxyServersAutoDetectionName": "自动检测其他企业代理服务器",
|
"proxyServersAutoDetectionName": "自动检测其他企业代理服务器",
|
||||||
"proxyUrlExample": "例如 itgproxy.contoso.com",
|
"proxyUrlExample": "例如 itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "来自本地存储的已授权的应用程序 Microsoft Defender 防火墙规则(专用网络)",
|
"publicAuthorizedAppRulesSummaryLabel": "来自本地存储的授权应用程序 Windows 防火墙规则(公用网络)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Microsoft Defender 防火墙(公用网络)",
|
"publicFirewallEnabledSummaryLabel": "Windows 防火墙(公用网络)",
|
||||||
"publicGlobalRulesSummaryLabel": "来自本地存储的全局端口 Microsoft Defender 防火墙规则(公用网络)",
|
"publicGlobalRulesSummaryLabel": "来自本地存储的全局端口 Windows 防火墙规则(公用网络)",
|
||||||
"publicIPsecRulesSummaryLabel": "来自本地存储的 IPsec 规则(公用网络)",
|
"publicIPsecRulesSummaryLabel": "来自本地存储的 IPsec 规则(公用网络)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "IPsec 保护的数据包免除与隐藏模式(公用网络)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "IPsec 保护的数据包免除与隐藏模式(公用网络)",
|
||||||
"publicInboundConnectionsSummaryLabel": "针对入站连接的默认操作(公用网络)",
|
"publicInboundConnectionsSummaryLabel": "针对入站连接的默认操作(公用网络)",
|
||||||
"publicInboundNotificationsSummaryLabel": "入站通知(公用网络)",
|
"publicInboundNotificationsSummaryLabel": "入站通知(公用网络)",
|
||||||
"publicLocalStoreSummaryLabel": "来自本地存储的 Microsoft Defender 防火墙规则(公用网络)",
|
"publicLocalStoreSummaryLabel": "来自本地存储的 Windows 防火墙规则(公用网络)",
|
||||||
"publicNetworkName": "公用(无法发现的)网络",
|
"publicNetworkName": "公用(无法发现的)网络",
|
||||||
"publicOutboundConnectionsSummaryLabel": "针对出站连接的默认操作(公用网络)",
|
"publicOutboundConnectionsSummaryLabel": "针对出站连接的默认操作(公用网络)",
|
||||||
"publicPlayStoreEnabledDescription": "用户可访问所有应用,除了在客户端应用中你已要求卸载的应用。如果为此设置选择“未配置”,用户仅可访问在客户端应用中已列为可用或必需的应用。",
|
"publicPlayStoreEnabledDescription": "用户可访问所有应用,除了在客户端应用中你已要求卸载的应用。如果为此设置选择“未配置”,用户仅可访问在客户端应用中已列为可用或必需的应用。",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "注册到软件 KSP",
|
"sCEPPolicyEnrollToSoftwareKSP": "注册到软件 KSP",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "注册到受信任的平台模块(TPM) KSP,否则失败",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "注册到受信任的平台模块(TPM) KSP,否则失败",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "如果存在受信任的平台模块(TPM) KSP 则注册到它;否则注册到软件 KSP",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "如果存在受信任的平台模块(TPM) KSP 则注册到它;否则注册到软件 KSP",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "警告:任何用途 EKU (OID 2.5.29.37.0) 或任何应用策略 EKU (OID 1.3.6.1.4.1.311.10.12.1) 都不可用于在 Microsoft Cloud PKI 中创建的证书颁发机构。",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "在大多数情况下,该证书至少需要客户端身份验证,以便用户或设备可以向服务器进行身份验证。但可以指定其他用法来进一步定义密钥的用途。",
|
"sCEPPolicyExtendedKeyUsageDescription": "在大多数情况下,该证书至少需要客户端身份验证,以便用户或设备可以向服务器进行身份验证。但可以指定其他用法来进一步定义密钥的用途。",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "扩展密钥用法",
|
"sCEPPolicyExtendedKeyUsageName": "扩展密钥用法",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "将哈希算法类型与证书一起使用。确保选择连接设备支持的最强安全级别。",
|
"sCEPPolicyHashAlgorithmDescription": "将哈希算法类型与证书一起使用。确保选择连接设备支持的最强安全级别。",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "输入天数(1-255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "输入天数(1-255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "输入天数(1-365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "输入天数(1-365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "密码过期(天)",
|
"workProfilePasswordExpirationInDaysName": "密码过期(天)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "输入天数",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "工作配置文件密码: 最小密码长度",
|
"workProfilePasswordMinimumLengthReportingName": "工作配置文件密码: 最小密码长度",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "工作配置文件密码: 需包含的字符数量",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "工作配置文件密码: 需包含的字符数量",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "工作配置文件密码: 需包含的小写字母数量",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "工作配置文件密码: 需包含的小写字母数量",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "任何应用",
|
"anyAppOptionText": "任何应用",
|
||||||
"anyDestinationAnySourceOptionText": "任何目标和任何源",
|
"anyDestinationAnySourceOptionText": "任何目标和任何源",
|
||||||
"anyDialerAppOptionText": "任何拨号应用",
|
"anyDialerAppOptionText": "任何拨号应用",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "任何消息传递应用",
|
||||||
"anyPolicyManagedDialerAppOptionText": "任何由策略管理的拨号应用",
|
"anyPolicyManagedDialerAppOptionText": "任何由策略管理的拨号应用",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "任何策略托管的消息传递应用",
|
||||||
"appAdded": "已添加应用",
|
"appAdded": "已添加应用",
|
||||||
"appBasedConditionalAccess": "基于应用的条件访问",
|
"appBasedConditionalAccess": "基于应用的条件访问",
|
||||||
"appColumnLabel": "应用",
|
"appColumnLabel": "应用",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "MDM 设备 ID",
|
"mdmDeviceId": "MDM 设备 ID",
|
||||||
"mdmWipInvalidVersionSettings": "一个或多个应用具有无效的最低/最高版本定义。<br /> <br />“含注册的 Windows 信息保护”策略支持仅指定一个最低版本或最高版本,除非两个版本指定为相等。仅指定最低版本时,规则设置为大于或等于最低版本。同样,仅指定最高版本时,规则设置为小于或等于最高版本。",
|
"mdmWipInvalidVersionSettings": "一个或多个应用具有无效的最低/最高版本定义。<br /> <br />“含注册的 Windows 信息保护”策略支持仅指定一个最低版本或最高版本,除非两个版本指定为相等。仅指定最低版本时,规则设置为大于或等于最低版本。同样,仅指定最高版本时,规则设置为小于或等于最高版本。",
|
||||||
"mdmWipReport": "MDM Windows 信息保护报告",
|
"mdmWipReport": "MDM Windows 信息保护报告",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "消息传递应用名称 (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "消息应用包 ID (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "消息传递应用 URL 方案 (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "Microsoft Defender for Endpoint",
|
"microsoftDefenderForEndpoint": "Microsoft Defender for Endpoint",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "最低应用版本",
|
"minAppVersion": "最低应用版本",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "设置目录",
|
"settingsCatalog": "设置目录",
|
||||||
"settingsSelectorLabel": "设置",
|
"settingsSelectorLabel": "设置",
|
||||||
"silent": "静默",
|
"silent": "静默",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "特定的消息传递应用",
|
||||||
"specificUserIsLicensedIntune": "已授权 {0} 使用 Microsoft Intune。",
|
"specificUserIsLicensedIntune": "已授权 {0} 使用 Microsoft Intune。",
|
||||||
"state": "状态",
|
"state": "状态",
|
||||||
"status": "状态",
|
"status": "状态",
|
||||||
@@ -8320,15 +8335,15 @@
|
|||||||
"aVExclusions": "Microsoft Defender 防病毒排除项",
|
"aVExclusions": "Microsoft Defender 防病毒排除项",
|
||||||
"antivirus": "Microsoft Defender 防病毒",
|
"antivirus": "Microsoft Defender 防病毒",
|
||||||
"cloudPC": "Windows 365 安全基线",
|
"cloudPC": "Windows 365 安全基线",
|
||||||
"default": "终结点安全性",
|
"default": "终端安全",
|
||||||
"defenderTest": "Microsoft Defender for Endpoint 演示",
|
"defenderTest": "Microsoft Defender for Endpoint 演示",
|
||||||
"diskEncryption": "BitLocker",
|
"diskEncryption": "BitLocker",
|
||||||
"eDR": "终结点检测和响应",
|
"eDR": "终结点检测和响应",
|
||||||
"edgeSecurityBaseline": "Microsoft Edge 基线",
|
"edgeSecurityBaseline": "Microsoft Edge 基线",
|
||||||
"edgeSecurityBaselinePreview": "预览: Microsoft Edge 基线",
|
"edgeSecurityBaselinePreview": "预览: Microsoft Edge 基线",
|
||||||
"editionUpgradeConfiguration": "版本升级和模式切换",
|
"editionUpgradeConfiguration": "版本升级和模式切换",
|
||||||
"firewall": "Microsoft Defender 防火墙",
|
"firewall": "Windows 防火墙",
|
||||||
"firewallRules": "Microsoft Defender 防火墙规则",
|
"firewallRules": "Windows 防火墙规则",
|
||||||
"identityProtection": "帐户保护",
|
"identityProtection": "帐户保护",
|
||||||
"identityProtectionPreview": "帐户保护(预览)",
|
"identityProtectionPreview": "帐户保护(预览)",
|
||||||
"mDMSecurityBaseline1810": "2018 年 10 月的适用于 Windows 10 及更高版本的 MDM 安全基线",
|
"mDMSecurityBaseline1810": "2018 年 10 月的适用于 Windows 10 及更高版本的 MDM 安全基线",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "预览: Microsoft Office O365 基线",
|
"office365BaselinePreview": "预览: Microsoft Office O365 基线",
|
||||||
"securityBaselines": "安全基线",
|
"securityBaselines": "安全基线",
|
||||||
"test": "测试模板",
|
"test": "测试模板",
|
||||||
"testFirewallRulesSecurityTemplateName": "Microsoft Defender 防火墙规则(测试)",
|
"testFirewallRulesSecurityTemplateName": "Windows 防火墙规则(测试)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "帐户保护(测试)",
|
"testIdentityProtectionSecurityTemplateName": "帐户保护(测试)",
|
||||||
"windowsSecurityExperience": "Windows Security 体验"
|
"windowsSecurityExperience": "Windows Security 体验"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Microsoft Defender 防火墙"
|
"mDE": "Windows 防火墙"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Microsoft Defender 防火墙规则"
|
"mDE": "Windows 防火墙规则"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "OneDrive 已知文件夹移动设置: 云配置模板中的 Windows 10。https://aka.ms/CloudConfigGuide"
|
"description": "OneDrive 已知文件夹移动设置: 云配置模板中的 Windows 10。https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "移动设备管理配置",
|
"expeditedCheckin": "移动设备管理配置",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "扩展",
|
"extensions": "扩展",
|
||||||
"hardwareConfigurations": "BIOS 配置",
|
"hardwareConfigurations": "BIOS 配置和其他设置",
|
||||||
"identityProtection": "Identity Protection",
|
"identityProtection": "Identity Protection",
|
||||||
"iosCompliancePolicy": "iOS 符合性策略",
|
"iosCompliancePolicy": "iOS 符合性策略",
|
||||||
"kiosk": "展台",
|
"kiosk": "展台",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Microsoft Defender 防病毒",
|
"microsoftDefenderAntivirus": "Microsoft Defender 防病毒",
|
||||||
"microsoftDefenderAntivirusexclusions": "Microsoft Defender 防病毒排除项",
|
"microsoftDefenderAntivirusexclusions": "Microsoft Defender 防病毒排除项",
|
||||||
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (运行 Windows 10 或更高版本的桌面设备)",
|
"microsoftDefenderAtpWindows10Desktop": "Microsoft Defender for Endpoint (运行 Windows 10 或更高版本的桌面设备)",
|
||||||
"microsoftDefenderFirewallRules": "Microsoft Defender 防火墙规则",
|
"microsoftDefenderFirewallRules": "Windows 防火墙规则",
|
||||||
"microsoftEdgeBaseline": "Microsoft Edge 安全基线",
|
"microsoftEdgeBaseline": "Microsoft Edge 安全基线",
|
||||||
"mxProfileZebraOnly": "MX 配置文件(仅限 Zebra)",
|
"mxProfileZebraOnly": "MX 配置文件(仅限 Zebra)",
|
||||||
"networkBoundary": "网络边界",
|
"networkBoundary": "网络边界",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "受信任的证书 - 测试",
|
"windows10XTrustedCertificate": "受信任的证书 - 测试",
|
||||||
"windows10XVPN": "VPN - 测试",
|
"windows10XVPN": "VPN - 测试",
|
||||||
"windows10XWifi": "WIFI - 测试",
|
"windows10XWifi": "WIFI - 测试",
|
||||||
|
"windows11SecurityBaseline": "适用于 Windows 10 及更高版本的安全基准",
|
||||||
"windows8CompliancePolicy": "Windows 8 合规性策略",
|
"windows8CompliancePolicy": "Windows 8 合规性策略",
|
||||||
"windowsHealthMonitoring": "Windows 运行状况监视",
|
"windowsHealthMonitoring": "Windows 运行状况监视",
|
||||||
"windowsInformationProtection": "Windows 信息保护",
|
"windowsInformationProtection": "Windows 信息保护",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "配置设备以进行初始预配并分配给用户。",
|
"description": "配置设备以进行初始预配。",
|
||||||
"title": "设备准备"
|
"title": "设备准备"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "手动批准和部署驱动程序更新"
|
"manual": "手动批准和部署驱动程序更新"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "批量操作"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} 天"
|
"value": "{0} 天"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "选择下面的操作。",
|
||||||
"label": "Driver action",
|
"label": "驱动程序操作",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "选择操作"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "包含的驱动程序"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "选择要包含在批量操作中的驱动程序"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "选择要包括的驱动程序"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "最多可选择一百个驱动程序"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "应选择至少一个驱动程序"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "选择的驱动程序"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "在 Windows 更新中提供",
|
||||||
"bladeTitle": "驱动程序更新 Windows 10 及更高版本(预览版)",
|
"bladeTitle": "驱动程序更新 Windows 10 及更高版本(预览版)",
|
||||||
"lastSync": "上次同步时间:",
|
"lastSync": "上次同步时间:",
|
||||||
"lastSyncDefaultText": "挂起的初始清单集合",
|
"lastSyncDefaultText": "挂起的初始清单集合",
|
||||||
@@ -8679,7 +8695,7 @@
|
|||||||
"driverApprovalStatus": "状态",
|
"driverApprovalStatus": "状态",
|
||||||
"driverBulkActions": "批量操作",
|
"driverBulkActions": "批量操作",
|
||||||
"driverClass": "驱动程序类",
|
"driverClass": "驱动程序类",
|
||||||
"driverCount": "显示 {0} 到 {1} 条记录(共 {2} 条记录)",
|
"driverCount": "显示第 {0} 至 {1} 条记录(共计 {2} 条记录)",
|
||||||
"driverFilterNoneSelected": "未选择任何内容",
|
"driverFilterNoneSelected": "未选择任何内容",
|
||||||
"driverManufacturer": "制造商",
|
"driverManufacturer": "制造商",
|
||||||
"driverName": "驱动程序名称",
|
"driverName": "驱动程序名称",
|
||||||
@@ -8704,7 +8720,7 @@
|
|||||||
"iosDeviceFeaturesNotifications": "指定应用的通知设定。支持 iOS 9.3 及更高版本。",
|
"iosDeviceFeaturesNotifications": "指定应用的通知设定。支持 iOS 9.3 及更高版本。",
|
||||||
"iosDeviceFeaturesSharedDevice": "指定在锁定屏幕上显示的可选文本。在 iOS 9.3 及更高版本中受支持。<a href=\"https://go.microsoft.com/fwlink/?linkid=2056394\" target=\"_blank\">了解详细信息</a>",
|
"iosDeviceFeaturesSharedDevice": "指定在锁定屏幕上显示的可选文本。在 iOS 9.3 及更高版本中受支持。<a href=\"https://go.microsoft.com/fwlink/?linkid=2056394\" target=\"_blank\">了解详细信息</a>",
|
||||||
"iosGeneralApplicationRestrictions": "利用这些设置实时跟进哪些用户安装了公司未批准使用的应用。选择受限应用列表的类型:<br><br>\r\n 禁止的应用 - 你希望在用户安装此类应用时收到通知的应用的列表。<br>\r\n 批准的应用 - 公司批准使用的应用的列表。当用户安装非此列表内的应用时,你将收到通知。<br>\r\n",
|
"iosGeneralApplicationRestrictions": "利用这些设置实时跟进哪些用户安装了公司未批准使用的应用。选择受限应用列表的类型:<br><br>\r\n 禁止的应用 - 你希望在用户安装此类应用时收到通知的应用的列表。<br>\r\n 批准的应用 - 公司批准使用的应用的列表。当用户安装非此列表内的应用时,你将收到通知。<br>\r\n",
|
||||||
"iosGeneralApplicationVisibility": "使用显示应用列表指定用户可以查看或启动的 iOS 应用。使用隐藏应用列表指定用户无法查看或启动的 iOS 应用。",
|
"iosGeneralApplicationVisibility": "使用“显示应用列表”指定用户可查看或启动的 iOS 应用。使用“隐藏的应用列表”指定用户无法查看或启动的 iOS 应用。",
|
||||||
"iosGeneralAutonomousSingleAppMode": "你添加到此列表并分配给设备的应用可以锁定设备,以便启动后仅运行该应用;或在某个操作正在运行时(例如正在测试时)锁定设备。操作完成后或删除限制后,设备将恢复其正常状态。",
|
"iosGeneralAutonomousSingleAppMode": "你添加到此列表并分配给设备的应用可以锁定设备,以便启动后仅运行该应用;或在某个操作正在运行时(例如正在测试时)锁定设备。操作完成后或删除限制后,设备将恢复其正常状态。",
|
||||||
"iosGeneralKiosk": "展台模式可将各种设置锁定到设备中,或指定可在设备上运行的单个应用。这在诸如零售商店等你希望设备只运行一个演示应用的环境中很有用。",
|
"iosGeneralKiosk": "展台模式可将各种设置锁定到设备中,或指定可在设备上运行的单个应用。这在诸如零售商店等你希望设备只运行一个演示应用的环境中很有用。",
|
||||||
"macDeviceFeaturesAirprint": "使用这些设置来配置 macOS 设备以自动连接到网络上兼容 AirPrint 的打印机。需要打印机的 IP 地址和资源路径。",
|
"macDeviceFeaturesAirprint": "使用这些设置来配置 macOS 设备以自动连接到网络上兼容 AirPrint 的打印机。需要打印机的 IP 地址和资源路径。",
|
||||||
@@ -9685,7 +9701,7 @@
|
|||||||
"deviceCompliance": "设备合规性",
|
"deviceCompliance": "设备合规性",
|
||||||
"diskEncryption": "磁盘加密",
|
"diskEncryption": "磁盘加密",
|
||||||
"eDR": "终结点检测和响应",
|
"eDR": "终结点检测和响应",
|
||||||
"ePM": "终结点特权管理",
|
"ePM": "终端特权管理",
|
||||||
"firewall": "防火墙",
|
"firewall": "防火墙",
|
||||||
"helpSupport": "帮助和支持",
|
"helpSupport": "帮助和支持",
|
||||||
"setup": "安装",
|
"setup": "安装",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "从左侧选择通知消息以预览内容。"
|
"placeholder": "从左侧选择通知消息以预览内容。"
|
||||||
},
|
},
|
||||||
"companyContact": "电子邮件页脚 - 包括联系人信息",
|
"companyContact": "显示联系人信息",
|
||||||
"companyLogo": "电子邮件标头 - 包括公司徽标",
|
"companyLogo": "显示公司徽标",
|
||||||
"companyName": "电子邮件页脚 - 包括公司名称",
|
"companyName": "显示公司名称",
|
||||||
"createEditDescription": "创建或编辑通知消息模板。",
|
"createEditDescription": "创建或编辑通知消息模板。",
|
||||||
"createMessage": "创建消息",
|
"createMessage": "创建消息",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "显示设备详细信息",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "默认情况下,此设置处于关闭状态,因为检索设备详细信息可能导致收到的电子邮件通知延迟。",
|
||||||
"editImpactInfo": "编辑本通知消息模板将影响使用此模板的所有策略。",
|
"editImpactInfo": "编辑本通知消息模板将影响使用此模板的所有策略。",
|
||||||
"editMessage": "编辑消息",
|
"editMessage": "编辑消息",
|
||||||
"email": "电子邮件",
|
"email": "电子邮件",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "电子邮件页脚",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "电子邮件通知的电子邮件页眉和页脚设置依赖于终结点管理器中租户管理节点中的自定义设置。",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "电子邮件页眉",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "配置自定义设置",
|
||||||
"formSubTitle": "创建或修改通知电子邮件",
|
"formSubTitle": "创建或修改通知电子邮件",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "页眉和页脚设置",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "图像预览",
|
||||||
"infotext": "选择一个通知消息。若要创建新通知,请访问“设置设备符合性工作负载”中的“通知”部分。",
|
"infotext": "选择一个通知消息。若要创建新通知,请访问“设置设备符合性工作负载”中的“通知”部分。",
|
||||||
"iwLink": "公司门户网站链接",
|
"iwLink": "显示公司门户网站链接",
|
||||||
"listEmpty": "没有消息模板。",
|
"listEmpty": "没有消息模板。",
|
||||||
"listEmptySelectOnly": "没有消息模板。若要创建新通知,请访问“设置设备符合性工作负载”中的“通知”部分。",
|
"listEmptySelectOnly": "没有消息模板。若要创建新通知,请访问“设置设备符合性工作负载”中的“通知”部分。",
|
||||||
"listSubTitle": "通知消息模板的列表",
|
"listSubTitle": "通知消息模板的列表",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "通知消息模板",
|
"notificationMessageTemplates": "通知消息模板",
|
||||||
"rowValidationError": "至少需要一个消息模板",
|
"rowValidationError": "至少需要一个消息模板",
|
||||||
"selectDescription": "选择一条通知消息。若要创建新通知,请访问“设置设备符合性”工作负荷的“管理”部分中的“通知”。",
|
"selectDescription": "选择一条通知消息。若要创建新通知,请访问“设置设备符合性”工作负荷的“管理”部分中的“通知”。",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "租户值",
|
||||||
"testEmailLabel": "发送预览电子邮件",
|
"testEmailLabel": "发送预览电子邮件",
|
||||||
"localeLabel": "区域设置",
|
"localeLabel": "区域设置",
|
||||||
"isDefaultLocale": "为默认"
|
"isDefaultLocale": "为默认"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "{1} 列 {2} 的行 {0}"
|
"ariaLabel": "{1} 列 {2} 的行 {0}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "从头开始,从可用清单属性库中选择所需的属性"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "从头开始,从可用设置库中选择所需设置",
|
"subtitle": "从头开始,从可用设置库中选择所需设置",
|
||||||
"title": "设置目录"
|
"title": "设置目录"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "最低版本",
|
"minVersion": "最低版本",
|
||||||
"nameHint": "这将是显示标识限制集时可见的主属性。",
|
"nameHint": "这将是显示标识限制集时可见的主属性。",
|
||||||
"noAssignmentsStatusBar": "至少将限制分配给一个组。请单击“属性”。",
|
"noAssignmentsStatusBar": "至少将限制分配给一个组。请单击“属性”。",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "你必须是管理员才能编辑限制。",
|
||||||
"notFound": "找不到限制。它可能已删除。",
|
"notFound": "找不到限制。它可能已删除。",
|
||||||
"personallyOwned": "个人拥有的设备",
|
"personallyOwned": "个人拥有的设备",
|
||||||
"restriction": "限制",
|
"restriction": "限制",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8 合规性策略",
|
"complianceWindows8": "Windows 8 合规性策略",
|
||||||
"complianceWindowsPhone": "Windows Phone 合规性策略",
|
"complianceWindowsPhone": "Windows Phone 合规性策略",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "属性目录",
|
||||||
"iosCustom": "自定义",
|
"iosCustom": "自定义",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "派生的 PIV 凭据",
|
"iosDerivedCredentialAuthenticationConfiguration": "派生的 PIV 凭据",
|
||||||
"iosDeviceFeatures": "设备功能",
|
"iosDeviceFeatures": "设备功能",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS 设备(预览版)"
|
"devices": "ChromeOS 设备"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "管理员联系人",
|
"adminContacts": "管理员联系人",
|
||||||
"appPackaging": "应用包",
|
"appPackaging": "应用包",
|
||||||
"businessGroups": "业务组",
|
"autopatchGroups": "自动更新组",
|
||||||
"devices": "设备",
|
"devices": "设备",
|
||||||
"feedback": "反馈",
|
"feedback": "反馈",
|
||||||
"gettingStarted": "入门",
|
"gettingStarted": "入门",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "自定义",
|
"brandingAndCustomization": "自定义",
|
||||||
"cartProfiles": "匣配置文件",
|
"cartProfiles": "匣配置文件",
|
||||||
"certificateConnectors": "证书连接器",
|
"certificateConnectors": "证书连接器",
|
||||||
"chromeEnterprise": "Chrome Enterprise (预览版)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "云附加设备(预览版)",
|
"cloudAttachedDevices": "云附加设备(预览版)",
|
||||||
"cloudPcActions": "云电脑操作(预览版)",
|
"cloudPcActions": "云电脑操作(预览版)",
|
||||||
"cloudPcMaintenanceWindows": "云电脑维护时段(预览)",
|
"cloudPcMaintenanceWindows": "云电脑维护时段(预览)",
|
||||||
@@ -12609,7 +12648,7 @@
|
|||||||
"helpSupport": "帮助和支持",
|
"helpSupport": "帮助和支持",
|
||||||
"helpSupportReplacement": "帮助和支持({0})",
|
"helpSupportReplacement": "帮助和支持({0})",
|
||||||
"iOSAppProvisioning": "iOS 应用预配配置文件",
|
"iOSAppProvisioning": "iOS 应用预配配置文件",
|
||||||
"incompleteUserEnrollments": "部分用户注册",
|
"incompleteUserEnrollments": "未完成的用户注册",
|
||||||
"iosUpdates": "更新 iOS/iPadOS 的策略",
|
"iosUpdates": "更新 iOS/iPadOS 的策略",
|
||||||
"legacyPcManagement": "旧式电脑管理",
|
"legacyPcManagement": "旧式电脑管理",
|
||||||
"macOSSoftwareUpdate": "更新 macOS 的策略",
|
"macOSSoftwareUpdate": "更新 macOS 的策略",
|
||||||
@@ -12631,14 +12670,14 @@
|
|||||||
"partnerDeviceManagement": "合作伙伴设备管理",
|
"partnerDeviceManagement": "合作伙伴设备管理",
|
||||||
"perUpdateRingDeploymentState": "每个更新策略的部署状态",
|
"perUpdateRingDeploymentState": "每个更新策略的部署状态",
|
||||||
"permissions": "权限",
|
"permissions": "权限",
|
||||||
"platformApps": "{0} 个应用",
|
"platformApps": "{0} 应用",
|
||||||
"platformDevices": "{0} 台设备",
|
"platformDevices": "{0} 设备",
|
||||||
"platformEnrollment": "{0} 注册",
|
"platformEnrollment": "{0} 设备注册",
|
||||||
"policies": "策略",
|
"policies": "策略",
|
||||||
"profiles": "配置文件",
|
"profiles": "配置文件",
|
||||||
"properties": "属性",
|
"properties": "属性",
|
||||||
"reports": "报告",
|
"reports": "报告",
|
||||||
"retireNoncompliantDevices": "停用不相容设备",
|
"retireNoncompliantDevices": "停用不合规设备",
|
||||||
"retireNoncompliantDevicesPreview": "停用不兼容设备 (预览)",
|
"retireNoncompliantDevicesPreview": "停用不兼容设备 (预览)",
|
||||||
"role": "角色",
|
"role": "角色",
|
||||||
"scriptManagement": "脚本",
|
"scriptManagement": "脚本",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "用户状态",
|
"userExecutionStatus": "用户状态",
|
||||||
"wdacSupplementalPolicies": "S 模式补充策略",
|
"wdacSupplementalPolicies": "S 模式补充策略",
|
||||||
"win32CatalogUpdateApp": "用于 Windows (Win32) 目录应用的更新",
|
"win32CatalogUpdateApp": "用于 Windows (Win32) 目录应用的更新",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Windows (Win32)目录应用的更新(预览)",
|
||||||
"windows10DriverUpdate": "Windows 10 及更高版本的驱动程序更新",
|
"windows10DriverUpdate": "Windows 10 及更高版本的驱动程序更新",
|
||||||
"windows10QualityUpdate": "Windows 10 及更高版本的质量更新",
|
"windows10QualityUpdate": "Windows 10 及更高版本的质量更新",
|
||||||
"windows10UpdateRings": "Windows 10 及更高版本的更新通道",
|
"windows10UpdateRings": "Windows 10 及更高版本的更新通道",
|
||||||
"windows10XPolicyFailures": "Windows 10X 策略失败",
|
"windows10XPolicyFailures": "Windows 10X 策略失败",
|
||||||
"windows365Connector": "Windows 365 Citrix 连接器",
|
|
||||||
"windows365PartnerConnector": "Windows 365 合作伙伴连接器",
|
"windows365PartnerConnector": "Windows 365 合作伙伴连接器",
|
||||||
"windowsDiagnosticData": "Windows 数据",
|
"windowsDiagnosticData": "Windows 数据",
|
||||||
"windowsEnterpriseCertificate": "Windows Enterprise 证书",
|
"windowsEnterpriseCertificate": "Windows Enterprise 证书",
|
||||||
|
|||||||
@@ -227,7 +227,6 @@
|
|||||||
"co": "科西嘉文 (法國)",
|
"co": "科西嘉文 (法國)",
|
||||||
"cs": "捷克文 (捷克共和國)",
|
"cs": "捷克文 (捷克共和國)",
|
||||||
"da": "丹麥文 (丹麥)",
|
"da": "丹麥文 (丹麥)",
|
||||||
"prs": "達利文 (阿富汗)",
|
|
||||||
"dv": "迪維西文 (馬爾地夫)",
|
"dv": "迪維西文 (馬爾地夫)",
|
||||||
"et": "愛沙尼亞文 (愛沙尼亞)",
|
"et": "愛沙尼亞文 (愛沙尼亞)",
|
||||||
"fo": "法羅文 (法羅群島)",
|
"fo": "法羅文 (法羅群島)",
|
||||||
@@ -340,7 +339,7 @@
|
|||||||
"defender": "Microsoft Defender 防毒軟體",
|
"defender": "Microsoft Defender 防毒軟體",
|
||||||
"defenderAntivirus": "Microsoft Defender 防毒軟體",
|
"defenderAntivirus": "Microsoft Defender 防毒軟體",
|
||||||
"defenderExploitGuard": "Microsoft Defender 惡意探索防護",
|
"defenderExploitGuard": "Microsoft Defender 惡意探索防護",
|
||||||
"defenderFirewall": "Microsoft Defender 防火牆",
|
"defenderFirewall": "Windows 防火牆",
|
||||||
"defenderLocalSecurityOptions": "本機裝置安全性選項",
|
"defenderLocalSecurityOptions": "本機裝置安全性選項",
|
||||||
"defenderSecurityCenter": "Microsoft Defender 資訊安全中心",
|
"defenderSecurityCenter": "Microsoft Defender 資訊安全中心",
|
||||||
"deliveryOptimization": "傳遞最佳化",
|
"deliveryOptimization": "傳遞最佳化",
|
||||||
@@ -498,9 +497,9 @@
|
|||||||
"disabled": "已停用",
|
"disabled": "已停用",
|
||||||
"enabled": "已啟用",
|
"enabled": "已啟用",
|
||||||
"infoBalloonContent": "控制是否要將最新的 Windows 10 功能更新安裝到不符合 Windows 11 資格的裝置",
|
"infoBalloonContent": "控制是否要將最新的 Windows 10 功能更新安裝到不符合 Windows 11 資格的裝置",
|
||||||
"label": "當裝置無法執行 Windows 11 時,請安裝最新的 Windows 10 功能更新",
|
"label": "當裝置不符合執行 Windows 11 的資格時,安裝最新的 Windows 10 功能更新",
|
||||||
"notApplicable": "不適用",
|
"notApplicable": "不適用",
|
||||||
"summaryLabel": "在無法執行 Windows 11 的裝置上安裝 Windows 10"
|
"summaryLabel": "在不符合執行 Windows 11 資格的裝置上安裝 Windows 10"
|
||||||
},
|
},
|
||||||
"bladeTitle": "功能更新部署",
|
"bladeTitle": "功能更新部署",
|
||||||
"deploymentSettingsTitle": "部署設定",
|
"deploymentSettingsTitle": "部署設定",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"iOS": "在 iOS/iPadOS 裝置上,您可以允許不使用 PIN 碼而改以使用指紋識別。當使用者使用其工作帳戶存取此應用程式時,會收到提示要求他們提供其指紋識別。",
|
"iOS": "在 iOS/iPadOS 裝置上,您可以允許不使用 PIN 碼而改以使用指紋識別。當使用者使用其工作帳戶存取此應用程式時,會收到提示要求他們提供其指紋識別。",
|
||||||
"mac": "在 Mac 裝置上,您可以允許不使用 PIN 而改用指紋識別碼。當使用者以其公司帳戶存取此應用程式時,系統會提示他們提供指紋。"
|
"mac": "在 Mac 裝置上,您可以允許不使用 PIN 而改用指紋識別碼。當使用者以其公司帳戶存取此應用程式時,系統會提示他們提供指紋。"
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "請選取下列其中一個選項,以指定此應用程式可以從其接收資料的來源應用程式:",
|
"appSharingFromLevel1": "請選取下列其中一個選項,以指定此應用程式可以從其接收資料的來源應用程式:",
|
||||||
"appSharingFromLevel2": "{0}: 只允許從其他受原則管理應用程式接收組織文件或帳戶的資料",
|
"appSharingFromLevel2": "{0}: 只允許從其他受原則管理應用程式接收組織文件或帳戶的資料",
|
||||||
"appSharingFromLevel3": "{0}: 允許從任何應用程式接收組織文件或帳戶的資料",
|
"appSharingFromLevel3": "{0}: 允許從任何應用程式接收組織文件或帳戶的資料",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "請指定要使用的語言與區域。",
|
"languageInfo": "請指定要使用的語言與區域。",
|
||||||
"licenseAgreement": "Microsoft 軟體授權條款",
|
"licenseAgreement": "Microsoft 軟體授權條款",
|
||||||
"licenseAgreementInfo": "指定是否要向使用者顯示授權條款。",
|
"licenseAgreementInfo": "指定是否要向使用者顯示授權條款。",
|
||||||
"plugAndForgetDevice": "自我部署 (預覽)",
|
"plugAndForgetDevice": "自我部署",
|
||||||
"plugAndForgetGA": "自我部署",
|
|
||||||
"privacySettingWarning": "執行 Windows 10 1903 版及更新版本或 Windows 11 之裝置的診斷資料收集預設值已變更。",
|
"privacySettingWarning": "執行 Windows 10 1903 版及更新版本或 Windows 11 之裝置的診斷資料收集預設值已變更。",
|
||||||
"privacySettings": "隱私權設定",
|
"privacySettings": "隱私權設定",
|
||||||
"privacySettingsInfo": "指定是否要向使用者顯示隱私權設定。",
|
"privacySettingsInfo": "指定是否要向使用者顯示隱私權設定。",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "在技術人員階段中,僅無法封鎖選取的應用程式 (預覽)",
|
"allowNonBlockingAppInstallation": "在技術人員階段中,僅無法封鎖選取的應用程式",
|
||||||
"apps": "應用程式",
|
"apps": "應用程式",
|
||||||
"appsListName": "應用程式清單",
|
"appsListName": "應用程式清單",
|
||||||
"blockingApps": "封鎖應用程式",
|
"blockingApps": "封鎖應用程式",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "活動",
|
"activity": "活動",
|
||||||
|
"activityName": "活動名稱",
|
||||||
"actor": "起始者 (執行者)",
|
"actor": "起始者 (執行者)",
|
||||||
|
"actorType": "執行者類型",
|
||||||
"app": "應用程式",
|
"app": "應用程式",
|
||||||
"appName": "應用程式名稱",
|
"appName": "應用程式名稱",
|
||||||
"applicationName": "應用程式名稱",
|
"applicationName": "應用程式名稱",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD 連接器",
|
"mtdConnector": "MTD 連接器",
|
||||||
"name": "設定檔名稱",
|
"name": "設定檔名稱",
|
||||||
"oSVersion": "作業系統版本",
|
"oSVersion": "作業系統版本",
|
||||||
|
"operationType": "作業類型",
|
||||||
"os": "OS",
|
"os": "OS",
|
||||||
"packageName": "套件名稱",
|
"packageName": "套件名稱",
|
||||||
"partnerName": "合作夥伴",
|
"partnerName": "合作夥伴",
|
||||||
@@ -1513,13 +1515,13 @@
|
|||||||
"tooltip": "Touch ID 使用指紋辨識技術,驗證 iOS 裝置的使用者。Intune 會呼叫 LocalAuthentication API,使用 Touch ID 驗證使用者。在允許的情況下,必須使用 Touch ID 來存取具備 Touch ID 功能裝置上的應用程式。"
|
"tooltip": "Touch ID 使用指紋辨識技術,驗證 iOS 裝置的使用者。Intune 會呼叫 LocalAuthentication API,使用 Touch ID 驗證使用者。在允許的情況下,必須使用 Touch ID 來存取具備 Touch ID 功能裝置上的應用程式。"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppDisplayName": {
|
"MessagingRedirectAppDisplayName": {
|
||||||
"label": "Messaging App Name"
|
"label": "訊息應用程式名稱"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppPackageId": {
|
"MessagingRedirectAppPackageId": {
|
||||||
"label": "Messaging App Package ID"
|
"label": "訊息應用程式套件識別碼"
|
||||||
},
|
},
|
||||||
"MessagingRedirectAppUrlScheme": {
|
"MessagingRedirectAppUrlScheme": {
|
||||||
"label": "Messaging App URL Scheme"
|
"label": "訊息應用程式 URL 配置"
|
||||||
},
|
},
|
||||||
"NotificationRestriction": {
|
"NotificationRestriction": {
|
||||||
"label": "組織資料通知",
|
"label": "組織資料通知",
|
||||||
@@ -1549,9 +1551,9 @@
|
|||||||
"tooltip": "一旦封鎖,應用程式就無法列印受保護的資料。"
|
"tooltip": "一旦封鎖,應用程式就無法列印受保護的資料。"
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "一般來說,當使用者在應用程式中選取超連結的訊息連結時,訊息應用程式會開啟,並預先填入電話號碼並準備好傳送。針對此設定,請選擇從原則管理的應用程式起始時,該如何處理此類型的內容傳輸。可能需要其他步驟,此設定才能生效。首先,驗證已從 [選取要豁免的應用程式] 清單中移除簡訊。然後,請確保應用程式使用較新版本的 Intune SDK (版本 > 19.0.0)。",
|
||||||
"label": "Transfer messaging data to",
|
"label": "傳輸訊息資料至",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "一般來說,當使用者在應用程式中選取超連結的訊息連結時,訊息應用程式會開啟,並預先填入電話號碼並準備好傳送。針對此設定,請選擇從原則管理的應用程式起始時,該如何處理此類型的內容傳輸。"
|
||||||
},
|
},
|
||||||
"ReceiveData": {
|
"ReceiveData": {
|
||||||
"label": "從其他應用程式接收資料",
|
"label": "從其他應用程式接收資料",
|
||||||
@@ -2232,7 +2234,7 @@
|
|||||||
"authenticationWebSignInDescription": "允許 Web 認證提供者可登入。",
|
"authenticationWebSignInDescription": "允許 Web 認證提供者可登入。",
|
||||||
"authenticationWebSignInName": "網路登入 (即將淘汰的設定)",
|
"authenticationWebSignInName": "網路登入 (即將淘汰的設定)",
|
||||||
"authorizedAppRulesDescription": "在本機存放區中套用要辨識及強制執行的授權防火牆規則。",
|
"authorizedAppRulesDescription": "在本機存放區中套用要辨識及強制執行的授權防火牆規則。",
|
||||||
"authorizedAppRulesName": "來自本機存放區的授權應用程式 Microsoft Defender 防火牆規則",
|
"authorizedAppRulesName": "來自本機存放區的授權應用程式 Windows 防火牆規則",
|
||||||
"authorizedUsersListHideAdminUsersName": "隱藏之電腦的系統管理員",
|
"authorizedUsersListHideAdminUsersName": "隱藏之電腦的系統管理員",
|
||||||
"authorizedUsersListHideLocalUsersName": "隱藏本機使用者",
|
"authorizedUsersListHideLocalUsersName": "隱藏本機使用者",
|
||||||
"authorizedUsersListHideMobileAccountsName": "隱藏行動帳戶",
|
"authorizedUsersListHideMobileAccountsName": "隱藏行動帳戶",
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "此設定可指定多長時間沒有任何使用者輸入後,鎖住行動裝置螢幕。建議值: 15 分鐘",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "此設定可指定多長時間沒有任何使用者輸入後,鎖住行動裝置螢幕。建議值: 15 分鐘",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "此設定會指定使用者沒有輸入內容多久之後,即會鎖住該裝置。建議值: 15 分鐘",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "此設定會指定使用者沒有輸入內容多久之後,即會鎖住該裝置。建議值: 15 分鐘",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "在停止活動最少幾分鐘後必須輸入密碼",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "在停止活動最少幾分鐘後必須輸入密碼",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "建議值: 15 分鐘",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "選取行動裝置所能安裝的最新 OS 版本。",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "選取行動裝置所能安裝的最新 OS 版本。",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "行動裝置的最高 OS 版本",
|
"complianceMobileOsVersionRestrictionMaximumName": "行動裝置的最高 OS 版本",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "選取行動裝置所能安裝的最舊 OS 版本。",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "選取行動裝置所能安裝的最舊 OS 版本。",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "此設定可指定不得重複使用最近用過的密碼次數。建議值: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "此設定可指定不得重複使用最近用過的密碼次數。建議值: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "避免重複使用以前用過的密碼次數",
|
"complianceNumberOfPreviousPasswordsToBlockName": "避免重複使用以前用過的密碼次數",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "建議值: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "輸入裝置可以擁有的最新 OS 組建版本。例如: 20E252<br>若要將 Apple Rapid Security Response 更新設定為 OS 組建上限,請輸入補充組建版本。例如: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "輸入裝置可以擁有的最新 OS 組建版本。例如: 20E252<br>若要將 Apple Rapid Security Response 更新設定為 OS 組建上限,請輸入補充組建版本。例如: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "最高 OS 組建版本",
|
"complianceOsBuildVersionRestrictionMaximumName": "最高 OS 組建版本",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "輸入裝置可以擁有的最舊 OS 組建版本。例如: 20E252<br>若要將 Apple Rapid Security Response 更新設定為 OS 組建上限,請輸入補充組建版本。例如: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "輸入裝置可以擁有的最舊 OS 組建版本。例如: 20E252<br>若要將 Apple Rapid Security Response 更新設定為 OS 組建上限,請輸入補充組建版本。例如: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "需要 Microsoft Defender 安全情報保持在最新狀態。",
|
"complianceRequireWindowsDefenderSignatureDescription": "需要 Microsoft Defender 安全情報保持在最新狀態。",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender 反惡意程式碼安全情報保持在最新狀態",
|
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender 反惡意程式碼安全情報保持在最新狀態",
|
||||||
"complianceRequiredPasswordTypeDescription": "此設定可指定是否允許密碼只由數字字元組成,或密碼是否必須包含數字以外的字元。建議: 需要的密碼類型: 英數字元,字元集數目下限: 1",
|
"complianceRequiredPasswordTypeDescription": "此設定可指定是否允許密碼只由數字字元組成,或密碼是否必須包含數字以外的字元。建議: 需要的密碼類型: 英數字元,字元集數目下限: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "建議: 密碼類型必須爲: 英數字元、字元集數目下限: 1",
|
||||||
"complianceRootedAllowedDescription": "避免被破解的裝置能進行公司存取。",
|
"complianceRootedAllowedDescription": "避免被破解的裝置能進行公司存取。",
|
||||||
"complianceRootedAllowedName": "破解的裝置",
|
"complianceRootedAllowedName": "破解的裝置",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "此設定可指定是否讓裝置無法使用 USB 偵錯功能。",
|
"complianceSecurityDisableUSBDebuggingDescription": "此設定可指定是否讓裝置無法使用 USB 偵錯功能。",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "選取裝置可擁有的最舊 OS 版本。作業系統版本會定義為 major.minor.build.revision。",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "選取裝置可擁有的最舊 OS 版本。作業系統版本會定義為 major.minor.build.revision。",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "選取裝置上的密碼類型。",
|
"complianceWindowsRequiredPasswordTypeDescription": "選取裝置上的密碼類型。",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "密碼類型",
|
"complianceWindowsRequiredPasswordTypeName": "密碼類型",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "需要密碼才能解除鎖定工作設定檔",
|
||||||
|
"complianceWorkProfileSecurityHeader": "公司設定檔安全性",
|
||||||
"compliantAppsOption": "相容的應用程式清單。針對不在清單中的任何已安裝應用程式,都回報不相容",
|
"compliantAppsOption": "相容的應用程式清單。針對不在清單中的任何已安裝應用程式,都回報不相容",
|
||||||
"computerNameStaticPrefixDescription": "電腦會獲指派長度為 15 個字元的名稱。請指定首碼,而其餘 15 個字元會是隨機的。",
|
"computerNameStaticPrefixDescription": "電腦會獲指派長度為 15 個字元的名稱。請指定首碼,而其餘 15 個字元會是隨機的。",
|
||||||
"computerNameStaticPrefixName": "電腦名稱前置詞",
|
"computerNameStaticPrefixName": "電腦名稱前置詞",
|
||||||
@@ -3490,14 +3497,14 @@
|
|||||||
"domainAllowListName": "Google 網域允許清單",
|
"domainAllowListName": "Google 網域允許清單",
|
||||||
"domainAllowListTableEmptyValueExample": "輸入網域",
|
"domainAllowListTableEmptyValueExample": "輸入網域",
|
||||||
"domainAllowListTableName": "網域",
|
"domainAllowListTableName": "網域",
|
||||||
"domainAuthorizedAppRulesSummaryLabel": "授權的應用程式來自本機存放區的 Microsoft Defender 防火牆規則 (網域網路)",
|
"domainAuthorizedAppRulesSummaryLabel": "來自本機存放區的授權應用程式 Windows 防火牆規則 (網域網路)",
|
||||||
"domainFirewallEnabledSummaryLabel": "Microsoft Defender 防火牆 (網域網路)",
|
"domainFirewallEnabledSummaryLabel": "Windows 防火牆 (網域網路)",
|
||||||
"domainGlobalRulesSummaryLabel": "全域連接埠來自本機存放區的 Microsoft Defender 防火牆規則 (網域網路)",
|
"domainGlobalRulesSummaryLabel": "來自本機存放區的全域連接埠 Windows 防火牆規則 (網域網路)",
|
||||||
"domainIPsecRulesSummaryLabel": "來自本機存放區的 IPsec 規則 (網域網路)",
|
"domainIPsecRulesSummaryLabel": "來自本機存放區的 IPsec 規則 (網域網路)",
|
||||||
"domainIPsecSecuredPacketExemptionSummaryLabel": "隱形模式 IPsec 安全封包豁免 (網域網路)",
|
"domainIPsecSecuredPacketExemptionSummaryLabel": "隱形模式 IPsec 安全封包豁免 (網域網路)",
|
||||||
"domainInboundConnectionsSummaryLabel": "輸入連線的預設動作 (網域網路)",
|
"domainInboundConnectionsSummaryLabel": "輸入連線的預設動作 (網域網路)",
|
||||||
"domainInboundNotificationsSummaryLabel": "輸入通知 (網域網路)",
|
"domainInboundNotificationsSummaryLabel": "輸入通知 (網域網路)",
|
||||||
"domainLocalStoreSummaryLabel": "來自本機存放區的 Microsoft Defender 防火牆規則 (網域網路)",
|
"domainLocalStoreSummaryLabel": "來自本機存放區的 Windows 防火牆規則 (網域網路)",
|
||||||
"domainNameSourceOption": "使用者網域名稱來源",
|
"domainNameSourceOption": "使用者網域名稱來源",
|
||||||
"domainNetworkName": "網域 (工作地點) 網路",
|
"domainNetworkName": "網域 (工作地點) 網路",
|
||||||
"domainOutboundConnectionsSummaryLabel": "輸出連線的預設動作 (網域網路)",
|
"domainOutboundConnectionsSummaryLabel": "輸出連線的預設動作 (網域網路)",
|
||||||
@@ -3804,7 +3811,7 @@
|
|||||||
"enableSingleSignOnName": "使用其他憑證的單一登入 (SSO)",
|
"enableSingleSignOnName": "使用其他憑證的單一登入 (SSO)",
|
||||||
"enableUsePrivateStoreOnly": "僅使用私人市集",
|
"enableUsePrivateStoreOnly": "僅使用私人市集",
|
||||||
"enableUsePrivateStoreOnlyDescription": "只允許從私人市集下載應用程式,而不得從公開市集下載。",
|
"enableUsePrivateStoreOnlyDescription": "只允許從私人市集下載應用程式,而不得從公開市集下載。",
|
||||||
"enableWindowsDefenderFirewallName": "Microsoft Defender 防火牆",
|
"enableWindowsDefenderFirewallName": "Windows 防火牆",
|
||||||
"enableWithUEFILock": "連同 UEFI 鎖定一起啟用",
|
"enableWithUEFILock": "連同 UEFI 鎖定一起啟用",
|
||||||
"enableWithoutUEFILock": "不與 UEFI 鎖定一起啟用",
|
"enableWithoutUEFILock": "不與 UEFI 鎖定一起啟用",
|
||||||
"enabledForAzureAdAndHybridOption": "已針對加入 Microsoft Entra 和混合式加入的裝置啟用金鑰輪替",
|
"enabledForAzureAdAndHybridOption": "已針對加入 Microsoft Entra 和混合式加入的裝置啟用金鑰輪替",
|
||||||
@@ -3996,7 +4003,7 @@
|
|||||||
"firewallAppsBlockedHeader": "封鎖下列應用程式的連入連線。",
|
"firewallAppsBlockedHeader": "封鎖下列應用程式的連入連線。",
|
||||||
"firewallAppsBlockedPageDescription": "請選取應封鎖連入連線的應用程式。",
|
"firewallAppsBlockedPageDescription": "請選取應封鎖連入連線的應用程式。",
|
||||||
"firewallAppsBlockedPageName": "封鎖的應用程式",
|
"firewallAppsBlockedPageName": "封鎖的應用程式",
|
||||||
"firewallCreateRules": "建立 Microsoft Defender 防火牆規則。一個 Endpoint Protection 設定檔可包含最多 150 個規則。",
|
"firewallCreateRules": "建立 Windows 防火牆規則。一個 Endpoint Protection 設定檔可包含最多 150 個規則。",
|
||||||
"firewallRequiredDescription": "需要開啟防火牆",
|
"firewallRequiredDescription": "需要開啟防火牆",
|
||||||
"firewallRequiredName": "防火牆",
|
"firewallRequiredName": "防火牆",
|
||||||
"firewallRuleAction": "動作",
|
"firewallRuleAction": "動作",
|
||||||
@@ -4150,10 +4157,10 @@
|
|||||||
"generalAvailabilityChannel": "一般可用性通道",
|
"generalAvailabilityChannel": "一般可用性通道",
|
||||||
"generalNetworkSettingsHeader": "一般",
|
"generalNetworkSettingsHeader": "一般",
|
||||||
"genericLocalUsersOrGroupsName": "一般本機使用者或群組",
|
"genericLocalUsersOrGroupsName": "一般本機使用者或群組",
|
||||||
"globalConfigurationsDescription": "設定適用於所有網路類型的 Microsoft Defender 防火牆設定。",
|
"globalConfigurationsDescription": "設定適用於所有網路類型的 Windows 防火牆設定。",
|
||||||
"globalConfigurationsName": "全域設定",
|
"globalConfigurationsName": "全域設定",
|
||||||
"globalRulesDescription": "在本機存放區中套用要辨識及強制執行的全域連接埠防火牆規則。",
|
"globalRulesDescription": "在本機存放區中套用要辨識及強制執行的全域連接埠防火牆規則。",
|
||||||
"globalRulesName": "來自本機存放區的全域連接埠 Microsoft Defender 防火牆規則",
|
"globalRulesName": "來自本機存放區的全域連接埠 Windows 防火牆規則",
|
||||||
"google": "Google",
|
"google": "Google",
|
||||||
"googleAccountEmailAddresses": "Google 帳戶電子郵件地址",
|
"googleAccountEmailAddresses": "Google 帳戶電子郵件地址",
|
||||||
"googleAccountEmailAddressesDescription": "分號分隔的電子郵件地址清單",
|
"googleAccountEmailAddressesDescription": "分號分隔的電子郵件地址清單",
|
||||||
@@ -4754,7 +4761,7 @@
|
|||||||
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "在安全桌面上提示輸入認證",
|
"localSecurityOptionspromptForCredentialsOnTheSecureDesktopName": "在安全桌面上提示輸入認證",
|
||||||
"localServerCachingHeader": "本機伺服器快取",
|
"localServerCachingHeader": "本機伺服器快取",
|
||||||
"localStoreDescription": "從本機存放區中套用要辨識及強制執行的全域防火牆規則。",
|
"localStoreDescription": "從本機存放區中套用要辨識及強制執行的全域防火牆規則。",
|
||||||
"localStoreName": "來自本機存放區的 Microsoft Defender 防火牆規則",
|
"localStoreName": "來自本機存放區的 Windows 防火牆規則",
|
||||||
"lockScreenAllowTimeoutConfigurationDescription": "指定是否顯示使用者可設定的設定,來控制 Windows 10 行動裝置版的裝置在鎖定畫面時的畫面逾時。若此原則設定為 [允許],則會略過由「螢幕逾時」所設定的值。",
|
"lockScreenAllowTimeoutConfigurationDescription": "指定是否顯示使用者可設定的設定,來控制 Windows 10 行動裝置版的裝置在鎖定畫面時的畫面逾時。若此原則設定為 [允許],則會略過由「螢幕逾時」所設定的值。",
|
||||||
"lockScreenAllowTimeoutConfigurationName": "使用者可設定的畫面逾時 (僅限行動裝置)",
|
"lockScreenAllowTimeoutConfigurationName": "使用者可設定的畫面逾時 (僅限行動裝置)",
|
||||||
"lockScreenBackgroundImageURLDescription": "自訂歡迎使用畫面背景影像 URL。必須是具有端點 https:// 的 .png 檔案",
|
"lockScreenBackgroundImageURLDescription": "自訂歡迎使用畫面背景影像 URL。必須是具有端點 https:// 的 .png 檔案",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "MTU 必須介於 1280 到 1400 位元組之間",
|
"mTUSizeInBytesBounds": "MTU 必須介於 1280 到 1400 位元組之間",
|
||||||
"mTUSizeInBytesName": "最大傳輸單元",
|
"mTUSizeInBytesName": "最大傳輸單元",
|
||||||
"mTUSizeInBytesToolTip": "可在網路上傳輸的最大資料封包 (以位元組為單位)。未設定時,Apple 預設大小為 1280 位元組。適用於 iOS 14 及更新版本。",
|
"mTUSizeInBytesToolTip": "可在網路上傳輸的最大資料封包 (以位元組為單位)。未設定時,Apple 預設大小為 1280 位元組。適用於 iOS 14 及更新版本。",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "使用隨機 MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "使用裝置預設值",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "只有在需要時才使用隨機 MAC,例如 NAC 支援。使用者可以變更此設定。適用於 Android 13 及更新版本。",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "使用裝置 MAC",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "MAC 位址隨機",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store 和已識別的開發人員",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store 和已識別的開發人員",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "禁止 AirPlay、與其他裝置分享螢幕畫面,以及教師用來觀看學生螢幕畫面的教室應用程式功能。如果您已封鎖螢幕擷取畫面,就無法使用此設定。",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "禁止 AirPlay、與其他裝置分享螢幕畫面,以及教師用來觀看學生螢幕畫面的教室應用程式功能。如果您已封鎖螢幕擷取畫面,就無法使用此設定。",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "輸入數字 (4-16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "輸入數字 (4-16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "輸入數字 (6-16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "輸入數字 (6-16)",
|
||||||
"minimumPasswordLengthName": "密碼長度下限",
|
"minimumPasswordLengthName": "密碼長度下限",
|
||||||
|
"minimumPasswordLengthTooltipText": "請輸入數字",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "缺少的更新將會自動安裝",
|
"minimumUpdateAutoInstallClassificationDescription": "缺少的更新將會自動安裝",
|
||||||
"minimumUpdateAutoInstallClassificationName": "安裝指定的更新分類",
|
"minimumUpdateAutoInstallClassificationName": "安裝指定的更新分類",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "重要",
|
"minimumUpdateAutoInstallClassificationValueImportant": "重要",
|
||||||
@@ -5287,7 +5300,7 @@
|
|||||||
"networkProxyUseManualServerName": "使用手動 Proxy 伺服器",
|
"networkProxyUseManualServerName": "使用手動 Proxy 伺服器",
|
||||||
"networkProxyUseScriptUrlName": "使用 Proxy 指令碼",
|
"networkProxyUseScriptUrlName": "使用 Proxy 指令碼",
|
||||||
"networkSettingsName": "網路設定",
|
"networkSettingsName": "網路設定",
|
||||||
"networkSettingsSubtitle": "設定適用於特定網路類型的 Microsoft Defender 防火牆設定。",
|
"networkSettingsSubtitle": "設定適用於特定網路類型的 Windows 防火牆設定。",
|
||||||
"networkUsageRulesBlockCellularHeaderName": "新增不應獲允許使用任何行動數據的受管理 IOS 應用程式。",
|
"networkUsageRulesBlockCellularHeaderName": "新增不應獲允許使用任何行動數據的受管理 IOS 應用程式。",
|
||||||
"networkUsageRulesBlockCellularName": "禁止使用行動數據",
|
"networkUsageRulesBlockCellularName": "禁止使用行動數據",
|
||||||
"networkUsageRulesBlockCellularRoamingHeaderName": "新增不應獲允許在漫遊時使用任何行動數據的受管理 IOS 應用程式。",
|
"networkUsageRulesBlockCellularRoamingHeaderName": "新增不應獲允許在漫遊時使用任何行動數據的受管理 IOS 應用程式。",
|
||||||
@@ -5647,14 +5660,14 @@
|
|||||||
"privacyPreferencesTableName": "應用程式與處理序",
|
"privacyPreferencesTableName": "應用程式與處理序",
|
||||||
"privacyPublishUserActivitiesDescription": "禁止共用/探索近期在工作切換器中使用的資源。",
|
"privacyPublishUserActivitiesDescription": "禁止共用/探索近期在工作切換器中使用的資源。",
|
||||||
"privacyPublishUserActivitiesName": "發佈使用者活動",
|
"privacyPublishUserActivitiesName": "發佈使用者活動",
|
||||||
"privateAuthorizedAppRulesSummaryLabel": "授權的應用程式來自本機存放區的 Microsoft Defender 防火牆規則 (私人網路)",
|
"privateAuthorizedAppRulesSummaryLabel": "來自本機存放區的授權應用程式 Windows 防火牆規則 (私人網路)",
|
||||||
"privateFirewallEnabledSummaryLabel": "Microsoft Defender 防火牆 (私人網路)",
|
"privateFirewallEnabledSummaryLabel": "Windows 防火牆 (私人網路)",
|
||||||
"privateGlobalRulesSummaryLabel": "全域連接埠來自本機存放區的 Microsoft Defender 防火牆規則 (私人網路)",
|
"privateGlobalRulesSummaryLabel": "來自本機存放區的全域連接埠 Windows 防火牆規則 (私人網路)",
|
||||||
"privateIPsecRulesSummaryLabel": "來自本機存放區的 IPsec 規則 (私人網路)",
|
"privateIPsecRulesSummaryLabel": "來自本機存放區的 IPsec 規則 (私人網路)",
|
||||||
"privateIPsecSecuredPacketExemptionSummaryLabel": "隱形模式 IPsec 安全封包豁免 (私人網路)",
|
"privateIPsecSecuredPacketExemptionSummaryLabel": "隱形模式 IPsec 安全封包豁免 (私人網路)",
|
||||||
"privateInboundConnectionsSummaryLabel": "輸入連線的預設動作 (私人網路)",
|
"privateInboundConnectionsSummaryLabel": "輸入連線的預設動作 (私人網路)",
|
||||||
"privateInboundNotificationsSummaryLabel": "輸入通知 (私人網路)",
|
"privateInboundNotificationsSummaryLabel": "輸入通知 (私人網路)",
|
||||||
"privateLocalStoreSummaryLabel": "來自本機存放區的 Microsoft Defender 防火牆規則 (私人網路)",
|
"privateLocalStoreSummaryLabel": "來自本機存放區的 Windows 防火牆規則 (私人網路)",
|
||||||
"privateNetworkName": "私人 (可搜尋的) 網路",
|
"privateNetworkName": "私人 (可搜尋的) 網路",
|
||||||
"privateOutboundConnectionsSummaryLabel": "輸出連線的預設動作 (私人網路)",
|
"privateOutboundConnectionsSummaryLabel": "輸出連線的預設動作 (私人網路)",
|
||||||
"privateShieldedSummaryLabel": "受防護 (私人網路)",
|
"privateShieldedSummaryLabel": "受防護 (私人網路)",
|
||||||
@@ -5697,14 +5710,14 @@
|
|||||||
"proxyServerURLName": "Proxy 伺服器 URL",
|
"proxyServerURLName": "Proxy 伺服器 URL",
|
||||||
"proxyServersAutoDetectionName": "其他企業 Proxy 伺服器的自動偵測",
|
"proxyServersAutoDetectionName": "其他企業 Proxy 伺服器的自動偵測",
|
||||||
"proxyUrlExample": "例如 itgproxy.contoso.com",
|
"proxyUrlExample": "例如 itgproxy.contoso.com",
|
||||||
"publicAuthorizedAppRulesSummaryLabel": "授權的應用程式來自本機存放區的Microsoft Defender 防火牆規則 (私人網路)",
|
"publicAuthorizedAppRulesSummaryLabel": "來自本機存放區的授權應用程式 Windows 防火牆規則 (公用網路)",
|
||||||
"publicFirewallEnabledSummaryLabel": "Microsoft Defender 防火牆 (公用網路)",
|
"publicFirewallEnabledSummaryLabel": "Windows 防火牆 (公用網路)",
|
||||||
"publicGlobalRulesSummaryLabel": "全域連接埠來自本機存放區的 Microsoft Defender 防火牆規則 (公用網路)",
|
"publicGlobalRulesSummaryLabel": "來自本機存放區的全域連接埠 Windows 防火牆規則 (公用網路)",
|
||||||
"publicIPsecRulesSummaryLabel": "來自本機存放區的 IPsec 規則 (公用網路)",
|
"publicIPsecRulesSummaryLabel": "來自本機存放區的 IPsec 規則 (公用網路)",
|
||||||
"publicIPsecSecuredPacketExemptionSummaryLabel": "隱形模式 IPsec 安全封包豁免 (公用網路)",
|
"publicIPsecSecuredPacketExemptionSummaryLabel": "隱形模式 IPsec 安全封包豁免 (公用網路)",
|
||||||
"publicInboundConnectionsSummaryLabel": "輸入連線的預設動作 (公用網路)",
|
"publicInboundConnectionsSummaryLabel": "輸入連線的預設動作 (公用網路)",
|
||||||
"publicInboundNotificationsSummaryLabel": "輸入通知 (公用網路)",
|
"publicInboundNotificationsSummaryLabel": "輸入通知 (公用網路)",
|
||||||
"publicLocalStoreSummaryLabel": "來自本機存放區的 Microsoft Defender 防火牆規則 (公用網路)",
|
"publicLocalStoreSummaryLabel": "來自本機存放區的 Windows 防火牆規則 (公用網路)",
|
||||||
"publicNetworkName": "公用 (不可搜尋的) 網路",
|
"publicNetworkName": "公用 (不可搜尋的) 網路",
|
||||||
"publicOutboundConnectionsSummaryLabel": "輸出連線的預設動作 (公用網路)",
|
"publicOutboundConnectionsSummaryLabel": "輸出連線的預設動作 (公用網路)",
|
||||||
"publicPlayStoreEnabledDescription": "除了您已在用戶端應用程式中要求解除安裝的應用程式外,使用者可存取其他全部的應用程式。若您將此設定選擇為 [未設定],使用者就僅可存取您已列為可用,或在用戶端應用程式中要求的應用程式。",
|
"publicPlayStoreEnabledDescription": "除了您已在用戶端應用程式中要求解除安裝的應用程式外,使用者可存取其他全部的應用程式。若您將此設定選擇為 [未設定],使用者就僅可存取您已列為可用,或在用戶端應用程式中要求的應用程式。",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "註冊至軟體 KSP",
|
"sCEPPolicyEnrollToSoftwareKSP": "註冊至軟體 KSP",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "註冊至信賴平台模組 (TPM) KSP,否則會失敗",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "註冊至信賴平台模組 (TPM) KSP,否則會失敗",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "註冊至信賴平台模組 (TPM) KSP (如果存在),否則註冊至軟體 KSP",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "註冊至信賴平台模組 (TPM) KSP (如果存在),否則註冊至軟體 KSP",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "警告: 任何目的 EKU (OID 2.5.29.37.0) 或任何應用程式原則 EKU (OID 1.3.6.1.4.1.311.10.12.1) 都不得與 Microsoft 雲端 PKI 中建立的憑證授權單位搭配使用。",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "在大多數的情況下,憑證至少會需要用戶端驗證,以便於使用者或裝置向伺服器進行驗證。但您可以指定其他用法,進一步定義金鑰的用途。",
|
"sCEPPolicyExtendedKeyUsageDescription": "在大多數的情況下,憑證至少會需要用戶端驗證,以便於使用者或裝置向伺服器進行驗證。但您可以指定其他用法,進一步定義金鑰的用途。",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "擴充金鑰使用方法",
|
"sCEPPolicyExtendedKeyUsageName": "擴充金鑰使用方法",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "使用雜湊演算法類型搭配憑證。請務必選取連線裝置所支援的最強安全性等級。",
|
"sCEPPolicyHashAlgorithmDescription": "使用雜湊演算法類型搭配憑證。請務必選取連線裝置所支援的最強安全性等級。",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "輸入天數 (1-255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "輸入天數 (1-255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "輸入天數 (1 - 365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "輸入天數 (1 - 365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "密碼到期 (天數)",
|
"workProfilePasswordExpirationInDaysName": "密碼到期 (天數)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "輸入天數",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "工作設定檔密碼: 密碼長度下限",
|
"workProfilePasswordMinimumLengthReportingName": "工作設定檔密碼: 密碼長度下限",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "工作設定檔密碼: 需要的字元數目",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "工作設定檔密碼: 需要的字元數目",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "工作設定檔密碼: 需要的小寫字元數目",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "工作設定檔密碼: 需要的小寫字元數目",
|
||||||
@@ -7451,9 +7466,9 @@
|
|||||||
"anyAppOptionText": "任一 App",
|
"anyAppOptionText": "任一 App",
|
||||||
"anyDestinationAnySourceOptionText": "任何目的地及任何來源",
|
"anyDestinationAnySourceOptionText": "任何目的地及任何來源",
|
||||||
"anyDialerAppOptionText": "任一撥號程式應用程式",
|
"anyDialerAppOptionText": "任一撥號程式應用程式",
|
||||||
"anyMessagingAppOptionText": "Any messaging app",
|
"anyMessagingAppOptionText": "任何訊息應用程式",
|
||||||
"anyPolicyManagedDialerAppOptionText": "任一受原則管理的撥號程式應用程式",
|
"anyPolicyManagedDialerAppOptionText": "任一受原則管理的撥號程式應用程式",
|
||||||
"anyPolicyManagedMessagingAppOptionText": "Any policy-managed messaging app",
|
"anyPolicyManagedMessagingAppOptionText": "任何原則管理的訊息應用程式",
|
||||||
"appAdded": "已新增應用程式",
|
"appAdded": "已新增應用程式",
|
||||||
"appBasedConditionalAccess": "以應用程式為依據的條件式存取",
|
"appBasedConditionalAccess": "以應用程式為依據的條件式存取",
|
||||||
"appColumnLabel": "應用程式",
|
"appColumnLabel": "應用程式",
|
||||||
@@ -7773,9 +7788,9 @@
|
|||||||
"mdmDeviceId": "MDM 裝置識別碼",
|
"mdmDeviceId": "MDM 裝置識別碼",
|
||||||
"mdmWipInvalidVersionSettings": "一或多個應用程式有無效的最低/最高版本定義。<br /> <br />使用註冊原則的 Windows 資訊保護僅支援指定最低或最高版本其中之一,除非這兩個指定的版本相等。在僅指定最低版本時,會為大於或等於最低版本設定規則。同樣地,在僅指定最高版本時,會為小於或等於最高版本設定規則。",
|
"mdmWipInvalidVersionSettings": "一或多個應用程式有無效的最低/最高版本定義。<br /> <br />使用註冊原則的 Windows 資訊保護僅支援指定最低或最高版本其中之一,除非這兩個指定的版本相等。在僅指定最低版本時,會為大於或等於最低版本設定規則。同樣地,在僅指定最高版本時,會為小於或等於最高版本設定規則。",
|
||||||
"mdmWipReport": "MDM Windows 資訊保護報表",
|
"mdmWipReport": "MDM Windows 資訊保護報表",
|
||||||
"messagingRedirectAppDisplayNameLabelAndroid": "Messaging App Name (Android)",
|
"messagingRedirectAppDisplayNameLabelAndroid": "訊息應用程式名稱 (Android)",
|
||||||
"messagingRedirectAppPackageIdLabelAndroid": "Messaging App Package ID (Android)",
|
"messagingRedirectAppPackageIdLabelAndroid": "訊息應用程式套件識別碼 (Android)",
|
||||||
"messagingRedirectAppUrlSchemeIos": "Messaging App URL Scheme (iOS)",
|
"messagingRedirectAppUrlSchemeIos": "訊息應用程式 URL 配置 (iOS)",
|
||||||
"microsoftDefenderForEndpoint": "適用於端點的 Microsoft Defender 進階威脅防護",
|
"microsoftDefenderForEndpoint": "適用於端點的 Microsoft Defender 進階威脅防護",
|
||||||
"microsoftEdgeOptionText": "Microsoft Edge",
|
"microsoftEdgeOptionText": "Microsoft Edge",
|
||||||
"minAppVersion": "應用程式最低版本",
|
"minAppVersion": "應用程式最低版本",
|
||||||
@@ -7964,7 +7979,7 @@
|
|||||||
"settingsCatalog": "設定目錄",
|
"settingsCatalog": "設定目錄",
|
||||||
"settingsSelectorLabel": "設定",
|
"settingsSelectorLabel": "設定",
|
||||||
"silent": "靜音",
|
"silent": "靜音",
|
||||||
"specificMessagingAppOptionText": "A specific messaging app",
|
"specificMessagingAppOptionText": "特定訊息應用程式",
|
||||||
"specificUserIsLicensedIntune": "{0} 已獲得 Microsoft Intune 授權。",
|
"specificUserIsLicensedIntune": "{0} 已獲得 Microsoft Intune 授權。",
|
||||||
"state": "狀態",
|
"state": "狀態",
|
||||||
"status": "狀態",
|
"status": "狀態",
|
||||||
@@ -8327,8 +8342,8 @@
|
|||||||
"edgeSecurityBaseline": "Microsoft Edge 基準",
|
"edgeSecurityBaseline": "Microsoft Edge 基準",
|
||||||
"edgeSecurityBaselinePreview": "預覽: Microsoft Edge 基準",
|
"edgeSecurityBaselinePreview": "預覽: Microsoft Edge 基準",
|
||||||
"editionUpgradeConfiguration": "版本升級和模式切換",
|
"editionUpgradeConfiguration": "版本升級和模式切換",
|
||||||
"firewall": "Microsoft Defender 防火牆",
|
"firewall": "Windows 防火牆",
|
||||||
"firewallRules": "Microsoft Defender 防火牆規則",
|
"firewallRules": "Windows 防火牆規則",
|
||||||
"identityProtection": "帳戶防護",
|
"identityProtection": "帳戶防護",
|
||||||
"identityProtectionPreview": "帳戶保護 (預覽)",
|
"identityProtectionPreview": "帳戶保護 (預覽)",
|
||||||
"mDMSecurityBaseline1810": "2018 年 10 月的 Windows 10 及更新版本的 MDM 安全性基準",
|
"mDMSecurityBaseline1810": "2018 年 10 月的 Windows 10 及更新版本的 MDM 安全性基準",
|
||||||
@@ -8345,15 +8360,15 @@
|
|||||||
"office365BaselinePreview": "預覽: Microsoft Office O365 基準",
|
"office365BaselinePreview": "預覽: Microsoft Office O365 基準",
|
||||||
"securityBaselines": "安全性基準",
|
"securityBaselines": "安全性基準",
|
||||||
"test": "測試範本",
|
"test": "測試範本",
|
||||||
"testFirewallRulesSecurityTemplateName": "Microsoft Defender 防火牆規則 (測試)",
|
"testFirewallRulesSecurityTemplateName": "Windows 防火牆規則 (測試)",
|
||||||
"testIdentityProtectionSecurityTemplateName": "帳戶防護 (測試)",
|
"testIdentityProtectionSecurityTemplateName": "帳戶防護 (測試)",
|
||||||
"windowsSecurityExperience": "Windows 安全性體驗"
|
"windowsSecurityExperience": "Windows 安全性體驗"
|
||||||
},
|
},
|
||||||
"Firewall": {
|
"Firewall": {
|
||||||
"mDE": "Microsoft Defender 防火牆"
|
"mDE": "Windows 防火牆"
|
||||||
},
|
},
|
||||||
"FirewallRules": {
|
"FirewallRules": {
|
||||||
"mDE": "Microsoft Defender 防火牆規則"
|
"mDE": "Windows 防火牆規則"
|
||||||
},
|
},
|
||||||
"OneDriveKnownFolderMove": {
|
"OneDriveKnownFolderMove": {
|
||||||
"description": "OneDrive 已知資料夾移動設定: Windows 10 在雲端設定範本中。https://aka.ms/CloudConfigGuide"
|
"description": "OneDrive 已知資料夾移動設定: Windows 10 在雲端設定範本中。https://aka.ms/CloudConfigGuide"
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "行動裝置管理設定",
|
"expeditedCheckin": "行動裝置管理設定",
|
||||||
"exploitProtection": "惡意探索保護",
|
"exploitProtection": "惡意探索保護",
|
||||||
"extensions": "副檔名",
|
"extensions": "副檔名",
|
||||||
"hardwareConfigurations": "BIOS 設定",
|
"hardwareConfigurations": "BIOS 設定和其他設定",
|
||||||
"identityProtection": "身分識別保護",
|
"identityProtection": "身分識別保護",
|
||||||
"iosCompliancePolicy": "iOS 合規性政策",
|
"iosCompliancePolicy": "iOS 合規性政策",
|
||||||
"kiosk": "資訊亭",
|
"kiosk": "資訊亭",
|
||||||
@@ -8394,7 +8409,7 @@
|
|||||||
"microsoftDefenderAntivirus": "Microsoft Defender 防毒軟體",
|
"microsoftDefenderAntivirus": "Microsoft Defender 防毒軟體",
|
||||||
"microsoftDefenderAntivirusexclusions": "Microsoft Defender 防毒軟體排除",
|
"microsoftDefenderAntivirusexclusions": "Microsoft Defender 防毒軟體排除",
|
||||||
"microsoftDefenderAtpWindows10Desktop": "適用於端點的 Microsoft Defender (執行 Windows 10 及更新版本的電腦裝置)",
|
"microsoftDefenderAtpWindows10Desktop": "適用於端點的 Microsoft Defender (執行 Windows 10 及更新版本的電腦裝置)",
|
||||||
"microsoftDefenderFirewallRules": "Microsoft Defender 防火牆規則",
|
"microsoftDefenderFirewallRules": "Windows 防火牆規則",
|
||||||
"microsoftEdgeBaseline": "Microsoft Edge 的安全性基準",
|
"microsoftEdgeBaseline": "Microsoft Edge 的安全性基準",
|
||||||
"mxProfileZebraOnly": "MX 設定檔 (僅限 Zebra)",
|
"mxProfileZebraOnly": "MX 設定檔 (僅限 Zebra)",
|
||||||
"networkBoundary": "網路界限",
|
"networkBoundary": "網路界限",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "信任的憑證 - 測試",
|
"windows10XTrustedCertificate": "信任的憑證 - 測試",
|
||||||
"windows10XVPN": "VPN - 測驗",
|
"windows10XVPN": "VPN - 測驗",
|
||||||
"windows10XWifi": "WIFI - 測試",
|
"windows10XWifi": "WIFI - 測試",
|
||||||
|
"windows11SecurityBaseline": "Windows 10 及更新版本的安全性基準",
|
||||||
"windows8CompliancePolicy": "Windows 8 合規性原則",
|
"windows8CompliancePolicy": "Windows 8 合規性原則",
|
||||||
"windowsHealthMonitoring": "Windows 狀況監控",
|
"windowsHealthMonitoring": "Windows 狀況監控",
|
||||||
"windowsInformationProtection": "Windows 資訊保護",
|
"windowsInformationProtection": "Windows 資訊保護",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "針對初始佈建設定裝置並指派給使用者。",
|
"description": "設定裝置以進行初始佈建。",
|
||||||
"title": "裝置準備"
|
"title": "裝置準備"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -8602,7 +8618,7 @@
|
|||||||
"manual": "手動核准及部署驅動程式更新"
|
"manual": "手動核准及部署驅動程式更新"
|
||||||
},
|
},
|
||||||
"BulkActions": {
|
"BulkActions": {
|
||||||
"button": "Bulk actions"
|
"button": "大量動作"
|
||||||
},
|
},
|
||||||
"Details": {
|
"Details": {
|
||||||
"ApprovalMethod": {
|
"ApprovalMethod": {
|
||||||
@@ -8614,29 +8630,29 @@
|
|||||||
"value": "{0} 天"
|
"value": "{0} 天"
|
||||||
},
|
},
|
||||||
"DriverAction": {
|
"DriverAction": {
|
||||||
"header": "Select an action below.",
|
"header": "在下方選取一個動作。",
|
||||||
"label": "Driver action",
|
"label": "驅動程式動作",
|
||||||
"placeholder": "Select an action"
|
"placeholder": "選取一個動作"
|
||||||
},
|
},
|
||||||
"IncludedDrivers": {
|
"IncludedDrivers": {
|
||||||
"label": "Included drivers"
|
"label": "已包含的驅動程式"
|
||||||
},
|
},
|
||||||
"SelectDrivers": {
|
"SelectDrivers": {
|
||||||
"header": "Select drivers to include in your bulk action"
|
"header": "選取要包含在大量動作中的驅動程式"
|
||||||
},
|
},
|
||||||
"SelectDriversToInclude": {
|
"SelectDriversToInclude": {
|
||||||
"button": "Select drivers to include"
|
"button": "選取要包含的驅動程式"
|
||||||
},
|
},
|
||||||
"SelectLessDrivers": {
|
"SelectLessDrivers": {
|
||||||
"validation": "At most one hundred drivers can be selected"
|
"validation": "最多可選取一百個驅動程式"
|
||||||
},
|
},
|
||||||
"SelectMoreDrivers": {
|
"SelectMoreDrivers": {
|
||||||
"validation": "At least one driver should be selected"
|
"validation": "至少應選取一個驅動程式"
|
||||||
},
|
},
|
||||||
"SelectedDrivers": {
|
"SelectedDrivers": {
|
||||||
"label": "Selected drivers"
|
"label": "已選取的驅動程式"
|
||||||
},
|
},
|
||||||
"availabilityDate": "Make available in Windows Update",
|
"availabilityDate": "設爲可在 Windows Update 中使用",
|
||||||
"bladeTitle": "Windows 10 和更新版本的驅動程式更新 (預覽)",
|
"bladeTitle": "Windows 10 和更新版本的驅動程式更新 (預覽)",
|
||||||
"lastSync": "上次同步時間:",
|
"lastSync": "上次同步時間:",
|
||||||
"lastSyncDefaultText": "擱置的初始庫存集合",
|
"lastSyncDefaultText": "擱置的初始庫存集合",
|
||||||
@@ -9758,26 +9774,26 @@
|
|||||||
"Summary": {
|
"Summary": {
|
||||||
"placeholder": "從左側選取通知訊息以預覽內容。"
|
"placeholder": "從左側選取通知訊息以預覽內容。"
|
||||||
},
|
},
|
||||||
"companyContact": "電子郵件頁尾 - 包含連絡資訊",
|
"companyContact": "顯示連絡人資訊",
|
||||||
"companyLogo": "電子郵件頁首 - 包含公司標誌",
|
"companyLogo": "顯示公司標誌",
|
||||||
"companyName": "電子郵件頁尾 - 包含公司名稱",
|
"companyName": "顯示公司名稱",
|
||||||
"createEditDescription": "建立或編輯通知訊息範本。",
|
"createEditDescription": "建立或編輯通知訊息範本。",
|
||||||
"createMessage": "建立訊息",
|
"createMessage": "建立訊息",
|
||||||
"deviceDetails": "Show device details",
|
"deviceDetails": "顯示裝置詳細資料",
|
||||||
"deviceDetailsInfoBox": "This setting is turned off by default, as retrieving device details can cause a delay in email notifications being received.",
|
"deviceDetailsInfoBox": "預設會關閉此設定,因為擷取裝置詳細資料可能會造成接收電子郵件通知的延遲。",
|
||||||
"editImpactInfo": "編輯此通知訊息的範本,將會影響所有使用此範本的原則。",
|
"editImpactInfo": "編輯此通知訊息的範本,將會影響所有使用此範本的原則。",
|
||||||
"editMessage": "編輯訊息",
|
"editMessage": "編輯訊息",
|
||||||
"email": "電子郵件",
|
"email": "電子郵件",
|
||||||
"emailFooterTitle": "Email Footer",
|
"emailFooterTitle": "電子郵件頁尾",
|
||||||
"emailHeaderFooterInfo": "Email header and footer settings for email notifications rely on Customization settings within the Tenant admin node in Endpoint manager.",
|
"emailHeaderFooterInfo": "電子郵件通知的電子郵頁首和頁尾設定取決於端點管理員中租用戶系統管理節點內的自訂設定。",
|
||||||
"emailHeaderTitle": "Email Header",
|
"emailHeaderTitle": "電子郵件標頭",
|
||||||
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
"emailInfoMoreLink": "https://go.microsoft.com/fwlink/?linkid=2200912",
|
||||||
"emailInfoMoreText": "Configure Customization settings",
|
"emailInfoMoreText": "設定自訂設定",
|
||||||
"formSubTitle": "建立或修改通知電子郵件",
|
"formSubTitle": "建立或修改通知電子郵件",
|
||||||
"headerFooterSettingsTab": "Header and footer settings",
|
"headerFooterSettingsTab": "標頭及頁尾設定",
|
||||||
"imgPreview": "Image Preview",
|
"imgPreview": "影像預覽",
|
||||||
"infotext": "選取通知訊息。若要建立新的通知,請瀏覽 [設定裝置合規性] 工作負載中 [管理] 區段內的 [通知]。",
|
"infotext": "選取通知訊息。若要建立新的通知,請瀏覽 [設定裝置合規性] 工作負載中 [管理] 區段內的 [通知]。",
|
||||||
"iwLink": "公司入口網站連結",
|
"iwLink": "顯示公司入口網站連結",
|
||||||
"listEmpty": "沒有任何郵件範本。",
|
"listEmpty": "沒有任何郵件範本。",
|
||||||
"listEmptySelectOnly": "沒有任何郵件範本。若要建立新的通知,請瀏覽 [設定裝置合規性] 工作負載中 [管理] 區段內的通知。",
|
"listEmptySelectOnly": "沒有任何郵件範本。若要建立新的通知,請瀏覽 [設定裝置合規性] 工作負載中 [管理] 區段內的通知。",
|
||||||
"listSubTitle": "通知郵件範本清單",
|
"listSubTitle": "通知郵件範本清單",
|
||||||
@@ -9790,7 +9806,7 @@
|
|||||||
"notificationMessageTemplates": "通知訊息範本",
|
"notificationMessageTemplates": "通知訊息範本",
|
||||||
"rowValidationError": "至少需要一個訊息範本",
|
"rowValidationError": "至少需要一個訊息範本",
|
||||||
"selectDescription": "選取通知郵件。若要建立新的通知,請前往 [設定裝置合規性] 工作負載中 [管理] 區段的 [通知]。",
|
"selectDescription": "選取通知郵件。若要建立新的通知,請前往 [設定裝置合規性] 工作負載中 [管理] 區段的 [通知]。",
|
||||||
"tenantValueText": "Tenant Value",
|
"tenantValueText": "租用戶值",
|
||||||
"testEmailLabel": "傳送預覽電子郵件",
|
"testEmailLabel": "傳送預覽電子郵件",
|
||||||
"localeLabel": "地區設定",
|
"localeLabel": "地區設定",
|
||||||
"isDefaultLocale": "是預設"
|
"isDefaultLocale": "是預設"
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "資料列 {0} (共 {1} 個) 資料行 {2}"
|
"ariaLabel": "資料列 {0} (共 {1} 個) 資料行 {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "從頭開始,然後從可用的詳細目錄屬性程式庫選取您想要的屬性"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "從頭開始,並從可用設定的程式庫中選取您想要的設定",
|
"subtitle": "從頭開始,並從可用設定的程式庫中選取您想要的設定",
|
||||||
"title": "設定目錄"
|
"title": "設定目錄"
|
||||||
@@ -11947,8 +11985,8 @@
|
|||||||
"minVersion": "最小版本",
|
"minVersion": "最小版本",
|
||||||
"nameHint": "這將是可見的主要屬性,用以識別所設定的限制。",
|
"nameHint": "這將是可見的主要屬性,用以識別所設定的限制。",
|
||||||
"noAssignmentsStatusBar": "將限制指派到至少一個群組。按一下 [屬性]。",
|
"noAssignmentsStatusBar": "將限制指派到至少一個群組。按一下 [屬性]。",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "您必須是系統管理員才能編輯限制。",
|
||||||
"notFound": "找不到限制。可能已將其刪除。",
|
"notFound": "找不到限制。可能已將其刪除。",
|
||||||
"personallyOwned": "個人擁有的裝置",
|
"personallyOwned": "個人擁有的裝置",
|
||||||
"restriction": "限制",
|
"restriction": "限制",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8 合規性原則",
|
"complianceWindows8": "Windows 8 合規性原則",
|
||||||
"complianceWindowsPhone": "Windows Phone 合規性原則",
|
"complianceWindowsPhone": "Windows Phone 合規性原則",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "屬性目錄",
|
||||||
"iosCustom": "自訂",
|
"iosCustom": "自訂",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "衍生的 PIV 認證",
|
"iosDerivedCredentialAuthenticationConfiguration": "衍生的 PIV 認證",
|
||||||
"iosDeviceFeatures": "裝置功能",
|
"iosDeviceFeatures": "裝置功能",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS 裝置 (預覽)"
|
"devices": "ChromeOS 裝置"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "系統管理連絡人",
|
"adminContacts": "系統管理連絡人",
|
||||||
"appPackaging": "應用程式封裝",
|
"appPackaging": "應用程式封裝",
|
||||||
"businessGroups": "商務群組",
|
"autopatchGroups": "自動修補群組",
|
||||||
"devices": "裝置",
|
"devices": "裝置",
|
||||||
"feedback": "意見反應",
|
"feedback": "意見反應",
|
||||||
"gettingStarted": "開始使用",
|
"gettingStarted": "開始使用",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "自訂",
|
"brandingAndCustomization": "自訂",
|
||||||
"cartProfiles": "購物車設定檔",
|
"cartProfiles": "購物車設定檔",
|
||||||
"certificateConnectors": "憑證連接器",
|
"certificateConnectors": "憑證連接器",
|
||||||
"chromeEnterprise": "Chrome Enterprise (預覽)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "連結到雲端的裝置 (預覽)",
|
"cloudAttachedDevices": "連結到雲端的裝置 (預覽)",
|
||||||
"cloudPcActions": "雲端電腦動作 (預覽)",
|
"cloudPcActions": "雲端電腦動作 (預覽)",
|
||||||
"cloudPcMaintenanceWindows": "雲端電腦維護視窗 (預覽)",
|
"cloudPcMaintenanceWindows": "雲端電腦維護視窗 (預覽)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "使用者狀態",
|
"userExecutionStatus": "使用者狀態",
|
||||||
"wdacSupplementalPolicies": "S 模式補充原則",
|
"wdacSupplementalPolicies": "S 模式補充原則",
|
||||||
"win32CatalogUpdateApp": "Windows (Win32) 目錄應用程式的更新",
|
"win32CatalogUpdateApp": "Windows (Win32) 目錄應用程式的更新",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Windows (Win32) 目錄應用程式 (預覽) 的更新",
|
||||||
"windows10DriverUpdate": "Windows 10 和更新版本的驅動程式更新",
|
"windows10DriverUpdate": "Windows 10 和更新版本的驅動程式更新",
|
||||||
"windows10QualityUpdate": "Windows 10 和更新版本的品質更新",
|
"windows10QualityUpdate": "Windows 10 和更新版本的品質更新",
|
||||||
"windows10UpdateRings": "Windows 10 及更新版本的更新通道",
|
"windows10UpdateRings": "Windows 10 及更新版本的更新通道",
|
||||||
"windows10XPolicyFailures": "Windows 10X 原則失敗",
|
"windows10XPolicyFailures": "Windows 10X 原則失敗",
|
||||||
"windows365Connector": "Windows 365 Citrix 連接器",
|
|
||||||
"windows365PartnerConnector": "Windows 365 合作夥伴連接器",
|
"windows365PartnerConnector": "Windows 365 合作夥伴連接器",
|
||||||
"windowsDiagnosticData": "Windows 資料",
|
"windowsDiagnosticData": "Windows 資料",
|
||||||
"windowsEnterpriseCertificate": "Windows Enterprise 憑證",
|
"windowsEnterpriseCertificate": "Windows Enterprise 憑證",
|
||||||
|
|||||||
@@ -227,7 +227,6 @@
|
|||||||
"co": "Corsican (France)",
|
"co": "Corsican (France)",
|
||||||
"cs": "Czech (Czech Republic)",
|
"cs": "Czech (Czech Republic)",
|
||||||
"da": "Danish (Denmark)",
|
"da": "Danish (Denmark)",
|
||||||
"prs": "Dari (Afghanistan)",
|
|
||||||
"dv": "Divehi (Maldives)",
|
"dv": "Divehi (Maldives)",
|
||||||
"et": "Estonian (Estonia)",
|
"et": "Estonian (Estonia)",
|
||||||
"fo": "Faroese (Faroe Islands)",
|
"fo": "Faroese (Faroe Islands)",
|
||||||
@@ -687,6 +686,7 @@
|
|||||||
"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.",
|
"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."
|
"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."
|
||||||
},
|
},
|
||||||
|
"allowWidgetContentSync": "Choose Block to prevent policy managed apps from saving data to app widgets. If you choose Allow, the policy managed app can save data to app widgets, if those features are supported and enabled within the policy managed app. \n\n \n\nApps may provide additional configuration capability with app configuration policies. For more information, see the app's documentation.",
|
||||||
"appSharingFromLevel1": "Select one of the following options to specify the apps that this app can receive data from:",
|
"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",
|
"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",
|
"appSharingFromLevel3": "{0}: Allow receiving data in org documents or accounts from any app",
|
||||||
@@ -927,8 +927,7 @@
|
|||||||
"languageInfo": "Specify the language and region that will be used.",
|
"languageInfo": "Specify the language and region that will be used.",
|
||||||
"licenseAgreement": "Microsoft Software License Terms",
|
"licenseAgreement": "Microsoft Software License Terms",
|
||||||
"licenseAgreementInfo": "Specify whether to show the EULA to users.",
|
"licenseAgreementInfo": "Specify whether to show the EULA to users.",
|
||||||
"plugAndForgetDevice": "Self-Deploying (preview)",
|
"plugAndForgetDevice": "Self-Deploying",
|
||||||
"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. ",
|
"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",
|
"privacySettings": "Privacy settings",
|
||||||
"privacySettingsInfo": "Specify whether to show privacy settings to users.",
|
"privacySettingsInfo": "Specify whether to show privacy settings to users.",
|
||||||
@@ -1120,7 +1119,7 @@
|
|||||||
},
|
},
|
||||||
"EnrollmentStatusScreen": {
|
"EnrollmentStatusScreen": {
|
||||||
"Apps": {
|
"Apps": {
|
||||||
"allowNonBlockingAppInstallation": "Only fail selected blocking apps in technician phase (preview)",
|
"allowNonBlockingAppInstallation": "Only fail selected blocking apps in technician phase",
|
||||||
"apps": "apps",
|
"apps": "apps",
|
||||||
"appsListName": "Application list",
|
"appsListName": "Application list",
|
||||||
"blockingApps": "Blocking apps",
|
"blockingApps": "Blocking apps",
|
||||||
@@ -1157,7 +1156,9 @@
|
|||||||
},
|
},
|
||||||
"TableHeaders": {
|
"TableHeaders": {
|
||||||
"activity": "Activity",
|
"activity": "Activity",
|
||||||
|
"activityName": "Activity name",
|
||||||
"actor": "Initiated by (actor)",
|
"actor": "Initiated by (actor)",
|
||||||
|
"actorType": "Actor type",
|
||||||
"app": "App",
|
"app": "App",
|
||||||
"appName": "App name",
|
"appName": "App name",
|
||||||
"applicationName": "Application name",
|
"applicationName": "Application name",
|
||||||
@@ -1228,6 +1229,7 @@
|
|||||||
"mtdConnector": "MTD Connector",
|
"mtdConnector": "MTD Connector",
|
||||||
"name": "Profile name",
|
"name": "Profile name",
|
||||||
"oSVersion": "OS Version",
|
"oSVersion": "OS Version",
|
||||||
|
"operationType": "Operation type",
|
||||||
"os": "OS",
|
"os": "OS",
|
||||||
"packageName": "Package name",
|
"packageName": "Package name",
|
||||||
"partnerName": "Partner",
|
"partnerName": "Partner",
|
||||||
@@ -1549,7 +1551,7 @@
|
|||||||
"tooltip": "If blocked, the app cannot print protected data."
|
"tooltip": "If blocked, the app cannot print protected data."
|
||||||
},
|
},
|
||||||
"ProtectedMessagingRedirectAppType": {
|
"ProtectedMessagingRedirectAppType": {
|
||||||
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 18.1.1).",
|
"iosTooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. 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 sms has been removed from the Select apps to exempt list. Then, ensure the application is using a newer version of Intune SDK (Version > 19.0.0).",
|
||||||
"label": "Transfer messaging data to",
|
"label": "Transfer messaging data to",
|
||||||
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
"tooltip": "Typically, when a user selects a hyperlinked messaging link in an app, a messaging app will open with the phone number prepopulated and ready to send. For this setting, choose how to handle this type of content transfer when it's initiated from a policy-managed app."
|
||||||
},
|
},
|
||||||
@@ -2983,6 +2985,7 @@
|
|||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "This setting specifies the length of time without user input after which the mobile device screen is locked. Recommended value: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDescription": "This setting specifies the length of time without user input after which the mobile device screen is locked. Recommended value: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "This setting specifies the length of time without user input after which the device is locked. Recommended value: 15 min",
|
"complianceMinutesOfInactivityBeforePasswordRequiredDeviceDescription": "This setting specifies the length of time without user input after which the device is locked. Recommended value: 15 min",
|
||||||
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum minutes of inactivity before password is required",
|
"complianceMinutesOfInactivityBeforePasswordRequiredName": "Maximum minutes of inactivity before password is required",
|
||||||
|
"complianceMinutesOfInactivityBeforePasswordRequiredTrimmedDescription": "Recommended value: 15 min",
|
||||||
"complianceMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have.",
|
"complianceMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have.",
|
||||||
"complianceMobileOsVersionRestrictionMaximumName": "Maximum OS version for mobile devices",
|
"complianceMobileOsVersionRestrictionMaximumName": "Maximum OS version for mobile devices",
|
||||||
"complianceMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have.",
|
"complianceMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have.",
|
||||||
@@ -2992,6 +2995,7 @@
|
|||||||
"complianceNumberOfPreviousPasswordsToBlockDescription": "This setting specifies the number of recent passwords that cannot be reused. Recommended value: 5",
|
"complianceNumberOfPreviousPasswordsToBlockDescription": "This setting specifies the number of recent passwords that cannot be reused. Recommended value: 5",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockName": "Number of previous passwords to prevent reuse",
|
"complianceNumberOfPreviousPasswordsToBlockName": "Number of previous passwords to prevent reuse",
|
||||||
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
"complianceNumberOfPreviousPasswordsToBlockPlaceholder": "5",
|
||||||
|
"complianceNumberOfPreviousPasswordsToBlockTrimmedDescription": "Recommended value: 5",
|
||||||
"complianceOsBuildVersionRestrictionMaximumDescription": "Enter the newest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the maximum OS build, enter the supplemental build version. For example: 20E772520a",
|
"complianceOsBuildVersionRestrictionMaximumDescription": "Enter the newest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the maximum OS build, enter the supplemental build version. For example: 20E772520a",
|
||||||
"complianceOsBuildVersionRestrictionMaximumName": "Maximum OS build version",
|
"complianceOsBuildVersionRestrictionMaximumName": "Maximum OS build version",
|
||||||
"complianceOsBuildVersionRestrictionMinimumDescription": "Enter the oldest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the minimum OS build, enter the supplemental build version. For example: 20E772520a",
|
"complianceOsBuildVersionRestrictionMinimumDescription": "Enter the oldest OS build version a device can have. For example: 20E252<br>If you want to set an Apple Rapid Security Response update as the minimum OS build, enter the supplemental build version. For example: 20E772520a",
|
||||||
@@ -3036,6 +3040,7 @@
|
|||||||
"complianceRequireWindowsDefenderSignatureDescription": "Require Microsoft Defender security intelligence to be up-to-date.",
|
"complianceRequireWindowsDefenderSignatureDescription": "Require Microsoft Defender security intelligence to be up-to-date.",
|
||||||
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware security intelligence up-to-date",
|
"complianceRequireWindowsDefenderSignatureName": "Microsoft Defender Antimalware security intelligence up-to-date",
|
||||||
"complianceRequiredPasswordTypeDescription": "This setting specifies whether passwords are allowed to be comprised only of numeric characters, or whether they must contain characters other than numbers. Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
"complianceRequiredPasswordTypeDescription": "This setting specifies whether passwords are allowed to be comprised only of numeric characters, or whether they must contain characters other than numbers. Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
||||||
|
"complianceRequiredPasswordTypeTrimmedDescription": "Recommendations: Required password type: Alphanumeric, Minimum number of character sets: 1",
|
||||||
"complianceRootedAllowedDescription": "Prevent rooted devices from having corporate access.",
|
"complianceRootedAllowedDescription": "Prevent rooted devices from having corporate access.",
|
||||||
"complianceRootedAllowedName": "Rooted devices",
|
"complianceRootedAllowedName": "Rooted devices",
|
||||||
"complianceSecurityDisableUSBDebuggingDescription": "This setting specifies whether to prevent the device from using the USB debugging feature.",
|
"complianceSecurityDisableUSBDebuggingDescription": "This setting specifies whether to prevent the device from using the USB debugging feature.",
|
||||||
@@ -3068,6 +3073,8 @@
|
|||||||
"complianceWindowsOsVersionRestrictionMinimumDescription": "Select the oldest OS version a device can have. The operating system version is defined as major.minor.build.revision. ",
|
"complianceWindowsOsVersionRestrictionMinimumDescription": "Select the oldest OS version a device can have. The operating system version is defined as major.minor.build.revision. ",
|
||||||
"complianceWindowsRequiredPasswordTypeDescription": "Select the password type that will be on the device.",
|
"complianceWindowsRequiredPasswordTypeDescription": "Select the password type that will be on the device.",
|
||||||
"complianceWindowsRequiredPasswordTypeName": "Password type",
|
"complianceWindowsRequiredPasswordTypeName": "Password type",
|
||||||
|
"complianceWorkProfilePasswordRequirementName": "Require a password to unlock work profile",
|
||||||
|
"complianceWorkProfileSecurityHeader": "Work Profile Security",
|
||||||
"compliantAppsOption": "Compliant apps list. Report noncompliance for any installed apps not in list",
|
"compliantAppsOption": "Compliant apps list. Report noncompliance for any installed apps not in list",
|
||||||
"computerNameStaticPrefixDescription": "Computers are assigned 15 characters long name. Specify a prefix, rest of 15 characters will be random.",
|
"computerNameStaticPrefixDescription": "Computers are assigned 15 characters long name. Specify a prefix, rest of 15 characters will be random.",
|
||||||
"computerNameStaticPrefixName": "Computer name prefix",
|
"computerNameStaticPrefixName": "Computer name prefix",
|
||||||
@@ -4825,6 +4832,11 @@
|
|||||||
"mTUSizeInBytesBounds": "MTU must be between 1280 and 1400 bytes",
|
"mTUSizeInBytesBounds": "MTU must be between 1280 and 1400 bytes",
|
||||||
"mTUSizeInBytesName": "Maximum transmission unit",
|
"mTUSizeInBytesName": "Maximum transmission unit",
|
||||||
"mTUSizeInBytesToolTip": "The largest packet of data, in bytes, that can be transmitted on the network. When not configured, the Apple default size is 1280 bytes. Applies to iOS 14 and later.",
|
"mTUSizeInBytesToolTip": "The largest packet of data, in bytes, that can be transmitted on the network. When not configured, the Apple default size is 1280 bytes. Applies to iOS 14 and later.",
|
||||||
|
"macAddressRandomizationModeAutomaticAndroid": "Use randomized MAC",
|
||||||
|
"macAddressRandomizationModeDefaultAndroid": "Use device default",
|
||||||
|
"macAddressRandomizationModeDescriptionAndroid": "Use randomized MAC only when needed, such as for NAC support. Users can change this setting. Applies to Android 13 and later.",
|
||||||
|
"macAddressRandomizationModeHardwareAndroid": "Use device MAC",
|
||||||
|
"macAddressRandomizationModeTitleAndroid": "MAC address randomization",
|
||||||
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store and identified developers",
|
"macAppStoreAndIdentifiedDevelopersOption": "Mac App Store and identified developers",
|
||||||
"macAppStoreOption": "Mac App Store",
|
"macAppStoreOption": "Mac App Store",
|
||||||
"macBlockClassroomAppRemoteScreenObservationDescription": "Blocks AirPlay, screen sharing to other devices, and a Classroom app feature used by teachers to view their students' screens. This setting isn't available if you've blocked screenshots.",
|
"macBlockClassroomAppRemoteScreenObservationDescription": "Blocks AirPlay, screen sharing to other devices, and a Classroom app feature used by teachers to view their students' screens. This setting isn't available if you've blocked screenshots.",
|
||||||
@@ -5149,6 +5161,7 @@
|
|||||||
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Enter a number (4-16)",
|
"minimumPasswordLengthEmptyValueKeyFourToSixteen": "Enter a number (4-16)",
|
||||||
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Enter a number (6-16)",
|
"minimumPasswordLengthEmptyValueKeySixToSixteen": "Enter a number (6-16)",
|
||||||
"minimumPasswordLengthName": "Minimum password length",
|
"minimumPasswordLengthName": "Minimum password length",
|
||||||
|
"minimumPasswordLengthTooltipText": "Enter a number",
|
||||||
"minimumUpdateAutoInstallClassificationDescription": "Missing updates will install automatically",
|
"minimumUpdateAutoInstallClassificationDescription": "Missing updates will install automatically",
|
||||||
"minimumUpdateAutoInstallClassificationName": "Install specified classification of updates",
|
"minimumUpdateAutoInstallClassificationName": "Install specified classification of updates",
|
||||||
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
"minimumUpdateAutoInstallClassificationValueImportant": "Important",
|
||||||
@@ -5861,6 +5874,7 @@
|
|||||||
"sCEPPolicyEnrollToSoftwareKSP": "Enroll to Software KSP",
|
"sCEPPolicyEnrollToSoftwareKSP": "Enroll to Software KSP",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Enroll to Trusted Platform Module (TPM) KSP, otherwise fail",
|
"sCEPPolicyEnrollToTrustedOtherwiseFail": "Enroll to Trusted Platform Module (TPM) KSP, otherwise fail",
|
||||||
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Enroll to Trusted Platform Module (TPM) KSP if present, otherwise Software KSP",
|
"sCEPPolicyEnrollToTrustedOtherwiseKSP": "Enroll to Trusted Platform Module (TPM) KSP if present, otherwise Software KSP",
|
||||||
|
"sCEPPolicyExtendedKeyUsageAnyPurposeCloudCaWarning": "WARNING: Neither the Any Purpose EKU (OID 2.5.29.37.0) nor the Any App Policy EKU (OID 1.3.6.1.4.1.311.10.12.1) can be used with a certification authority created in Microsoft Cloud PKI.",
|
||||||
"sCEPPolicyExtendedKeyUsageDescription": "In most cases, the certificate requires at least Client Authentication so that the user or device can authenticate to a server. However, you can specify additional usages to further define the purpose of the key.",
|
"sCEPPolicyExtendedKeyUsageDescription": "In most cases, the certificate requires at least Client Authentication so that the user or device can authenticate to a server. However, you can specify additional usages to further define the purpose of the key.",
|
||||||
"sCEPPolicyExtendedKeyUsageName": "Extended key usage",
|
"sCEPPolicyExtendedKeyUsageName": "Extended key usage",
|
||||||
"sCEPPolicyHashAlgorithmDescription": "Use a hash algorithm type with the certificate. Make sure to select the strongest level of security that the connecting devices support.",
|
"sCEPPolicyHashAlgorithmDescription": "Use a hash algorithm type with the certificate. Make sure to select the strongest level of security that the connecting devices support.",
|
||||||
@@ -7359,6 +7373,7 @@
|
|||||||
"workProfilePasswordExpirationInDaysEmptyValueKey": "Enter number of days (1-255)",
|
"workProfilePasswordExpirationInDaysEmptyValueKey": "Enter number of days (1-255)",
|
||||||
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Enter number of days (1 - 365)",
|
"workProfilePasswordExpirationInDaysEmptyValueOneYearKey": "Enter number of days (1 - 365)",
|
||||||
"workProfilePasswordExpirationInDaysName": "Password expiration (days)",
|
"workProfilePasswordExpirationInDaysName": "Password expiration (days)",
|
||||||
|
"workProfilePasswordExpirationInDaysTooltipText": "Enter number of days",
|
||||||
"workProfilePasswordMinimumLengthReportingName": "Work Profile password: Minimum password length",
|
"workProfilePasswordMinimumLengthReportingName": "Work Profile password: Minimum password length",
|
||||||
"workProfilePasswordMinimumLetterCharactersReportingName": "Work Profile password: Number of characters required",
|
"workProfilePasswordMinimumLetterCharactersReportingName": "Work Profile password: Number of characters required",
|
||||||
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Work Profile password: Number of lowercase characters required",
|
"workProfilePasswordMinimumLowerCaseCharactersReportingName": "Work Profile password: Number of lowercase characters required",
|
||||||
@@ -8384,7 +8399,7 @@
|
|||||||
"expeditedCheckin": "Mobile device management configuration",
|
"expeditedCheckin": "Mobile device management configuration",
|
||||||
"exploitProtection": "Exploit Protection",
|
"exploitProtection": "Exploit Protection",
|
||||||
"extensions": "Extensions",
|
"extensions": "Extensions",
|
||||||
"hardwareConfigurations": "BIOS Configurations",
|
"hardwareConfigurations": "BIOS Configurations and other settings",
|
||||||
"identityProtection": "Identity protection",
|
"identityProtection": "Identity protection",
|
||||||
"iosCompliancePolicy": "iOS compliance policy",
|
"iosCompliancePolicy": "iOS compliance policy",
|
||||||
"kiosk": "Kiosk",
|
"kiosk": "Kiosk",
|
||||||
@@ -8424,6 +8439,7 @@
|
|||||||
"windows10XTrustedCertificate": "Trusted certificate - TEST",
|
"windows10XTrustedCertificate": "Trusted certificate - TEST",
|
||||||
"windows10XVPN": "VPN - TEST",
|
"windows10XVPN": "VPN - TEST",
|
||||||
"windows10XWifi": "WIFI - TEST",
|
"windows10XWifi": "WIFI - TEST",
|
||||||
|
"windows11SecurityBaseline": "Security Baseline for Windows 10 and later",
|
||||||
"windows8CompliancePolicy": "Windows 8 compliance policy",
|
"windows8CompliancePolicy": "Windows 8 compliance policy",
|
||||||
"windowsHealthMonitoring": "Windows health monitoring",
|
"windowsHealthMonitoring": "Windows health monitoring",
|
||||||
"windowsInformationProtection": "Windows Information Protection",
|
"windowsInformationProtection": "Windows Information Protection",
|
||||||
@@ -8578,7 +8594,7 @@
|
|||||||
},
|
},
|
||||||
"WindowsEnrollment": {
|
"WindowsEnrollment": {
|
||||||
"DevicePreparation": {
|
"DevicePreparation": {
|
||||||
"description": "Configure devices for initial provisioning and assign to users.",
|
"description": "Configure devices for initial provisioning.",
|
||||||
"title": "Device preparation"
|
"title": "Device preparation"
|
||||||
},
|
},
|
||||||
"EnrollmentSettings": {
|
"EnrollmentSettings": {
|
||||||
@@ -9925,6 +9941,9 @@
|
|||||||
"failed": "With \"Selected locations\" you must choose at least one location.",
|
"failed": "With \"Selected locations\" you must choose at least one location.",
|
||||||
"selector": "Choose at least one location"
|
"selector": "Choose at least one location"
|
||||||
},
|
},
|
||||||
|
"locationsTabInfo": "'Locations' condition is moving! Locations will become the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
|
"mAMWarning": "All Compliant Network locations\" does not work with \"Require app protection policy\" or \"Require approved client app\" grant controls.",
|
||||||
|
"networkTabInfo": "'Locations' condition has moved! This is now the 'Network' assignment, with a new Global Secure Access feature - 'All Compliant network locations'.",
|
||||||
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
"privateLinksInfo": "Private Link for Microsoft Entra ID is best suited for Azure services. Ensure that the principals on which this policy is applied do not have requirement to hit any public services like M365."
|
||||||
},
|
},
|
||||||
"ClaimProvider": {
|
"ClaimProvider": {
|
||||||
@@ -9997,7 +10016,8 @@
|
|||||||
},
|
},
|
||||||
"Locations": {
|
"Locations": {
|
||||||
"headerDescription": "Control user access based on their physical location.",
|
"headerDescription": "Control user access based on their physical location.",
|
||||||
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy."
|
"headerLearnMoreAriaLabel": "Learn more about using the location condition in a Conditional Access policy.",
|
||||||
|
"networkHeaderDescription": "Control user access based on their network or physical location."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DeviceState": {
|
"DeviceState": {
|
||||||
@@ -10031,13 +10051,17 @@
|
|||||||
},
|
},
|
||||||
"MicrosoftManagedPolicies": {
|
"MicrosoftManagedPolicies": {
|
||||||
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
"alertBanner": "Microsoft-managed policies will be enabled no sooner than {0} days after creation unless you take action. We recommend that you review these policies and take the recommended actions.",
|
||||||
|
"alertBannerV2": "Microsoft-managed policies in report-only state will be automatically turned on with advance email and {0}M365 message center{1} notifications. We recommend that you review these policies and recommended actions.",
|
||||||
|
"learnMoreLinkAriaLabel": "Learn more about Microsoft-managed policies.",
|
||||||
|
"m365MessageCenterLinkAriaLabel": "M365 message center",
|
||||||
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryMfa": "This policy requires some administrator roles to perform multifactor authentication when accessing Microsoft admin portals. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummaryPerUserMfa": "This policy requires per-user multifactor authentication enforced users with recent sign-ins to perform MFA while accessing cloud applications. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummaryPerUserMfaV2": "This policy covers per-user multifactor authentication enforced users with recent sign-ins and requires them to perform MFA while accessing cloud applications. There will be no change to the end user experience as a result of this policy and your organization is sufficiently licensed to use this policy. Currently, the policy is in '{0}' mode. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
"policySummarySignInRisk": "High sign-in risk represents a high probability that the given authentication request isn't authorized by the identity owner. This policy incorporates high sign-in risk detections from Entra ID Protection in real-time to trigger multifactor authentication and reauthentication to prevent identity compromise. If users aren't registered for MFA, this policy will block their risky sign-ins to prevent MFA registration by an unauthorized actor. As a Microsoft-managed policy, only certain properties are editable.",
|
||||||
"recActions1": "Review the policy and its security benefits. If you are ready to turn it on now, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
"recActionsGlobal1": "Review the policy and its benefits.",
|
||||||
|
"recActionsGlobal2": "When you are ready to enable, switch its state to 'on'. If you do not want to enforce this policy for your organization, switch its state to 'off'. If you leave the policy in report-only mode, we will enable it for you.",
|
||||||
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
"recActionsMfa1": "Exclude one or more break glass accounts from the policy.",
|
||||||
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
"recActionsMfa2": "To prevent users from being locked out, verify that all users covered by this policy have at least one enabled authentication methods.",
|
||||||
"recActionsPerUserMfa": "Manage authentication methods in the Microsoft Entra ID portal by migrating your MFA verification options to the Authentication methods policy.",
|
"recActionsPerUserMfaV2": "After enabling this Conditional Access policy, it's recommended to disable per-user multifactor authentication for in-scope users.",
|
||||||
"recommendedActions": "Recommended actions",
|
"recommendedActions": "Recommended actions",
|
||||||
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
"recommendedActionsIntro": "Before enabling this policy, or before Microsoft enables it automatically no sooner than {0} days after policy creation",
|
||||||
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
"signInRiskActions1": "Exclude one or more break glass accounts from the policy.",
|
||||||
@@ -10249,9 +10273,10 @@
|
|||||||
"authenticationTransfer": "Authentication transfer",
|
"authenticationTransfer": "Authentication transfer",
|
||||||
"deviceCodeFlow": "Device code flow",
|
"deviceCodeFlow": "Device code flow",
|
||||||
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
|
||||||
"label": "Authentication flows",
|
"label": "Authentication flows (Preview)",
|
||||||
"multiple": "\"{0}\" and \"{1}\""
|
"multiple": "\"{0}\" and \"{1}\""
|
||||||
}
|
},
|
||||||
|
"singular": "Authentication flow (Preview)"
|
||||||
},
|
},
|
||||||
"DeviceAttributes": {
|
"DeviceAttributes": {
|
||||||
"AssignmentFilter": {
|
"AssignmentFilter": {
|
||||||
@@ -10403,17 +10428,17 @@
|
|||||||
"ContextPane": {
|
"ContextPane": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"ariaLabel": "Learn more about insider risk.",
|
"ariaLabel": "Learn more about insider risk.",
|
||||||
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature that uses machine learning to help dynamically identify and mitigate critical risks."
|
"label": "Control access for users who are assigned specific risk levels from Adaptive Protection, a Microsoft Purview Insider Risk Management feature. Insider risk levels are determined based on a user's risky data related activities."
|
||||||
},
|
},
|
||||||
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
"configureInfoballoon": "Configure insider risk to apply the policy to users who are assigned selected risk levels.",
|
||||||
"header": "Select the risk levels that must be assigned to enforce the policy"
|
"header": "Select the risk levels that must be assigned to enforce the policy"
|
||||||
},
|
},
|
||||||
"Selector": {
|
"Selector": {
|
||||||
"LearnMore": {
|
"LearnMore": {
|
||||||
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how risky a user's activity is and can be based on criteria like how many potential data theft activities they performed."
|
"label": "Insider risk, configured in Adaptive Protection, assesses risk based on a user's risky data related activities."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
|
"descriptor": "Insider risk assesses the user's risky data-related activity in Microsoft Purview Insider Risk Management.",
|
||||||
"label": "Insider risk (Preview)"
|
"label": "Insider risk (Preview)"
|
||||||
},
|
},
|
||||||
"SignInRisk": {
|
"SignInRisk": {
|
||||||
@@ -10451,14 +10476,6 @@
|
|||||||
"displayName": "Phishing-resistant MFA"
|
"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": "Multifactor authentication",
|
|
||||||
"require": "Require federated authentication method (Preview)",
|
|
||||||
"whatIfFormat": "{0} - {1}"
|
|
||||||
},
|
|
||||||
"PolicyState": {
|
"PolicyState": {
|
||||||
"off": "Off",
|
"off": "Off",
|
||||||
"on": "On",
|
"on": "On",
|
||||||
@@ -10585,6 +10602,7 @@
|
|||||||
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
"actorInvalid": "The \"sign-in frequency every time\" session control cannot be used with \"{0}\"",
|
||||||
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
"appWarning": "Some of the applications currently selected are not compatible with the \"Sign-in frequency\" option of \"Every time\"",
|
||||||
"everytime": "Every time",
|
"everytime": "Every time",
|
||||||
|
"everytimeInfoBalloon": "\"Every time\" option is evaluated on every sign-in attempt to an application in scope for this policy. Some policy configurations for the \"sign-in frequency every time\" session control are in preview.",
|
||||||
"periodic": "Periodic reauthentication",
|
"periodic": "Periodic reauthentication",
|
||||||
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
"reqMFAWarning": "\"Require multifactor authentication\" must be selected when using \"Secondary authentication methods only\"",
|
||||||
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
"selectorInvalid": "When \"Require password change\" grant is selected, only \"sign-in frequency every time\" session control can be used",
|
||||||
@@ -10794,9 +10812,11 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noTenantSelected": "No tenant selected",
|
"noTenantSelected": "No tenant selected",
|
||||||
|
"revertWhatIfPreview": "To revert to the classic 'What if' experience, click here. ",
|
||||||
"selectOrganization": "Select organization",
|
"selectOrganization": "Select organization",
|
||||||
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
"tenantIdWithPlaceholder": "Tenant ID: {0}",
|
||||||
"tenantSelectionRequired": "Tenant required"
|
"tenantSelectionRequired": "Tenant required",
|
||||||
|
"tryWhatIfPreview": "Try the new 'What If' experience powered by Microsoft Graph to test the impact of Conditional Access policies which include conditions such as insider risk and authentication flows. To turn on this preview feature, click here."
|
||||||
},
|
},
|
||||||
"WhatIfBlade": {
|
"WhatIfBlade": {
|
||||||
"ClientApp": {
|
"ClientApp": {
|
||||||
@@ -10842,6 +10862,7 @@
|
|||||||
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
|
||||||
"allRiskLevelsOption": "All risk levels",
|
"allRiskLevelsOption": "All risk levels",
|
||||||
"allTrustedLocationLabel": "All trusted locations",
|
"allTrustedLocationLabel": "All trusted locations",
|
||||||
|
"allTrustedNetworkLocationLabel": "All trusted networks and locations",
|
||||||
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
"allUserGroupSetSelectorLabel": "All users and groups selected",
|
||||||
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
"allUsersReauth": "The \"sign-in frequency every time\" session control requires \"All Users\" to be selected",
|
||||||
"allUsersString": "All users",
|
"allUsersString": "All users",
|
||||||
@@ -10872,6 +10893,7 @@
|
|||||||
"badRequest": "Bad request",
|
"badRequest": "Bad request",
|
||||||
"blockAccess": "Block access",
|
"blockAccess": "Block access",
|
||||||
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
"builtInDirectoryRoleLabel": "Built-in directory roles",
|
||||||
|
"caeDisableRequireEmptyExclude": "Cannot exclude apps when \"Customize continuous access evaluation\" - \"Disable\" session control is selected.",
|
||||||
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
"cannotDeleteNamedLocationsConfiguredInCAPolicy": "The named location cannot be deleted because it is referenced by one or more Conditional Access policies. You must remove this named location from all associated Conditional Access policies before deletion.",
|
||||||
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
"cannotDeleteTrustedNamedLocations": "The named location cannot be deleted because it is marked as a trusted location. You must unmark this named location before deletion.",
|
||||||
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
"cannotExcludeBothAllMsftAppsAndO365": "Exclude Office 365 apps doesn't have an impact when all Microsoft apps have been excluded.",
|
||||||
@@ -10904,7 +10926,6 @@
|
|||||||
"chooseApplicationsSelected": "Selected",
|
"chooseApplicationsSelected": "Selected",
|
||||||
"chooseApplicationsSingular": "{0} and 1 more",
|
"chooseApplicationsSingular": "{0} and 1 more",
|
||||||
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseApplicationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
"chooseLocationCorpnetItem": "Corporate network",
|
|
||||||
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
"chooseLocationSelectedLocationsLabel": "Selected locations",
|
||||||
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
"chooseLocationTrustedIpsItem": "Multifactor authentication trusted IPs",
|
||||||
"chooseLocationsBladeSubtitle": "",
|
"chooseLocationsBladeSubtitle": "",
|
||||||
@@ -10930,6 +10951,7 @@
|
|||||||
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
"chooseLocationsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"chooseLocationsSingular": "{0} and 1 more",
|
"chooseLocationsSingular": "{0} and 1 more",
|
||||||
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
"chooseLocationsTooMany": "More results than can be shown. Please filter using the search box.",
|
||||||
|
"chooseNetworkLocationSelectedNetworksLocationsLabel": "Selected networks and locations",
|
||||||
"claimProviderAddCommandText": "New custom control",
|
"claimProviderAddCommandText": "New custom control",
|
||||||
"claimProviderAddNewBladeTitle": "New custom control",
|
"claimProviderAddNewBladeTitle": "New custom control",
|
||||||
"claimProviderDeleteCommand": "Delete",
|
"claimProviderDeleteCommand": "Delete",
|
||||||
@@ -11053,7 +11075,6 @@
|
|||||||
"clientTypeOtherClientsInfo": "This includes older office clients and other mail protocols(POP, IMAP, SMTP, etc). [Learn more][1]\n[1]: https://aka.ms/caclientapps\n",
|
"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.",
|
"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",
|
"cloudAppsSelectionBladeAllMicrosoftApps": "All Microsoft apps",
|
||||||
"cloudAppsSelectionExcludeAllMicrosoftClients": "Allow Microsoft cloud, desktop and mobile apps (Preview)",
|
|
||||||
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
"cloudappsSelectionBladeAllCloudapps": "All cloud apps",
|
||||||
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
"cloudappsSelectionBladeExcludeDescription": "Select the cloud apps to exempt from the policy",
|
||||||
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
"cloudappsSelectionBladeExcludedSelectorTitle": "Select excluded cloud apps",
|
||||||
@@ -11061,8 +11082,10 @@
|
|||||||
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
"cloudappsSelectionBladeIncludedSelectorTitle": "Select",
|
||||||
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
"cloudappsSelectionBladeSelectedCloudapps": "Select apps",
|
||||||
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
"cloudappsSelectorInfoBallonText": "Services which the user accesses to do work. For example, 'Salesforce'",
|
||||||
|
"cloudappsSelectorNone": "No cloud apps, actions, or authentication context selected",
|
||||||
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
"cloudappsSelectorPluralExcluded": "{0} apps excluded",
|
||||||
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
"cloudappsSelectorPluralIncluded": "{0} apps included",
|
||||||
|
"cloudappsSelectorRequired": "Cloud apps, actions, or authentication context selection required",
|
||||||
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
"cloudappsSelectorSingularExcluded": "1 app excluded",
|
||||||
"cloudappsSelectorSingularIncluded": "1 app included",
|
"cloudappsSelectorSingularIncluded": "1 app included",
|
||||||
"cloudappsSelectorUserPlural": "{0} apps",
|
"cloudappsSelectorUserPlural": "{0} apps",
|
||||||
@@ -11195,6 +11218,7 @@
|
|||||||
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
"locationSelectionBladeIncludeDescription": "Select the locations to include in this policy",
|
||||||
"locationsAllLocationsLabel": "Any location",
|
"locationsAllLocationsLabel": "Any location",
|
||||||
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
"locationsAllNamedLocationsLabel": "All trusted IPs",
|
||||||
|
"locationsAllNetworkLocationsLabel": "Any network or location",
|
||||||
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
"locationsAllPrivateLinksLabel": "All Private Links in my tenant",
|
||||||
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
"locationsIncludeExcludeLabel": "{0} and exclude all trusted IPs",
|
||||||
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
|
||||||
@@ -11302,6 +11326,7 @@
|
|||||||
"policiesBladeTitleWithAppName": "Policies: {0}",
|
"policiesBladeTitleWithAppName": "Policies: {0}",
|
||||||
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
|
||||||
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
"policiesHitMaxLimitStatusBarMessage": "You've reached the maximum number of policies for this tenant. Delete some policies before creating more.",
|
||||||
|
"policiesNewTabBadge": "NEW",
|
||||||
"policyAssignmentsSection": "Assignments",
|
"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.",
|
"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",
|
"policyCloudAppsDisplayTextAllApp": "All apps",
|
||||||
@@ -11312,14 +11337,21 @@
|
|||||||
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
"policyConditionDevicePlatformDescription": "Platform the user is signing in from. For example, 'iOS'",
|
||||||
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
"policyConditionHighUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. High user risk level.",
|
||||||
"policyConditionLocation": "Locations",
|
"policyConditionLocation": "Locations",
|
||||||
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
|
"policyConditionLocationDescription": "Locations (determined using IP address range) the user is signing in from",
|
||||||
"policyConditionLocationPreview": "Locations (Preview)",
|
"policyConditionLocationPreview": "Locations (Preview)",
|
||||||
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
"policyConditionLowUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Low user risk level.",
|
||||||
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
"policyConditionMediumUserRiskCheckboxAriaLabel": "Group, configure user risk levels needed for policy to be enforced. Medium user risk level.",
|
||||||
|
"policyConditionNetwork": "Network",
|
||||||
|
"policyConditionNetworkLocationDescription": "Network and locations (determined by IP address range or GPS coordinates) the user is signing in from",
|
||||||
|
"policyConditionNetworks": "Networks",
|
||||||
"policyConditionSigninRisk": "Sign-in risk",
|
"policyConditionSigninRisk": "Sign-in risk",
|
||||||
|
"policyConditionSigninRiskCiamDescription": "Sign-in risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Microsoft Entra ID P2 license.",
|
||||||
|
"policyConditionSigninRiskPreview": "Sign-in risk (preview)",
|
||||||
"policyConditionUserRisk": "User risk",
|
"policyConditionUserRisk": "User risk",
|
||||||
|
"policyConditionUserRiskCiamDescription": "User risk condition is currently in preview. Pricing information will be available at a later date",
|
||||||
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
|
||||||
|
"policyConditionUserRiskPreview": "User risk (preview)",
|
||||||
"policyConditioniClientApp": "Client apps",
|
"policyConditioniClientApp": "Client apps",
|
||||||
"policyControlAllowAccessDisplayedName": "Grant access",
|
"policyControlAllowAccessDisplayedName": "Grant access",
|
||||||
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
"policyControlAuthenticationStrengthDisplayedName": "Require authentication strength",
|
||||||
@@ -11450,6 +11482,7 @@
|
|||||||
"startTimePickerLabel": "Start time",
|
"startTimePickerLabel": "Start time",
|
||||||
"sunday": "Sunday",
|
"sunday": "Sunday",
|
||||||
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
"targetAppsReauthWarning": "Over prompting users for reauthentication can occur when the \"Sign-in Frequency - every time\" setting is enabled in some applications. {0}Read more about the recommended scenarios.{1}",
|
||||||
|
"targetSelect": "Select target type",
|
||||||
"testButton": "What If",
|
"testButton": "What If",
|
||||||
"thumbprintCol": "Thumbprint",
|
"thumbprintCol": "Thumbprint",
|
||||||
"thursday": "Thursday",
|
"thursday": "Thursday",
|
||||||
@@ -11550,8 +11583,9 @@
|
|||||||
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
|
||||||
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
"whatIfEvaResultSignInRisk": "Sign-in risk",
|
||||||
"whatIfEvaResultUsers": "Users and groups",
|
"whatIfEvaResultUsers": "Users and groups",
|
||||||
|
"whatIfFormat": "{0} - {1}",
|
||||||
"whatIfInsiderRisk": "Insider risk (Preview)",
|
"whatIfInsiderRisk": "Insider risk (Preview)",
|
||||||
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
|
"whatIfInsiderRiskInfo": "Insider risk that's assigned to user.",
|
||||||
"whatIfIpAddress": "IP address",
|
"whatIfIpAddress": "IP address",
|
||||||
"whatIfIpAddressInfo": "IP address the user is signing in from.",
|
"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.",
|
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
|
||||||
@@ -11559,6 +11593,7 @@
|
|||||||
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
"whatIfPolicyAppliesTabWithCount": "Applicable policies ({0})",
|
||||||
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
|
||||||
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
|
||||||
|
"whatIfPreviewTitle": "What If (Preview)",
|
||||||
"whatIfReasons": "Reasons why this policy will not apply",
|
"whatIfReasons": "Reasons why this policy will not apply",
|
||||||
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
|
||||||
"whatIfSelectClientApp": "Select a client app...",
|
"whatIfSelectClientApp": "Select a client app...",
|
||||||
@@ -11661,6 +11696,9 @@
|
|||||||
"ariaLabel": "row {0} of {1} column {2}"
|
"ariaLabel": "row {0} of {1} column {2}"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"InventoryCatalog": {
|
||||||
|
"subtitle": "Start from scratch and select the properties you want from the library of available inventory properties"
|
||||||
|
},
|
||||||
"SettingsCatalog": {
|
"SettingsCatalog": {
|
||||||
"subtitle": "Start from scratch and select settings you want from the library of available settings",
|
"subtitle": "Start from scratch and select settings you want from the library of available settings",
|
||||||
"title": "Settings catalog"
|
"title": "Settings catalog"
|
||||||
@@ -11947,7 +11985,7 @@
|
|||||||
"minVersion": "Min Version",
|
"minVersion": "Min Version",
|
||||||
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
|
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
|
||||||
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
|
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
|
||||||
"nonAdminForbiddenCreate": "You must be an admin to create restrictions.",
|
"nonAdminForbiddenCreateError": "You must be an Intune Service or Global Administrator to create, edit or delete restrictions.",
|
||||||
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
"nonAdminForbiddenEdit": "You must be an admin to edit restrictions.",
|
||||||
"notFound": "Restriction not found. It may have already been deleted.",
|
"notFound": "Restriction not found. It may have already been deleted.",
|
||||||
"personallyOwned": "Personally owned devices",
|
"personallyOwned": "Personally owned devices",
|
||||||
@@ -12348,6 +12386,7 @@
|
|||||||
"complianceWindows8": "Windows 8 compliance policy",
|
"complianceWindows8": "Windows 8 compliance policy",
|
||||||
"complianceWindowsPhone": "Windows Phone compliance policy",
|
"complianceWindowsPhone": "Windows Phone compliance policy",
|
||||||
"exchangeActiveSync": "Exchange Active Sync",
|
"exchangeActiveSync": "Exchange Active Sync",
|
||||||
|
"inventoryCatalog": "Properties catalog",
|
||||||
"iosCustom": "Custom",
|
"iosCustom": "Custom",
|
||||||
"iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
|
"iosDerivedCredentialAuthenticationConfiguration": "Derived PIV credential",
|
||||||
"iosDeviceFeatures": "Device features",
|
"iosDeviceFeatures": "Device features",
|
||||||
@@ -12515,12 +12554,12 @@
|
|||||||
},
|
},
|
||||||
"Titles": {
|
"Titles": {
|
||||||
"ChromeOs": {
|
"ChromeOs": {
|
||||||
"devices": "Chrome OS devices (preview)"
|
"devices": "ChromeOS devices"
|
||||||
},
|
},
|
||||||
"ManagedDesktop": {
|
"ManagedDesktop": {
|
||||||
"adminContacts": "Admin contacts",
|
"adminContacts": "Admin contacts",
|
||||||
"appPackaging": "App packaging",
|
"appPackaging": "App packaging",
|
||||||
"businessGroups": "Business Groups",
|
"autopatchGroups": "Autopatch groups",
|
||||||
"devices": "Devices",
|
"devices": "Devices",
|
||||||
"feedback": "Feedback",
|
"feedback": "Feedback",
|
||||||
"gettingStarted": "Getting started",
|
"gettingStarted": "Getting started",
|
||||||
@@ -12560,7 +12599,7 @@
|
|||||||
"brandingAndCustomization": "Customization",
|
"brandingAndCustomization": "Customization",
|
||||||
"cartProfiles": "Cart profiles",
|
"cartProfiles": "Cart profiles",
|
||||||
"certificateConnectors": "Certificate connectors",
|
"certificateConnectors": "Certificate connectors",
|
||||||
"chromeEnterprise": "Chrome Enterprise (preview)",
|
"chromeEnterprise": "Chrome Enterprise",
|
||||||
"cloudAttachedDevices": "Cloud attached devices (preview)",
|
"cloudAttachedDevices": "Cloud attached devices (preview)",
|
||||||
"cloudPcActions": "Cloud PC actions (preview)",
|
"cloudPcActions": "Cloud PC actions (preview)",
|
||||||
"cloudPcMaintenanceWindows": "Cloud PC maintenance windows (Preview)",
|
"cloudPcMaintenanceWindows": "Cloud PC maintenance windows (Preview)",
|
||||||
@@ -12658,11 +12697,11 @@
|
|||||||
"userExecutionStatus": "User status",
|
"userExecutionStatus": "User status",
|
||||||
"wdacSupplementalPolicies": "S mode supplemental policies",
|
"wdacSupplementalPolicies": "S mode supplemental policies",
|
||||||
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
|
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
|
||||||
|
"win32CatalogUpdateAppInPreview": "Updates for Windows (Win32) catalog apps (Preview)",
|
||||||
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
|
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
|
||||||
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
|
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
|
||||||
"windows10UpdateRings": "Update rings for Windows 10 and later",
|
"windows10UpdateRings": "Update rings for Windows 10 and later",
|
||||||
"windows10XPolicyFailures": "Windows 10X policy failures",
|
"windows10XPolicyFailures": "Windows 10X policy failures",
|
||||||
"windows365Connector": "Windows 365 Citrix connector",
|
|
||||||
"windows365PartnerConnector": "Windows 365 partner connectors",
|
"windows365PartnerConnector": "Windows 365 partner connectors",
|
||||||
"windowsDiagnosticData": "Windows data",
|
"windowsDiagnosticData": "Windows data",
|
||||||
"windowsEnterpriseCertificate": "Windows enterprise certificate",
|
"windowsEnterpriseCertificate": "Windows enterprise certificate",
|
||||||
|
|||||||
+63
-27
@@ -160,8 +160,8 @@ function Invoke-ViewActivated
|
|||||||
|
|
||||||
function Show-CompareBulkForm
|
function Show-CompareBulkForm
|
||||||
{
|
{
|
||||||
$script:form = Get-XamlObject ($global:AppRootFolder + "\Xaml\BulkCompare.xaml") -AddVariables
|
$script:cmpForm = Get-XamlObject ($global:AppRootFolder + "\Xaml\BulkCompare.xaml") -AddVariables
|
||||||
if(-not $script:form) { return }
|
if(-not $script:cmpForm) { return }
|
||||||
|
|
||||||
$global:cbCompareProvider.ItemsSource = @(($global:compareProviders | Where BulkCompare -ne $null))
|
$global:cbCompareProvider.ItemsSource = @(($global:compareProviders | Where BulkCompare -ne $null))
|
||||||
$global:cbCompareProvider.SelectedValue = (Get-Setting "Compare" "Provider" "export")
|
$global:cbCompareProvider.SelectedValue = (Get-Setting "Compare" "Provider" "export")
|
||||||
@@ -210,12 +210,12 @@ function Show-CompareBulkForm
|
|||||||
|
|
||||||
$global:dgObjectsToCompare.ItemsSource = $script:compareObjects
|
$global:dgObjectsToCompare.ItemsSource = $script:compareObjects
|
||||||
|
|
||||||
Add-XamlEvent $script:form "btnClose" "add_click" {
|
Add-XamlEvent $script:cmpForm "btnClose" "add_click" {
|
||||||
$script:form = $null
|
$script:cmpForm = $null
|
||||||
Show-ModalObject
|
Show-ModalObject
|
||||||
}
|
}
|
||||||
|
|
||||||
Add-XamlEvent $script:form "btnStartCompare" "add_click" {
|
Add-XamlEvent $script:cmpForm "btnStartCompare" "add_click" {
|
||||||
Write-Status "Compare objects"
|
Write-Status "Compare objects"
|
||||||
Save-Setting "Compare" "Provider" $global:cbCompareProvider.SelectedValue
|
Save-Setting "Compare" "Provider" $global:cbCompareProvider.SelectedValue
|
||||||
Save-Setting "Compare" "Type" $global:cbCompareType.SelectedValue
|
Save-Setting "Compare" "Type" $global:cbCompareType.SelectedValue
|
||||||
@@ -233,7 +233,7 @@ function Show-CompareBulkForm
|
|||||||
|
|
||||||
Set-CompareProviderOptions $global:cbCompareProvider
|
Set-CompareProviderOptions $global:cbCompareProvider
|
||||||
|
|
||||||
Show-ModalForm "Bulk Compare Objects" $script:form -HideButtons
|
Show-ModalForm "Bulk Compare Objects" $script:cmpForm -HideButtons
|
||||||
}
|
}
|
||||||
|
|
||||||
function Set-CompareProviderOptions
|
function Set-CompareProviderOptions
|
||||||
@@ -1114,12 +1114,12 @@ function Set-ColumnVisibility
|
|||||||
|
|
||||||
function Add-CompareProperty
|
function Add-CompareProperty
|
||||||
{
|
{
|
||||||
param($name, $value1, $value2, $category, $subCategory, $match = $null)
|
param($name, $value1, $value2, $category, $subCategory, $match = $null, [switch]$skip)
|
||||||
|
|
||||||
$value1 = if($value1 -eq $null) { "" } else { $value1.ToString().Trim("`"") }
|
$value1 = if($value1 -eq $null) { "" } else { $value1.ToString().Trim("`"") }
|
||||||
$value2 = if($value2 -eq $null) { "" } else { $value2.ToString().Trim("`"") }
|
$value2 = if($value2 -eq $null) { "" } else { $value2.ToString().Trim("`"") }
|
||||||
|
|
||||||
$script:compareProperties += [PSCustomObject]@{
|
$compare += [PSCustomObject]@{
|
||||||
PropertyName = $name
|
PropertyName = $name
|
||||||
Object1Value = $value1 #if($value1 -ne $null) { $value1.ToString().Trim("`"") } else { "" }
|
Object1Value = $value1 #if($value1 -ne $null) { $value1.ToString().Trim("`"") } else { "" }
|
||||||
Object2Value = $value2 #if($value2 -ne $null) { $value2.ToString().Trim("`"") } else { "" }
|
Object2Value = $value2 #if($value2 -ne $null) { $value2.ToString().Trim("`"") } else { "" }
|
||||||
@@ -1127,6 +1127,11 @@ function Add-CompareProperty
|
|||||||
SubCategory = $subCategory
|
SubCategory = $subCategory
|
||||||
Match = ?? $match ($value1 -eq $value2)
|
Match = ?? $match ($value1 -eq $value2)
|
||||||
}
|
}
|
||||||
|
if($skip -eq $true) {
|
||||||
|
$compare.Match = $null
|
||||||
|
}
|
||||||
|
|
||||||
|
$script:compareProperties += $compare
|
||||||
}
|
}
|
||||||
|
|
||||||
function Compare-ObjectsBasedonProperty
|
function Compare-ObjectsBasedonProperty
|
||||||
@@ -1137,8 +1142,11 @@ function Compare-ObjectsBasedonProperty
|
|||||||
|
|
||||||
Set-ColumnVisibility $false
|
Set-ColumnVisibility $false
|
||||||
|
|
||||||
|
$skipBasicProperties = Get-XamlProperty $script:cmpForm "chkSkipCompareBasicProperties" "IsChecked"
|
||||||
|
|
||||||
$coreProps = @((?? $objectType.NameProperty "displayName"), "Description", "Id", "createdDateTime", "lastModifiedDateTime", "version")
|
$coreProps = @((?? $objectType.NameProperty "displayName"), "Description", "Id", "createdDateTime", "lastModifiedDateTime", "version")
|
||||||
$postProps = @("Advertisements")
|
$postProps = @("Advertisements")
|
||||||
|
$skipProps = @("@ObjectFromFile")
|
||||||
|
|
||||||
foreach ($propName in $coreProps)
|
foreach ($propName in $coreProps)
|
||||||
{
|
{
|
||||||
@@ -1148,7 +1156,7 @@ function Compare-ObjectsBasedonProperty
|
|||||||
}
|
}
|
||||||
$val1 = ($obj1.$propName | ConvertTo-Json -Depth 10)
|
$val1 = ($obj1.$propName | ConvertTo-Json -Depth 10)
|
||||||
$val2 = ($obj2.$propName | ConvertTo-Json -Depth 10)
|
$val2 = ($obj2.$propName | ConvertTo-Json -Depth 10)
|
||||||
Add-CompareProperty $propName $val1 $val2
|
Add-CompareProperty $propName $val1 $val2 -Skip:($skipBasicProperties -eq $true)
|
||||||
}
|
}
|
||||||
|
|
||||||
$addedProps = @()
|
$addedProps = @()
|
||||||
@@ -1156,19 +1164,21 @@ function Compare-ObjectsBasedonProperty
|
|||||||
{
|
{
|
||||||
if($propName -in $coreProps) { continue }
|
if($propName -in $coreProps) { continue }
|
||||||
if($propName -in $postProps) { continue }
|
if($propName -in $postProps) { continue }
|
||||||
|
if($propName -in $skipProps) { continue }
|
||||||
|
|
||||||
if($propName -like "*@OData*" -or $propName -like "#microsoft.graph*") { continue }
|
if($propName -like "*@OData*" -or $propName -like "#microsoft.graph*") { continue }
|
||||||
|
|
||||||
$addedProps += $propName
|
$addedProps += $propName
|
||||||
$val1 = ($obj1.$propName | ConvertTo-Json -Depth 10)
|
$val1 = ($obj1.$propName | ConvertTo-Json -Depth 10)
|
||||||
$val2 = ($obj2.$propName | ConvertTo-Json -Depth 10)
|
$val2 = ($obj2.$propName | ConvertTo-Json -Depth 10)
|
||||||
Add-CompareProperty $propName $val1 $val2
|
Add-CompareProperty $propName $val1 $val2 -Skip:($skipBasicProperties -eq $true)
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($propName in ($obj2.PSObject.Properties | Select Name).Name)
|
foreach ($propName in ($obj2.PSObject.Properties | Select Name).Name)
|
||||||
{
|
{
|
||||||
if($propName -in $coreProps) { continue }
|
if($propName -in $coreProps) { continue }
|
||||||
if($propName -in $postProps) { continue }
|
if($propName -in $postProps) { continue }
|
||||||
|
if($propName -in $skipProps) { continue }
|
||||||
if($propName -in $addedProps) { continue }
|
if($propName -in $addedProps) { continue }
|
||||||
|
|
||||||
if($propName -like "*@OData*" -or $propName -like "#microsoft.graph*") { continue }
|
if($propName -like "*@OData*" -or $propName -like "#microsoft.graph*") { continue }
|
||||||
@@ -1178,6 +1188,7 @@ function Compare-ObjectsBasedonProperty
|
|||||||
Add-CompareProperty $propName $val1 $val2
|
Add-CompareProperty $propName $val1 $val2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$skipAssignments = Get-XamlProperty $script:cmpForm "chkSkipCompareAssignments" "IsChecked"
|
||||||
foreach ($propName in $postProps)
|
foreach ($propName in $postProps)
|
||||||
{
|
{
|
||||||
if(-not ($obj1.PSObject.Properties | Where Name -eq $propName))
|
if(-not ($obj1.PSObject.Properties | Where Name -eq $propName))
|
||||||
@@ -1186,7 +1197,7 @@ function Compare-ObjectsBasedonProperty
|
|||||||
}
|
}
|
||||||
$val1 = ($obj1.$propName | ConvertTo-Json -Depth 10)
|
$val1 = ($obj1.$propName | ConvertTo-Json -Depth 10)
|
||||||
$val2 = ($obj2.$propName | ConvertTo-Json -Depth 10)
|
$val2 = ($obj2.$propName | ConvertTo-Json -Depth 10)
|
||||||
Add-CompareProperty $propName $val1 $val2
|
Add-CompareProperty $propName $val1 $val2 -Skip:($skipAssignments -eq $true)
|
||||||
}
|
}
|
||||||
|
|
||||||
$script:compareProperties
|
$script:compareProperties
|
||||||
@@ -1230,10 +1241,12 @@ function Compare-ObjectsBasedonDocumentation
|
|||||||
|
|
||||||
$settingsValue = ?? $objectType.CompareValue "Value"
|
$settingsValue = ?? $objectType.CompareValue "Value"
|
||||||
|
|
||||||
|
$skipBasicProperties = Get-XamlProperty $script:cmpForm "chkSkipCompareBasicProperties" "IsChecked"
|
||||||
|
|
||||||
if($docObj1.BasicInfo -and -not ($docObj1.BasicInfo | where Value -eq $obj1.Id))
|
if($docObj1.BasicInfo -and -not ($docObj1.BasicInfo | where Value -eq $obj1.Id))
|
||||||
{
|
{
|
||||||
# Make sure the Id property is included
|
# Make sure the Id property is included
|
||||||
Add-CompareProperty "Id" $obj1.Id $obj2.Id $docObj1.BasicInfo[0].Category
|
Add-CompareProperty "Id" $obj1.Id $obj2.Id $docObj1.BasicInfo[0].Category -Skip:($skipBasicProperties -eq $true)
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach ($prop in $docObj1.BasicInfo)
|
foreach ($prop in $docObj1.BasicInfo)
|
||||||
@@ -1241,7 +1254,7 @@ function Compare-ObjectsBasedonDocumentation
|
|||||||
$val1 = $prop.Value
|
$val1 = $prop.Value
|
||||||
$prop2 = $docObj2.BasicInfo | Where Name -eq $prop.Name
|
$prop2 = $docObj2.BasicInfo | Where Name -eq $prop.Name
|
||||||
$val2 = $prop2.Value
|
$val2 = $prop2.Value
|
||||||
Add-CompareProperty $prop.Name $val1 $val2 $prop.Category
|
Add-CompareProperty $prop.Name $val1 $val2 $prop.Category -Skip:($skipBasicProperties -eq $true)
|
||||||
}
|
}
|
||||||
|
|
||||||
$addedProperties = @()
|
$addedProperties = @()
|
||||||
@@ -1250,11 +1263,16 @@ function Compare-ObjectsBasedonDocumentation
|
|||||||
{
|
{
|
||||||
foreach ($prop in $docObj1.Settings)
|
foreach ($prop in $docObj1.Settings)
|
||||||
{
|
{
|
||||||
if(($prop.SettingId + $prop.ParentSettingId) -in $addedProperties) { continue }
|
if(($prop.SettingId + $prop.ParentSettingId + $prop.RowIndex) -in $addedProperties) { continue }
|
||||||
|
|
||||||
$addedProperties += ($prop.SettingId + $prop.ParentSettingId)
|
$addedProperties += ($prop.SettingId + $prop.ParentSettingId + $prop.RowIndex)
|
||||||
$val1 = $prop.Value
|
$val1 = $prop.Value
|
||||||
$prop2 = $docObj2.Settings | Where { $_.SettingId -eq $prop.SettingId -and $_.ParentSettingId -eq $prop.ParentSettingId }
|
$prop2 = $docObj2.Settings | Where { $_.SettingId -eq $prop.SettingId -and $_.ParentSettingId -eq $prop.ParentSettingId -and $_.RowIndex -eq $prop.RowIndex }
|
||||||
|
if($val1 -isnot [Array] -and $prop2.Value -is [Array])
|
||||||
|
{
|
||||||
|
Write-Log "Compare property for $($prop.SettingId) found based on value" 2
|
||||||
|
$prop2 = $prop2 | Where Value -eq $val1
|
||||||
|
}
|
||||||
$val2 = $prop2.Value
|
$val2 = $prop2.Value
|
||||||
Add-CompareProperty $prop.Name $val1 $val2 $prop.Category
|
Add-CompareProperty $prop.Name $val1 $val2 $prop.Category
|
||||||
|
|
||||||
@@ -1265,12 +1283,18 @@ function Compare-ObjectsBasedonDocumentation
|
|||||||
# Add children defined on Object 1 property
|
# Add children defined on Object 1 property
|
||||||
foreach ($childProp in $children1)
|
foreach ($childProp in $children1)
|
||||||
{
|
{
|
||||||
if(($childProp.SettingId + $childProp.ParentSettingId) -in $addedProperties) { continue }
|
if(($childProp.SettingId + $childProp.ParentSettingId + $childProp.RowIndex) -in $addedProperties) { continue }
|
||||||
|
|
||||||
$addedProperties += ($childProp.SettingId + $childProp.ParentSettingId)
|
$addedProperties += ($childProp.SettingId + $childProp.ParentSettingId + $childProp.RowIndex)
|
||||||
$val1 = $childProp.Value
|
$val1 = $childProp.Value
|
||||||
$prop2 = $docObj2.Settings | Where { $_.SettingId -eq $childProp.SettingId -and $_.ParentSettingId -eq $childProp.ParentSettingId }
|
$prop2 = $docObj2.Settings | Where { $_.SettingId -eq $childProp.SettingId -and $_.ParentSettingId -eq $childProp.ParentSettingId -and $_.RowIndex -eq $childProp.RowIndex}
|
||||||
|
if($val1 -isnot [Array] -and $prop2.Value -is [Array])
|
||||||
|
{
|
||||||
|
Write-Log "Compare property for $($childProp.SettingId) found based on value" 2
|
||||||
|
$prop2 = $prop2 | Where Value -eq $val1
|
||||||
|
}
|
||||||
$val2 = $prop2.Value
|
$val2 = $prop2.Value
|
||||||
|
|
||||||
Add-CompareProperty $childProp.Name $val1 $val2 $prop.Category
|
Add-CompareProperty $childProp.Name $val1 $val2 $prop.Category
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1278,11 +1302,16 @@ function Compare-ObjectsBasedonDocumentation
|
|||||||
# This is to make sure all children are added under its parent and not last in the table
|
# This is to make sure all children are added under its parent and not last in the table
|
||||||
foreach ($childProp in $children2)
|
foreach ($childProp in $children2)
|
||||||
{
|
{
|
||||||
if(($childProp.SettingId + $childProp.ParentSettingId) -in $addedProperties) { continue }
|
if(($childProp.SettingId + $childProp.ParentSettingId + $childProp.RowIndex) -in $addedProperties) { continue }
|
||||||
|
|
||||||
$addedProperties += ($childProp.SettingId + $childProp.ParentSettingId)
|
$addedProperties += ($childProp.SettingId + $childProp.ParentSettingId + $childProp.RowIndex)
|
||||||
$val2 = $childProp.Value
|
$val2 = $childProp.Value
|
||||||
$prop2 = $docObj1.Settings | Where { $_.SettingId -eq $childProp.SettingId -and $_.ParentSettingId -eq $childProp.ParentSettingId }
|
$prop2 = $docObj1.Settings | Where { $_.SettingId -eq $childProp.SettingId -and $_.ParentSettingId -eq $childProp.ParentSettingId -and $_.RowIndex -eq $childProp.RowIndex }
|
||||||
|
if($val2 -isnot [Array] -and $prop2.Value -is [Array])
|
||||||
|
{
|
||||||
|
Write-Log "Compare property for $($childProp.SettingId) found based on value" 2
|
||||||
|
$prop2 = $prop2 | Where Value -eq $val1
|
||||||
|
}
|
||||||
$val1 = $prop2.Value
|
$val1 = $prop2.Value
|
||||||
Add-CompareProperty $childProp.Name $val1 $val2 $prop.Category
|
Add-CompareProperty $childProp.Name $val1 $val2 $prop.Category
|
||||||
}
|
}
|
||||||
@@ -1291,11 +1320,16 @@ function Compare-ObjectsBasedonDocumentation
|
|||||||
# These objects are defined only on Object 2. They will be last in the table
|
# These objects are defined only on Object 2. They will be last in the table
|
||||||
foreach ($prop in $docObj2.Settings)
|
foreach ($prop in $docObj2.Settings)
|
||||||
{
|
{
|
||||||
if(($prop.SettingId + $prop.ParentSettingId) -in $addedProperties) { continue }
|
if(($prop.SettingId + $prop.ParentSettingId + $prop.RowIndex) -in $addedProperties) { continue }
|
||||||
|
|
||||||
$addedProperties += ($prop.SettingId + $prop.ParentSettingId)
|
$addedProperties += ($prop.SettingId + $prop.ParentSettingId + $prop.RowIndex)
|
||||||
$val2 = $prop.Value
|
$val2 = $prop.Value
|
||||||
$prop2 = $docObj1.Settings | Where { $_.SettingId -eq $prop.SettingId -and $_.ParentSettingId -eq $prop.ParentSettingId }
|
$prop2 = $docObj1.Settings | Where { $_.SettingId -eq $prop.SettingId -and $_.ParentSettingId -eq $prop.ParentSettingId -and $_.RowIndex -eq $childProp.RowIndex }
|
||||||
|
if($val2 -isnot [Array] -and $prop2.Value -is [Array])
|
||||||
|
{
|
||||||
|
Write-Log "Compare property for $($prop.SettingId) found based on value" 2
|
||||||
|
$prop2 = $prop2 | Where Value -eq $val2
|
||||||
|
}
|
||||||
$val1 = $prop2.Value
|
$val1 = $prop2.Value
|
||||||
Add-CompareProperty $prop.Name $val1 $val2 $prop.Category
|
Add-CompareProperty $prop.Name $val1 $val2 $prop.Category
|
||||||
}
|
}
|
||||||
@@ -1464,12 +1498,14 @@ function Add-AssignmentInfo
|
|||||||
$val2 = $tmpVal
|
$val2 = $tmpVal
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$skipAssignments = Get-XamlProperty $script:cmpForm "chkSkipCompareAssignments" "IsChecked"
|
||||||
|
|
||||||
if($assignment.RawIntent)
|
if($assignment.RawIntent)
|
||||||
{
|
{
|
||||||
Add-CompareProperty $assignment.Category $val1 $val2 -Category $assignment.GroupMode -match $match
|
Add-CompareProperty $assignment.Category $val1 $val2 -Category $assignment.GroupMode -match $match -Skip:($skipAssignments -eq $true)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Add-CompareProperty $assignmentStr $val1 $val2 -Category $assignment.GroupMode -match $match
|
Add-CompareProperty $assignmentStr $val1 $val2 -Category $assignment.GroupMode -match $match -Skip:($skipAssignments -eq $true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -20,7 +20,7 @@ $global:documentationProviders = @()
|
|||||||
|
|
||||||
function Get-ModuleVersion
|
function Get-ModuleVersion
|
||||||
{
|
{
|
||||||
'2.1.0'
|
'2.2.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
function Invoke-InitializeModule
|
function Invoke-InitializeModule
|
||||||
@@ -1066,16 +1066,29 @@ function Invoke-TranslateSettingsObject
|
|||||||
$global:cfgCategories = (Invoke-GraphRequest "/deviceManagement/configurationCategories?`$filter=platforms has 'windows10' and technologies has 'mdm'" -ODataMetadata "minimal" @params).Value
|
$global:cfgCategories = (Invoke-GraphRequest "/deviceManagement/configurationCategories?`$filter=platforms has 'windows10' and technologies has 'mdm'" -ODataMetadata "minimal" @params).Value
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(-not $global:cachedCfgSettings)
|
||||||
|
{
|
||||||
|
$global:cachedCfgSettings = @{}
|
||||||
|
}
|
||||||
|
|
||||||
$script:settingCatalogasCategories = @{}
|
$script:settingCatalogasCategories = @{}
|
||||||
foreach($cfgSetting in $cfgSettings)
|
foreach($cfgSetting in $cfgSettings)
|
||||||
{
|
{
|
||||||
if($obj.'@ObjectFromFile' -and -not $cfgSetting.settingDefinitions)
|
if($obj.'@ObjectFromFile' -and -not $cfgSetting.settingDefinitions)
|
||||||
|
{
|
||||||
|
if($global:cachedCfgSettings.ContainsKey($cfgSetting.settingInstance.settingDefinitionId) -eq $false)
|
||||||
{
|
{
|
||||||
$defObj = Invoke-GraphRequest "/deviceManagement/configurationSettings/$($cfgSetting.settingInstance.settingDefinitionId)"
|
$defObj = Invoke-GraphRequest "/deviceManagement/configurationSettings/$($cfgSetting.settingInstance.settingDefinitionId)"
|
||||||
|
$global:cachedCfgSettings.Add($defObj.Id, $defObj)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$defObj = $cfgSetting.settingDefinitions | Where id -eq $cfgSetting.settingInstance.settingDefinitionId
|
$defObj = $cfgSetting.settingDefinitions | Where id -eq $cfgSetting.settingInstance.settingDefinitionId
|
||||||
|
if($global:cachedCfgSettings.ContainsKey($cfgSetting.settingInstance.settingDefinitionId) -eq $false)
|
||||||
|
{
|
||||||
|
$global:cachedCfgSettings.Add($defObj.Id, $defObj)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#$defObj = $cfgSetting.settingDefinitions | Where { $_.id -eq $cfgSetting.settingInstance.settingDefinitionId -or $_.id -eq $cfgSettings.settingInstanceTemplate.settingDefinitionId }
|
#$defObj = $cfgSetting.settingDefinitions | Where { $_.id -eq $cfgSetting.settingInstance.settingDefinitionId -or $_.id -eq $cfgSettings.settingInstanceTemplate.settingDefinitionId }
|
||||||
if(-not $defObj -or $script:settingCatalogasCategories.ContainsKey($defObj.categoryId)) { continue }
|
if(-not $defObj -or $script:settingCatalogasCategories.ContainsKey($defObj.categoryId)) { continue }
|
||||||
@@ -1124,8 +1137,16 @@ function Add-SettingsSetting
|
|||||||
|
|
||||||
$settingsDef = $settingsDefs | Where id -eq $settingInstance.settingDefinitionId
|
$settingsDef = $settingsDefs | Where id -eq $settingInstance.settingDefinitionId
|
||||||
if(-not $settingsDef -and $settingInstance.settingDefinitionId)
|
if(-not $settingsDef -and $settingInstance.settingDefinitionId)
|
||||||
|
{
|
||||||
|
if($global:cachedCfgSettings.ContainsKey($settingInstance.settingDefinitionId) -eq $false)
|
||||||
{
|
{
|
||||||
$settingsDef = Invoke-GraphRequest "/deviceManagement/configurationSettings/$($settingInstance.settingDefinitionId)"
|
$settingsDef = Invoke-GraphRequest "/deviceManagement/configurationSettings/$($settingInstance.settingDefinitionId)"
|
||||||
|
$global:cachedCfgSettings.Add($settingInstance.settingDefinitionId, $settingsDef)
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$settingsDef = $global:cachedCfgSettings[$settingInstance.settingDefinitionId]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
$categoryDef = $global:cfgCategories | Where Id -eq $settingsDef.categoryId #$script:settingCatalogasCategories[$settingsDef.categoryId]
|
$categoryDef = $global:cfgCategories | Where Id -eq $settingsDef.categoryId #$script:settingCatalogasCategories[$settingsDef.categoryId]
|
||||||
|
|
||||||
@@ -1143,6 +1164,7 @@ function Add-SettingsSetting
|
|||||||
|
|
||||||
$settingInfo = [PSCustomObject]@{
|
$settingInfo = [PSCustomObject]@{
|
||||||
SettingId = $settingsDef.Id
|
SettingId = $settingsDef.Id
|
||||||
|
SettingKey = ""
|
||||||
SettingName = $settingsDef.Name
|
SettingName = $settingsDef.Name
|
||||||
Name = $settingsDef.displayName
|
Name = $settingsDef.displayName
|
||||||
Description=$settingsDef.description
|
Description=$settingsDef.description
|
||||||
@@ -1161,6 +1183,7 @@ function Add-SettingsSetting
|
|||||||
Show = $show
|
Show = $show
|
||||||
Type = $settingInstance.'@odata.type'
|
Type = $settingInstance.'@odata.type'
|
||||||
PropertyIndex = 0
|
PropertyIndex = 0
|
||||||
|
RowIndex = 0
|
||||||
ChildSettings = @() #($childSettings | Sort DisplayName)
|
ChildSettings = @() #($childSettings | Sort DisplayName)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1226,13 +1249,13 @@ function Add-SettingsSetting
|
|||||||
{
|
{
|
||||||
$childSettingsArr = @()
|
$childSettingsArr = @()
|
||||||
# Not sure if this is the best way but it looks better for tested policies
|
# Not sure if this is the best way but it looks better for tested policies
|
||||||
if($script:currentObject.templateReference.templateId)
|
if($script:currentObject.templateReference.templateId -and $settingsDefs)
|
||||||
{
|
{
|
||||||
$childIDs = $settingsDefs.id # Endpoint Security objects
|
$childIDs = $settingsDefs.id # Endpoint Security objects
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$childIDs = $settingsDef.childIds # Setings Catalog
|
$childIDs = $settingsDef.childIds # Setings Catalog and from file documentation
|
||||||
}
|
}
|
||||||
#foreach($childId in $settingsDefs.id) #$settingsDef.childIds)
|
#foreach($childId in $settingsDefs.id) #$settingsDef.childIds)
|
||||||
foreach($childId in $childIDs)
|
foreach($childId in $childIDs)
|
||||||
@@ -1243,6 +1266,7 @@ function Add-SettingsSetting
|
|||||||
if($tmpSetting)
|
if($tmpSetting)
|
||||||
{
|
{
|
||||||
$tmpSetting.Parent = $childSettings
|
$tmpSetting.Parent = $childSettings
|
||||||
|
$tmpSetting.RowIndex = $index
|
||||||
$childSettings += $tmpSetting
|
$childSettings += $tmpSetting
|
||||||
$childSettingsArr += $tmpSetting
|
$childSettingsArr += $tmpSetting
|
||||||
if($settingsDef.childIds.Count -gt 1)
|
if($settingsDef.childIds.Count -gt 1)
|
||||||
@@ -1250,6 +1274,7 @@ function Add-SettingsSetting
|
|||||||
$tmpSetting.PropertyIndex = $childSettingsArr.Count
|
$tmpSetting.PropertyIndex = $childSettingsArr.Count
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
$rowIndex++
|
||||||
}
|
}
|
||||||
|
|
||||||
$settingInfo.ChildSettings += [PSCustomObject]@{
|
$settingInfo.ChildSettings += [PSCustomObject]@{
|
||||||
@@ -1365,6 +1390,7 @@ function Get-IntentCategory
|
|||||||
return (Get-LanguageString "SecurityTemplate.firewall")
|
return (Get-LanguageString "SecurityTemplate.firewall")
|
||||||
}
|
}
|
||||||
elseif($templateType -eq "securityBaseline" -or
|
elseif($templateType -eq "securityBaseline" -or
|
||||||
|
$templateType -eq "baseline" -or
|
||||||
$templateType -eq "advancedThreatProtectionSecurityBaseline" -or
|
$templateType -eq "advancedThreatProtectionSecurityBaseline" -or
|
||||||
$templateType -eq "microsoftEdgeSecurityBaseline")
|
$templateType -eq "microsoftEdgeSecurityBaseline")
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ This module is for the Endpoint Manager/Intune View. It manages Export/Import/Co
|
|||||||
#>
|
#>
|
||||||
function Get-ModuleVersion
|
function Get-ModuleVersion
|
||||||
{
|
{
|
||||||
'3.9.5'
|
'3.9.6'
|
||||||
}
|
}
|
||||||
|
|
||||||
function Invoke-InitializeModule
|
function Invoke-InitializeModule
|
||||||
@@ -89,6 +89,22 @@ function Invoke-InitializeModule
|
|||||||
SubPath = "EndpointManager"
|
SubPath = "EndpointManager"
|
||||||
}) "EndpointManager"
|
}) "EndpointManager"
|
||||||
|
|
||||||
|
Get-SettingValue "ProxyURI"
|
||||||
|
|
||||||
|
if($global:FirstTimeRunning) {
|
||||||
|
Save-Setting "EndpointManager" "EMAzureApp" $global:DefaultAzureApp
|
||||||
|
}
|
||||||
|
|
||||||
|
$currentAppID = Get-SettingValue "EMAzureApp"
|
||||||
|
$customAppID = Get-SettingValue "EMCustomAppId"
|
||||||
|
$global:informOldAzureApp = $false
|
||||||
|
|
||||||
|
if(($global:OldAzureApps -is [Array] -and $currentAppID -in $global:OldAzureApps) -or (-not $currentAppID -and -not $customAppID))
|
||||||
|
{
|
||||||
|
$global:informOldAzureApp = $true
|
||||||
|
Write-Log "Microsoft Intune PowerShell is being decomissioned. Please change to a supported app eg Microsoft Graph or a custom app!" 2
|
||||||
|
}
|
||||||
|
|
||||||
$viewPanel = Get-XamlObject ($global:AppRootFolder + "\Xaml\EndpointManagerPanel.xaml") -AddVariables
|
$viewPanel = Get-XamlObject ($global:AppRootFolder + "\Xaml\EndpointManagerPanel.xaml") -AddVariables
|
||||||
|
|
||||||
Set-EMViewPanel $viewPanel
|
Set-EMViewPanel $viewPanel
|
||||||
@@ -105,7 +121,7 @@ function Invoke-InitializeModule
|
|||||||
Activating = { Invoke-EMActivatingView }
|
Activating = { Invoke-EMActivatingView }
|
||||||
Authentication = (Get-MSALAuthenticationObject)
|
Authentication = (Get-MSALAuthenticationObject)
|
||||||
Authenticate = { Invoke-EMAuthenticateToMSAL @args }
|
Authenticate = { Invoke-EMAuthenticateToMSAL @args }
|
||||||
AppInfo = (Get-GraphAppInfo "EMAzureApp" "d1ddf0e4-d672-4dae-b554-9d5bdfd93547" "EM")
|
AppInfo = (Get-GraphAppInfo "EMAzureApp" $global:DefaultAzureApp "EM")
|
||||||
SaveSettings = { Invoke-EMSaveSettings }
|
SaveSettings = { Invoke-EMSaveSettings }
|
||||||
|
|
||||||
Permissions = @()
|
Permissions = @()
|
||||||
@@ -802,7 +818,7 @@ function Invoke-EMAuthenticateToMSAL
|
|||||||
{
|
{
|
||||||
param($params = @{})
|
param($params = @{})
|
||||||
|
|
||||||
$global:EMViewObject.AppInfo = Get-GraphAppInfo "EMAzureApp" "d1ddf0e4-d672-4dae-b554-9d5bdfd93547" "EM"
|
$global:EMViewObject.AppInfo = Get-GraphAppInfo "EMAzureApp" $global:DefaultAzureApp "EM"
|
||||||
Set-MSALCurrentApp $global:EMViewObject.AppInfo
|
Set-MSALCurrentApp $global:EMViewObject.AppInfo
|
||||||
& $global:msalAuthenticator.Login -Account (?? $global:MSALToken.Account.UserName (Get-Setting "" "LastLoggedOnUser")) @params
|
& $global:msalAuthenticator.Login -Account (?? $global:MSALToken.Account.UserName (Get-Setting "" "LastLoggedOnUser")) @params
|
||||||
}
|
}
|
||||||
@@ -818,7 +834,7 @@ function Invoke-EMActivatingView
|
|||||||
Show-MSALError
|
Show-MSALError
|
||||||
|
|
||||||
# Refresh values in case they have changed
|
# Refresh values in case they have changed
|
||||||
$global:EMViewObject.AppInfo = (Get-GraphAppInfo "EMAzureApp" "d1ddf0e4-d672-4dae-b554-9d5bdfd93547" "EM")
|
$global:EMViewObject.AppInfo = (Get-GraphAppInfo "EMAzureApp" $global:DefaultAzureApp "EM")
|
||||||
if(-not $global:EMViewObject.Authentication)
|
if(-not $global:EMViewObject.Authentication)
|
||||||
{
|
{
|
||||||
$global:EMViewObject.Authentication = Get-MSALAuthenticationObject
|
$global:EMViewObject.Authentication = Get-MSALAuthenticationObject
|
||||||
@@ -830,7 +846,7 @@ function Invoke-EMActivatingView
|
|||||||
|
|
||||||
function Invoke-EMSaveSettings
|
function Invoke-EMSaveSettings
|
||||||
{
|
{
|
||||||
$tmpApp = Get-GraphAppInfo "EMAzureApp" "d1ddf0e4-d672-4dae-b554-9d5bdfd93547"
|
$tmpApp = Get-GraphAppInfo "EMAzureApp" $global:DefaultAzureApp
|
||||||
|
|
||||||
if($global:appObj.ClientID -ne $tmpApp.ClientId -and $global:MSALToken)
|
if($global:appObj.ClientID -ne $tmpApp.ClientId -and $global:MSALToken)
|
||||||
{
|
{
|
||||||
@@ -2011,6 +2027,10 @@ function local:Start-ImportApp
|
|||||||
{
|
{
|
||||||
$fileEncryptionInfo = Copy-MSILOB $packageFile $obj
|
$fileEncryptionInfo = Copy-MSILOB $packageFile $obj
|
||||||
}
|
}
|
||||||
|
elseif($appType -eq "microsoft.graph.windowsUniversalAppX")
|
||||||
|
{
|
||||||
|
$fileEncryptionInfo = Copy-MSIXLOB $packageFile $obj
|
||||||
|
}
|
||||||
elseif($appType -eq "microsoft.graph.iosLOBApp")
|
elseif($appType -eq "microsoft.graph.iosLOBApp")
|
||||||
{
|
{
|
||||||
$fileEncryptionInfo = Copy-iOSLOB $packageFile $obj
|
$fileEncryptionInfo = Copy-iOSLOB $packageFile $obj
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ This module is for the Endpoint Info View. It shows read-only objects in Intune
|
|||||||
#>
|
#>
|
||||||
function Get-ModuleVersion
|
function Get-ModuleVersion
|
||||||
{
|
{
|
||||||
'3.9.0'
|
'3.9.6'
|
||||||
}
|
}
|
||||||
|
|
||||||
function Invoke-InitializeModule
|
function Invoke-InitializeModule
|
||||||
@@ -27,7 +27,7 @@ function Invoke-InitializeModule
|
|||||||
Activating = { Invoke-EMInfoActivatingView }
|
Activating = { Invoke-EMInfoActivatingView }
|
||||||
Authentication = (Get-MSALAuthenticationObject)
|
Authentication = (Get-MSALAuthenticationObject)
|
||||||
Authenticate = { Invoke-EMInfoAuthenticateToMSAL }
|
Authenticate = { Invoke-EMInfoAuthenticateToMSAL }
|
||||||
AppInfo = (Get-GraphAppInfo "EMAzureApp" "d1ddf0e4-d672-4dae-b554-9d5bdfd93547" "EM")
|
AppInfo = (Get-GraphAppInfo "EMAzureApp" $global:DefaultAzureApp "EM")
|
||||||
SaveSettings = { Invoke-EMSaveSettings }
|
SaveSettings = { Invoke-EMSaveSettings }
|
||||||
Permissions = @()
|
Permissions = @()
|
||||||
})
|
})
|
||||||
@@ -119,7 +119,7 @@ function Invoke-EMInfoActivatingView
|
|||||||
|
|
||||||
function Invoke-EMInfoAuthenticateToMSAL
|
function Invoke-EMInfoAuthenticateToMSAL
|
||||||
{
|
{
|
||||||
$global:EMInfoViewObject.AppInfo = Get-GraphAppInfo "EMAzureApp" "d1ddf0e4-d672-4dae-b554-9d5bdfd93547" "EM"
|
$global:EMInfoViewObject.AppInfo = Get-GraphAppInfo "EMAzureApp" $global:DefaultAzureApp "EM"
|
||||||
Set-MSALCurrentApp $global:EMInfoViewObject.AppInfo
|
Set-MSALCurrentApp $global:EMInfoViewObject.AppInfo
|
||||||
$usr = (?? $global:MSALToken.Account.UserName (Get-Setting "" "LastLoggedOnUser"))
|
$usr = (?? $global:MSALToken.Account.UserName (Get-Setting "" "LastLoggedOnUser"))
|
||||||
if($usr)
|
if($usr)
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ This module manages Application objects in Intune e.g. uploading application fil
|
|||||||
#>
|
#>
|
||||||
function Get-ModuleVersion
|
function Get-ModuleVersion
|
||||||
{
|
{
|
||||||
'3.9.3'
|
'3.9.6'
|
||||||
}
|
}
|
||||||
|
|
||||||
#########################################################################################
|
#########################################################################################
|
||||||
@@ -123,6 +123,42 @@ function Copy-MSILOB
|
|||||||
$fileEncryptionInfo
|
$fileEncryptionInfo
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function Copy-MSIXLOB
|
||||||
|
{
|
||||||
|
param($msixFile, $appObj)
|
||||||
|
|
||||||
|
if(-not $msixFile -or (Test-Path $msixFile) -eq $false)
|
||||||
|
{
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
$fi = [IO.FileInfo]$msixFile
|
||||||
|
|
||||||
|
$appId = $appObj.Id
|
||||||
|
$appType = $appObj.'@odata.type'.Trim('#')
|
||||||
|
|
||||||
|
$tmpFile = [IO.Path]::GetTempFileName()
|
||||||
|
|
||||||
|
$fileEncryptionInfo = New-IntuneEncryptedFile $msixFile $tmpFile
|
||||||
|
|
||||||
|
$manifest = $fi.Name
|
||||||
|
|
||||||
|
$appFileBody = @{
|
||||||
|
"@odata.type" = "#microsoft.graph.mobileAppContentFile"
|
||||||
|
name = [IO.Path]::GetFileName($msixFile)
|
||||||
|
size = (Get-Item $msixFile).Length
|
||||||
|
sizeEncrypted = (Get-Item $tmpFile).Length
|
||||||
|
manifest = [Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($manifest))
|
||||||
|
isDependency = $false
|
||||||
|
}
|
||||||
|
|
||||||
|
Add-FileToIntuneApp $appId $appType $tmpFile $appFileBody
|
||||||
|
|
||||||
|
Remove-Item $tmpFile -Force
|
||||||
|
|
||||||
|
$fileEncryptionInfo
|
||||||
|
}
|
||||||
|
|
||||||
function Copy-iOSLOB
|
function Copy-iOSLOB
|
||||||
{
|
{
|
||||||
param($pkgFile, $appObj)
|
param($pkgFile, $appObj)
|
||||||
|
|||||||
@@ -22,7 +22,7 @@ $global:EMToolsViewObject = $null
|
|||||||
|
|
||||||
function Get-ModuleVersion
|
function Get-ModuleVersion
|
||||||
{
|
{
|
||||||
'1.0.4'
|
'1.0.5'
|
||||||
}
|
}
|
||||||
|
|
||||||
function Invoke-InitializeModule
|
function Invoke-InitializeModule
|
||||||
@@ -82,7 +82,7 @@ function Add-EMToolsViewItem
|
|||||||
Activating = { Invoke-EMToolsActivatingView }
|
Activating = { Invoke-EMToolsActivatingView }
|
||||||
Authentication = (Get-MSALAuthenticationObject)
|
Authentication = (Get-MSALAuthenticationObject)
|
||||||
Authenticate = { Invoke-EMToolsAuthenticateToMSAL }
|
Authenticate = { Invoke-EMToolsAuthenticateToMSAL }
|
||||||
AppInfo = (Get-GraphAppInfo "EMAzureApp" "d1ddf0e4-d672-4dae-b554-9d5bdfd93547")
|
AppInfo = (Get-GraphAppInfo "EMAzureApp" $global:DefaultAzureApp)
|
||||||
SaveSettings = { Invoke-EMSaveSettings }
|
SaveSettings = { Invoke-EMSaveSettings }
|
||||||
Permissions = @()
|
Permissions = @()
|
||||||
})
|
})
|
||||||
@@ -121,7 +121,7 @@ function Invoke-EMToolsActivatingView
|
|||||||
|
|
||||||
function Invoke-EMToolsAuthenticateToMSAL
|
function Invoke-EMToolsAuthenticateToMSAL
|
||||||
{
|
{
|
||||||
$global:EMToolsViewObject.AppInfo = Get-GraphAppInfo "EMAzureApp" "d1ddf0e4-d672-4dae-b554-9d5bdfd93547"
|
$global:EMToolsViewObject.AppInfo = Get-GraphAppInfo "EMAzureApp" $global:DefaultAzureApp
|
||||||
Set-MSALCurrentApp $global:EMToolsViewObject.AppInfo
|
Set-MSALCurrentApp $global:EMToolsViewObject.AppInfo
|
||||||
$usr = (?? $global:MSALToken.Account.UserName (Get-Setting "" "LastLoggedOnUser"))
|
$usr = (?? $global:MSALToken.Account.UserName (Get-Setting "" "LastLoggedOnUser"))
|
||||||
if($usr)
|
if($usr)
|
||||||
|
|||||||
@@ -10,15 +10,19 @@ This module manages Microsoft Grap fuctions like calling APIs, managing graph ob
|
|||||||
#>
|
#>
|
||||||
function Get-ModuleVersion
|
function Get-ModuleVersion
|
||||||
{
|
{
|
||||||
'3.9.5'
|
'3.9.6'
|
||||||
}
|
}
|
||||||
|
|
||||||
$global:MSGraphGlobalApps = @(
|
$global:MSGraphGlobalApps = @(
|
||||||
(New-Object PSObject -Property @{Name="";ClientId="";RedirectUri="";Authority=""}),
|
(New-Object PSObject -Property @{Name="";ClientId="";RedirectUri="";Authority=""}),
|
||||||
(New-Object PSObject -Property @{Name="Microsoft Intune PowerShell";ClientId="d1ddf0e4-d672-4dae-b554-9d5bdfd93547";RedirectUri="urn:ietf:wg:oauth:2.0:oob"; }),
|
(New-Object PSObject -Property @{Name="Microsoft Graph PowerShell";ClientId="14d82eec-204b-4c2f-b7e8-296a70dab67e";RedirectUri="https://login.microsoftonline.com/common/oauth2/nativeclient";}),
|
||||||
(New-Object PSObject -Property @{Name="Microsoft Graph PowerShell";ClientId="14d82eec-204b-4c2f-b7e8-296a70dab67e";RedirectUri="https://login.microsoftonline.com/common/oauth2/nativeclient";})
|
(New-Object PSObject -Property @{Name="Decomissioned - Don't use - Microsoft Intune PowerShell";ClientId="d1ddf0e4-d672-4dae-b554-9d5bdfd93547";RedirectUri="urn:ietf:wg:oauth:2.0:oob"; })
|
||||||
)
|
)
|
||||||
|
|
||||||
|
$global:DefaultAzureApp = "14d82eec-204b-4c2f-b7e8-296a70dab67e"
|
||||||
|
|
||||||
|
$global:OldAzureApps = @("d1ddf0e4-d672-4dae-b554-9d5bdfd93547")
|
||||||
|
|
||||||
function Invoke-InitializeModule
|
function Invoke-InitializeModule
|
||||||
{
|
{
|
||||||
$global:graphURL = "https://graph.microsoft.com/beta"
|
$global:graphURL = "https://graph.microsoft.com/beta"
|
||||||
|
|||||||
@@ -1,4 +1,41 @@
|
|||||||
# Release Notes
|
# Release Notes
|
||||||
|
## 3.9.6 - 2024-04-22
|
||||||
|
|
||||||
|
**BREAKING CHANGE**<br />
|
||||||
|
Microsoft are decommissioning the Intune PowerShell App with id d1ddf0e4-d672-4dae-b554-9d5bdfd93547, mentioned [here](https://learn.microsoft.com/en-us/mem/intune/fundamentals/whats-new#plan-for-change-update-your-powershell-scripts-with-a-microsoft-entra-id-registered-app-id-by-april-2024)<br />
|
||||||
|
This was the default app in IntuneManagement. The default app is now changed to Microsoft Graph PowerShell app with id 14d82eec-204b-4c2f-b7e8-296a70dab67e<br />
|
||||||
|
The script will automatically use that app for new installationsbr<br />
|
||||||
|
A warning to change will be displayed if d1ddf0e4-d672-4dae-b554-9d5bdfd93547 is used<br />
|
||||||
|
You can also register a new app, documented [here](https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app) and then configure that app in Settings<br />
|
||||||
|
<br />
|
||||||
|
*Note*: This might require consent for the required permissions<br />
|
||||||
|
<br />
|
||||||
|
There is no change if you are currently using a custom app or already changed to Microsoft Graph PowerShell in Settings<br />
|
||||||
|
<br />
|
||||||
|
Also note that changing application will reset cached accounts<br />
|
||||||
|
|
||||||
|
**New features**
|
||||||
|
|
||||||
|
- **Compare**<br />
|
||||||
|
- Added support for ignoring Basic properties and Assignments<br />
|
||||||
|
Based on [Issue 203](https://github.com/Micke-K/IntuneManagement/issues/203) and [Issue 128](https://github.com/Micke-K/IntuneManagement/issues/128)<br />
|
||||||
|
**NOTE:** Properties will be logged but with empty value for Match<br />
|
||||||
|
|
||||||
|
**Fixes**
|
||||||
|
- **Compare**<br />
|
||||||
|
- Fixed issue when comparing Settings Catalog settings with child settings eg Hardened UNC Paths in Security Baseline<br />
|
||||||
|
- **Import/Export**<br />
|
||||||
|
- Added support for import of MSIX app content<br />
|
||||||
|
Based on [Discussion 191](https://github.com/Micke-K/IntuneManagement/discussions/191)<br />
|
||||||
|
- Disable autoload of modules to prevent loading MSGraph module if found<br />
|
||||||
|
Based on [Issue 208](https://github.com/Micke-K/IntuneManagement/issues/208)<br />
|
||||||
|
|
||||||
|
- **Documentation**<br />
|
||||||
|
- Language files re-generated.<br />
|
||||||
|
- AppTypes file re-generated. Some apps were not documented with proper name.<br />
|
||||||
|
|
||||||
|
<br />
|
||||||
|
|
||||||
## 3.9.5 - 2024-01-20
|
## 3.9.5 - 2024-01-20
|
||||||
|
|
||||||
**Fixes**
|
**Fixes**
|
||||||
|
|||||||
+22
-8
@@ -34,6 +34,8 @@
|
|||||||
|
|
||||||
<Grid Grid.Row='2' VerticalAlignment="Stretch" >
|
<Grid Grid.Row='2' VerticalAlignment="Stretch" >
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="Auto"/>
|
||||||
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
@@ -44,27 +46,39 @@
|
|||||||
<ColumnDefinition Width="*"/>
|
<ColumnDefinition Width="*"/>
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal" Margin="0,0,5,0" Grid.Row='0'>
|
<StackPanel Orientation="Horizontal" Grid.Row='0' Margin="0,5,5,0" >
|
||||||
|
<Label Content="Skip Basic Properties" />
|
||||||
|
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Skip basic properties like name, description, modified etc." />
|
||||||
|
</StackPanel>
|
||||||
|
<CheckBox Grid.Column='1' Grid.Row='0' Name='chkSkipCompareBasicProperties' VerticalAlignment="Center" IsChecked="false" />
|
||||||
|
|
||||||
|
<StackPanel Orientation="Horizontal" Grid.Row='1' Margin="0,5,5,0" >
|
||||||
|
<Label Content="Skip Assignments" />
|
||||||
|
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Skip comapring assignments." />
|
||||||
|
</StackPanel>
|
||||||
|
<CheckBox Grid.Column='1' Grid.Row='1' Name='chkSkipCompareAssignments' VerticalAlignment="Center" IsChecked="false" />
|
||||||
|
|
||||||
|
<StackPanel Orientation="Horizontal" Margin="0,0,5,0" Grid.Row='2'>
|
||||||
<Label Content="Save as" />
|
<Label Content="Save as" />
|
||||||
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Specifies how the export csv should be saved. One file per ObjectType or one file for all objects." />
|
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Specifies how the export csv should be saved. One file per ObjectType or one file for all objects." />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<ComboBox Name="cbCompareSave" Margin="0,5,0,0" MinWidth="250" Grid.Row='0' Grid.Column="1" HorizontalAlignment="Left"
|
<ComboBox Name="cbCompareSave" Margin="0,5,0,0" MinWidth="250" Grid.Row='2' Grid.Column="1" HorizontalAlignment="Left"
|
||||||
DisplayMemberPath="Name" SelectedValuePath="Value" />
|
DisplayMemberPath="Name" SelectedValuePath="Value" />
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal" Margin="0,0,5,0" Grid.Row='1' >
|
<StackPanel Orientation="Horizontal" Margin="0,0,5,0" Grid.Row='3' >
|
||||||
<Label Content="Comparison Type" />
|
<Label Content="Comparison Type" />
|
||||||
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Specify how objects should be compared" />
|
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Specify how objects should be compared" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<ComboBox Name="cbCompareType" Margin="0,5,0,0" MinWidth="250" Grid.Row='1' Grid.Column="1" HorizontalAlignment="Left"
|
<ComboBox Name="cbCompareType" Margin="0,5,0,0" MinWidth="250" Grid.Row='3' Grid.Column="1" HorizontalAlignment="Left"
|
||||||
DisplayMemberPath="Name" SelectedValuePath="Value" />
|
DisplayMemberPath="Name" SelectedValuePath="Value" />
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal" Margin="0,0,5,0" Grid.Row='2' >
|
<StackPanel Orientation="Horizontal" Margin="0,0,5,0" Grid.Row='4' >
|
||||||
<Label Content="CSV Delimiter" />
|
<Label Content="CSV Delimiter" />
|
||||||
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Specify the character to use for separating properties in the CSV file" />
|
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Specify the character to use for separating properties in the CSV file" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<ComboBox Name="cbCompareCSVDelimiter" Margin="0,5,0,0" MinWidth="250" Grid.Row='2' Grid.Column="1" HorizontalAlignment="Left" />
|
<ComboBox Name="cbCompareCSVDelimiter" Margin="0,5,0,0" MinWidth="250" Grid.Row='4' Grid.Column="1" HorizontalAlignment="Left" />
|
||||||
|
|
||||||
<Grid Margin="0,0,5,0" Grid.Row='3' >
|
<Grid Margin="0,0,5,0" Grid.Row='5' >
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
@@ -74,7 +88,7 @@
|
|||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<DataGrid Name="dgObjectsToCompare" Margin="0,5,0,5" Grid.Row='3' Grid.Column='1' CanUserAddRows="False" AutoGenerateColumns="False" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="White" />
|
<DataGrid Name="dgObjectsToCompare" Margin="0,5,0,5" Grid.Row='5' Grid.Column='1' CanUserAddRows="False" AutoGenerateColumns="False" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Background="White" />
|
||||||
|
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
|
|||||||
+15
-1
@@ -14,6 +14,8 @@
|
|||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="Auto"/>
|
<RowDefinition Height="Auto"/>
|
||||||
|
<RowDefinition Height="Auto"/>
|
||||||
|
<RowDefinition Height="Auto"/>
|
||||||
<RowDefinition Height="*"/>
|
<RowDefinition Height="*"/>
|
||||||
</Grid.RowDefinitions>
|
</Grid.RowDefinitions>
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
@@ -45,10 +47,22 @@
|
|||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<StackPanel Orientation="Horizontal" Grid.Row='2' Margin="0,5,5,0" >
|
<StackPanel Orientation="Horizontal" Grid.Row='2' Margin="0,5,5,0" >
|
||||||
|
<Label Content="Skip Basic Properties" />
|
||||||
|
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Skip basic properties like name, description, modified etc." />
|
||||||
|
</StackPanel>
|
||||||
|
<CheckBox Grid.Column='1' Grid.Row='2' Name='chkSkipCompareBasicProperties' VerticalAlignment="Center" IsChecked="false" />
|
||||||
|
|
||||||
|
<StackPanel Orientation="Horizontal" Grid.Row='3' Margin="0,5,5,0" >
|
||||||
|
<Label Content="Skip Assignments" />
|
||||||
|
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Skip comapring assignments." />
|
||||||
|
</StackPanel>
|
||||||
|
<CheckBox Grid.Column='1' Grid.Row='3' Name='chkSkipCompareAssignments' VerticalAlignment="Center" IsChecked="false" />
|
||||||
|
|
||||||
|
<StackPanel Orientation="Horizontal" Grid.Row='4' Margin="0,5,5,0" >
|
||||||
<Label Content="Comparison Type" />
|
<Label Content="Comparison Type" />
|
||||||
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Specify how objects should be compared" />
|
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Specify how objects should be compared" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<ComboBox Name="cbCompareType" Margin="0,5,0,0" MinWidth="250" Grid.Row='2' Grid.Column="1" HorizontalAlignment="Left"
|
<ComboBox Name="cbCompareType" Margin="0,5,0,0" MinWidth="250" Grid.Row='4' Grid.Column="1" HorizontalAlignment="Left"
|
||||||
DisplayMemberPath="Name" SelectedValuePath="Value" />
|
DisplayMemberPath="Name" SelectedValuePath="Value" />
|
||||||
|
|
||||||
<TextBlock Grid.Row='999' TextWrapping="Wrap" Margin="5,20,5,0" Grid.ColumnSpan="2">
|
<TextBlock Grid.Row='999' TextWrapping="Wrap" Margin="5,20,5,0" Grid.ColumnSpan="2">
|
||||||
|
|||||||
@@ -0,0 +1,41 @@
|
|||||||
|
<Grid xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="*"/>
|
||||||
|
<RowDefinition Height="Auto"/>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
|
||||||
|
<ScrollViewer HorizontalScrollBarVisibility="Auto"
|
||||||
|
VerticalScrollBarVisibility="Auto"
|
||||||
|
Name="scrollViewerObj"
|
||||||
|
Margin="5">
|
||||||
|
<TextBlock
|
||||||
|
HorizontalAlignment="Stretch"
|
||||||
|
VerticalAlignment="Stretch"
|
||||||
|
Height="{Binding ElementName=scrollViewerObj, Path=ViewportHeight}"
|
||||||
|
Width="{Binding ElementName=scrollViewerObj, Path=ViewportWidth}"
|
||||||
|
MinWidth="500"
|
||||||
|
MinHeight="300"
|
||||||
|
>
|
||||||
|
<Bold>'Microsoft Intune PowerShell' is being decommissioned!</Bold>
|
||||||
|
<LineBreak/><LineBreak/>
|
||||||
|
The current Entra application Microsoft Intune PowerShell with id 'd1ddf0e4-d672-4dae-b554-9d5bdfd93547' is being decommissioned by Microsoft.
|
||||||
|
<LineBreak /><LineBreak />
|
||||||
|
The app might still work but might be retired at any time.
|
||||||
|
<LineBreak/>
|
||||||
|
Please change Apllication in Settings. Either use 'Microsoft Graph PowerShell' or register a custom app.
|
||||||
|
<LineBreak /><LineBreak />
|
||||||
|
See <Hyperlink Name="addCustomApp" NavigateUri="https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app"> Quickstart: Register an application with the Microsoft identity platform</Hyperlink>.
|
||||||
|
<LineBreak /><LineBreak />
|
||||||
|
<CheckBox Name='chkChangeApp' VerticalAlignment="Center" IsChecked="false" Margin="5,0,0,0" >Change app to 'Microsoft Graph PowerShell'</CheckBox>
|
||||||
|
<LineBreak /><LineBreak />
|
||||||
|
<Bold>Note:</Bold>
|
||||||
|
<LineBreak />
|
||||||
|
This might require additional consent prompt and additional app permissions.
|
||||||
|
</TextBlock>
|
||||||
|
</ScrollViewer>
|
||||||
|
|
||||||
|
<StackPanel Grid.Row='1' Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,5,0,5">
|
||||||
|
<CheckBox Name='chkSkippMessage' VerticalAlignment="Center" IsChecked="false" Margin="5,0,0,0" >Do not show this message again</CheckBox>
|
||||||
|
<Button Name="btnOK" Content="OK" Width='100' Margin="5,0,0,0" />
|
||||||
|
</StackPanel>
|
||||||
|
</Grid>
|
||||||
+2
-2
@@ -34,9 +34,9 @@
|
|||||||
<LineBreak /><LineBreak />
|
<LineBreak /><LineBreak />
|
||||||
<Bold>Note:</Bold>
|
<Bold>Note:</Bold>
|
||||||
<LineBreak />
|
<LineBreak />
|
||||||
The 'Microsoft Intune PowerShell' Enterprise App in Azure is used by default for API calls.
|
The 'Microsoft Graph PowerShell' Enterprise App in Azure is used by default for API calls.
|
||||||
<LineBreak />
|
<LineBreak />
|
||||||
Go to Settings if you want to use 'Microsoft Graph PowerShell' or a custom App.
|
Go to Settings if you want to use a custom App. For mor info, see <Hyperlink Name="addCustomApp" NavigateUri="https://learn.microsoft.com/en-us/entra/identity-platform/quickstart-register-app"> Quickstart: Register an application with the Microsoft identity platform</Hyperlink>.
|
||||||
<LineBreak />
|
<LineBreak />
|
||||||
This software might use permissions not granted for the existing App.
|
This software might use permissions not granted for the existing App.
|
||||||
<LineBreak />
|
<LineBreak />
|
||||||
|
|||||||
Reference in New Issue
Block a user