This commit is contained in:
Mikael Karlsson
2023-10-17 20:34:44 +11:00
parent ea3af64316
commit ab7b062946
33 changed files with 6545 additions and 4702 deletions

View File

@@ -7,7 +7,7 @@ public class HttpFactoryWithProxy : IMsalHttpClientFactory
{
private static HttpClient _httpClient;
public public HttpFactoryWithProxy(string proxyURI) : this(proxyURI, null, null)
public HttpFactoryWithProxy(string proxyURI) : this(proxyURI, null, null)
{
}

View File

@@ -12,7 +12,7 @@
RootModule = 'CloudAPIPowerShellManagement.psm1'
# Version number of this module.
ModuleVersion = '3.9.1'
ModuleVersion = '3.9.2'
# Supported PSEditions
# CompatiblePSEditions = @()

View File

@@ -93,11 +93,20 @@ function Initialize-CloudAPIManagement
[void] [System.Reflection.Assembly]::LoadWithPartialName("System.Windows.Forms")
Add-Type -AssemblyName PresentationFramework
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
$global:hideUI = ($Silent -eq $true)
$global:SilentBatchFile = $SilentBatchFile
if($tenantId)
{
$global:AzureAppId = $appId
$global:ClientSecret = $secret
$global:ClientCert = $certificate
}
if($global:hideUI -ne $true)
{
{
# Run with UI
try
{
@@ -126,12 +135,11 @@ function Initialize-CloudAPIManagement
Write-Error "Tenant Id is missing. Use -TenantId <Tenant-guid> on the command line to run silent batch jobs"
return
}
$global:TenantId = $tenantId
$global:AzureAppId = $appId
$global:ClientSecret = $secret
$global:ClientCert = $certificate
}
$global:TenantId = $tenantId
if($ShowConsoleWindow -ne $true)
{
Hide-Console

View File

@@ -11,7 +11,7 @@ This module handles the WPF UI
function Get-ModuleVersion
{
'3.9.1'
'3.9.2'
}
function Initialize-Window
@@ -2770,6 +2770,67 @@ function Get-ProxyURI
return $script:proxyURI
}
function Start-DownloadFile
{
param($sourceURL, $targetFile)
Write-Log "Download file from $sourceURL"
if(-not $sourceURL)
{
return
}
if(-not $targetFile)
{
Write-Log "Target file is missing"
return
}
[void][System.Reflection.Assembly]::LoadWithPartialName("System.Web.Extensions")
$wc = New-Object System.Net.WebClient
$wc.Encoding = [System.Text.Encoding]::UTF8
$proxyURI = Get-ProxyURI
if($proxyURI)
{
$wc.Proxy = $proxyURI
}
try
{
Write-Status "Download file: `n$sourceURL"
$wc.DownloadFile($sourceURL, $targetFile)
Write-Log "File downloaded to $targetFile"
}
catch
{
Write-LogError "Failed to download file" $_.Exception
}
finally
{
$wc.Dispose()
}
}
function Get-ASCIIBytes
{
param($String)
$bytes = [System.Text.Encoding]::ASCII.GetBytes($String)
if ($bytes[0] -eq 0x2b -and $bytes[1] -eq 0x2f -and $bytes[2] -eq 0x76)
{ [Text.Encoding]::UTF7.GetBytes($String) }
elseif ($bytes[0] -eq 0xff -and $bytes[1] -eq 0xfe)
{ [Text.Encoding]::Unicode.GetBytes($String) }
elseif ($bytes[0] -eq 0xfe -and $bytes[1] -eq 0xff)
{ [Text.Encoding]::BigEndianUnicode.GetBytes($String) }
elseif ($bytes[0] -eq 0x00 -and $bytes[1] -eq 0x00 -and $bytes[2] -eq 0xfe -and $bytes[3] -eq 0xff)
{ [Text.Encoding]::UTF32.GetBytes($String) }
elseif ($bytes[0] -eq 0xef -and $bytes[1] -eq 0xbb -and $bytes[2] -eq 0xbf)
{ [Text.Encoding]::UTF8.GetBytes($String) }
$bytes
}
New-Alias -Name ?? -value Invoke-Coalesce
New-Alias -Name ?: -value Invoke-IfTrue
Export-ModuleMember -alias * -function *

View File

@@ -1099,12 +1099,12 @@
"category": "SettingDetails.dependencyCategory"
},
{
"nameResourceKey": "supersedenceCategory",
"nameResourceKey": "AppRelationshipStatus.Tabs.supersedence",
"descriptionResourceKey": "",
"entityKey": "supersededApps",
"dataType": 20,
"booleanActions": 0,
"category": "SettingDetails.supersedenceCategory"
"category": "AppRelationshipStatus.Tabs.supersedence"
}
]
}

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Vyžadovat v PIN kódu aspoň jedno velké písmeno"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Povolit uživateli měnit nastavení",
"tooltip": "Určuje, jestli uživatel může měnit nastavení."
},
"AllowWorkAccounts": {
"title": "Povolit pouze pracovní nebo školní účty",
"tooltip": " Když povolíte toto nastavení, uživatelé si nebudou moci do Outlooku přidat osobní e-mailový účet a účet úložiště. Pokud má uživatel v Outlooku přidaný osobní účet, zobrazí se mu výzva k jeho odebrání. Pokud uživatel osobní účet neodebere, nebude možné přidat pracovní nebo školní účet."
},
"BlockExternalImages": {
"title": "Blokovat externí obrázky",
"tooltip": "Pokud je povoleno blokování externích obrázků, aplikace zabrání stahovat obrázky hostované na internetu, které jsou vložené do textu zprávy. Když se tato možnost nastaví jako nenakonfigurovaná, výchozí nastavení aplikace je Vypnuto."
"AppRelationshipStatus": {
"Grid": {
"appVersion": "Verze aplikace",
"dependencyName": "Název závislosti",
"lastModifiedTime": "Čas poslední změny",
"relationship": "Vztah",
"replaced": "Nahrazeno",
"searchPlaceholder": "Filtrovat podle názvu aplikace",
"status": "Podrobnosti stavu",
"statusDetails": "Stav",
"supersedenceName": "Název nahrazování"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Podřízená závislost",
"indirectSupersedence": "Nesouvisejí přímo",
"supersedenceAncestors": "Nahrazuje se",
"supersedenceDescendants": "Nahrazeno"
},
"ConfigureEmail": {
"title": "Konfigurovat nastavení e-mailového účtu"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Výchozí podpis aplikace označuje, jestli aplikace použije jako výchozí podpis při vytváření zprávy text Získat Outlook pro Android. Pokud se nastavení nakonfiguruje na Vypnuto, výchozí podpis se nebude používat. Uživatelé ale můžou přidat svůj vlastní.\r\n\r\nKdyž se možnost nastaví na Nenakonfigurováno, výchozí nastavení aplikace se nastaví na Zapnuto.",
"iOS": "Výchozí podpis aplikace označuje, jestli aplikace použije jako výchozí podpis při vytváření zprávy text Získat Outlook pro iOS. Pokud se nastavení nakonfiguruje na Vypnuto, výchozí podpis se nebude používat. Uživatelé ale můžou přidat svůj vlastní.\r\n\r\nKdyž se možnost nastaví na Nenakonfigurováno, výchozí nastavení aplikace se nastaví na Zapnuto."
},
"title": "Výchozí podpis aplikace"
},
"OfficeFeedReplies": {
"title": "Informační kanál Discover",
"tooltip": "Informační kanál Discover nabízí informace o nejčastěji používaných souborech Office. Standardně se tento kanál povoluje ve chvíli, kdy se pro daného uživatele povoluje Delve. Když se tato možnost nastaví jako nenakonfigurovaná, výchozí nastavení aplikace je Zapnuto."
},
"OrganizeMailByThread": {
"title": "Uspořádat poštu podle vlákna",
"tooltip": "Výchozím chováním v Outlooku je seskupit poštovní konverzace do zobrazení konverzace ve vláknech. Pokud se toto nastavení zakáže, Outlook zobrazí každou poštu samostatně a nebude ji seskupovat podle vlákna."
},
"PlayMyEmails": {
"title": "Přehrát moje e-maily",
"tooltip": "Funkce Přehrát moje e-maily není v aplikaci povolená ve výchozím nastavení, oprávněným uživatelům se ale nabízí prostřednictvím banneru v doručené poště. Když se tato funkce nastaví na hodnotu Vypnuto, nebude se v aplikaci oprávněným uživatelům nabízet. I tak si uživatelé můžou v aplikaci přehrávání e-mailů povolit ručně. Pokud je nastavená jako Není nakonfigurováno, je výchozí nastavení aplikace Zapnuto a funkce se bude oprávněným uživatelům nabízet."
},
"SuggestedReplies": {
"title": "Navrhované odpovědi",
"tooltip": "Když otevřete zprávu, Outlook pod ní může navrhnout odpovědi. Pokud vyberete nějakou navrhovanou odpověď, můžete ji před odesláním upravit."
},
"SyncCalendars": {
"title": "Synchronizovat kalendáře",
"tooltip": "Umožňuje nakonfigurovat, jestli uživatelé můžou synchronizovat svůj kalendář Outlooku s nativní aplikací a databází kalendáře."
},
"TextPredictions": {
"title": "Predikce textu",
"tooltip": "Aplikace Outlook může při psaní zpráv navrhovat slova a fráze. Když Outlook nabídne návrh, přijměte ho potáhnutím prstem. Když se nenakonfiguruje, bude ve výchozím nastavení aplikace nastavené na Zapnuté."
"SupersededReplaced": {
"no": "Ne",
"yes": "Ano"
},
"ThemesEnabled": {
"title": "Motivy jsou povolené",
"tooltip": "Určete, jestli může uživatel používat vlastní vizuální motiv."
}
},
"Tabs": {
"chart": "Graf",
"dependency": "Závislost",
"label": "Zobrazit: ",
"supersedence": "Nahrazování",
"table": "Tabulka"
},
"dependencyGraphAriaLabel": "Graf závislostí aplikací",
"supersedenceGraphAriaLabel": "Graf nahrazování aplikací"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Vyberte prosím skript zjišťování.",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "Přidat powershellový skript",
"customAttributeObjectName": "Vlastní atribut",
"editPowershellScriptFlowSectionName": "Upravit skript PowerShell",
"enforceSignatureCheckInfoBalloonContent": "Skript musí být podepsán důvěryhodným vydavatelem. Ve výchozím nastavení se nezobrazí žádné upozornění ani výzva a spuštění skriptu se neblokuje.",
"enforceSignatureCheckInfoBalloonContent": "Skript musí být podepsán důvěryhodným vydavatelem. Toto je výchozí nastavení.",
"enforceSignatureCheckLabel": "Vynutit kontrolu podpisu skriptu",
"executionFrequencyLabel": "Frekvence spuštění",
"failedToSavePolicy": "Nepovedlo se uložit {0}.",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Zkontrolovat a přidat ",
"runAs64BitInfoBalloonContent": "Skript se spustí v 64bitovém hostiteli PowerShellu pro 64bitovou architekturu klienta. Standardně se skript bude spouštět v 32bitovém hostiteli PowerShellu.",
"runAs64BitLabel": "Spustit skript v 64bitovém hostiteli PowerShellu",
"scriptContextInfoBalloonContent": "Skript se spouští pomocí přihlašovacích údajů uživatelů na klientském počítači. Ve výchozím nastavení se skript spouští v kontextu systému.",
"scriptContextInfoBalloonContent": "Skript se spouští pomocí přihlašovacích údajů uživatelů na klientském počítači. Ve výchozím nastavení se skript spouští v kontextu uživatele.",
"scriptContextLabel": "Spustit tento skript pomocí přihlašovacích údajů přihlášeného uživatele",
"scriptsettingsTabHeader": "Nastavení skriptu",
"settingsHeader": "Vyberte skript, který se má nakonfigurovat.",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Trvalé připojení VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Kontrola základní integrity a integrity zařízení",
"androidPlayIntegrityVerdictBasicIntegrity": "Zkontrolovat základní integritu",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Důvěryhodné certifikáty se už nedají nainstalovat na zařízení, která používají Android 11 nebo novější, kromě zařízení Samsung Knox. Pokud používáte profily certifikátů SCEP, je zapotřebí pokračovat, aby se vytvořil a nasadil profil důvěryhodného certifikátu, a přidružit ho k profilu certifikátu SCEP. Pak ale bude nutné důvěryhodný kořenový certifikát ručně doručit na zařízení.",
"androidTenAndAbovePasswordHeader": "Android 10 a novější",
"androidTenAndAbovePasswordHeaderDescription": "Tato nastavení fungují pro zařízení s Androidem 10 nebo novějším.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Vynutí, aby se zařízení automaticky aktualizovala instalací oprav a vylepšení zabezpečení.",
"complianceUpdatesRequireAutomaticUpdatesName": "Vyžadovat automatické aktualizace od Microsoftu",
"complianceWin10RequiredPasswordTypeDescription": "Toto nastavení určuje typ požadovaného hesla nebo PIN kódu.<br>\r\nVýchozí nastavení zařízení (vyžaduje se heslo, číselný PIN kód nebo alfanumerický PIN kód)<br>\r\nAlfanumerické (vyžaduje se heslo nebo alfanumerický PIN kód)<br>\r\nČíselné (vyžaduje se heslo nebo číselný PIN kód)<br>\r\nDoporučení: Požadovaný typ hesla: Alfanumerické, složitost hesla: Vyžadovat číslice a malá písmena",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 nebo 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 a 11",
"complianceWindows11DeviceHealthAttestationHeader": "Jenom Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Minimální verze Microsoft Defenderu (třeba 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Minimální verze Antimalwaru v programu Microsoft Defender",
"complianceWindowsDeviceHealthAttestationHeader": "Pravidla vyhodnocení služby Microsoft Attestation Service<br><br>Pomocí těchto pravidel potvrďte, že zařízení má při spuštění povolená ochranná opatření. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Další informace o těchto pravidlech</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Nastavení vyhodnocení služby Microsoft Attestation Service<br><br>Pomocí těchto nastavení potvrďte, že zařízení má při spuštění povolená ochranná opatření. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Další informace</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Vyberte nejnovější verzi operačního systému, kterou může mobilní zařízení používat. Verze operačního systému se definuje jako hlavníVerze.podverze.build.revize.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Vyberte nejstarší verzi operačního systému, kterou může mobilní zařízení používat. Verze operačního systému se definuje jako hlavníVerze.podverze.build.revize.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "Verze operačního systému se definuje jako hlavníVerze.podverze.build.revize. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "Ochrana v 95. percentilu",
"basicDataProtectionGuidedString": "Základní ochrana dat Zajišťuje, že uživatelé budou muset pro přístup k datům pracovního nebo školního účtu používat PIN kód nebo biometrii, šifruje data pracovního nebo školního účtu a umožňuje správcům provádět selektivní vymazávání dat, pokud je to zapotřebí. Na zařízeních s Androidem základní ochrana dat navíc zajišťuje kompatibilitu zařízení se službami Google a umožňuje kontrolu pomocí funkce Verify Apps od Googlu.",
"basicIntegrity": "Základní integrita",
"basicIntegrityAndCertifiedDevices": "Základní integrita a certifikovaná zařízení",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Časový limit nečinnosti",
"bioPinInactiveTimeoutTooltip": "Přepsat PIN kódem místo biometriky za (počet minut)",
"block": "Blokovat",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Vyjmout a zkopírovat limit znaků pro jakoukoli aplikaci",
"camera": "Fotoaparát",
"checkInCountColumnTitle": "POČET OHLÁŠENÍ",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Zaregistrováno",
"checkedInAppNameColumnTitle": "APLIKACE",
"checkedInButNotSynced": "Vráceno se změnami. Během další synchronizace tato aplikace získá: {0}.",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">Nedaří se mi najít aplikaci, kterou potřebuji</a></p><p><a data-bind=\"fxclick: onClickLob\">Potřebuji přidat svou vlastní obchodní aplikaci</a></p>",
"guidedTemplate2": "Zeptáme se vás, kterou úroveň ochrany budete chtít uživatelům nasadit. Další informace viz <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Architektura ochrany dat se zásadami ochrany aplikací. </a>",
"guidediOSLabel": "Ochrana aplikací pro iOS",
"hardwareBackedKey": "Hardwarově podpořený klíč",
"healthCheck": "Kontroly stavu",
"helpAndSupport": "Nápověda a podpora",
"hideOverrides": "Skrýt potlačení",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Platforma",
"platformDropDownLabel": "Platforma",
"platformVersion": "Verze platformy",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Opravte prosím chyby v oddílu níže!",
"pleaseSelectAtLeastOneFileError": "Než budete pokračovat, vyberte prosím aspoň jeden soubor.",
"policies": "Zásady",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Vyžadovat zámek zařízení",
"requireThreatScanOnApps": "Vyžadovat kontrolu hrozeb u aplikací",
"requiredField": "Toto pole nemůže být prázdné.",
"requiredSafetyNetEvaluationType": "Požadovaný typ vyhodnocení SafetyNet",
"requiredSettings": "Požadovaná nastavení",
"resetPin": "Resetovat PIN kód",
"resourceManagement": "Správa prostředků",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Libovolná aplikace",
"restrictWebContentOption2": "{0}: Povolit webové odkazy v jakékoli aplikaci",
"rootCertificate": "Kořenový certifikát",
"safetyNetDeviceAttestation": "Ověření zařízení SafetyNet",
"samsungKnoxAttestationRequired": "Atestace zařízení Samsung Knox",
"saveAppsNotificationText": "Ukládají se vybrané aplikace",
"saveChangesCommandText": "Uložit",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Režim filtru",
"assignmentToast": "Oznámení koncovému uživateli",
"assignmentTypeTableHeader": "TYP PŘIŘAZENÍ",
"autoUpdate": "Automaticky aktualizovat",
"deadlineTimeColumnLabel": "Konečný termín instalace",
"deliveryOptimizationPriorityHeader": "Priorita optimalizace doručení",
"groupTableHeader": "Skupina",
@@ -8514,6 +8496,10 @@
"showAll": "Zobrazit všechny informační zprávy",
"showReboot": "Zobrazit informační zprávy o restartování počítače"
},
"AutoUpdateSupersededApps": {
"enabled": "Povoleno",
"notConfigured": "Není nakonfigurováno"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Pozadí",
"displayText": "Stahování obsahu v {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "Řízení relace „frekvence přihlašování pokaždé“ vyžaduje výběr „všechny cloudové aplikace“ nebo specificky podporovaných aplikací.",
"allDayCheckboxLabel": "Celý den",
"allDevicePlatforms": "Libovolné zařízení",
"allGuestUserInfoContent": "Zahrnuje hosty Azure AD B2B, ale ne hosty SharePoint B2B.",
"allGuestUserInfoContent": "Zahrnuje hosty Microsoft Entra B2B, ale ne hosty SharePoint B2B.",
"allGuestUserLabel": "Všichni hosté a externí uživatelé",
"allRiskLevelsOption": "Všechny úrovně rizika",
"allTrustedLocationLabel": "Všechna důvěryhodná umístění",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Přečtěte si další informace o vyžadování zařízení dodržujících předpisy.",
"controlsDeviceComplianceInfoBubble": "Zařízení musí dodržovat předpisy Intune. Pokud je nedodržuje, zobrazí se uživateli výzva, aby zařízení nastavil tak, aby předpisy dodržovalo.",
"controlsDomainJoinedAriaLabel": "Další informace o vyžadování zařízeních připojených službou Hybrid Azure AD Join.",
"controlsDomainJoinedInfoBubble": "Zařízení musí být připojené službou Hybrid Azure AD Join.",
"controlsDomainJoinedAriaLabel": "Přečtěte si další informace o vyžadování zařízeních hybridně připojených k Microsoft Entra.",
"controlsDomainJoinedInfoBubble": "Zařízení musí být hybridně připojená k Microsoft Entra.",
"controlsMamAriaLabel": "Další informace o vyžadování schválených klientských aplikací.",
"controlsMamInfoBubble": "Zařízení musí používat tyto aplikace schválené klientem.",
"controlsMfaInfoBubble": "Uživatelé musí splnit další požadavky na zabezpečení, třeba telefonní hovor nebo textovou zprávu.",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Zařízení označené jako kompatibilní",
"deviceStateCompliantInfoContent": "Zařízení kompatibilní s Intune nebudou součástí vyhodnocování těchto zásad, takže pokud zásady blokují třeba přístup, zablokují ho pro všechna zařízení kromě těch, která jsou kompatibilní s Intune.",
"deviceStateConditionConfigureInfoContent": "Nakonfigurovat zásady na základě stavu zařízení",
"deviceStateConditionSelectorInfoContent": "Označuje, jestli je zařízení, ze kterého se uživatel přihlašuje, připojené službou Hybrid Azure AD Join nebo označené jako kompatibilní.\n Možnost je teď už zastaralá. Místo toho použijte možnost {1}.",
"deviceStateConditionSelectorInfoContent": "Označuje, jestli je zařízení, ze kterého se uživatel přihlašuje, hybridně připojené k Microsoft Entra nebo označené jako odpovídající.\n Tato možnost je teď už zastaralá. Místo toho použijte možnost {1}.",
"deviceStateConditionSelectorLabel": "Stav zařízení (zastaralý)",
"deviceStateDomainJoined": "Zařízení je připojené službou Hybrid Azure AD Join",
"deviceStateDomainJoinedInfoContent": "Zařízení připojená službou Hybrid Azure AD Join nebudou součástí vyhodnocování těchto zásad, takže pokud zásady blokují třeba přístup, zablokují ho pro všechna zařízení kromě těch, která jsou připojená službou Hybrid Azure AD Join.",
"deviceStateDomainJoined": "Zařízení hybridně připojené k Microsoft Entra",
"deviceStateDomainJoinedInfoContent": "Zařízení hybridně připojená k Microsoft Entra nebudou součástí vyhodnocování těchto zásad, takže pokud zásady blokují třeba přístup, zablokují ho pro všechna zařízení kromě těch, která jsou hybridně připojená k Microsoft Entra.",
"deviceStateDomainJoinedInfoLinkText": "Další informace",
"deviceStateExcludeDescription": "Vyberte podmínku stavu zařízení, na základě které se zařízení vyloučí ze zásad.",
"deviceStateIncludeAndExcludeOneLabel": "{0} a vyloučit {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Protokol Exchange ActiveSync jen s podporovanými platformami",
"excludeAllTrustedLocationSelectorText": "všechna důvěryhodná umístění",
"featureRequiresP2": "Tato funkce vyžaduje licenci Azure AD Premium 2.",
"featureRequiresP2": "Tato funkce vyžaduje licenci Microsoft Entra ID P2.",
"friday": "Pátek",
"grantControls": "Udělit řízení",
"gridNetworkTrusted": "Důvěryhodná",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Vybraná privátní propojení",
"lowRisk": "Nízká",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "Pokud chcete spravovat zásady Podmíněného přístupu, vaše organizace potřebuje Azure AD Premium P1 nebo P2.",
"managePoliciesLicenseText": "Pokud chcete spravovat zásady podmíněného přístupu, vaše organizace potřebuje Microsoft Entra ID P1 nebo P2.",
"manageSecurityDefaultsAriaLabel": "Umožňuje spravovat výchozí nastavení zabezpečení.",
"markAsTrustedCheckboxInfoBalloonContent": "Přihlášení z důvěryhodného umístění snižuje riziko přihlášení uživatele. Toto umístění jako důvěryhodné označte jenom tehdy, pokud víte, že zadané rozsahy IP adres jsou zřízené a důvěryhodné ve vaší organizaci.",
"markAsTrustedCheckboxLabel": "Označit jako důvěryhodné umístění",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Země nebo oblasti",
"namedLocationTypeLabel": "Definovat umístění pomocí:",
"namedLocationUpsellBanner": "Toto zobrazení je zastaralé. Přejděte do nového a vylepšeného zobrazení Pojmenovaná umístění.",
"namedLocationsHelpDescription": "Pojmenovaná umístění se používají v sestavách zabezpečení, aby se snížil počet falešně pozitivních výsledků, a v zásadách Podmíněného přístupu Azure AD.\n[Další informace][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Pojmenovaná umístění se používají v sestavách zabezpečení Microsoft Entra ID, aby se snížil počet falešně pozitivních výsledků, a v zásadách Podmíněného přístupu Microsoft Entra.\n[Další informace][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Přidat nový rozsah IP adres (např.: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "Je třeba vybrat aspoň jednu zemi/oblast.",
"namedNetworkDeleteCommand": "Odstranit",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Nové pojmenované umístění",
"namedNetworksConditionHelpDescription": "Umožňuje řídit přístup uživatelů na základě fyzické polohy.\n[Další informace][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "Vyloučeno: {0} a {1}",
"namedNetworksHelpDescription": "Pojmenovaná umístění se používají v sestavách zabezpečení, aby se snížil počet falešně pozitivních výsledků, a v zásadách Podmíněného přístupu Azure AD.\n[Další informace][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Pojmenovaná umístění se používají v sestavách zabezpečení Microsoft Entra ID, aby se snížil počet falešně pozitivních výsledků, a v zásadách Podmíněného přístupu Microsoft Entra.\n[Další informace][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "Zahrnuto: {0}",
"namedNetworksNone": "Nenašla se žádná pojmenovaná umístění.",
"namedNetworksTitle": "Konfigurovat místa",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Tyto zásady můžou uložit jen globální správci.",
"or": "{0} NEBO {1} ",
"pickerDoneCommand": "Hotovo",
"policiesBladeAdPremiumUpsellBannerText": "Se službou Azure AD Premium můžete vytvářet své vlastní zásady s cílením na konkrétní podmínky, třeba Cloudové aplikace, Riziko přihlášení a Platformy zařízení.",
"policiesBladeAdPremiumUpsellBannerText": "Se službou Microsoft Entra ID Premium můžete vytvářet své vlastní zásady s cílením na konkrétní podmínky, třeba cloudové aplikace, riziko přihlášení a platformy zařízení.",
"policiesBladeTitle": "Zásady",
"policiesBladeTitleWithAppName": "Zásady: {0}",
"policiesDisabledBannerText": "Pro aplikace s propojeným atributem registrace jsou vytváření a úpravy zásady zakázané.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Lokalita, ze které se uživatel přihlašuje (určuje se podle rozsahu IP adres)",
"policyConditionLocationPreview": "Umístění (Preview)",
"policyConditionSigninRisk": "Riziko přihlášení",
"policyConditionSigninRiskDescription": "Pravděpodobnost, že se přihlašuje někdo jiný než daný uživatel. Úroveň rizika může být vysoká, střední nebo nízká. Vyžaduje licenci Azure AD Premium 2.",
"policyConditionSigninRiskDescription": "Pravděpodobnost, že se přihlašuje někdo jiný než daný uživatel. Úroveň rizika může být vysoká, střední nebo nízká. Vyžaduje licenci Microsoft Entra ID P2.",
"policyConditionUserRisk": "Riziko uživatele",
"policyConditionUserRiskDescription": "Umožňuje nakonfigurovat úrovně rizika uživatelů potřebné k vynucování zásad.",
"policyConditioniClientApp": "Klientské aplikace",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Zablokujte přístup nebo vyberte další požadavky, které je třeba splnit pro povolení přístupu.",
"policyControlMfaChallengeDisplayedName": "Vyžadovat vícefaktorové ověřování",
"policyControlRequireCompliantAppDisplayedName": "Vyžadovat zásady ochrany aplikací",
"policyControlRequireDomainJoinedDisplayedName": "Vyžadovat zařízení připojené službou Hybrid Azure AD Join",
"policyControlRequireDomainJoinedDisplayedName": "Vyžadovat zařízení hybridně připojené k Microsoft Entra",
"policyControlRequireMamDisplayedName": "Vyžaduje se klientem schválená aplikace.",
"policyControlRequiredPasswordChangeDisplayedName": "Požadovat změnu hesla",
"policyControlSelectAuthStrength": "Vyžadovat sílu ověřování",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "Zásada {0} se úspěšně aktualizovala. Povolí se za několik minut, pokud máte možnost Povolit zásadu nastavenou na Zapnuto.",
"policyUpdateSuccessTitle": "Aplikace {0} byla úspěšně aktualizována.",
"primaryCol": "Primární",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "Režim pouze sestav: Zásady se vyhodnocují a protokolují při přihlašování, ale na uživatele nemají vliv.",
"requireAllControlsText": "Vyžadovat všechny vybrané ovládací prvky",
"requireCompliantDevice": "Vyžaduje zařízení, které splňuje požadavky.",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "U citlivých aplikací se bude vyžadovat vícefaktorové ověřování po celou dobu nebo jen při připojování z prostředí mimo firemní síť.",
"upsellAppsTitle": "Zabezpečené aplikace",
"upsellBannerText": "Abyste mohli použít tuto funkci, získejte bezplatnou zkušební verzi Premium.",
"upsellDataDescription": "Pro přístup k prostředkům společnosti se bude vyžadovat, aby zařízení bylo označené jako vyhovující nebo připojené službou Hybrid Azure AD Join.",
"upsellDataDescription": "Pro přístup k prostředkům společnosti se bude vyžadovat, aby zařízení bylo označené jako odpovídající nebo hybridně připojené k Microsoft Entra.",
"upsellDataTitle": "Zabezpečená data",
"upsellDescription": "Podmíněný přístup poskytuje možnosti řízení a ochranu, které potřebujete k udržování vašich firemních dat v zabezpečeném stavu, a zároveň dává vašim pracovníkům možnosti pro efektivní práci z libovolného zařízení. Můžete například omezit přístup z prostředí mimo firemní síť nebo povolit jen přístup ze zařízení, která splňují vaše zásady dodržování předpisů.",
"upsellRiskDescription": "Při rizikových událostech zjištěných systémem strojového učení Microsoftu se bude vyžadovat vícefaktorové ověřování.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "Certifikát {0} se úspěšně aktualizoval.",
"vpnCertUpdateSuccessTitle": "Aplikace {0} byla úspěšně aktualizována.",
"vpnFeatureInfo": "Další informace o připojení VPN a Podmíněném přístupu získáte, když kliknete sem.",
"vpnFeatureWarning": "Jakmile se na portálu Azure Portal vytvoří certifikát VPN, Azure AD začne s jeho pomocí okamžitě vystavovat klientovi VPN krátkodobé certifikáty. Je naprosto nezbytné okamžitě nasadit certifikát VPN na server VPN, aby při ověřování přihlašovacích údajů klienta VPN nedošlo k žádným problémům.",
"vpnFeatureWarning": "Jakmile se na portálu vytvoří certifikát VPN, Microsoft Entra ID začne s jeho pomocí okamžitě vystavovat klientovi VPN krátkodobé certifikáty. Je naprosto nezbytné okamžitě nasadit certifikát VPN na server VPN, aby při ověřování přihlašovacích údajů klienta VPN nedošlo k žádným problémům.",
"vpnMenuText": "Připojení VPN",
"vpncertDropdownDefaultOption": "Doba trvání",
"vpncertDropdownInfoBalloonContent": "Vyberte dobu platnosti certifikátu, který chcete vytvořit.",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Vlastní role Intune",
"customRole": "Vlastní role"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "Profil {0} je zahrnutý v jedné nebo více sadách zásad. Pokud profil {0} odstraníte, nebudete už jej moct přiřazovat prostřednictvím těchto sad zásad. Chcete jej přesto odstranit?",
"contentWithError": "{0} by mohla být zahrnutá v jedné nebo více sadách zásad. Pokud {0} odstraníte, nebudete už ji moct přiřazovat prostřednictvím těchto sad zásad. Chcete ji přesto odstranit?",
"header": "Opravdu chcete odstranit toto omezení?"
},
"DeviceLimit": {
"description": "Zadejte maximální počet zařízení, která uživatel může zaregistrovat.",
"header": "Omezení limitů počtů zařízení",
"info": "Definujte, kolik zařízení může každý uživatel zaregistrovat."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Musí být 1.0 nebo vyšší.",
"android": "Zadejte platné číslo verze. Příklady: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Zadejte platné číslo verze. Příklady: 5.0, 5.1.1",
"iOS": "Zadejte platné číslo verze. Příklady: 9.0, 10.0, 9.0.2",
"mac": "Zadejte platné číslo verze. Příklady: 10, 10.10, 10.10.1",
"min": "Minimum nemůže být menší než {0}.",
"minMax": "Minimální verze nemůže být větší než maximální verze.",
"windows": "Musí být 10.0 nebo vyšší. Pokud chcete povolit zařízení 8.1, nechejte pole prázdné.",
"windowsMobile": "Musí být 10.0 nebo vyšší. Pokud chcete povolit zařízení 8.1, nechejte pole prázdné."
},
"allPlatformsBlocked": "Všechny platformy zařízení jsou zablokované. Pokud chcete povolit konfiguraci platforem, povolte jejich registraci.",
"blockManufacturerPlaceHolder": "Název výrobce",
"blockManufacturersHeader": "Zablokovaní výrobci",
"cannotRestrict": "Omezení se nepodporují.",
"configurationDescription": "Zadejte omezení konfigurace platformy, která se musí splnit, aby se zařízení zaregistrovalo. Po registraci můžete zařízení omezovat pomocí zásad dodržování předpisů. Verze definujte jako hlavníverze.podverze.build. Omezení verzí platí jenom pro zařízení registrovaná na Portálu společnosti. Intune standardně klasifikuje zařízení jako v osobním vlastnictví. Pokud se zařízení mají klasifikovat jako ve vlastnictví firmy, je nutná další akce.",
"configurationDescriptionLabel": "Další informace o nastavení omezení registrace",
"configurations": "Konfigurovat platformy",
"deviceManufacturer": "Výrobce zařízení",
"header": "Omezení typů zařízení",
"info": "Definujte, které platformy, verze a typy správy se můžou registrovat.",
"manufacturer": "Výrobce",
"max": "Maximum",
"maxVersion": "Maximální verze",
"min": "Minimum",
"minVersion": "Minimální verze",
"newPlatforms": "Povolili jste nové platformy. Zvažte možnost aktualizovat konfigurace platforem.",
"personal": "V osobním vlastnictví",
"platform": "Platforma",
"platformDescription": "Registraci můžete povolit pro následující platformy. Blokujte jenom ty platformy, které nebudete podporovat. Povolené platformy se dají konfigurovat prostřednictvím dalších omezení registrace.",
"platformSettings": "Nastavení platformy",
"platforms": "Vyberte platformy.",
"platformsSelected": "Počet vybraných platforem: {0}",
"type": "Typ",
"versions": "verze",
"versionsRange": "Povolit rozsah min/max:",
"windowsTooltip": "Omezí registrace prostřednictvím správy mobilních zařízení. Neomezí instalaci agentů počítačů. Podporují se jen verze Windows 10 a Windows 11. Pokud chcete povolit Windows 8.1, nechejte verze prázdné."
},
"Priority": {
"saved": "Priority omezení se úspěšně uložily."
},
"Row": {
"announce": "Priorita: {0}, název: {1}, přiřazené: {2}"
},
"Table": {
"deployed": "Nasazeno",
"name": "Název",
"priority": "Priorita"
},
"Type": {
"limit": "Omezení limitu počtu zařízení",
"type": "Omezení typu zařízení"
},
"allUsers": "Všichni uživatelé",
"androidRestrictions": "Omezení pro Android",
"create": "Vytvořit omezení",
"defaultLimitDescription": "Toto je výchozí omezení limitu počtu zařízení, které se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
"defaultTypeDescription": "Toto je výchozí omezení typu zařízení, které se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
"defaultWhfbDescription": "Toto je výchozí konfigurace Windows Hello pro firmy, která se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
"deleteMessage": "Ovlivnění uživatelé se omezí dalším přiřazeným omezením s nejvyšší prioritou. Pokud nejsou přiřazená žádná další omezení, použije se výchozí omezení.",
"deleteTitle": "Opravdu chcete odstranit omezení {0}?",
"descriptionHint": "Krátký odstavec s popisem využití v organizaci nebo úrovně omezení charakterizované nastavením omezení",
"edit": "Upravit omezení",
"info": "Zařízení musí dodržovat omezení registrace s nejvyšší prioritou, která se přiřadila jeho uživateli. Pokud chcete změnit prioritu omezení zařízení, můžete omezení přetáhnout. Výchozí omezení mají pro všechny uživatele nejnižší prioritu a spravují registrace bez uživatelů. Dají se upravit, ale ne odstranit.",
"iosRestrictions": "Omezení pro iOS",
"mDM": "MDM",
"macRestrictions": "Omezení pro macOS",
"maxVersion": "Maximální verze",
"minVersion": "Minimální verze",
"nameHint": "Toto bude primární atribut viditelný při identifikaci sady omezení.",
"noAssignmentsStatusBar": "Přiřaďte omezení k aspoň jedné skupině. Klikněte na Vlastnosti.",
"notFound": "Omezení se nenašlo. Možná už se odstranilo.",
"personallyOwned": "Zařízení v osobním vlastnictví",
"restriction": "Omezení",
"restrictionLowerCase": "omezení",
"restrictionType": "Typ omezení",
"selectType": "Vyberte typ omezení.",
"selectValidation": "Vyberte prosím platformu.",
"typeHint": "Pokud chcete omezit vlastnosti zařízení, zvolte Omezení typu zařízení. Pokud chcete omezit počet zařízení na jednoho uživatele, zvolte Omezení limitu počtu zařízení.",
"typeRequired": "Typ omezení je povinný.",
"winPhoneRestrictions": "Omezení pro Windows Phone",
"windowsECv1Info": "Starší omezení registrace se nedají upravit ani se u nich nedá změnit priorita, dají se jenom odstranit.",
"windowsECv2Info": "Omezení registrace můžete upřednostnit přetažením. Níže si můžete zobrazit výchozí a předkonfigurovaná omezení. Všechna nová omezení registrace budou mít vyšší prioritu než výchozí a předkonfigurovaná omezení.",
"windowsRestrictions": "Omezení pro Windows",
"windowsRestrictionsPreview": "Omezení Windows založená na filtru (Preview)"
},
"InstallContextType": {
"device": "Zařízení",
"deviceContext": "Kontext zařízení",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Syntaxe pravidel",
"filters": "Filtry"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "Profil {0} je zahrnutý v jedné nebo více sadách zásad. Pokud profil {0} odstraníte, nebudete už jej moct přiřazovat prostřednictvím těchto sad zásad. Chcete jej přesto odstranit?",
"contentWithError": "{0} by mohla být zahrnutá v jedné nebo více sadách zásad. Pokud {0} odstraníte, nebudete už ji moct přiřazovat prostřednictvím těchto sad zásad. Chcete ji přesto odstranit?",
"header": "Opravdu chcete odstranit toto omezení?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Povolit uživateli měnit nastavení",
"tooltip": "Určuje, jestli uživatel může měnit nastavení."
},
"AllowWorkAccounts": {
"title": "Povolit pouze pracovní nebo školní účty",
"tooltip": " Když povolíte toto nastavení, uživatelé si nebudou moci do Outlooku přidat osobní e-mailový účet a účet úložiště. Pokud má uživatel v Outlooku přidaný osobní účet, zobrazí se mu výzva k jeho odebrání. Pokud uživatel osobní účet neodebere, nebude možné přidat pracovní nebo školní účet."
},
"BlockExternalImages": {
"title": "Blokovat externí obrázky",
"tooltip": "Pokud je povoleno blokování externích obrázků, aplikace zabrání stahovat obrázky hostované na internetu, které jsou vložené do textu zprávy. Když se tato možnost nastaví jako nenakonfigurovaná, výchozí nastavení aplikace je Vypnuto."
},
"ConfigureEmail": {
"title": "Konfigurovat nastavení e-mailového účtu"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Výchozí podpis aplikace označuje, jestli aplikace použije jako výchozí podpis při vytváření zprávy text Získat Outlook pro Android. Pokud se nastavení nakonfiguruje na Vypnuto, výchozí podpis se nebude používat. Uživatelé ale můžou přidat svůj vlastní.\r\n\r\nKdyž se možnost nastaví na Nenakonfigurováno, výchozí nastavení aplikace se nastaví na Zapnuto.",
"iOS": "Výchozí podpis aplikace označuje, jestli aplikace použije jako výchozí podpis při vytváření zprávy text Získat Outlook pro iOS. Pokud se nastavení nakonfiguruje na Vypnuto, výchozí podpis se nebude používat. Uživatelé ale můžou přidat svůj vlastní.\r\n\r\nKdyž se možnost nastaví na Nenakonfigurováno, výchozí nastavení aplikace se nastaví na Zapnuto."
},
"title": "Výchozí podpis aplikace"
},
"OfficeFeedReplies": {
"title": "Informační kanál Discover",
"tooltip": "Informační kanál Discover nabízí informace o nejčastěji používaných souborech Office. Standardně se tento kanál povoluje ve chvíli, kdy se pro daného uživatele povoluje Delve. Když se tato možnost nastaví jako nenakonfigurovaná, výchozí nastavení aplikace je Zapnuto."
},
"OrganizeMailByThread": {
"title": "Uspořádat poštu podle vlákna",
"tooltip": "Výchozím chováním v Outlooku je seskupit poštovní konverzace do zobrazení konverzace ve vláknech. Pokud se toto nastavení zakáže, Outlook zobrazí každou poštu samostatně a nebude ji seskupovat podle vlákna."
},
"PlayMyEmails": {
"title": "Přehrát moje e-maily",
"tooltip": "Funkce Přehrát moje e-maily není v aplikaci povolená ve výchozím nastavení, oprávněným uživatelům se ale nabízí prostřednictvím banneru v doručené poště. Když se tato funkce nastaví na hodnotu Vypnuto, nebude se v aplikaci oprávněným uživatelům nabízet. I tak si uživatelé můžou v aplikaci přehrávání e-mailů povolit ručně. Pokud je nastavená jako Není nakonfigurováno, je výchozí nastavení aplikace Zapnuto a funkce se bude oprávněným uživatelům nabízet."
},
"SuggestedReplies": {
"title": "Navrhované odpovědi",
"tooltip": "Když otevřete zprávu, Outlook pod ní může navrhnout odpovědi. Pokud vyberete nějakou navrhovanou odpověď, můžete ji před odesláním upravit."
},
"SyncCalendars": {
"title": "Synchronizovat kalendáře",
"tooltip": "Umožňuje nakonfigurovat, jestli uživatelé můžou synchronizovat svůj kalendář Outlooku s nativní aplikací a databází kalendáře."
},
"TextPredictions": {
"title": "Predikce textu",
"tooltip": "Aplikace Outlook může při psaní zpráv navrhovat slova a fráze. Když Outlook nabídne návrh, přijměte ho potáhnutím prstem. Když se nenakonfiguruje, bude ve výchozím nastavení aplikace nastavené na Zapnuté."
},
"DeviceLimit": {
"description": "Zadejte maximální počet zařízení, která uživatel může zaregistrovat.",
"header": "Omezení limitů počtů zařízení",
"info": "Definujte, kolik zařízení může každý uživatel zaregistrovat."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Musí být 1.0 nebo vyšší.",
"android": "Zadejte platné číslo verze. Příklady: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Zadejte platné číslo verze. Příklady: 5.0, 5.1.1",
"iOS": "Zadejte platné číslo verze. Příklady: 9.0, 10.0, 9.0.2",
"mac": "Zadejte platné číslo verze. Příklady: 10, 10.10, 10.10.1",
"min": "Minimum nemůže být menší než {0}.",
"minMax": "Minimální verze nemůže být větší než maximální verze.",
"windows": "Musí být 10.0 nebo vyšší. Pokud chcete povolit zařízení 8.1, nechejte pole prázdné.",
"windowsMobile": "Musí být 10.0 nebo vyšší. Pokud chcete povolit zařízení 8.1, nechejte pole prázdné."
},
"allPlatformsBlocked": "Všechny platformy zařízení jsou zablokované. Pokud chcete povolit konfiguraci platforem, povolte jejich registraci.",
"blockManufacturerPlaceHolder": "Název výrobce",
"blockManufacturersHeader": "Zablokovaní výrobci",
"cannotRestrict": "Omezení se nepodporují.",
"configurationDescription": "Zadejte omezení konfigurace platformy, která se musí splnit, aby se zařízení zaregistrovalo. Po registraci můžete zařízení omezovat pomocí zásad dodržování předpisů. Verze definujte jako hlavníverze.podverze.build. Omezení verzí platí jenom pro zařízení registrovaná na Portálu společnosti. Intune standardně klasifikuje zařízení jako v osobním vlastnictví. Pokud se zařízení mají klasifikovat jako ve vlastnictví firmy, je nutná další akce.",
"configurationDescriptionLabel": "Další informace o nastavení omezení registrace",
"configurations": "Konfigurovat platformy",
"deviceManufacturer": "Výrobce zařízení",
"header": "Omezení typů zařízení",
"info": "Definujte, které platformy, verze a typy správy se můžou registrovat.",
"manufacturer": "Výrobce",
"max": "Maximum",
"maxVersion": "Maximální verze",
"min": "Minimum",
"minVersion": "Minimální verze",
"newPlatforms": "Povolili jste nové platformy. Zvažte možnost aktualizovat konfigurace platforem.",
"personal": "V osobním vlastnictví",
"platform": "Platforma",
"platformDescription": "Registraci můžete povolit pro následující platformy. Blokujte jenom ty platformy, které nebudete podporovat. Povolené platformy se dají konfigurovat prostřednictvím dalších omezení registrace.",
"platformSettings": "Nastavení platformy",
"platforms": "Vyberte platformy.",
"platformsSelected": "Počet vybraných platforem: {0}",
"type": "Typ",
"versions": "verze",
"versionsRange": "Povolit rozsah min/max:",
"windowsTooltip": "Omezí registrace prostřednictvím správy mobilních zařízení. Neomezí instalaci agentů počítačů. Podporují se jen verze Windows 10 a Windows 11. Pokud chcete povolit Windows 8.1, nechejte verze prázdné."
},
"Priority": {
"saved": "Priority omezení se úspěšně uložily."
},
"Row": {
"announce": "Priorita: {0}, název: {1}, přiřazené: {2}"
},
"Table": {
"deployed": "Nasazeno",
"name": "Název",
"priority": "Priorita"
},
"Type": {
"limit": "Omezení limitu počtu zařízení",
"type": "Omezení typu zařízení"
},
"allUsers": "Všichni uživatelé",
"androidRestrictions": "Omezení pro Android",
"create": "Vytvořit omezení",
"defaultLimitDescription": "Toto je výchozí omezení limitu počtu zařízení, které se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
"defaultTypeDescription": "Toto je výchozí omezení typu zařízení, které se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
"defaultWhfbDescription": "Toto je výchozí konfigurace Windows Hello pro firmy, která se s nejnižší prioritou používá pro všechny uživatele bez ohledu na členství ve skupině.",
"deleteMessage": "Ovlivnění uživatelé se omezí dalším přiřazeným omezením s nejvyšší prioritou. Pokud nejsou přiřazená žádná další omezení, použije se výchozí omezení.",
"deleteTitle": "Opravdu chcete odstranit omezení {0}?",
"descriptionHint": "Krátký odstavec s popisem využití v organizaci nebo úrovně omezení charakterizované nastavením omezení",
"edit": "Upravit omezení",
"info": "Zařízení musí dodržovat omezení registrace s nejvyšší prioritou, která se přiřadila jeho uživateli. Pokud chcete změnit prioritu omezení zařízení, můžete omezení přetáhnout. Výchozí omezení mají pro všechny uživatele nejnižší prioritu a spravují registrace bez uživatelů. Dají se upravit, ale ne odstranit.",
"iosRestrictions": "Omezení pro iOS",
"mDM": "MDM",
"macRestrictions": "Omezení pro macOS",
"maxVersion": "Maximální verze",
"minVersion": "Minimální verze",
"nameHint": "Toto bude primární atribut viditelný při identifikaci sady omezení.",
"noAssignmentsStatusBar": "Přiřaďte omezení k aspoň jedné skupině. Klikněte na Vlastnosti.",
"notFound": "Omezení se nenašlo. Možná už se odstranilo.",
"personallyOwned": "Zařízení v osobním vlastnictví",
"restriction": "Omezení",
"restrictionLowerCase": "omezení",
"restrictionType": "Typ omezení",
"selectType": "Vyberte typ omezení.",
"selectValidation": "Vyberte prosím platformu.",
"typeHint": "Pokud chcete omezit vlastnosti zařízení, zvolte Omezení typu zařízení. Pokud chcete omezit počet zařízení na jednoho uživatele, zvolte Omezení limitu počtu zařízení.",
"typeRequired": "Typ omezení je povinný.",
"winPhoneRestrictions": "Omezení pro Windows Phone",
"windowsRestrictions": "Omezení pro Windows"
},
"ThemesEnabled": {
"title": "Motivy jsou povolené",
"tooltip": "Určete, jestli může uživatel používat vlastní vizuální motiv."
}
},
"Titles": {
"ChromeOs": {
"devices": "Zařízení s operačním systémem Chrome (Preview)"
@@ -12507,6 +12558,7 @@
"user": "Uživatel",
"userExecutionStatus": "Stav uživatele",
"wdacSupplementalPolicies": "Doplňkové zásady režimu S",
"win32CatalogUpdateApp": "Aktualizace katalogových aplikací pro Windows (Win32)",
"windows10DriverUpdate": "Aktualizace ovladačů pro systém Windows 10 a novější",
"windows10QualityUpdate": "Aktualizace kvality pro Windows 10 a novější",
"windows10UpdateRings": "Aktualizační okruhy pro Windows 10 a novější",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Partnerské konektory pro Windows 365",
"windowsDiagnosticData": "Data Windows",
"windowsEnterpriseCertificate": "Certifikát Windows Enterprise",
"windowsManagement": "Powershellové skripty",
"windowsManagement": "Skripty",
"windowsSideLoadingKeys": "Klíče pro instalaci bokem ve Windows",
"windowsSymantecCertificate": "Certifikát Windows DigiCert",
"windowsThreatReport": "Stav agenta hrozeb"
@@ -12551,6 +12603,10 @@
"postponed": "Odloženo",
"priority": "Vysoká priorita"
},
"AutoUpdateSupersededApps": {
"label": "Automaticky aktualizovat",
"sublabel": "Automaticky aktualizovat všechny nahrazené verze této aplikace"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Pozadí",
"displayText": "Stahování obsahu v {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Verwendung mindestens eines Großbuchstabens in der PIN erforderlich"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Benutzer das Ändern der Einstellung erlauben",
"tooltip": "Geben Sie an, ob der Benutzer die Einstellung ändern darf."
},
"AllowWorkAccounts": {
"title": "Nur Geschäfts-, Schul- oder Unikonten zulassen",
"tooltip": " Wenn diese Einstellung aktiviert ist, können Benutzer keine persönlichen E-Mail- und Speicherkonten in Outlook hinzufügen. Wenn der Benutzer ein persönliches Konto zu Outlook hinzugefügt hat, wird er aufgefordert, das persönliche Konto zu entfernen. Wird das persönliche Konto nicht entfernt, kann das Geschäfts, Schul- oder Unikonto nicht hinzugefügt werden."
},
"BlockExternalImages": {
"title": "Externe Bilder blockieren",
"tooltip": "Wenn die Option \"Externe Bilder blockieren\" aktiviert ist, verhindert die App das Herunterladen von im Internet gehosteten Bildern, die in den Nachrichtentext eingebettet sind. Wird diese Einstellung als nicht konfiguriert festgelegt, lautet die Standardeinstellung für die App \"Aus\"."
"AppRelationshipStatus": {
"Grid": {
"appVersion": "App-Version",
"dependencyName": "Abhängigkeitsname",
"lastModifiedTime": "Zeitpunkt der letzten Änderung",
"relationship": "Beziehung",
"replaced": "Ersetzt",
"searchPlaceholder": "Nach App-Name filtern",
"status": "Statusdetails",
"statusDetails": "Status",
"supersedenceName": "Ablösungsname"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Untergeordnete Abhängigkeit",
"indirectSupersedence": "Nicht direkt verknüpft",
"supersedenceAncestors": "Wir abgelöst",
"supersedenceDescendants": "Abgelöst"
},
"ConfigureEmail": {
"title": "E-Mail-Kontoeinstellungen konfigurieren"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Die Standard-App-Signatur gibt an, ob die App \"Outlook für Android herunterladen\" als standardmäßige Signatur beim Verfassen von Nachrichten verwendet wird. Wenn die Einstellung als deaktiviert konfiguriert ist, wird die standardmäßige Signatur nicht verwendet. Benutzer können jedoch ihre eigene Signatur hinzufügen.\r\n\r\nWenn sie als nicht konfiguriert festgelegt wird, ist die Standard-App-Einstellung aktiviert.",
"iOS": "Die Standard-App-Signatur gibt an, ob die App \"Outlook für iOS herunterladen\" als standardmäßige Signatur beim Verfassen von Nachrichten verwendet wird. Wenn die Einstellung als deaktiviert konfiguriert ist, wird die standardmäßige Signatur nicht verwendet. Benutzer können jedoch ihre eigene Signatur hinzufügen.\r\n\r\nWenn sie als nicht konfiguriert festgelegt wird, ist die Standard-App-Einstellung aktiviert."
},
"title": "Standard-App-Signatur"
},
"OfficeFeedReplies": {
"title": "Ermittlungsfeed",
"tooltip": "Im Ermittlungsfeed werden die Office-Dateien angezeigt, auf die am häufigsten zugegriffen wurde. Standardmäßig ist dieser Feed aktiviert, wenn Delve für den Benutzer aktiviert ist. Wurde die App nicht konfiguriert, lautet die Standard-App-Einstellung \"Ein\"."
},
"OrganizeMailByThread": {
"title": "E-Mails nach Thread organisieren",
"tooltip": "Das Standardverhalten in Outlook besteht darin, E-Mail-Nachrichten zu bündeln und als Unterhaltungsthread anzuzeigen. Wenn diese Einstellung deaktiviert ist, gruppiert Outlook die E-Mails nicht, sondern zeigt jede E-Mail einzeln an."
},
"PlayMyEmails": {
"title": "Meine E-Mails wiedergeben",
"tooltip": "Das Feature \"Meine E-Mails wiedergeben\" ist in der App standardmäßig nicht aktiviert, wird aber berechtigten Benutzern über ein Banner im Posteingang angepriesen. Wenn diese Option deaktiviert ist, werden berechtigte Benutzer in der App nicht auf dieses Feature aufmerksam gemacht. Benutzer können \"Meine E-Mails wiedergeben\" auch dann manuell über die App aktivieren, wenn dieses Feature deaktiviert ist. Bei der Einstellung \"Nicht konfiguriert\" ist die App-Einstellung standardmäßig aktiviert, und berechtigte Benutzer werden auf das Feature aufmerksam gemacht."
},
"SuggestedReplies": {
"title": "Vorgeschlagene Antworten",
"tooltip": "Wenn Sie eine Nachricht öffnen, schlägt Outlook unterhalb der Nachricht möglicherweise Antworten vor. Wenn Sie eine vorgeschlagene Antwort auswählen, können Sie diese vor dem Senden bearbeiten."
},
"SyncCalendars": {
"title": "Kalender synchronisieren",
"tooltip": "Hiermit wird konfiguriert, ob Benutzer ihren Outlook-Kalender mit der nativen Kalender-App und -datenbank synchronisieren können."
},
"TextPredictions": {
"title": "Textvorhersagen",
"tooltip": "Während Sie Nachrichten verfassen, kann Outlook Wörter und Ausdrücke vorschlagen. Wischen Sie, um einen von Outlook angebotenen Vorschlag zu akzeptieren. Wenn diese Einstellung auf \"Nicht konfiguriert\" festgelegt ist, wird die standardmäßige App-Einstellung auf EIN festgelegt."
"SupersededReplaced": {
"no": "Nein",
"yes": "Ja"
},
"ThemesEnabled": {
"title": "Designs aktiviert",
"tooltip": "Geben Sie an, ob der Benutzer ein benutzerdefiniertes visuelles Design verwenden darf."
}
},
"Tabs": {
"chart": "Diagramm",
"dependency": "Abhängigkeit",
"label": "Anzeigen: ",
"supersedence": "Ablösung",
"table": "Tabelle"
},
"dependencyGraphAriaLabel": "Diagramm zur App-Abhängigkeit",
"supersedenceGraphAriaLabel": "App-Ablösungsdiagramm"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Wählen Sie ein Ermittlungsskript aus.",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "PowerShell-Skript hinzufügen",
"customAttributeObjectName": "Benutzerdefiniertes Attribut",
"editPowershellScriptFlowSectionName": "PowerShell-Skript bearbeiten",
"enforceSignatureCheckInfoBalloonContent": "Das Skript muss von einem vertrauenswürdigen Herausgeber signiert sein. Standardmäßig wird keine Warnung oder Aufforderung angezeigt, und das Skript wird ungehindert ausgeführt.",
"enforceSignatureCheckInfoBalloonContent": "Das Skript muss von einem vertrauenswürdigen Herausgeber signiert sein. Dies ist die Standardeinstellung.",
"enforceSignatureCheckLabel": "Skriptsignaturprüfung erzwingen",
"executionFrequencyLabel": "Ausführungshäufigkeit",
"failedToSavePolicy": "Fehler beim Speichern von \"{0}\"",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Überprüfen + hinzufügen",
"runAs64BitInfoBalloonContent": "Das Skript wird in einem 64-Bit-PowerShell-Host für eine 64-Bit-Clientarchitektur ausgeführt. Standardmäßig wird das Skript in einem 32-Bit-PowerShell-Host ausgeführt.",
"runAs64BitLabel": "Skript in 64-Bit-PowerShell-Host ausführen",
"scriptContextInfoBalloonContent": "Das Skript wird mit den Anmeldeinformationen des Benutzers auf dem Clientcomputer ausgeführt. Standardmäßig wird das Skript im Systemkontext ausgeführt.",
"scriptContextInfoBalloonContent": "Das Skript wird mit den Benutzeranmeldeinformationen auf dem Clientcomputer ausgeführt. Standardmäßig wird das Skript im Benutzerkontext ausgeführt.",
"scriptContextLabel": "Dieses Skript mit den Anmeldeinformationen des angemeldeten Benutzers ausführen",
"scriptsettingsTabHeader": "Skripteinstellungen",
"settingsHeader": "Skript für Konfiguration auswählen",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Always-On-VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Grundlegende Integrität und Geräteintegrität überprüfen",
"androidPlayIntegrityVerdictBasicIntegrity": "Grundlegende Integrität prüfen",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Vertrauenswürdige Zertifikate können nicht mehr auf Geräten unter Android 11 oder höher installiert werden. Einzige Ausnahme: Samsung Knox-Geräte. Wenn Sie SCEP-Zertifikatprofile verwenden, müssen Sie weiterhin ein vertrauenswürdiges Zertifikatprofil erstellen, bereitstellen und dem SCEP-Zertifikatprofil zuordnen. Das vertrauenswürdige Stammzertifikat muss jedoch manuell an diese Geräte übermittelt werden.",
"androidTenAndAbovePasswordHeader": "Android 10 und höher",
"androidTenAndAbovePasswordHeaderDescription": "Diese Einstellungen funktionieren für Geräte mit Android 10 oder höher.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Hiermit erzwingen Sie die automatische Aktualisierung des Geräts mit Sicherheitspatches und Verbesserungen.",
"complianceUpdatesRequireAutomaticUpdatesName": "Automatische Updates von Microsoft anfordern",
"complianceWin10RequiredPasswordTypeDescription": "Mit dieser Einstellung wird der Typ des erforderlichen Kennworts/der PIN bestimmt.<br>\r\nGerätestandard (Kennwort, numerische PIN oder alphanumerische PIN erforderlich)<br>\r\nAlphanumerisch (Kennwort oder alphanumerische PIN erforderlich)<br>\r\nNumerisch (Kennwort oder numerische PIN erforderlich)<br>\r\nEmpfehlungen: erforderlicher Kennworttyp: alphanumerisch, Kennwortkomplexität: Ziffern und Kleinbuchstaben erforderlich",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 oder 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 und 11",
"complianceWindows11DeviceHealthAttestationHeader": "Nur Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Mindestversion von Microsoft Defender (z. B. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Mindestversion der Microsoft Defender-Antischadsoftware",
"complianceWindowsDeviceHealthAttestationHeader": "Evaluierungsregeln des Microsoft-Nachweisdiensts<br><br>Verwenden Sie diese Regeln, um zu bestätigen, dass für ein Gerät zum Startzeitpunkt Schutzmaßnahmen aktiviert sind. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Weitere Informationen zu diesen Regeln</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Auswertungseinstellungen des Microsoft-Nachweisdiensts<br><br>Verwenden Sie diese Einstellungen, um sicherzustellen, dass für ein Gerät zum Startzeitpunkt Schutzmaßnahmen aktiviert sind. <a href=\"https://learn.microsoft.com/de-de/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Weitere Informationen</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Wählen Sie die neueste Betriebssystemversion aus, die auf einem mobilen Gerät installiert sein kann. Die Betriebssystemversion ist als \"Hauptversion.Nebenversion.Build.Revision\" definiert.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Wählen Sie die älteste Betriebssystemversion aus, die auf einem mobilen Gerät installiert sein kann. Die Betriebssystemversion ist als \"Hauptversion.Nebenversion.Build.Revision\" definiert.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "Die Betriebssystemversion ist als \"Hauptversion.Nebenversion.Build.Revision\" definiert. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "Schutz: 95. Perzentil",
"basicDataProtectionGuidedString": "Grundlegender Datenschutz: Mit dieser Option wird sichergestellt, dass Benutzer zum Zugriff auf Geschäfts-, Schul- oder Unidaten eine PIN oder biometrische Daten verwenden müssen und Geschäfts-, Schul- oder Unidaten verschlüsselt werden. Darüber hinaus können Administratoren bei Bedarf selektive Datenlöschungen durchführen. Bei Android-Geräten gewährleistet der grundlegende Datenschutz außerdem die Kompatibilität des Geräts mit den Google-Diensten und aktiviert die Verify Apps-Überprüfung von Google.",
"basicIntegrity": "Basisintegrität",
"basicIntegrityAndCertifiedDevices": "Basisintegrität und zertifizierte Geräte",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Inaktivitätstimeout",
"bioPinInactiveTimeoutTooltip": "Biometrische Daten durch PIN überschreiben nach (Minuten)",
"block": "Blockieren",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Zeichenlimit für Ausschneiden und Kopieren für alle Apps",
"camera": "Kamera",
"checkInCountColumnTitle": "ANZAHL DER CHECK-INS",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Eingecheckt",
"checkedInAppNameColumnTitle": "APP",
"checkedInButNotSynced": "Eingecheckt. Bei der nächsten Synchronisierung erhält diese App „{0}“.",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">Ich kann die benötigte App nicht finden</a></p><p><a data-bind=\"fxclick: onClickLob\">Ich möchte eine eigene branchenspezifische App hinzufügen</a></p>",
"guidedTemplate2": "Wir werden Sie fragen, welche Schutzebene Sie für Ihre Benutzer bereitstellen möchten. Weitere Informationen finden Sie unter <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Datenschutzframework mithilfe von App-Schutzrichtlinien</a>.",
"guidediOSLabel": "iOS-App-Schutz",
"hardwareBackedKey": "Hardwaregestützter Schlüssel",
"healthCheck": "Integritätsprüfungen",
"helpAndSupport": "Hilfe und Support",
"hideOverrides": "Außerkraftsetzungen ausblenden",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Plattform",
"platformDropDownLabel": "Plattform",
"platformVersion": "Plattformversion",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Beheben Sie die Fehler in den folgenden Abschnitten.",
"pleaseSelectAtLeastOneFileError": "Wählen Sie mindestens eine Datei aus, bevor Sie den Vorgang fortsetzen.",
"policies": "Richtlinien",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Gerätesperre erforderlich",
"requireThreatScanOnApps": "Bedrohungsüberprüfung für Apps erzwingen",
"requiredField": "Dieses Feld darf nicht leer sein.",
"requiredSafetyNetEvaluationType": "Erforderlicher SafetyNet-Auswertungstyp",
"requiredSettings": "Erforderliche Einstellungen",
"resetPin": "PIN zurücksetzen",
"resourceManagement": "Ressourcenverwaltung",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Alle Apps",
"restrictWebContentOption2": "{0}: Weblinks in allen Apps zulassen",
"rootCertificate": "Stammzertifikat",
"safetyNetDeviceAttestation": "SafetyNet-Gerätenachweis",
"samsungKnoxAttestationRequired": "Samsung Knox-Gerätenachweis",
"saveAppsNotificationText": "Die ausgewählten Apps werden gespeichert.",
"saveChangesCommandText": "Speichern",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Filtermodus",
"assignmentToast": "Endbenutzerbenachrichtigungen",
"assignmentTypeTableHeader": "ZUWEISUNGSTYP",
"autoUpdate": "Automatische Aktualisierung",
"deadlineTimeColumnLabel": "Installationsstichtag",
"deliveryOptimizationPriorityHeader": "Priorität der Übermittlungsoptimierung",
"groupTableHeader": "Gruppe",
@@ -8514,6 +8496,10 @@
"showAll": "Alle Popupbenachrichtigungen anzeigen",
"showReboot": "Popupbenachrichtigungen für Computerneustarts anzeigen"
},
"AutoUpdateSupersededApps": {
"enabled": "Aktiviert",
"notConfigured": "Nicht konfiguriert"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Hintergrund",
"displayText": "Inhaltsdownload in {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "Für die Sitzungssteuerung \"Anmeldehäufigkeit jedes Mal\" muss \"alle Cloud-Apps\" oder speziell unterstützte Apps ausgewählt werden.",
"allDayCheckboxLabel": "Ganztägig",
"allDevicePlatforms": "Jedes Gerät",
"allGuestUserInfoContent": "Enthält Azure AD B2B-Gäste, aber keine SharePoint B2B-Gäste.",
"allGuestUserInfoContent": "Umfasst Microsoft Entra B2B-Gäste, aber keine SharePoint B2B-Gäste",
"allGuestUserLabel": "Alle Gast- und externen Benutzer",
"allRiskLevelsOption": "Alle Risikostufen",
"allTrustedLocationLabel": "Alle vertrauenswürdigen Standorte",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Erfahren Sie mehr über die Anforderung konformer Geräte.",
"controlsDeviceComplianceInfoBubble": "Das Gerät muss Intune-konform sein. Wenn das Gerät nicht kompatibel ist, wird der Benutzer aufgefordert, das Gerät unter Kompatibilität zu bringen.",
"controlsDomainJoinedAriaLabel": "Erfahren Sie mehr über die Anforderung hybrider Azure AD eingebundener Geräte.",
"controlsDomainJoinedInfoBubble": "Geräte müssen als Hybridgeräte in Azure AD eingebunden werden.",
"controlsDomainJoinedAriaLabel": "Erfahren Sie mehr über die Anforderung von in Microsoft Entra hybrid eingebundenen Geräten.",
"controlsDomainJoinedInfoBubble": "Geräte müssen in Microsoft Entra hybrid eingebunden sein.",
"controlsMamAriaLabel": "Erfahren Sie mehr über die Anforderung genehmigter Clientanwendungen.",
"controlsMamInfoBubble": "Das Gerät muss diese genehmigten Clientanwendungen verwenden.",
"controlsMfaInfoBubble": "Benutzer müssen zusätzliche Sicherheitsanforderungen erfüllen, z. B. Telefonanruf, SMS.",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Gerät als konform markiert",
"deviceStateCompliantInfoContent": "Mit Intune konforme Geräte werden von der Auswertung dieser Richtlinie ausgeschlossen. Wenn die Richtlinie z. B. den Zugriff blockiert, werden alle Geräte mit Ausnahme derjenigen blockiert, die mit Intune konform sind.",
"deviceStateConditionConfigureInfoContent": "Richtlinienkonfiguration basierend auf Gerätezustand",
"deviceStateConditionSelectorInfoContent": "Gibt an, ob das Gerät, von dem sich der Benutzer anmeldet, „Hybrid, in Azure AD eingebunden oder als kompatibel markiert ist.\n Dies ist veraltet. Verwenden Sie stattdessen {1}.",
"deviceStateConditionSelectorInfoContent": "Gibt an, ob das Gerät, von dem sich der Benutzer anmeldet, ein \"In Microsoft Entra hybrid eingebundenes Gerät\" oder \"als konform markiert\" ist.\n Dies ist veraltet. Verwenden Sie stattdessen \"{1}\".",
"deviceStateConditionSelectorLabel": "Gerätestatus (veraltet)",
"deviceStateDomainJoined": "In Azure AD eingebundenes Hybridgerät",
"deviceStateDomainJoinedInfoContent": "In Azure AD eingebundene Hybridgeräte werden von der Auswertung dieser Richtlinie ausgeschlossen. Wenn die Richtlinie z. B. den Zugriff blockiert, werden alle Geräte mit Ausnahme der in Azure AD eingebundenen Hybridgeräte blockiert.",
"deviceStateDomainJoined": "In Microsoft Entra hybrid eingebundenes Gerät",
"deviceStateDomainJoinedInfoContent": "In Microsoft Entra hybrid eingebundene Geräte werden von der Auswertung dieser Richtlinie ausgeschlossen. Wenn die Richtlinie beispielsweise den Zugriff blockiert, werden alle Geräte mit Ausnahme von in Microsoft Entra hybrid eingebundenen Geräten blockiert.",
"deviceStateDomainJoinedInfoLinkText": "Weitere Informationen.",
"deviceStateExcludeDescription": "Hiermit wird der Gerätezustand zum Ausschließen von Geräten von dieser Richtlinie ausgewählt.",
"deviceStateIncludeAndExcludeOneLabel": "{0}, ausschließen: {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Nur Exchange ActiveSync mit unterstützten Plattformen",
"excludeAllTrustedLocationSelectorText": "Alle vertrauenswürdigen Standorte",
"featureRequiresP2": "Für dieses Feature ist eine Azure AD Premium 2-Lizenz erforderlich.",
"featureRequiresP2": "Für dieses Feature ist eine Microsoft Entra ID P2-Lizenz erforderlich.",
"friday": "Freitag",
"grantControls": "Steuerelemente zur Rechteerteilung",
"gridNetworkTrusted": "Vertrauenswürdig",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Ausgewählte Private Link-Instanzen",
"lowRisk": "Niedrig",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "Zum Verwalten von Richtlinien für bedingten Zugriff benötigt Ihre Organisation Azure AD Premium P1 oder P2.",
"managePoliciesLicenseText": "Zum Verwalten von Richtlinien für bedingten Zugriff benötigt Ihre Organisation Microsoft Entra P1 oder P2.",
"manageSecurityDefaultsAriaLabel": "Einstellungen für Sicherheitsstandards verwalten",
"markAsTrustedCheckboxInfoBalloonContent": "Durch die Anmeldung von einem vertrauenswürdigen Standort aus wird das Benutzeranmelderisiko verringert. Markieren Sie diesen Standort nur dann als vertrauenswürdig, wenn die eingegebenen IP-Bereiche bekannt sind und in Ihrer Organisation als unbedenklich eingestuft werden.",
"markAsTrustedCheckboxLabel": "Als vertrauenswürdigen Standort markieren",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Länder/Regionen",
"namedLocationTypeLabel": "Standort definieren über:",
"namedLocationUpsellBanner": "Diese Ansicht ist veraltet. Wechseln Sie zur neuen und verbesserten Ansicht \"Benannte Standorte\".",
"namedLocationsHelpDescription": "Benannte Standorte werden von Azure AD-Sicherheitsberichten verwendet, um die Anzahl von falsch positiven Ergebnissen und von Azure AD-Richtlinien für bedingten Zugriff zu verringern.\n[Weitere Informationen][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Benannte Standorte werden von Microsoft Entra ID-Sicherheitsberichten verwendet, um falsch positive Ergebnisse und Microsoft Entra-Richtlinien für bedingten Zugriff zu reduzieren.\n[Weitere Informationen] [1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Neuen IP-Adressbereich hinzufügen (Beispiel: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "Sie müssen mindestens ein Land/eine Region auswählen.",
"namedNetworkDeleteCommand": "Löschen",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Neuer benannter Standort",
"namedNetworksConditionHelpDescription": "Hiermit steuern Sie den Benutzerzugriff basierend auf dem physischen Standort.\n[Weitere Informationen][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "\"{0}\" und \"{1}\" ausgeschlossen",
"namedNetworksHelpDescription": "Benannte Standorte werden von Azure AD-Sicherheitsberichten verwendet, um die Anzahl von falsch positiven Ergebnissen und von Azure AD-Richtlinien für bedingten Zugriff zu verringern.\n[Weitere Informationen][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Benannte Standorte werden von Microsoft Entra ID-Sicherheitsberichten verwendet, um die Anzahl von falsch positiven Ergebnissen und von Microsoft Entra-Richtlinien für bedingten Zugriff zu verringern.\n[Weitere Informationen][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} eingeschlossen",
"namedNetworksNone": "Keine benannten Standorte gefunden.",
"namedNetworksTitle": "Standorte konfigurieren",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Nur globale Administratoren können diese Richtlinie speichern.",
"or": "{0} ODER {1}",
"pickerDoneCommand": "Fertig",
"policiesBladeAdPremiumUpsellBannerText": "Erstellen Sie Ihre eigenen Richtlinien, und bearbeiten Sie spezifische Bedingungen wie Cloud-Apps, Anmelderisiken und Geräteplattformen mit Azure AD Premium.",
"policiesBladeAdPremiumUpsellBannerText": "Erstellen Sie Ihre eigenen Richtlinien, und bearbeiten Sie spezifische Bedingungen wie Cloud-Apps, Anmelderisiken und Geräteplattformen mit Microsoft Entra ID Premium.",
"policiesBladeTitle": "Richtlinien",
"policiesBladeTitleWithAppName": "Richtlinien: {0}",
"policiesDisabledBannerText": "Das Erstellen und Bearbeiten von Richtlinien ist für Anwendungen mit einem Attribut für die Anmeldung per Link untersagt.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Der Standort (ermittelt über den IP-Adressbereich), von dem aus sich der Benutzer anmeldet",
"policyConditionLocationPreview": "Standorte (Vorschau)",
"policyConditionSigninRisk": "Anmelderisiko",
"policyConditionSigninRiskDescription": "Die Wahrscheinlichkeit, dass die Anmeldung von einer anderen Person als dem Benutzer stammt. Die Risikostufe kann \"Hoch\", \"Mittel\" oder \"Niedrig\" lauten. Erfordert eine Azure AD Premium 2-Lizenz.",
"policyConditionSigninRiskDescription": "Die Wahrscheinlichkeit, dass die Anmeldung von einer anderen Person als dem Benutzer stammt. Die Risikostufe kann \"Hoch\", \"Mittel\" oder \"Niedrig\" lauten. Erfordert eine Microsoft Entra ID P2-Lizenz.",
"policyConditionUserRisk": "Benutzerrisiko",
"policyConditionUserRiskDescription": "Hiermit konfigurieren Sie die Benutzerrisikostufen, die für die Erzwingung der Richtlinie erforderlich sind.",
"policyConditioniClientApp": "Client-Apps",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Blockieren Sie den Zugriff, oder wählen Sie zusätzliche Anforderungen aus, die für eine Zugriffserteilung erfüllt sein müssen.",
"policyControlMfaChallengeDisplayedName": "Multi-Faktor-Authentifizierung erfordern",
"policyControlRequireCompliantAppDisplayedName": "App-Schutzrichtlinie erforderlich",
"policyControlRequireDomainJoinedDisplayedName": "In Azure AD eingebundenes Hybridgerät erforderlich",
"policyControlRequireDomainJoinedDisplayedName": "In Microsoft Entra hybrid eingebundenes Gerät erforderlich",
"policyControlRequireMamDisplayedName": "Genehmigte Client-App erforderlich",
"policyControlRequiredPasswordChangeDisplayedName": "Kennwortänderung anfordern",
"policyControlSelectAuthStrength": "Authentifizierungsstärke erforderlich",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "\"{0}\" wurde erfolgreich aktualisiert. Die Richtlinie wird in wenigen Minuten aktiviert, wenn Sie \"Richtlinie aktivieren\" auf \"Ein\" festgelegt haben.",
"policyUpdateSuccessTitle": "\"{0}\" wurde erfolgreich aktualisiert.",
"primaryCol": "Primär",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "Modus \"Nur Bericht\": Richtlinien werden bei der Anmeldung ausgewertet und protokolliert, beeinträchtigen die Benutzer aber nicht.",
"requireAllControlsText": "Alle ausgewählten Kontrollen anfordern",
"requireCompliantDevice": "Erfordert kompatibles Gerät",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Erfordert in allen Fällen oder nur von außerhalb des Unternehmensnetzwerks eine Multi-Faktor-Authentifizierung für sensible Anwendungen.",
"upsellAppsTitle": "Sichere Anwendungen",
"upsellBannerText": "Holen Sie sich die kostenlose Premium-Testversion, um dieses Feature zu verwenden.",
"upsellDataDescription": "Für den Zugriff auf Unternehmensressourcen ist die Markierung des Geräts als konform oder eine Einbindung als Hybridgerät in Azure AD erforderlich.",
"upsellDataDescription": "Für den Zugriff auf Unternehmensressourcen ist die Markierung des Geräts als konform oder in Microsoft Entra hybrid eingebundenes Gerät“ erforderlich.",
"upsellDataTitle": "Sichere Daten",
"upsellDescription": "Der bedingte Zugriff bietet genau den Grad an Kontrolle und Schutz, den Sie zur Absicherung Ihrer Unternehmensdaten benötigen. Gleichzeitig wird gewährleistet, dass Ihre Benutzer bestmöglich von einem beliebigen Gerät aus ihre Arbeit erledigen können. Beispielsweise können Sie den Zugriff von außerhalb des Unternehmensnetzwerks einschränken oder den Zugriff auf Geräte beschränken, die den Kompatibilitätsrichtlinien entsprechen.",
"upsellRiskDescription": "Erfordert eine Multi-Faktor-Authentifizierung für Risikoereignisse, die vom Microsoft Machine Learning-System erkannt werden.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "\"{0}\" wurde erfolgreich aktualisiert.",
"vpnCertUpdateSuccessTitle": "\"{0}\" wurde erfolgreich aktualisiert.",
"vpnFeatureInfo": "Klicken Sie hier, um weitere Informationen zur VPN-Konnektivität und zum bedingten Zugriff zu erhalten.",
"vpnFeatureWarning": "Sobald ein VPN-Zertifikat im Azure-Portal erstellt wird, wird es von Azure AD sofort zum Ausstellen kurzlebiger Zertifikate für den VPN-Client verwendet. Das VPN-Zertifikat muss unbedingt sofort auf dem VPN-Server bereitgestellt werden, um Probleme bei der Validierung von Anmeldeinformationen des VPN-Clients zu vermeiden.",
"vpnFeatureWarning": "Sobald ein VPN-Zertifikat im Portal erstellt wird, wird es von Microsoft Entra ID sofort zum Ausstellen kurzlebiger Zertifikate für den VPN-Client verwendet. Das VPN-Zertifikat muss unbedingt sofort auf dem VPN-Server bereitgestellt werden, um Probleme bei der Validierung von Anmeldeinformationen des VPN-Clients zu vermeiden.",
"vpnMenuText": "VPN-Konnektivität",
"vpncertDropdownDefaultOption": "Dauer",
"vpncertDropdownInfoBalloonContent": "Wählen Sie die Dauer für das zu erstellende Zertifikat aus.",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Benutzerdefinierte Intune-Rolle",
"customRole": "Benutzerdefinierte Rolle"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "\"{0}\" ist in mindestens einem Richtliniensatz enthalten. Wenn Sie \"{0}\" löschen, können Sie das Profil nicht mehr über diese Richtliniensätze zuweisen. Dennoch löschen?",
"contentWithError": "\"{0}\" ist möglicherweise in mindestens einem Richtliniensatz enthalten. Wenn Sie \"{0}\" löschen, können Sie sie nicht mehr über diese Richtliniensätze zuweisen. Dennoch löschen?",
"header": "Möchten Sie diese Einschränkung löschen?"
},
"DeviceLimit": {
"description": "Legt die maximale Anzahl von Geräten fest, die ein Benutzer registrieren kann.",
"header": "Einschränkungen zum Gerätelimit",
"info": "Definieren Sie, wie viele Geräte jeder Benutzer registrieren darf."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "1.0 oder höher erforderlich.",
"android": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 5.0, 5.1.1",
"iOS": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 9.0, 10.0, 9.0.2",
"mac": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 10, 10.10, 10.10.1",
"min": "Der Mindestwert darf nicht unter {0} liegen.",
"minMax": "Die Mindestversion darf nicht höher als die maximale Version sein.",
"windows": "Version 10.0 oder höher erforderlich. Lassen Sie die Einstellung leer, um 8.1-Geräte zuzulassen.",
"windowsMobile": "Version 10.0 oder höher erforderlich. Lassen Sie die Einstellung leer, um 8.1-Geräte zuzulassen."
},
"allPlatformsBlocked": "Alle Geräteplattformen sind blockiert. Lassen Sie die Plattformregistrierung zu, um die Plattformkonfiguration zu aktivieren.",
"blockManufacturerPlaceHolder": "Herstellername",
"blockManufacturersHeader": "Blockierte Hersteller",
"cannotRestrict": "Einschränkung nicht unterstützt",
"configurationDescription": "Legt die Einschränkungen in Bezug auf Plattformkonfigurationen fest, die für ein Gerät erfüllt werden müssen, damit das Gerät registriert werden kann. Verwenden Sie Konformitätsrichtlinien, um Geräte nach der Registrierung einzuschränken. Definieren Sie Versionen als \"Hauptversion.Nebenversion.Build\". Versionseinschränkungen gelten nur für Geräte, die beim Unternehmensportal registriert sind. Intune stuft Geräte standardmäßig als privat ein. Um Geräte als unternehmenseigen zu klassifizieren, sind zusätzliche Aktionen erforderlich.",
"configurationDescriptionLabel": "Weitere Informationen zum Festlegen von Registrierungseinschränkungen",
"configurations": "Plattformen konfigurieren",
"deviceManufacturer": "Gerätehersteller",
"header": "Einschränkungen zum Gerätetyp",
"info": "Definieren Sie, welche Plattformen, Versionen und Verwaltungstypen eine Registrierung durchführen können.",
"manufacturer": "Hersteller",
"max": "Max.",
"maxVersion": "Höchste zulässige Version",
"min": "Min",
"minVersion": "Mindestversion",
"newPlatforms": "Es sind neue zugelassene Plattformen verfügbar. Erwägen Sie eine Aktualisierung der Plattformkonfigurationen.",
"personal": "Persönliches Eigentum",
"platform": "Plattform",
"platformDescription": "Sie können die Registrierung der folgenden Plattformen zulassen. Nur blockierte Plattformen werden nicht unterstützt. Zugelassen Plattformen können mit zusätzlichen Registrierungsbeschränkungen konfiguriert werden.",
"platformSettings": "Plattformeinstellungen",
"platforms": "Plattformen auswählen",
"platformsSelected": "{0} Plattformen ausgewählt",
"type": "Typ",
"versions": "Versionen",
"versionsRange": "Zulässiger Bereich für Mindestversion/maximale Version:",
"windowsTooltip": "Schränkt die Registrierung über mobile Geräteverwaltung ein. Schränkt die Installation des PC-Agents nicht ein. Nur Windows 10- und Windows 11-Versionen werden unterstützt. Lassen Sie die Versionen leer, um Windows 8.1 zuzulassen."
},
"Priority": {
"saved": "Die Einschränkungsprioritäten wurden erfolgreich gespeichert."
},
"Row": {
"announce": "Priorität: {0}, Name: {1}, zugewiesen: {2}"
},
"Table": {
"deployed": "Bereitgestellt",
"name": "Name",
"priority": "Priorität"
},
"Type": {
"limit": "Gerätelimiteinschränkung",
"type": "Gerätetypeinschränkung"
},
"allUsers": "Alle Benutzer",
"androidRestrictions": "Android-Einschränkungen",
"create": "Einschränkung erstellen",
"defaultLimitDescription": "Dies ist die Standardeinschränkung des Gerätelimits, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
"defaultTypeDescription": "Dies ist die Standardeinschränkung des Gerätetyps, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
"defaultWhfbDescription": "Dies ist die Windows Hello for Business-Standardkonfiguration, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
"deleteMessage": "Für betroffene Benutzer gilt die Einschränkung der nächsthöheren Priorität. Wenn keine weitere Einschränkung zugewiesen ist, wird die Standardeinschränkung angewendet.",
"deleteTitle": "Möchten Sie die Einschränkung \"{0}\" löschen?",
"descriptionHint": "Kurzer Absatz zur Beschreibung der Unternehmensnutzung oder der Einschränkungsebene, die durch die Einstellungen der Einschränkung definiert wird.",
"edit": "Einschränkung bearbeiten",
"info": "Ein Gerät muss die Registrierungsbeschränkungen mit der höchsten Priorität erfüllen, die dem Benutzer zugeordnet wurden. Sie können eine Gerätebeschränkung ziehen, um ihre Priorität zu ändern. Standardbeschränkungen weisen für alle Benutzer die niedrigste Priorität auf und dienen zur Steuerung benutzerloser Registrierungen. Standardbeschränkungen können bearbeitet, aber nicht gelöscht werden.",
"iosRestrictions": "iOS-Einschränkungen",
"mDM": "MDM",
"macRestrictions": "macOS-Einschränkungen",
"maxVersion": "Maximalversion",
"minVersion": "Mindestversion",
"nameHint": "Dies ist das primäre Attribut, das zur Identifikation des Einschränkungssatzes angezeigt wird.",
"noAssignmentsStatusBar": "Weisen Sie die Einschränkung mindestens einer Gruppe zu. Klicken Sie auf \"Eigenschaften\".",
"notFound": "Die Einschränkung wurde nicht gefunden. Möglicherweise wurde es bereits gelöscht.",
"personallyOwned": "Geräte im Privatbesitz",
"restriction": "Einschränkung",
"restrictionLowerCase": "Einschränkung",
"restrictionType": "Restriction Type",
"selectType": "Einschränkungstyp auswählen",
"selectValidation": "Wählen Sie eine Plattform aus.",
"typeHint": "Wählen Sie \"Gerätetypeinschränkung\" aus, um Geräteeigenschaften einzuschränken. Wählen Sie \"Gerätelimiteinschränkung\" aus, um die Anzahl von Geräten pro Benutzer einzuschränken.",
"typeRequired": "Der Einschränkungstyp ist erforderlich.",
"winPhoneRestrictions": "Windows Phone-Einschränkungen",
"windowsECv1Info": "Ältere Registrierungseinschränkungen können nicht bearbeitet oder neu priorisiert werden. Sie können nur gelöscht werden.",
"windowsECv2Info": "Sie können Registrierungseinschränkungen priorisieren, indem Sie sie ziehen und ablegen. Zeigen Sie die Standard- und vorkonfigurierten Einschränkungen unten an. Alle neuen Registrierungseinschränkungen haben eine höhere Priorität als Standard- und vorkonfigurierte Einschränkungen.",
"windowsRestrictions": "Windows-Einschränkungen",
"windowsRestrictionsPreview": "Filterbasierte Windows-Einschränkungen (Vorschau)"
},
"InstallContextType": {
"device": "Gerät",
"deviceContext": "Gerätekontext",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Regelsyntax",
"filters": "Filter"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "\"{0}\" ist in mindestens einem Richtliniensatz enthalten. Wenn Sie \"{0}\" löschen, können Sie das Profil nicht mehr über diese Richtliniensätze zuweisen. Dennoch löschen?",
"contentWithError": "\"{0}\" ist möglicherweise in mindestens einem Richtliniensatz enthalten. Wenn Sie \"{0}\" löschen, können Sie sie nicht mehr über diese Richtliniensätze zuweisen. Dennoch löschen?",
"header": "Möchten Sie diese Einschränkung löschen?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Benutzer das Ändern der Einstellung erlauben",
"tooltip": "Geben Sie an, ob der Benutzer die Einstellung ändern darf."
},
"AllowWorkAccounts": {
"title": "Nur Geschäfts-, Schul- oder Unikonten zulassen",
"tooltip": " Wenn diese Einstellung aktiviert ist, können Benutzer keine persönlichen E-Mail- und Speicherkonten in Outlook hinzufügen. Wenn der Benutzer ein persönliches Konto zu Outlook hinzugefügt hat, wird er aufgefordert, das persönliche Konto zu entfernen. Wird das persönliche Konto nicht entfernt, kann das Geschäfts, Schul- oder Unikonto nicht hinzugefügt werden."
},
"BlockExternalImages": {
"title": "Externe Bilder blockieren",
"tooltip": "Wenn die Option \"Externe Bilder blockieren\" aktiviert ist, verhindert die App das Herunterladen von im Internet gehosteten Bildern, die in den Nachrichtentext eingebettet sind. Wird diese Einstellung als nicht konfiguriert festgelegt, lautet die Standardeinstellung für die App \"Aus\"."
},
"ConfigureEmail": {
"title": "E-Mail-Kontoeinstellungen konfigurieren"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Die Standard-App-Signatur gibt an, ob die App \"Outlook für Android herunterladen\" als standardmäßige Signatur beim Verfassen von Nachrichten verwendet wird. Wenn die Einstellung als deaktiviert konfiguriert ist, wird die standardmäßige Signatur nicht verwendet. Benutzer können jedoch ihre eigene Signatur hinzufügen.\r\n\r\nWenn sie als nicht konfiguriert festgelegt wird, ist die Standard-App-Einstellung aktiviert.",
"iOS": "Die Standard-App-Signatur gibt an, ob die App \"Outlook für iOS herunterladen\" als standardmäßige Signatur beim Verfassen von Nachrichten verwendet wird. Wenn die Einstellung als deaktiviert konfiguriert ist, wird die standardmäßige Signatur nicht verwendet. Benutzer können jedoch ihre eigene Signatur hinzufügen.\r\n\r\nWenn sie als nicht konfiguriert festgelegt wird, ist die Standard-App-Einstellung aktiviert."
},
"title": "Standard-App-Signatur"
},
"OfficeFeedReplies": {
"title": "Ermittlungsfeed",
"tooltip": "Im Ermittlungsfeed werden die Office-Dateien angezeigt, auf die am häufigsten zugegriffen wurde. Standardmäßig ist dieser Feed aktiviert, wenn Delve für den Benutzer aktiviert ist. Wurde die App nicht konfiguriert, lautet die Standard-App-Einstellung \"Ein\"."
},
"OrganizeMailByThread": {
"title": "E-Mails nach Thread organisieren",
"tooltip": "Das Standardverhalten in Outlook besteht darin, E-Mail-Nachrichten zu bündeln und als Unterhaltungsthread anzuzeigen. Wenn diese Einstellung deaktiviert ist, gruppiert Outlook die E-Mails nicht, sondern zeigt jede E-Mail einzeln an."
},
"PlayMyEmails": {
"title": "Meine E-Mails wiedergeben",
"tooltip": "Das Feature \"Meine E-Mails wiedergeben\" ist in der App standardmäßig nicht aktiviert, wird aber berechtigten Benutzern über ein Banner im Posteingang angepriesen. Wenn diese Option deaktiviert ist, werden berechtigte Benutzer in der App nicht auf dieses Feature aufmerksam gemacht. Benutzer können \"Meine E-Mails wiedergeben\" auch dann manuell über die App aktivieren, wenn dieses Feature deaktiviert ist. Bei der Einstellung \"Nicht konfiguriert\" ist die App-Einstellung standardmäßig aktiviert, und berechtigte Benutzer werden auf das Feature aufmerksam gemacht."
},
"SuggestedReplies": {
"title": "Vorgeschlagene Antworten",
"tooltip": "Wenn Sie eine Nachricht öffnen, schlägt Outlook unterhalb der Nachricht möglicherweise Antworten vor. Wenn Sie eine vorgeschlagene Antwort auswählen, können Sie diese vor dem Senden bearbeiten."
},
"SyncCalendars": {
"title": "Kalender synchronisieren",
"tooltip": "Hiermit wird konfiguriert, ob Benutzer ihren Outlook-Kalender mit der nativen Kalender-App und -datenbank synchronisieren können."
},
"TextPredictions": {
"title": "Textvorhersagen",
"tooltip": "Während Sie Nachrichten verfassen, kann Outlook Wörter und Ausdrücke vorschlagen. Wischen Sie, um einen von Outlook angebotenen Vorschlag zu akzeptieren. Wenn diese Einstellung auf \"Nicht konfiguriert\" festgelegt ist, wird die standardmäßige App-Einstellung auf EIN festgelegt."
},
"DeviceLimit": {
"description": "Legt die maximale Anzahl von Geräten fest, die ein Benutzer registrieren kann.",
"header": "Einschränkungen zum Gerätelimit",
"info": "Definieren Sie, wie viele Geräte jeder Benutzer registrieren darf."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "1.0 oder höher erforderlich.",
"android": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 5.0, 5.1.1",
"iOS": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 9.0, 10.0, 9.0.2",
"mac": "Geben Sie eine gültige Versionsnummer ein. Beispiele: 10, 10.10, 10.10.1",
"min": "Der Mindestwert darf nicht unter {0} liegen.",
"minMax": "Die Mindestversion darf nicht höher als die maximale Version sein.",
"windows": "Version 10.0 oder höher erforderlich. Lassen Sie die Einstellung leer, um 8.1-Geräte zuzulassen.",
"windowsMobile": "Version 10.0 oder höher erforderlich. Lassen Sie die Einstellung leer, um 8.1-Geräte zuzulassen."
},
"allPlatformsBlocked": "Alle Geräteplattformen sind blockiert. Lassen Sie die Plattformregistrierung zu, um die Plattformkonfiguration zu aktivieren.",
"blockManufacturerPlaceHolder": "Herstellername",
"blockManufacturersHeader": "Blockierte Hersteller",
"cannotRestrict": "Einschränkung nicht unterstützt",
"configurationDescription": "Legt die Einschränkungen in Bezug auf Plattformkonfigurationen fest, die für ein Gerät erfüllt werden müssen, damit das Gerät registriert werden kann. Verwenden Sie Konformitätsrichtlinien, um Geräte nach der Registrierung einzuschränken. Definieren Sie Versionen als \"Hauptversion.Nebenversion.Build\". Versionseinschränkungen gelten nur für Geräte, die beim Unternehmensportal registriert sind. Intune stuft Geräte standardmäßig als privat ein. Um Geräte als unternehmenseigen zu klassifizieren, sind zusätzliche Aktionen erforderlich.",
"configurationDescriptionLabel": "Weitere Informationen zum Festlegen von Registrierungseinschränkungen",
"configurations": "Plattformen konfigurieren",
"deviceManufacturer": "Gerätehersteller",
"header": "Einschränkungen zum Gerätetyp",
"info": "Definieren Sie, welche Plattformen, Versionen und Verwaltungstypen eine Registrierung durchführen können.",
"manufacturer": "Hersteller",
"max": "Max.",
"maxVersion": "Höchste zulässige Version",
"min": "Min",
"minVersion": "Mindestversion",
"newPlatforms": "Es sind neue zugelassene Plattformen verfügbar. Erwägen Sie eine Aktualisierung der Plattformkonfigurationen.",
"personal": "Persönliches Eigentum",
"platform": "Plattform",
"platformDescription": "Sie können die Registrierung der folgenden Plattformen zulassen. Nur blockierte Plattformen werden nicht unterstützt. Zugelassen Plattformen können mit zusätzlichen Registrierungsbeschränkungen konfiguriert werden.",
"platformSettings": "Plattformeinstellungen",
"platforms": "Plattformen auswählen",
"platformsSelected": "{0} Plattformen ausgewählt",
"type": "Typ",
"versions": "Versionen",
"versionsRange": "Zulässiger Bereich für Mindestversion/maximale Version:",
"windowsTooltip": "Schränkt die Registrierung über mobile Geräteverwaltung ein. Schränkt die Installation des PC-Agents nicht ein. Nur Windows 10- und Windows 11-Versionen werden unterstützt. Lassen Sie die Versionen leer, um Windows 8.1 zuzulassen."
},
"Priority": {
"saved": "Die Einschränkungsprioritäten wurden erfolgreich gespeichert."
},
"Row": {
"announce": "Priorität: {0}, Name: {1}, zugewiesen: {2}"
},
"Table": {
"deployed": "Bereitgestellt",
"name": "Name",
"priority": "Priorität"
},
"Type": {
"limit": "Gerätelimiteinschränkung",
"type": "Gerätetypeinschränkung"
},
"allUsers": "Alle Benutzer",
"androidRestrictions": "Android-Einschränkungen",
"create": "Einschränkung erstellen",
"defaultLimitDescription": "Dies ist die Standardeinschränkung des Gerätelimits, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
"defaultTypeDescription": "Dies ist die Standardeinschränkung des Gerätetyps, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
"defaultWhfbDescription": "Dies ist die Windows Hello for Business-Standardkonfiguration, die mit der niedrigsten Priorität unabhängig von der Gruppenmitgliedschaft auf alle Benutzer angewendet wird.",
"deleteMessage": "Für betroffene Benutzer gilt die Einschränkung der nächsthöheren Priorität. Wenn keine weitere Einschränkung zugewiesen ist, wird die Standardeinschränkung angewendet.",
"deleteTitle": "Möchten Sie die Einschränkung \"{0}\" löschen?",
"descriptionHint": "Kurzer Absatz zur Beschreibung der Unternehmensnutzung oder der Einschränkungsebene, die durch die Einstellungen der Einschränkung definiert wird.",
"edit": "Einschränkung bearbeiten",
"info": "Ein Gerät muss die Registrierungsbeschränkungen mit der höchsten Priorität erfüllen, die dem Benutzer zugeordnet wurden. Sie können eine Gerätebeschränkung ziehen, um ihre Priorität zu ändern. Standardbeschränkungen weisen für alle Benutzer die niedrigste Priorität auf und dienen zur Steuerung benutzerloser Registrierungen. Standardbeschränkungen können bearbeitet, aber nicht gelöscht werden.",
"iosRestrictions": "iOS-Einschränkungen",
"mDM": "MDM",
"macRestrictions": "MacOS-Einschränkungen",
"maxVersion": "Maximalversion",
"minVersion": "Mindestversion",
"nameHint": "Dies ist das primäre Attribut, das zur Identifikation des Einschränkungssatzes angezeigt wird.",
"noAssignmentsStatusBar": "Weisen Sie die Einschränkung mindestens einer Gruppe zu. Klicken Sie auf \"Eigenschaften\".",
"notFound": "Die Einschränkung wurde nicht gefunden. Möglicherweise wurde es bereits gelöscht.",
"personallyOwned": "Geräte im Privatbesitz",
"restriction": "Einschränkung",
"restrictionLowerCase": "Einschränkung",
"restrictionType": "Restriction Type",
"selectType": "Einschränkungstyp auswählen",
"selectValidation": "Wählen Sie eine Plattform aus.",
"typeHint": "Wählen Sie \"Gerätetypeinschränkung\" aus, um Geräteeigenschaften einzuschränken. Wählen Sie \"Gerätelimiteinschränkung\" aus, um die Anzahl von Geräten pro Benutzer einzuschränken.",
"typeRequired": "Der Einschränkungstyp ist erforderlich.",
"winPhoneRestrictions": "Windows Phone-Einschränkungen",
"windowsRestrictions": "Windows-Einschränkungen"
},
"ThemesEnabled": {
"title": "Designs aktiviert",
"tooltip": "Geben Sie an, ob der Benutzer ein benutzerdefiniertes visuelles Design verwenden darf."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome-Betriebssystemgeräte (Vorschau)"
@@ -12507,6 +12558,7 @@
"user": "Benutzer",
"userExecutionStatus": "Benutzerstatus",
"wdacSupplementalPolicies": "Zusätzliche S Modus-Richtlinien",
"win32CatalogUpdateApp": "Updates für Windows-Katalog-Apps (Win32)",
"windows10DriverUpdate": "Treiberupdates 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",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Windows 365-Partnerconnectors",
"windowsDiagnosticData": "Windows-Daten",
"windowsEnterpriseCertificate": "Windows Enterprise-Zertifikat",
"windowsManagement": "PowerShell-Skripts",
"windowsManagement": "Skripts",
"windowsSideLoadingKeys": "Windows-Schlüssel zum Querladen",
"windowsSymantecCertificate": "Windows-DigiCert-Zertifikat",
"windowsThreatReport": "Status des Bedrohungs-Agents"
@@ -12551,6 +12603,10 @@
"postponed": "Zurückgestellt",
"priority": "Hohe Priorität"
},
"AutoUpdateSupersededApps": {
"label": "Automatische Aktualisierung",
"sublabel": "Automatisch ein Upgrade aller abgelösten Versionen dieser Anwendung ausführen"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Hintergrund",
"displayText": "Inhaltsdownload in {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Allow user to change setting",
"tooltip": "Specify if the user is allowed to change the setting."
},
"AllowWorkAccounts": {
"title": "Allow only work or school accounts",
"tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
},
"BlockExternalImages": {
"title": "Block external images",
"tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "App Version",
"dependencyName": "Dependency name",
"lastModifiedTime": "Last modified time",
"relationship": "Relationship",
"replaced": "Replaced",
"searchPlaceholder": "Filter by app name",
"status": "Status details",
"statusDetails": "Status",
"supersedenceName": "Supersedence name"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Child dependency",
"indirectSupersedence": "Not directly related",
"supersedenceAncestors": "Superseding",
"supersedenceDescendants": "Superseded"
},
"ConfigureEmail": {
"title": "Configure email account settings"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
"iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
},
"title": "Default app signature"
},
"OfficeFeedReplies": {
"title": "Discover Feed",
"tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
},
"OrganizeMailByThread": {
"title": "Organize mail by thread",
"tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
},
"PlayMyEmails": {
"title": "Play My Emails",
"tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
},
"SuggestedReplies": {
"title": "Suggested replies",
"tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
},
"SyncCalendars": {
"title": "Sync Calendars",
"tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
},
"TextPredictions": {
"title": "Text Predictions",
"tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
"SupersededReplaced": {
"no": "No",
"yes": "Yes"
},
"ThemesEnabled": {
"title": "Themes enabled",
"tooltip": "Specify if the user is allowed to use a custom visual theme."
}
},
"Tabs": {
"chart": "Chart",
"dependency": "Dependency",
"label": "View: ",
"supersedence": "Supersedence",
"table": "Table"
},
"dependencyGraphAriaLabel": "App dependency chart",
"supersedenceGraphAriaLabel": "App supersedence chart"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Please select a discovery script",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Always-on VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Check basic integrity & device integrity",
"androidPlayIntegrityVerdictBasicIntegrity": "Check basic integrity",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Trusted certificates can no longer install on devices that run Android 11 or later, except for Samsung Knox devices. If you use SCEP certificate profiles, you must continue to create and deploy a trusted certificate profile and associate it with the SCEP certificate profile, but you must manually deliver the trusted root certificate to those devices.",
"androidTenAndAbovePasswordHeader": "Android 10 and later",
"androidTenAndAbovePasswordHeaderDescription": "These settings work for devices running Android 10 or later.",
@@ -2769,8 +2750,8 @@
"blockTouchIDAndFaceIDUnlockName": "Block Touch ID and Face ID unlock",
"blockUSBConnectionDescription": "Specifies whether the USB connection on the device is enabled. USB charging will not be affected by this setting. This setting isn't supported on Windows desktop platforms.",
"blockUSBConnectionName": "USB connection",
"blockUnifiedPasswordForWorkProfileDescription": "Block using one lock if you want users to use two different passwords for their lock screen and work profile. Using one screen lock is convenient to the user, but makes the work profile accessible to anyone who can unlock the device. Applies to devices running Android 9.0 Pie and later.",
"blockUnifiedPasswordForWorkProfileName": "One lock for work profile and device",
"blockUnifiedPasswordForWorkProfileDescription": "Block if you want users to use two different passwords for their lock screen and work profile. Applies to devices running Android 9.0 Pie and later.",
"blockUnifiedPasswordForWorkProfileName": "One lock for device and work profile",
"blockUnmanagedDocumentsInManagedAppsName": "Block viewing non-corporate documents in corporate apps",
"blockUntrustedTLSCertificatesDescription": "Block untrusted Transport Layer Security (TLS) certificates.",
"blockUntrustedTLSCertificatesName": "Block untrusted TLS certificates",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Force the device to automatically update for security patches and improvements.",
"complianceUpdatesRequireAutomaticUpdatesName": "Require automatic updates from Microsoft",
"complianceWin10RequiredPasswordTypeDescription": "This setting determines the type of Password/PIN required.<br>\nDevice Default (Password, Numeric PIN, or Alphanumeric PIN required)<br>\nAlphanumeric (Password or Alphanumberic PIN required)<br>\nNumeric (Password or Numeric PIN required)<br>\nRecommendations: Required password type: Alphanumeric, Password complexity: Require digits and lowercase letters",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 or 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 and 11",
"complianceWindows11DeviceHealthAttestationHeader": "Windows 11 only",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Minimum version of Microsoft Defender (e.g. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Microsoft Defender Antimalware minimum version",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service evaluation rules<br><br>Use these rules to confirm that a device has protective measures enabled at boot time. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Learn more about these rules</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service evaluation settings<br><br>Use these settings to confirm that a device has protective measures enabled at boot time. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Learn more</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have. The operating system version is defined as major.minor.build.revision.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have. The operating system version is defined as major.minor.build.revision.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "The operating system version is defined as major.minor.build.revision. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95th percentile protection",
"basicDataProtectionGuidedString": "Basic data protection ensure users are required to utilize PIN or biometrics to access work or school account data, encrypts work or school account data, and enables administrators to perform selective data wipes, if necessary. For Android devices, basic data protection also ensures the compatibility of the device with Google's services and enables Google's Verify Apps scan.",
"basicIntegrity": "Basic integrity",
"basicIntegrityAndCertifiedDevices": "Basic integrity and certified devices",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Inactivity timeout",
"bioPinInactiveTimeoutTooltip": "Override with PIN instead of biometric after (minutes)",
"block": "Block",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Cut and copy character limit for any app",
"camera": "Camera",
"checkInCountColumnTitle": "CHECK-IN COUNT",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Checked in",
"checkedInAppNameColumnTitle": "APP",
"checkedInButNotSynced": "Checked in. On next sync, this app will receive {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">I can't find the app I need</a></p><p><a data-bind=\"fxclick: onClickLob\">I need to add my own line-of-business app</a></p>",
"guidedTemplate2": "Well ask you which protection level you would like to deploy to your users. For more information, see <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Data protection framework with app protection policies. </a>",
"guidediOSLabel": "iOS app protection",
"hardwareBackedKey": "Hardware-backed key",
"healthCheck": "Health Checks",
"helpAndSupport": "Help and support",
"hideOverrides": "Hide Overrides",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Platform",
"platformDropDownLabel": "Platform",
"platformVersion": "Platform version",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Please fix the errors in the sections below!",
"pleaseSelectAtLeastOneFileError": "Please select at least one file before continuing",
"policies": "Policies",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Require device lock",
"requireThreatScanOnApps": "Require threat scan on apps",
"requiredField": "This field can't be empty",
"requiredSafetyNetEvaluationType": "Required SafetyNet evaluation type",
"requiredSettings": "Required settings",
"resetPin": "Reset PIN",
"resourceManagement": "Resource management",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Any app",
"restrictWebContentOption2": "{0}: Allow web links in any app",
"rootCertificate": "Root Certificate",
"safetyNetDeviceAttestation": "SafetyNet device attestation",
"samsungKnoxAttestationRequired": "Samsung Knox device attestation",
"saveAppsNotificationText": "Saving selected apps",
"saveChangesCommandText": "Save",
@@ -8346,7 +8327,7 @@
"administrativeTemplates": "Administrative Templates",
"androidCompliancePolicy": "Android compliance policy",
"aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
"applicationControl": "Application Control",
"applicationControl": "App Control for Business",
"attackSurfaceReductionRules": "Attack Surface Reduction Rules",
"bitlocker": "BitLocker",
"custom": "Custom",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Filter mode",
"assignmentToast": "End user notifications",
"assignmentTypeTableHeader": "ASSIGNMENT TYPE",
"autoUpdate": "Auto update",
"deadlineTimeColumnLabel": "Installation deadline",
"deliveryOptimizationPriorityHeader": "Delivery optimization priority",
"groupTableHeader": "Group",
@@ -8514,6 +8496,10 @@
"showAll": "Show all toast notifications",
"showReboot": "Show toast notifications for computer restarts"
},
"AutoUpdateSupersededApps": {
"enabled": "Enabled",
"notConfigured": "Not configured"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Content download in {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allRiskLevelsOption": "All risk levels",
"allTrustedLocationLabel": "All trusted locations",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra ID security reports to reduce false positives and Microsoft Entra Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country/region",
"namedNetworkDeleteCommand": "Delete",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "New named location",
"namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Named locations are used by Microsoft Entra ID security reports to reduce false positives and Microsoft Entra Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
"or": "{0} OR {1} ",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
"policyConditionLocationPreview": "Locations (Preview)",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataDescription": "Require device to be marked as compliant or Microsoft Entra hybrid joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Custom Intune role",
"customRole": "Custom Role"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"header": "Are you sure you want to delete this restriction?"
},
"DeviceLimit": {
"description": "Specify the maximum number of devices a user can enroll.",
"header": "Device limit restrictions",
"info": "Define how many devices each user can enroll."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Must be 1.0 or greater.",
"android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
"iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
"mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
"min": "Minimum cannot be lower than {0}",
"minMax": "Minimum version cannot be greater than maximum version.",
"windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
"windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
},
"allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
"blockManufacturerPlaceHolder": "Manufacturer name",
"blockManufacturersHeader": "Blocked manufacturers",
"cannotRestrict": "Restriction not supported",
"configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
"configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
"configurations": "Configure platforms",
"deviceManufacturer": "Device manufacturer",
"header": "Device type restrictions",
"info": "Define which platforms, versions, and management types can enroll.",
"manufacturer": "Manufacturer",
"max": "Max",
"maxVersion": "Maximum version",
"min": "Min",
"minVersion": "Minimum version",
"newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
"personal": "Personally owned",
"platform": "Platform",
"platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
"platformSettings": "Platform settings",
"platforms": "Select platforms",
"platformsSelected": "{0} platforms selected",
"type": "Type",
"versions": "versions",
"versionsRange": "Allow min/max range:",
"windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
},
"Priority": {
"saved": "Restriction Priorities were successfully saved."
},
"Row": {
"announce": "Priority: {0}, Name: {1}, Assigned: {2}"
},
"Table": {
"deployed": "Deployed",
"name": "Name",
"priority": "Priority"
},
"Type": {
"limit": "Device limit restriction",
"type": "Device type restriction"
},
"allUsers": "All Users",
"androidRestrictions": "Android restrictions",
"create": "Create restriction",
"defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
"defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
"defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
"deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
"deleteTitle": "Are you sure you want to delete {0} restriction?",
"descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
"edit": "Edit restriction",
"info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
"iosRestrictions": "iOS restrictions",
"mDM": "MDM",
"macRestrictions": "macOS restrictions",
"maxVersion": "Max Version",
"minVersion": "Min Version",
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
"notFound": "Restriction not found. It may have already been deleted.",
"personallyOwned": "Personally owned devices",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction type",
"selectType": "Select restriction type",
"selectValidation": "Please select a platform",
"typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
"typeRequired": "Restriction type is required.",
"winPhoneRestrictions": "Windows Phone restrictions",
"windowsECv1Info": "Older enrollment restrictions cant be edited or reprioritized, only deleted.",
"windowsECv2Info": "You can prioritize enrollment restrictions by dragging and dropping them. View default and preconfigured restrictions below. All new enrollment restrictions will have a higher priority than default and preconfigured restrictions.",
"windowsRestrictions": "Windows restrictions",
"windowsRestrictionsPreview": "Filter-based Windows restrictions (preview)"
},
"InstallContextType": {
"device": "Device",
"deviceContext": "Device context",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Rule syntax",
"filters": "Filters"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"header": "Are you sure you want to delete this restriction?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Allow user to change setting",
"tooltip": "Specify if the user is allowed to change the setting."
},
"AllowWorkAccounts": {
"title": "Allow only work or school accounts",
"tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
},
"BlockExternalImages": {
"title": "Block external images",
"tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
},
"ConfigureEmail": {
"title": "Configure email account settings"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
"iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
},
"title": "Default app signature"
},
"OfficeFeedReplies": {
"title": "Discover Feed",
"tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
},
"OrganizeMailByThread": {
"title": "Organize mail by thread",
"tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
},
"PlayMyEmails": {
"title": "Play My Emails",
"tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
},
"SuggestedReplies": {
"title": "Suggested replies",
"tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
},
"SyncCalendars": {
"title": "Sync Calendars",
"tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
},
"TextPredictions": {
"title": "Text Predictions",
"tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
},
"DeviceLimit": {
"description": "Specify the maximum number of devices a user can enroll.",
"header": "Device limit restrictions",
"info": "Define how many devices each user can enroll."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Must be 1.0 or greater.",
"android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
"iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
"mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
"min": "Minimum cannot be lower than {0}",
"minMax": "Minimum version cannot be greater than maximum version.",
"windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
"windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
},
"allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
"blockManufacturerPlaceHolder": "Manufacturer name",
"blockManufacturersHeader": "Blocked manufacturers",
"cannotRestrict": "Restriction not supported",
"configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
"configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
"configurations": "Configure platforms",
"deviceManufacturer": "Device manufacturer",
"header": "Device type restrictions",
"info": "Define which platforms, versions, and management types can enroll.",
"manufacturer": "Manufacturer",
"max": "Max",
"maxVersion": "Maximum version",
"min": "Min",
"minVersion": "Minimum version",
"newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
"personal": "Personally owned",
"platform": "Platform",
"platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
"platformSettings": "Platform settings",
"platforms": "Select platforms",
"platformsSelected": "{0} platforms selected",
"type": "Type",
"versions": "versions",
"versionsRange": "Allow min/max range:",
"windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
},
"Priority": {
"saved": "Restriction Priorities were successfully saved."
},
"Row": {
"announce": "Priority: {0}, Name: {1}, Assigned: {2}"
},
"Table": {
"deployed": "Deployed",
"name": "Name",
"priority": "Priority"
},
"Type": {
"limit": "Device limit restriction",
"type": "Device type restriction"
},
"allUsers": "All Users",
"androidRestrictions": "Android restrictions",
"create": "Create restriction",
"defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
"defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
"defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
"deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
"deleteTitle": "Are you sure you want to delete {0} restriction?",
"descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
"edit": "Edit restriction",
"info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
"iosRestrictions": "iOS restrictions",
"mDM": "MDM",
"macRestrictions": "MacOS restrictions",
"maxVersion": "Max Version",
"minVersion": "Min Version",
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
"notFound": "Restriction not found. It may have already been deleted.",
"personallyOwned": "Personally owned devices",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction type",
"selectType": "Select restriction type",
"selectValidation": "Please select a platform",
"typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
"typeRequired": "Restriction type is required.",
"winPhoneRestrictions": "Windows Phone restrictions",
"windowsRestrictions": "Windows restrictions"
},
"ThemesEnabled": {
"title": "Themes enabled",
"tooltip": "Specify if the user is allowed to use a custom visual theme."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS devices (preview)"
@@ -12392,7 +12443,7 @@
"advancedThreatProtection": "Microsoft Defender for Endpoint",
"allApps": "All apps",
"allDevices": "All devices",
"androidFotaDeployments": "Android FOTA deployments (preview)",
"androidFotaDeployments": "Android FOTA deployments",
"appBundles": "App Bundles",
"appCategories": "App categories",
"appConfigPolicies": "App configuration policies",
@@ -12453,7 +12504,7 @@
"featureFlighting": "Feature flighting",
"featureUpdateDeployments": "Feature updates for Windows 10 and later",
"flighting": "Flighting",
"fotaUpdate": "Firmware over-the-air update (preview)",
"fotaUpdate": "Firmware over-the-air update",
"groupPolicy": "Administrative Templates",
"groupPolicyAnalytics": "Group policy analytics",
"helpSupport": "Help and support",
@@ -12507,6 +12558,7 @@
"user": "User",
"userExecutionStatus": "User status",
"wdacSupplementalPolicies": "S mode supplemental policies",
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
"windows10UpdateRings": "Update rings for Windows 10 and later",
@@ -12551,6 +12603,10 @@
"postponed": "Postponed",
"priority": "High Priority"
},
"AutoUpdateSupersededApps": {
"label": "Auto update",
"sublabel": "Automatically upgrade any superseded versions of this application"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Content download in {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Requerir el uso de al menos una letra mayúscula en el PIN"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Permitir que el usuario cambie la configuración",
"tooltip": "Especifique si el usuario tiene permiso para cambiar la configuración."
},
"AllowWorkAccounts": {
"title": "Permitir solo cuentas profesionales o educativas",
"tooltip": " Si se habilita esta opción, los usuarios no pueden agregar cuentas de almacenamiento y de correo electrónico personales a Outlook. Si un usuario tiene una cuenta personal agregada a Outlook, se le pide que la quite y, si no la quita, no se puede agregar la cuenta profesional o educativa."
},
"BlockExternalImages": {
"title": "Bloquear imágenes externas",
"tooltip": "Cuando el bloqueo de imágenes externas está habilitado, la aplicación impide la descarga de imágenes hospedadas en Internet que están insertadas en el cuerpo del mensaje. Si se establece como no configurado, la aplicación establece el valor Desactivado de forma predeterminada."
"AppRelationshipStatus": {
"Grid": {
"appVersion": "Versión de la aplicación",
"dependencyName": "Nombre de la dependencia",
"lastModifiedTime": "Hora de la última modificación",
"relationship": "Relación",
"replaced": "Reemplazado",
"searchPlaceholder": "Filtrar por nombre de aplicación",
"status": "Detalles del estado",
"statusDetails": "Estado",
"supersedenceName": "Nombre de sustitución"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Dependencia secundaria",
"indirectSupersedence": "No relacionado directamente",
"supersedenceAncestors": "Sustituir",
"supersedenceDescendants": "Se reemplazó"
},
"ConfigureEmail": {
"title": "Configurar cuentas de correo electrónico"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "La firma de aplicación predeterminada indica si la aplicación usará \"Obtener Outlook para Android\" como firma predeterminada durante la composición del mensaje. Si la configuración está desactivada, no se usará la firma predeterminada. Sin embargo, los usuarios pueden agregar su propia firma.\r\n\r\nCuando se establece como Sin configurar, la configuración de aplicación predeterminada se establece en Activado.",
"iOS": "La firma de aplicación predeterminada indica si la aplicación usará \"Obtener Outlook para iOS\" como firma predeterminada durante la composición del mensaje. Si la configuración está desactivada, no se usará la firma predeterminada. Sin embargo, los usuarios pueden agregar su propia firma.\r\n\r\nCuando se establece como Sin configurar, la configuración de aplicación predeterminada se establece en Activado."
},
"title": "Firma de aplicación predeterminada"
},
"OfficeFeedReplies": {
"title": "Fuente de detección",
"tooltip": "Fuente de detección destaca los archivos de Office a los que accede con más frecuencia. Esta fuente se habilita de forma predeterminada si Delve está habilitado para el usuario. Si está sin configurar, la configuración de la aplicación predeterminada se establece como Activa."
},
"OrganizeMailByThread": {
"title": "Organizar el correo por hilos",
"tooltip": "El comportamiento predeterminado de Outlook es agrupar las conversaciones de correo electrónico en una vista de conversaciones por hilos. Si esta opción está deshabilitada, Outlook muestra cada correo electrónico por separado, sin agrupar los mensajes por hilos."
},
"PlayMyEmails": {
"title": "Reproducir mis correos electrónicos",
"tooltip": "La característica Reproducir mis correos electrónicos no está habilitada de forma predeterminada en la aplicación, pero se promueve a los usuarios aptos mediante un banner en la bandeja de entrada. Si se establece en Desactivada, no se promociona a los usuarios aptos en la aplicación. Los usuarios pueden optar por habilitar manualmente Reproducir mis correos electrónicos desde la propia aplicación, aunque la característica esté establecida como Desactivada. Si se establece como Sin configurar, la configuración predeterminada de la aplicación es Activada y la característica se promoverá a los usuarios aptos."
},
"SuggestedReplies": {
"title": "Respuestas sugeridas",
"tooltip": "Al abrir un mensaje, Outlook puede sugerir respuestas debajo de este. Si selecciona una de las respuestas sugeridas, puede editarla antes de enviarla."
},
"SyncCalendars": {
"title": "Sincronizar calendarios",
"tooltip": "Configure si los usuarios pueden sincronizar su calendario de Outlook con la base de datos y la aplicación de calendario nativo."
},
"TextPredictions": {
"title": "Predicciones de texto",
"tooltip": "Outlook puede sugerir palabras y frases al redactar mensajes. Cuando Outlook ofrezca una sugerencia, deslice rápidamente el dedo para aceptarla. Cuando se define como no configurada, la configuración de la aplicación predeterminada se establece en Activada."
"SupersededReplaced": {
"no": "No",
"yes": "Sí"
},
"ThemesEnabled": {
"title": "Temas habilitados",
"tooltip": "Especifique si el usuario puede usar un tema visual personalizado."
}
},
"Tabs": {
"chart": "Gráfico",
"dependency": "Dependencia",
"label": "Ver: ",
"supersedence": "Sustitución",
"table": "Tabla"
},
"dependencyGraphAriaLabel": "Gráfico de dependencias de aplicación",
"supersedenceGraphAriaLabel": "Gráfico de sustitución de aplicaciones"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Seleccione un script de detección.",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "Agregar script de PowerShell",
"customAttributeObjectName": "Atributo personalizado",
"editPowershellScriptFlowSectionName": "Editar el script de PowerShell",
"enforceSignatureCheckInfoBalloonContent": "El script debe estar firmado por un editor de confianza. De forma predeterminada, no se muestra ninguna advertencia o aviso y el script se ejecuta sin bloqueos.",
"enforceSignatureCheckInfoBalloonContent": "El script debe estar firmado por un editor de confianza. Este es el valor predeterminado.",
"enforceSignatureCheckLabel": "Exigir comprobación de firma del script",
"executionFrequencyLabel": "Frecuencia de ejecución",
"failedToSavePolicy": "No se pudo guardar {0}",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Revisar + agregar ",
"runAs64BitInfoBalloonContent": "El script se ejecutará en un host de PowerShell de 64 bits para una arquitectura de cliente de 64 bits. De forma predeterminada, el script se ejecutará en un host de PowerShell de 32 bits.",
"runAs64BitLabel": "Ejecutar script en host de PowerShell de 64 bits",
"scriptContextInfoBalloonContent": "El script se ejecuta con las credenciales de los usuarios en el equipo cliente. De manera predeterminada, el script se ejecuta en el contexto de sistema.",
"scriptContextInfoBalloonContent": "El script se ejecuta con las credenciales de los usuarios en el equipo cliente. De forma predeterminada, el script se ejecuta en el contexto del usuario.",
"scriptContextLabel": "Ejecutar este script con las credenciales de inicio de sesión",
"scriptsettingsTabHeader": "Configuración de script",
"settingsHeader": "Seleccionar un script para configurarlo",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "VPN siempre activa",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Comprobación de la integridad básica y del dispositivo",
"androidPlayIntegrityVerdictBasicIntegrity": "Comprobar integridad básica",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Ya no se pueden instalar certificados de confianza en los dispositivos que ejecuten Android 11 o posterior, a excepción de los dispositivos Samsung KNOX. Si usa perfiles de certificado SCEP, debe continuar con la creación e implementación de un perfil de certificado de confianza y asociarlo al perfil de certificado SCEP, pero debe entregar manualmente el certificado raíz de confianza a estos dispositivos.",
"androidTenAndAbovePasswordHeader": "Android 10 y versiones posteriores",
"androidTenAndAbovePasswordHeaderDescription": "Esta configuración funciona con los dispositivos que ejecutan Android 10 o versiones posteriores.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Exige al dispositivo actualizar automáticamente las mejoras y las revisiones de seguridad.",
"complianceUpdatesRequireAutomaticUpdatesName": "Requerir actualizaciones automáticas de Microsoft",
"complianceWin10RequiredPasswordTypeDescription": "Esta configuración determina el tipo de contraseña o PIN requeridos.<br>\r\nValor predeterminado del dispositivo (se requiere una contraseña, un PIN numérico o un PIN alfanumérico).<br>\r\nAlfanumérico (se requiere una contraseña o un PIN alfanumérico).<br>\r\nNumérico (se requiere una contraseña o un PIN numérico).<br>\r\nRecomendaciones: tipo de contraseña requerido: Alfanumérico. Complejidad de la contraseña: Requerir el uso de dígitos y letras minúsculas",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 o 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 y 11",
"complianceWindows11DeviceHealthAttestationHeader": "Solo Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Versión mínima de Microsoft Defender (p. ej. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Versión mínima de Antimalware de Microsoft Defender",
"complianceWindowsDeviceHealthAttestationHeader": "Las reglas de evaluación del servicio de atestación de Microsoft<br><br>Use estas reglas para confirmar que un dispositivo tiene medidas de protección habilitadas durante el arranque. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Obtener más información sobre estas reglas</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Configuración de evaluación del servicio de atestación de Microsoft<br><br>Use estas opciones de configuración para confirmar que un dispositivo tiene medidas de protección habilitadas durante el arranque. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Más información</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Seleccione la versión más reciente del sistema operativo que puede tener un dispositivo móvil. La versión del sistema operativo se define como principal.secundaria.compilación.revisión.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Seleccione la versión más antigua del sistema operativo que puede tener un dispositivo móvil. La versión del sistema operativo se define como principal.secundaria.compilación.revisión.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "La versión del sistema operativo se define como principal.secundaria.compilación.revisión. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "Protección de percentil 95",
"basicDataProtectionGuidedString": "Protección de datos básica: garantiza que a los usuarios se les pida un PIN o información biométrica para acceder a los datos de las cuentas profesionales o educativas, cifra los datos de estas cuentas y permite a los administradores realizar borrados de datos selectivos, si es necesario. En dispositivos Android, la protección de datos básica también garantiza la compatibilidad del dispositivo con los servicios de Google y permite el examen de comprobación de aplicaciones de Google.",
"basicIntegrity": "Integridad básica",
"basicIntegrityAndCertifiedDevices": "Integridad básica y dispositivos certificados",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Tiempo de expiración de inactividad",
"bioPinInactiveTimeoutTooltip": "Reemplazar por PIN en lugar de información biométrica tras (minutos)",
"block": "Bloquear",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Límite de caracteres para cortar y copiar en cualquier aplicación",
"camera": "Cámara",
"checkInCountColumnTitle": "N.º DE SINCRONIZACIONES",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Protegido",
"checkedInAppNameColumnTitle": "APLICACIÓN",
"checkedInButNotSynced": "Insertada en el repositorio. En la próxima sincronización, esta aplicación recibirá {0}.",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">No encuentro la aplicación que necesito</a></p><p><a data-bind=\"fxclick: onClickLob\">Necesito agregar mi propia aplicación de línea de negocio</a></p>",
"guidedTemplate2": "Se le preguntará qué nivel de protección quiere implementar para los usuarios. Para obtener más información, consulte <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Marco de protección de datos mediante directivas de protección de aplicaciones</a>.",
"guidediOSLabel": "Protección de aplicaciones iOS",
"hardwareBackedKey": "Clave respaldada por hardware",
"healthCheck": "Comprobaciones de estado",
"helpAndSupport": "Ayuda y soporte técnico",
"hideOverrides": "Ocultar invalidaciones",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Plataforma",
"platformDropDownLabel": "Plataforma",
"platformVersion": "Versión de la plataforma",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Corrija los errores en las secciones siguientes.",
"pleaseSelectAtLeastOneFileError": "Seleccione al menos un archivo antes de continuar.",
"policies": "Directivas",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Requerir bloqueo del dispositivo",
"requireThreatScanOnApps": "Requerir examen de amenazas en las aplicaciones",
"requiredField": "Este campo no puede estar vacío.",
"requiredSafetyNetEvaluationType": "Tipo de evaluación de SafetyNet que se requiere",
"requiredSettings": "Valores obligatorios",
"resetPin": "Restablecer PIN",
"resourceManagement": "Administración de recursos",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Cualquier aplicación",
"restrictWebContentOption2": "{0}: Permitir vínculos web en cualquier aplicación",
"rootCertificate": "Certificado raíz",
"safetyNetDeviceAttestation": "Atestación de dispositivo SafetyNet",
"samsungKnoxAttestationRequired": "Certificación de dispositivos Samsung Knox",
"saveAppsNotificationText": "Guardando las aplicaciones seleccionadas",
"saveChangesCommandText": "Guardar",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Modo de filtro",
"assignmentToast": "Notificaciones del usuario final",
"assignmentTypeTableHeader": "TIPO DE ASIGNACIÓN",
"autoUpdate": "Actualización automática",
"deadlineTimeColumnLabel": "Fecha límite de instalación",
"deliveryOptimizationPriorityHeader": "Prioridad de optimización de distribución",
"groupTableHeader": "Grupo",
@@ -8514,6 +8496,10 @@
"showAll": "Mostrar todas las notificaciones del sistema",
"showReboot": "Mostrar notificaciones del sistema para reinicios de equipo"
},
"AutoUpdateSupersededApps": {
"enabled": "Habilitado",
"notConfigured": "Sin configurar"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Segundo plano",
"displayText": "Descarga de contenido en {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "El control de sesión \"Frecuencia de inicio de sesión cada vez\" requiere que se seleccionen \"todas las aplicaciones en la nube\" o aplicaciones admitidas específicamente.",
"allDayCheckboxLabel": "Todo el día",
"allDevicePlatforms": "Cualquier dispositivo",
"allGuestUserInfoContent": "Incluye los clientes de Azure AD B2B, pero no los de SharePoint B2B.",
"allGuestUserInfoContent": "Incluye invitados B2B de Microsoft Entra, pero no invitados de SharePoint B2B",
"allGuestUserLabel": "Todos los usuarios externos e invitados",
"allRiskLevelsOption": "Todos los niveles de riesgo",
"allTrustedLocationLabel": "Todas las ubicaciones de confianza",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Obtenga más información sobre cómo solicitar dispositivos compatibles.",
"controlsDeviceComplianceInfoBubble": "El dispositivo debe ser compatible con Intune. Si el dispositivo no es compatible, se pedirá al usuario que lo haga compatible.",
"controlsDomainJoinedAriaLabel": "Obtenga más información sobre cómo solicitar dispositivos unidos a Azure AD híbridos.",
"controlsDomainJoinedInfoBubble": "Los dispositivos deben estar unidos a Azure AD híbrido.",
"controlsDomainJoinedAriaLabel": "Obtenga más información sobre cómo requerir dispositivos híbridos unidos a Microsoft Entra.",
"controlsDomainJoinedInfoBubble": "Los dispositivos deben estar unidos a Microsoft Entra híbrido.",
"controlsMamAriaLabel": "Obtenga más información sobre cómo solicitar aplicaciones cliente aprobadas.",
"controlsMamInfoBubble": "El dispositivo debe usar estas aplicaciones cliente aprobadas.",
"controlsMfaInfoBubble": "El usuario debe completar los requisitos de seguridad adicionales, como llamada de teléfono o mensaje de texto.",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Dispositivo marcado como compatible",
"deviceStateCompliantInfoContent": "Los dispositivos compatibles con Intune se excluirán de la evaluación de esta directiva, de modo que si, por ejemplo, la directiva bloquea el acceso, bloqueará todos los dispositivos excepto los compatibles con Intune.",
"deviceStateConditionConfigureInfoContent": "Configurar directiva basada en el estado del dispositivo",
"deviceStateConditionSelectorInfoContent": "Indica si el dispositivo desde el que inicia sesión el usuario está \\\"Unido a Azure AD híbrido\\\" o \\\"marcado como compatible\\\".\n Esto ha quedado en desuso. Use en su lugar \\\"{1}\\\".",
"deviceStateConditionSelectorInfoContent": "Si el dispositivo desde el que el usuario inicia sesión está \"Unido a Microsoft Entra híbrido\" o \"marcado como compatible\".\n Esto ha quedado en desuso. Use \"{1}\" en su lugar.",
"deviceStateConditionSelectorLabel": "Estado del dispositivo (en desuso)",
"deviceStateDomainJoined": "Unido a Azure AD híbrido de dispositivo",
"deviceStateDomainJoinedInfoContent": "Los dispositivos unidos a Azure AD híbrido se excluirán de la evaluación de esta directiva, de modo que si, por ejemplo, la directiva bloquea el acceso, bloqueará todos los dispositivos excepto los unidos a Azure AD híbrido.",
"deviceStateDomainJoined": "Dispositivo unido a Microsoft Entra híbrido",
"deviceStateDomainJoinedInfoContent": "Los dispositivos unidos a Microsoft Entra híbrido se excluirán de la evaluación de esta directiva, por lo que, por ejemplo, si la directiva bloquea el acceso, bloqueará todos los dispositivos excepto los dispositivos unidos a Microsoft Entra híbrido.",
"deviceStateDomainJoinedInfoLinkText": "Más información.",
"deviceStateExcludeDescription": "Seleccione la condición de estado del dispositivo que se usará para excluir dispositivos de la directiva.",
"deviceStateIncludeAndExcludeOneLabel": "{0} y excluir {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync solo con plataformas admitidas",
"excludeAllTrustedLocationSelectorText": "todas las ubicaciones de confianza",
"featureRequiresP2": "Esta característica requiere una licencia de Azure AD Premium 2.",
"featureRequiresP2": "Esta característica requiere una licencia de Microsoft Entra ID P2.",
"friday": "Viernes",
"grantControls": "Conceder controles",
"gridNetworkTrusted": "De confianza",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Private Links seleccionados",
"lowRisk": "Baja",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "Para administrar las directivas de acceso condicional, la organización necesita disponer de Azure AD Premium P1 o P2.",
"managePoliciesLicenseText": "Para administrar las directivas de acceso condicional, su organización necesita el id. P1 o P2 de Microsoft Entra.",
"manageSecurityDefaultsAriaLabel": "Administre la configuración de los valores predeterminados de seguridad.",
"markAsTrustedCheckboxInfoBalloonContent": "Iniciar sesión desde una ubicación de confianza reduce el riesgo de inicio de sesión de un usuario. Marque esta ubicación como de confianza solo si sabe que los intervalos IP especificados están establecidos y son confiables en su organización.",
"markAsTrustedCheckboxLabel": "Marcar como ubicación de confianza",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Países/regiones",
"namedLocationTypeLabel": "Defina la ubicación con:",
"namedLocationUpsellBanner": "Esta vista está en desuso. Vaya a la vista nueva y mejorada \"ubicaciones con nombre\".",
"namedLocationsHelpDescription": "Los informes de seguridad de Azure AD usan ubicaciones con nombre para reducir los falsos positivos. También se usan en las directivas de acceso condicional de Azure AD.\n[Más información][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Los informes de seguridad de Microsoft Entra ID usan ubicaciones con nombre para reducir los falsos positivos y las directivas de acceso condicional de Microsoft Entra.\n[Más información][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Agregue un nuevo intervalo IP (p. ej., 40.77.182.32/27).",
"namedNetworkCountryNeeded": "Debe seleccionar, al menos, un país o región.",
"namedNetworkDeleteCommand": "Eliminar",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Nueva ubicación con nombre",
"namedNetworksConditionHelpDescription": "Controle el acceso del usuario en función de su ubicación física.\n[Más información][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} y {1} excluidos",
"namedNetworksHelpDescription": "Los informes de seguridad de Azure AD usan ubicaciones con nombre para reducir los falsos positivos. También se usan en las directivas de acceso condicional de Azure AD.\n[Más información][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Los informes de seguridad del id. de Microsoft Entra usan ubicaciones con nombre para reducir los falsos positivos y las directivas de acceso condicional de Microsoft Entra.\n[Obtener más información][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} incluido",
"namedNetworksNone": "No se han encontrado ubicaciones con nombre.",
"namedNetworksTitle": "Configurar ubicaciones",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Solo los administradores globales pueden guardar esta directiva.",
"or": "{0} O {1} ",
"pickerDoneCommand": "Listo",
"policiesBladeAdPremiumUpsellBannerText": "Cree sus propias directivas y condiciones específicas de destino, como aplicaciones en la nube, el riesgo de inicio de sesión y plataformas de dispositivos con Azure AD Premium.",
"policiesBladeAdPremiumUpsellBannerText": "Crear sus propias directivas y dirigir condiciones específicas, como aplicaciones en la nube, riesgo de inicio de sesión y plataformas de dispositivos con el id. de Microsoft Entra Premium",
"policiesBladeTitle": "Directivas",
"policiesBladeTitleWithAppName": "Directivas: {0}",
"policiesDisabledBannerText": "No se permite crear ni editar directivas para las aplicaciones que tengan un atributo de inicio de sesión vinculado.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Ubicación (determinada con el intervalo de direcciones IP) desde la que inicia sesión el usuario",
"policyConditionLocationPreview": "Ubicaciones (versión preliminar)",
"policyConditionSigninRisk": "Riesgo de inicio de sesión",
"policyConditionSigninRiskDescription": "Probabilidad de que el inicio de sesión proceda de alguien que no es el usuario. El nivel de riesgo puede ser alto, medio o bajo. Se necesita una licencia de Azure AD Premium 2.",
"policyConditionSigninRiskDescription": "Probabilidad de que el inicio de sesión proceda de otra persona que no sea el usuario. El nivel de riesgo puede ser alto, medio o bajo. Requiere una licencia de Microsoft Entra ID P2.",
"policyConditionUserRisk": "Riesgo de usuario",
"policyConditionUserRiskDescription": "Configure los niveles de riesgo de usuario necesarios para aplicar la directiva.",
"policyConditioniClientApp": "Aplicaciones cliente",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Bloquear acceso o seleccionar los requisitos adicionales que se deben cumplir para conceder acceso",
"policyControlMfaChallengeDisplayedName": "Requerir autenticación multifactor",
"policyControlRequireCompliantAppDisplayedName": "Requerir directiva de protección de aplicaciones",
"policyControlRequireDomainJoinedDisplayedName": "Requerir dispositivo unido a Azure AD híbrido",
"policyControlRequireDomainJoinedDisplayedName": "Requerir dispositivo unido a Microsoft Entra híbrido",
"policyControlRequireMamDisplayedName": "Requerir aplicación cliente aprobada",
"policyControlRequiredPasswordChangeDisplayedName": "Requerir cambio de contraseña",
"policyControlSelectAuthStrength": "Requerir intensidad de autenticación",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "{0} se actualizó correctamente. La directiva se habilitará dentro de unos minutos si tiene la opción \"Habilitar directiva\" establecida en \"Activado\".",
"policyUpdateSuccessTitle": "{0} se ha actualizado correctamente",
"primaryCol": "Principal",
"privateLinkLabel": "Private Link de Azure AD",
"privateLinkLabel": "Private Link de Microsoft Entra ID",
"reportOnlyInfoBox": "Modo de solo informe: las directivas se evalúan y se registran al iniciar sesión, pero no afectan a los usuarios.",
"requireAllControlsText": "Requerir todos los controles seleccionados",
"requireCompliantDevice": "Requerir dispositivo compatible",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Requiera la autenticación multifactor para las aplicaciones confidenciales siempre o solo desde fuera de la red de la empresa.",
"upsellAppsTitle": "Aplicaciones seguras",
"upsellBannerText": "Obtener una prueba gratuita Premium para usar esta característica",
"upsellDataDescription": "Requiere que el dispositivo esté marcado como conforme o unido a Azure AD híbrido para permitir el acceso a los recursos de la empresa.",
"upsellDataDescription": "Requiera que el dispositivo se marque como compatible o unido a Microsoft Entra híbrido para permitir el acceso a los recursos de la compañía.",
"upsellDataTitle": "Datos seguros",
"upsellDescription": "El acceso condicional proporciona el control y la protección que necesita para mantener protegidos sus datos corporativos, a la vez que ofrece a los usuarios una experiencia que les permite trabajar de forma óptima desde cualquier dispositivo. Por ejemplo, puede restringir el acceso desde fuera de la red de la empresa o a dispositivos que cumplan determinadas directivas.",
"upsellRiskDescription": "Requerir la autenticación multifactor para los eventos de riesgo que detecte el sistema de aprendizaje automático de Microsoft.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "{0} se actualizó correctamente.",
"vpnCertUpdateSuccessTitle": "{0} se ha actualizado correctamente",
"vpnFeatureInfo": "Para obtener más información sobre el acceso condicional y la conectividad VPN, haga clic aquí.",
"vpnFeatureWarning": "Una vez que se haya creado un certificado VPN en Azure Portal, Azure AD comenzará a usarlo inmediatamente para emitir certificados de corta duración al cliente VPN. Es fundamental que el certificado VPN se implemente inmediatamente en el servidor VPN para evitar problemas con la validación de credenciales del cliente VPN.",
"vpnFeatureWarning": "Una vez que se crea un certificado VPN en Azure Portal, el id. de Microsoft Entra empezará a usarlo inmediatamente para emitir certificados de corta duración al cliente VPN. Es fundamental que el certificado VPN se implemente inmediatamente en el servidor VPN para evitar cualquier problema con la validación de credenciales del cliente VPN.",
"vpnMenuText": "conectividad VPN",
"vpncertDropdownDefaultOption": "Duración",
"vpncertDropdownInfoBalloonContent": "Seleccione la duración para el certificado que quiere crear.",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Rol personalizado de Intune",
"customRole": "Rol personalizado"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} se incluye en uno o más conjuntos de directivas. Si elimina {0}, ya no se podrá asignar mediante dichos conjuntos. ¿Quiere eliminarla de todas formas?",
"contentWithError": "{0} puede estar incluida en uno o varios conjuntos de directivas. Si elimina {0}, ya no se podrá asignar mediante dichos conjuntos. ¿Quiere eliminarla de todos modos?",
"header": "¿Seguro que quiere eliminar esta restricción?"
},
"DeviceLimit": {
"description": "Especifique el número máximo de dispositivos que un usuario puede inscribir.",
"header": "Restricciones de límite de dispositivos",
"info": "Define cuántos dispositivos puede inscribir cada usuario."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Debe ser 1.0 o posterior.",
"android": "Escriba un número de versión válido. Ejemplos: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Escriba un número de versión válido. Ejemplos: 5.0, 5.1.1",
"iOS": "Escriba un número de versión válido. Ejemplos: 9.0, 10.0, 9.0.2",
"mac": "Escriba un número de versión válido. Ejemplos: 10, 10.10, 10.10.1",
"min": "El valor mínimo no puede ser inferior a {0}",
"minMax": "La versión mínima no puede ser superior a la versión máxima.",
"windows": "Debe ser 10.0 o superior. Déjela en blanco para permitir dispositivos 8.1",
"windowsMobile": "Debe ser 10.0 o superior. Déjela en blanco para permitir dispositivos 8.1"
},
"allPlatformsBlocked": "Todas las plataformas de dispositivos están bloqueadas. Permita que la inscripción de la plataforma habilite la configuración de la plataforma.",
"blockManufacturerPlaceHolder": "Nombre del fabricante",
"blockManufacturersHeader": "Fabricantes bloqueados",
"cannotRestrict": "No se admite la restricción.",
"configurationDescription": "Especifica las restricciones de configuración de plataforma que deben cumplirse para inscribir un dispositivo. Use directivas de cumplimiento para restringir los dispositivos una vez inscritos. Defina las versiones como principal.secundaria.compilación. Las restricciones de versión solo se aplican a los dispositivos inscritos en el Portal de empresa. Intune clasifica los dispositivos como propiedad personal de forma predeterminada. Para clasificarlos como propiedad corporativa, se deben tomar medidas adicionales.",
"configurationDescriptionLabel": "Más información sobre cómo establecer restricciones de inscripción",
"configurations": "Configurar plataformas",
"deviceManufacturer": "Fabricante del dispositivo",
"header": "Restricciones de tipo de dispositivo",
"info": "Define qué plataformas, versiones y tipos de administración pueden inscribirse.",
"manufacturer": "Fabricante",
"max": "Máx.",
"maxVersion": "Versión máxima",
"min": "Mín.",
"minVersion": "Versión mínima",
"newPlatforms": "Ha permitido nuevas plataformas. Considere la posibilidad de actualizar Configuraciones de plataforma.",
"personal": "Propiedad personal",
"platform": "Plataforma",
"platformDescription": "Puede permitir la inscripción de las plataformas siguientes. Bloquee simplemente las plataformas que no vaya a admitir. Las plataformas permitidas pueden configurarse con restricciones de inscripción adicionales.",
"platformSettings": "Configuración de plataforma",
"platforms": "Seleccionar plataformas",
"platformsSelected": "{0} plataformas seleccionadas",
"type": "Tipo",
"versions": "versiones",
"versionsRange": "Permitir intervalo mín./máx.:",
"windowsTooltip": "Restringe la inscripción a través de la administración de dispositivos móviles. No restringe la instalación del agente de PC. Solo se admiten las versiones de Windows 10 y Windows 11. Deje las versiones en blanco para permitir Windows 8.1."
},
"Priority": {
"saved": "Las prioridades de restricción se guardaron correctamente."
},
"Row": {
"announce": "Prioridad: {0}. Nombre: {1}. Asignadο: {2}"
},
"Table": {
"deployed": "Implementada",
"name": "Nombre",
"priority": "Prioridad"
},
"Type": {
"limit": "Restricción de límite de dispositivos",
"type": "Restricción de tipo de dispositivo"
},
"allUsers": "Todos los usuarios",
"androidRestrictions": "Restricciones de Android",
"create": "Crear restricción",
"defaultLimitDescription": "Esta es la restricción de límite de dispositivos predeterminada aplicada con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
"defaultTypeDescription": "Esta es la restricción de tipo de dispositivo predeterminada aplicada con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
"defaultWhfbDescription": "Esta es la configuración de Windows Hello para empresas predeterminada que se aplica con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
"deleteMessage": "Los usuarios afectados se verán restringidos por la siguiente restricción de prioridad más alta asignada o la predeterminada, si no se asigna ninguna otra.",
"deleteTitle": "¿Está seguro de que quiere eliminar la restricción {0}?",
"descriptionHint": "Párrafo breve que describe el nivel de restricción o uso corporativo que caracteriza la configuración de la restricción.",
"edit": "Editar restricción",
"info": "Un dispositivo debe cumplir las restricciones de inscripción de prioridad más alta asignadas a su usuario. Puede arrastrar una restricción de dispositivo para cambiar su prioridad. Las restricciones predeterminadas tienen la prioridad más baja y se aplican a las inscripciones sin usuario. Además, se pueden editar, pero no eliminarse.",
"iosRestrictions": "Restricciones de iOS",
"mDM": "MDM",
"macRestrictions": "Restricciones para macOS",
"maxVersion": "Versión máxima",
"minVersion": "Versión mínima",
"nameHint": "Este será el primer atributo principal visible para identificar el conjunto de restricciones.",
"noAssignmentsStatusBar": "Asigne la restricción al menos a un grupo. Haga clic en Propiedades.",
"notFound": "La restricción no se ha encontrado. Puede que ya se haya eliminado.",
"personallyOwned": "Dispositivos de propiedad personal",
"restriction": "Restricción",
"restrictionLowerCase": "restricción",
"restrictionType": "Restriction type",
"selectType": "Seleccionar el tipo de restricción",
"selectValidation": "Seleccione una plataforma.",
"typeHint": "Elija Restricción de tipo de dispositivo para restringir las propiedades del dispositivo. Elija Restricción de límite de dispositivos para restringir el número de dispositivos por usuario.",
"typeRequired": "Se requiere el tipo de restricción.",
"winPhoneRestrictions": "Restricciones de Windows Phone",
"windowsECv1Info": "Las restricciones de inscripción más antiguas no se pueden editar ni volver a priorizar, solo eliminar.",
"windowsECv2Info": "Puede priorizar las restricciones de inscripción arrastrándolas y soltándolas. Vea a continuación las restricciones predeterminadas y preconfiguradas. Todas las nuevas restricciones de inscripción tendrán mayor prioridad que las restricciones predeterminadas y preconfiguradas.",
"windowsRestrictions": "Restricciones de Windows",
"windowsRestrictionsPreview": "Restricciones de Windows basadas en filtros (versión preliminar)"
},
"InstallContextType": {
"device": "Dispositivo",
"deviceContext": "Contexto del dispositivo",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Sintaxis de regla",
"filters": "Filtros"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} se incluye en uno o más conjuntos de directivas. Si elimina {0}, ya no se podrá asignar mediante dichos conjuntos. ¿Quiere eliminarla de todas formas?",
"contentWithError": "{0} puede estar incluida en uno o varios conjuntos de directivas. Si elimina {0}, ya no se podrá asignar mediante dichos conjuntos. ¿Quiere eliminarla de todos modos?",
"header": "¿Seguro que quiere eliminar esta restricción?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Permitir que el usuario cambie la configuración",
"tooltip": "Especifique si el usuario tiene permiso para cambiar la configuración."
},
"AllowWorkAccounts": {
"title": "Permitir solo cuentas profesionales o educativas",
"tooltip": " Si se habilita esta opción, los usuarios no pueden agregar cuentas de almacenamiento y de correo electrónico personales a Outlook. Si un usuario tiene una cuenta personal agregada a Outlook, se le pide que la quite y, si no la quita, no se puede agregar la cuenta profesional o educativa."
},
"BlockExternalImages": {
"title": "Bloquear imágenes externas",
"tooltip": "Cuando el bloqueo de imágenes externas está habilitado, la aplicación impide la descarga de imágenes hospedadas en Internet que están insertadas en el cuerpo del mensaje. Si se establece como no configurado, la aplicación establece el valor Desactivado de forma predeterminada."
},
"ConfigureEmail": {
"title": "Configurar cuentas de correo electrónico"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "La firma de aplicación predeterminada indica si la aplicación usará \"Obtener Outlook para Android\" como firma predeterminada durante la composición del mensaje. Si la configuración está desactivada, no se usará la firma predeterminada. Sin embargo, los usuarios pueden agregar su propia firma.\r\n\r\nCuando se establece como Sin configurar, la configuración de aplicación predeterminada se establece en Activado.",
"iOS": "La firma de aplicación predeterminada indica si la aplicación usará \"Obtener Outlook para iOS\" como firma predeterminada durante la composición del mensaje. Si la configuración está desactivada, no se usará la firma predeterminada. Sin embargo, los usuarios pueden agregar su propia firma.\r\n\r\nCuando se establece como Sin configurar, la configuración de aplicación predeterminada se establece en Activado."
},
"title": "Firma de aplicación predeterminada"
},
"OfficeFeedReplies": {
"title": "Fuente de detección",
"tooltip": "Fuente de detección destaca los archivos de Office a los que accede con más frecuencia. Esta fuente se habilita de forma predeterminada si Delve está habilitado para el usuario. Si está sin configurar, la configuración de la aplicación predeterminada se establece como Activa."
},
"OrganizeMailByThread": {
"title": "Organizar el correo por hilos",
"tooltip": "El comportamiento predeterminado de Outlook es agrupar las conversaciones de correo electrónico en una vista de conversaciones por hilos. Si esta opción está deshabilitada, Outlook muestra cada correo electrónico por separado, sin agrupar los mensajes por hilos."
},
"PlayMyEmails": {
"title": "Reproducir mis correos electrónicos",
"tooltip": "La característica Reproducir mis correos electrónicos no está habilitada de forma predeterminada en la aplicación, pero se promueve a los usuarios aptos mediante un banner en la bandeja de entrada. Si se establece en Desactivada, no se promociona a los usuarios aptos en la aplicación. Los usuarios pueden optar por habilitar manualmente Reproducir mis correos electrónicos desde la propia aplicación, aunque la característica esté establecida como Desactivada. Si se establece como Sin configurar, la configuración predeterminada de la aplicación es Activada y la característica se promoverá a los usuarios aptos."
},
"SuggestedReplies": {
"title": "Respuestas sugeridas",
"tooltip": "Al abrir un mensaje, Outlook puede sugerir respuestas debajo de este. Si selecciona una de las respuestas sugeridas, puede editarla antes de enviarla."
},
"SyncCalendars": {
"title": "Sincronizar calendarios",
"tooltip": "Configure si los usuarios pueden sincronizar su calendario de Outlook con la base de datos y la aplicación de calendario nativo."
},
"TextPredictions": {
"title": "Predicciones de texto",
"tooltip": "Outlook puede sugerir palabras y frases al redactar mensajes. Cuando Outlook ofrezca una sugerencia, deslice rápidamente el dedo para aceptarla. Cuando se define como no configurada, la configuración de la aplicación predeterminada se establece en Activada."
},
"DeviceLimit": {
"description": "Especifique el número máximo de dispositivos que un usuario puede inscribir.",
"header": "Restricciones de límite de dispositivos",
"info": "Define cuántos dispositivos puede inscribir cada usuario."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Debe ser 1.0 o posterior.",
"android": "Escriba un número de versión válido. Ejemplos: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Escriba un número de versión válido. Ejemplos: 5.0, 5.1.1",
"iOS": "Escriba un número de versión válido. Ejemplos: 9.0, 10.0, 9.0.2",
"mac": "Escriba un número de versión válido. Ejemplos: 10, 10.10, 10.10.1",
"min": "El valor mínimo no puede ser inferior a {0}",
"minMax": "La versión mínima no puede ser superior a la versión máxima.",
"windows": "Debe ser 10.0 o superior. Déjela en blanco para permitir dispositivos 8.1",
"windowsMobile": "Debe ser 10.0 o superior. Déjela en blanco para permitir dispositivos 8.1"
},
"allPlatformsBlocked": "Todas las plataformas de dispositivos están bloqueadas. Permita que la inscripción de la plataforma habilite la configuración de la plataforma.",
"blockManufacturerPlaceHolder": "Nombre del fabricante",
"blockManufacturersHeader": "Fabricantes bloqueados",
"cannotRestrict": "No se admite la restricción.",
"configurationDescription": "Especifica las restricciones de configuración de plataforma que deben cumplirse para inscribir un dispositivo. Use directivas de cumplimiento para restringir los dispositivos una vez inscritos. Defina las versiones como principal.secundaria.compilación. Las restricciones de versión solo se aplican a los dispositivos inscritos en el Portal de empresa. Intune clasifica los dispositivos como propiedad personal de forma predeterminada. Para clasificarlos como propiedad corporativa, se deben tomar medidas adicionales.",
"configurationDescriptionLabel": "Más información sobre cómo establecer restricciones de inscripción",
"configurations": "Configurar plataformas",
"deviceManufacturer": "Fabricante del dispositivo",
"header": "Restricciones de tipo de dispositivo",
"info": "Define qué plataformas, versiones y tipos de administración pueden inscribirse.",
"manufacturer": "Fabricante",
"max": "Máx.",
"maxVersion": "Versión máxima",
"min": "Mín.",
"minVersion": "Versión mínima",
"newPlatforms": "Ha permitido nuevas plataformas. Considere la posibilidad de actualizar Configuraciones de plataforma.",
"personal": "Propiedad personal",
"platform": "Plataforma",
"platformDescription": "Puede permitir la inscripción de las plataformas siguientes. Bloquee simplemente las plataformas que no vaya a admitir. Las plataformas permitidas pueden configurarse con restricciones de inscripción adicionales.",
"platformSettings": "Configuración de plataforma",
"platforms": "Seleccionar plataformas",
"platformsSelected": "{0} plataformas seleccionadas",
"type": "Tipo",
"versions": "versiones",
"versionsRange": "Permitir intervalo mín./máx.:",
"windowsTooltip": "Restringe la inscripción a través de la administración de dispositivos móviles. No restringe la instalación del agente de PC. Solo se admiten las versiones de Windows 10 y Windows 11. Deje las versiones en blanco para permitir Windows 8.1."
},
"Priority": {
"saved": "Las prioridades de restricción se guardaron correctamente."
},
"Row": {
"announce": "Prioridad: {0}. Nombre: {1}. Asignadο: {2}"
},
"Table": {
"deployed": "Implementada",
"name": "Nombre",
"priority": "Prioridad"
},
"Type": {
"limit": "Restricción de límite de dispositivos",
"type": "Restricción de tipo de dispositivo"
},
"allUsers": "Todos los usuarios",
"androidRestrictions": "Restricciones de Android",
"create": "Crear restricción",
"defaultLimitDescription": "Esta es la restricción de límite de dispositivos predeterminada aplicada con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
"defaultTypeDescription": "Esta es la restricción de tipo de dispositivo predeterminada aplicada con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
"defaultWhfbDescription": "Esta es la configuración de Windows Hello para empresas predeterminada que se aplica con la prioridad más baja a todos los usuarios, independientemente de la pertenencia a grupos.",
"deleteMessage": "Los usuarios afectados se verán restringidos por la siguiente restricción de prioridad más alta asignada o la predeterminada, si no se asigna ninguna otra.",
"deleteTitle": "¿Está seguro de que quiere eliminar la restricción {0}?",
"descriptionHint": "Párrafo breve que describe el nivel de restricción o uso corporativo que caracteriza la configuración de la restricción.",
"edit": "Editar restricción",
"info": "Un dispositivo debe cumplir las restricciones de inscripción de prioridad más alta asignadas a su usuario. Puede arrastrar una restricción de dispositivo para cambiar su prioridad. Las restricciones predeterminadas tienen la prioridad más baja y se aplican a las inscripciones sin usuario. Además, se pueden editar, pero no eliminarse.",
"iosRestrictions": "Restricciones de iOS",
"mDM": "MDM",
"macRestrictions": "Restricciones de macOS",
"maxVersion": "Versión máxima",
"minVersion": "Versión mínima",
"nameHint": "Este será el primer atributo principal visible para identificar el conjunto de restricciones.",
"noAssignmentsStatusBar": "Asigne la restricción al menos a un grupo. Haga clic en Propiedades.",
"notFound": "La restricción no se ha encontrado. Puede que ya se haya eliminado.",
"personallyOwned": "Dispositivos de propiedad personal",
"restriction": "Restricción",
"restrictionLowerCase": "restricción",
"restrictionType": "Restriction type",
"selectType": "Seleccionar el tipo de restricción",
"selectValidation": "Seleccione una plataforma.",
"typeHint": "Elija Restricción de tipo de dispositivo para restringir las propiedades del dispositivo. Elija Restricción de límite de dispositivos para restringir el número de dispositivos por usuario.",
"typeRequired": "Se requiere el tipo de restricción.",
"winPhoneRestrictions": "Restricciones de Windows Phone",
"windowsRestrictions": "Restricciones de Windows"
},
"ThemesEnabled": {
"title": "Temas habilitados",
"tooltip": "Especifique si el usuario puede usar un tema visual personalizado."
}
},
"Titles": {
"ChromeOs": {
"devices": "Dispositivos Chrome OS (versión preliminar)"
@@ -12507,6 +12558,7 @@
"user": "Usuario",
"userExecutionStatus": "Estado del usuario",
"wdacSupplementalPolicies": "Directivas complementarias del modo S",
"win32CatalogUpdateApp": "Actualizaciones para aplicaciones de catálogo de Windows (Win32)",
"windows10DriverUpdate": "Actualizaciones de controladores 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",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Conectores de socios de Windows 365",
"windowsDiagnosticData": "Datos de Windows",
"windowsEnterpriseCertificate": "Certificado de Windows Enterprise",
"windowsManagement": "Scripts de PowerShell",
"windowsManagement": "Scripts",
"windowsSideLoadingKeys": "Claves de instalación de prueba de Windows",
"windowsSymantecCertificate": "Certificado DigiCert de Windows",
"windowsThreatReport": "Estado del agente de amenazas"
@@ -12551,6 +12603,10 @@
"postponed": "Pospuesto",
"priority": "Prioridad alta"
},
"AutoUpdateSupersededApps": {
"label": "Actualización automática",
"sublabel": "Actualizar automáticamente las versiones anteriores de esta aplicación"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Fondo",
"displayText": "Descarga de contenido en {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Exiger l'utilisation d'au moins une lettre majuscule dans le code PIN"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Autoriser l'utilisateur à changer le paramètre",
"tooltip": "Indiquez si l'utilisateur est autorisé à changer le paramètre."
},
"AllowWorkAccounts": {
"title": "Autoriser uniquement les comptes professionnels ou scolaires",
"tooltip": " Si ce paramètre est activé, les utilisateurs ne peuvent pas ajouter de comptes e-mail et de stockage personnels dans Outlook. Si un utilisateur ajoute un compte personnel dans Outlook, il est invité à le supprimer. S'il ne le supprime pas, l'ajout du compte professionnel ou scolaire échoue."
},
"BlockExternalImages": {
"title": "Bloquer les images externes",
"tooltip": "Si le blocage des images externes est activé, l'application empêche le téléchargement des images hébergées sur Internet qui sont incorporées dans le corps du message. S'il n'est pas configuré, le paramètre d'application par défaut a la valeur Désactivé"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "Version de lapplication",
"dependencyName": "Nom de la dépendance",
"lastModifiedTime": "Heure de la dernière modification",
"relationship": "Relation",
"replaced": "Remplacé",
"searchPlaceholder": "Filtrer par nom d'application",
"status": "Détails du statut",
"statusDetails": "État",
"supersedenceName": "Nom de remplacement"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Dépendance enfant",
"indirectSupersedence": "Pas directement lié",
"supersedenceAncestors": "Nombre de remplacement",
"supersedenceDescendants": "Remplacé"
},
"ConfigureEmail": {
"title": "Configurer les paramètres du compte e-mail"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "La signature d'application par défaut indique si l'application utilise « Obtenir Outlook pour Android » comme signature par défaut pendant la composition du message. Si le paramètre est désactivé, la signature par défaut n'est pas utilisée. Toutefois, les utilisateurs peuvent ajouter leur propre signature.\r\n\r\nS'il est défini sur Non configuré, le paramètre d'application par défaut est activé.",
"iOS": "La signature d'application par défaut indique si l'application utilise « Obtenir Outlook pour iOS » comme signature par défaut pendant la composition du message. Si le paramètre est désactivé, la signature par défaut n'est pas utilisée. Toutefois, les utilisateurs peuvent ajouter leur propre signature.\r\n\r\nS'il est défini sur Non configuré, le paramètre d'application par défaut est activé."
},
"title": "Signature d'application par défaut"
},
"OfficeFeedReplies": {
"title": "Flux Discover",
"tooltip": "Le flux Discover couvre vos fichiers Office les plus fréquemment consultés. Par défaut, ce flux est activé quand Delve est activé pour l'utilisateur. Si l'option n'est pas configurée, le paramètre d'application par défaut est défini sur Activé."
},
"OrganizeMailByThread": {
"title": "Organiser le courrier par conversation",
"tooltip": "Le comportement par défaut dans Outlook consiste à regrouper les conversations dans une vue par conversation. Si ce paramètre est désactivé, Outlook affiche les courriers individuellement et ne les regroupe pas par conversation."
},
"PlayMyEmails": {
"title": "Lire mes e-mails",
"tooltip": "La fonctionnalité Lire mes e-mails nest pas activée par défaut dans lapplication, mais elle est promue aux utilisateurs éligibles via une bannière dans la boîte de réception. Quand la valeur est Désactivé, cette fonctionnalité nest pas promue aux utilisateurs éligibles dans lapplication. Les utilisateurs peuvent choisir dactiver manuellement Lire mes e-mails à partir de lapplication, même si cette fonctionnalité est désactivée. Quand la valeur nest pas configurée, le paramètre dapplication par défaut est activé et la fonctionnalité est promue aux utilisateurs éligibles."
},
"SuggestedReplies": {
"title": "Réponses suggérées",
"tooltip": "Quand vous ouvrez un message, Outlook peut suggérer des réponses sous le message. Si vous sélectionnez une réponse suggérée, vous pouvez la modifier avant de l'envoyer."
},
"SyncCalendars": {
"title": "Synchroniser les calendriers",
"tooltip": "Spécifie si les utilisateurs peuvent synchroniser leur calendrier Outlook avec la base de données et lapplication du calendrier natif."
},
"TextPredictions": {
"title": "Prédictions de texte",
"tooltip": "Outlook peut suggérer des mots et des expressions quand vous composez des messages. Quand Outlook propose une suggestion, faites un balayage pour laccepter. Quand loption nest pas configurée, le paramètre de lapplication par défaut est défini sur Activé."
"SupersededReplaced": {
"no": "Non",
"yes": "Oui"
},
"ThemesEnabled": {
"title": "Thèmes activés",
"tooltip": "Spécifie si lutilisateur est autorisé à utiliser un thème visuel personnalisé."
}
},
"Tabs": {
"chart": "Graphique",
"dependency": "Dépendance",
"label": "Afficher : ",
"supersedence": "Remplacement",
"table": "Table"
},
"dependencyGraphAriaLabel": "Tableau de dépendance des applications",
"supersedenceGraphAriaLabel": "Graphique de remplacement d'application"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Sélectionnez un script de détection",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "Ajouter un script PowerShell",
"customAttributeObjectName": "Attribut personnalisé",
"editPowershellScriptFlowSectionName": "Modifier le script PowerShell",
"enforceSignatureCheckInfoBalloonContent": "Le script doit être signé par un éditeur approuvé. Par défaut, aucun avertissement ni aucune invite ne s'affichent et le script s'exécute sans être bloqué.",
"enforceSignatureCheckInfoBalloonContent": "Le script doit être signé par un éditeur de confiance. C'est la valeur par défaut.",
"enforceSignatureCheckLabel": "Appliquer la vérification de la signature du script",
"executionFrequencyLabel": "Fréquence dexécution",
"failedToSavePolicy": "L'enregistrement de {0} a échoué",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Vérifier + ajouter",
"runAs64BitInfoBalloonContent": "Le script s'exécute dans un hôte PowerShell 64 bits pour une architecture cliente 64 bits. Par défaut, le script s'exécute dans un hôte PowerShell 32 bits.",
"runAs64BitLabel": "Exécuter le script dans un hôte PowerShell 64 bits",
"scriptContextInfoBalloonContent": "Le script s'exécute avec les informations d'identification de l'utilisateur sur l'ordinateur client. Par défaut, le script s'exécute dans le contexte système.",
"scriptContextInfoBalloonContent": "Le script s'exécute avec les informations d'identification des utilisateurs sur l'ordinateur client. Par défaut, le script s'exécute dans le contexte utilisateur.",
"scriptContextLabel": "Exécuter ce script en utilisant les informations d'identification de l'utilisateur connecté",
"scriptsettingsTabHeader": "Paramètres du script",
"settingsHeader": "Sélectionner un script à configurer",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "VPN Always-on",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Vérifier l'intégrité de base et l'intégrité de l'appareil",
"androidPlayIntegrityVerdictBasicIntegrity": "Vérifier l'intégrité de base",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Les certificats approuvés ne peuvent plus être installés sur les appareils qui exécutent Android 11 ou une version ultérieure, à lexception des appareils Samsung Knox. Si vous utilisez des profils de certificat SCEP, vous devez continuer à créer et à déployer un profil de certificat approuvé et lassocier au profil de certificat SCEP, mais vous devez fournir manuellement le certificat racine approuvé à ces appareils.",
"androidTenAndAbovePasswordHeader": "Android 10 et ultérieur",
"androidTenAndAbovePasswordHeaderDescription": "Ces paramètres fonctionnent pour les appareils qui exécutent Android 10 ou version ultérieure.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Force la mise à jour automatique de l'appareil pour appliquer des correctifs de sécurité et des améliorations.",
"complianceUpdatesRequireAutomaticUpdatesName": "Exiger l'application des mises à jour automatiques de Microsoft",
"complianceWin10RequiredPasswordTypeDescription": "Ce paramètre détermine le type de mot de passe/code PIN obligatoire.<br>\r\nParamètre par défaut de l'appareil (mot de passe, code PIN numérique ou code PIN alphanumérique obligatoire)<br>\r\nAlphanumérique (mot de passe ou code PIN alphanumérique obligatoire)<br>\r\nNumérique (mot de passe ou code PIN numérique obligatoire)<br>\r\nRecommandations : Type de mot de passe obligatoire : Alphanumérique, Complexité du mot de passe : Exiger des chiffres et des lettres minuscules",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 ou 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 et 11",
"complianceWindows11DeviceHealthAttestationHeader": "Windows 11 uniquement",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Version minimale de Microsoft Defender (par ex., 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Version minimale du logiciel anti-programme malveillant Microsoft Defender",
"complianceWindowsDeviceHealthAttestationHeader": "Les règles dévaluation du service dattestation Microsoft<br><br>Utilisez ces règles pour vérifier quun appareil a des mesures de protection activées au démarrage. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">En savoir plus sur ces règles</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Les paramètres dévaluation du service dattestation Microsoft<br><br>Utilisez ces paramètres pour vérifier quun appareil a des mesures de protection activées au démarrage. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">En savoir plus sur ces règles</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Sélectionnez la version de système d'exploitation la plus récente pouvant être installée sur un appareil mobile. La version de système d'exploitation est définie sous la forme majeure.mineure.build.révision.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Sélectionnez la version de système d'exploitation la plus ancienne pouvant être installée sur un appareil mobile. La version de système d'exploitation est définie sous la forme majeure.mineure.build.révision.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "La version de système d'exploitation est définie sous la forme majeure.mineure.build.révision.",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "Protection (95e centile)",
"basicDataProtectionGuidedString": "Protection des données de base : assurez-vous que les utilisateurs doivent utiliser un code PIN ou la biométrie pour accéder aux données de compte professionnel ou scolaire, chiffrer les données du compte professionnel ou scolaire et permettre aux administrateurs deffectuer des nettoyages de données sélectifs, si nécessaire. Pour les appareils Android, la protection des données de base permet également de garantir la compatibilité de lappareil avec les services Google et permet de vérifier les applications analysées par Google.",
"basicIntegrity": "Intégrité de base",
"basicIntegrityAndCertifiedDevices": "Intégrité de base et appareils certifiés",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Délai d'inactivité",
"bioPinInactiveTimeoutTooltip": "Remplacer les informations biométriques par le code PIN au bout de (minutes)",
"block": "Bloquer",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Limite du nombre de caractères à couper/copier pour toutes les applications",
"camera": "Appareil photo",
"checkInCountColumnTitle": "NOMBRE DE CHECK-INS",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Archivé",
"checkedInAppNameColumnTitle": "APPLICATION",
"checkedInButNotSynced": "Archivé. Lors de la prochaine synchronisation, cette application recevra {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">Je ne trouve pas l'application dont j'ai besoin</a></p><p><a data-bind=\"fxclick: onClickLob\">J'ai besoin d'ajouter ma propre application métier</a></p>",
"guidedTemplate2": "Nous vous demanderons le niveau de protection que vous souhaitez déployer sur vos utilisateurs. Pour plus dinformations, consultez <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Framework de protection des données avec des stratégies de protection des applications. </a>",
"guidediOSLabel": "Protection d'applications iOS",
"hardwareBackedKey": "Clé sauvegardée sur du matériel",
"healthCheck": "Contrôles d'intégrité",
"helpAndSupport": "Aide et support",
"hideOverrides": "Masquer le choix d'ignorer les avertissements",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Plateforme",
"platformDropDownLabel": "Plateforme",
"platformVersion": "Version de la plateforme",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Veuillez corriger les erreurs dans les sections ci-dessous !",
"pleaseSelectAtLeastOneFileError": "Sélectionnez au moins un fichier avant de continuer",
"policies": "Stratégies",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Exiger le verrouillage de lappareil",
"requireThreatScanOnApps": "Exiger l'analyse des menaces sur les applications",
"requiredField": "Ce champ ne peut pas être vide",
"requiredSafetyNetEvaluationType": "Type dévaluation SafetyNet obligatoire",
"requiredSettings": "Paramètres obligatoires",
"resetPin": "Réinitialiser le code PIN",
"resourceManagement": "Gestion des ressources",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "N'importe quelle application",
"restrictWebContentOption2": "{0} : Autoriser les liens web dans n'importe quelle application",
"rootCertificate": "Certificat racine",
"safetyNetDeviceAttestation": "Attestation d'appareil SafetyNet",
"samsungKnoxAttestationRequired": "Attestation d'appareil Samsung Knox",
"saveAppsNotificationText": "Enregistrement des applications sélectionnées",
"saveChangesCommandText": "Enregistrer",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Mode Filtrer",
"assignmentToast": "Notifications de lutilisateur final",
"assignmentTypeTableHeader": "TYPE DAFFECTATION",
"autoUpdate": "Mise à jour automatique",
"deadlineTimeColumnLabel": "Échéance de linstallation",
"deliveryOptimizationPriorityHeader": "Priorité doptimisation de la distribution",
"groupTableHeader": "Groupe",
@@ -8514,6 +8496,10 @@
"showAll": "Afficher toutes les notifications toast",
"showReboot": "Afficher les notifications toast pour les redémarrages d'ordinateur"
},
"AutoUpdateSupersededApps": {
"enabled": "Activé",
"notConfigured": "Non configuré"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Arrière-plan",
"displayText": "Téléchargement de contenu dans {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "Le contrôle de session « Fréquence de connexion à chaque fois » nécessite la sélection de « toutes les applications cloud » ou dapplications spécifiquement prises en charge",
"allDayCheckboxLabel": "Toute la journée",
"allDevicePlatforms": "N'importe quel périphérique",
"allGuestUserInfoContent": "Inclut les invités Azure AD B2B, mais pas les invités SharePoint B2B",
"allGuestUserInfoContent": "Inclut les invités Microsoft Entra B2B, mais pas les invités SharePoint B2B",
"allGuestUserLabel": "Tous les utilisateurs invités et externes",
"allRiskLevelsOption": "Tous niveaux de risque",
"allTrustedLocationLabel": "Tous les emplacements approuvés",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "En savoir plus sur lobligation dappareils conformes.",
"controlsDeviceComplianceInfoBubble": "L'appareil doit être compatible avec Intune. Si ce n'est pas le cas, l'utilisateur est invité à le rendre conforme.",
"controlsDomainJoinedAriaLabel": "En savoir plus sur la nécessité dappareils hybrides Azure AD joints.",
"controlsDomainJoinedInfoBubble": "Les appareils doivent être joints Azure AD hybride.",
"controlsDomainJoinedAriaLabel": "En savoir plus sur la nécessité dutiliser des appareils avec jointure Microsoft Entra hybride.",
"controlsDomainJoinedInfoBubble": "Les appareils doivent disposer dune jointure Microsoft Entra hybride.",
"controlsMamAriaLabel": "En savoir plus sur lexigence dapplications clientes approuvées.",
"controlsMamInfoBubble": "L'appareil doit utiliser ces applications clientes approuvées.",
"controlsMfaInfoBubble": "L'utilisateur doit répondre à des exigences de sécurité supplémentaires, telles qu'un appel téléphonique ou un SMS",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Appareil marqué comme conforme",
"deviceStateCompliantInfoContent": "Les appareils compatibles avec Intune sont exclus de l'évaluation de cette stratégie. Ainsi, par exemple, si la stratégie bloque l'accès, elle bloque tous les appareils à l'exception des appareils compatibles avec Intune.",
"deviceStateConditionConfigureInfoContent": "Configurer la stratégie en fonction de l'état de l'appareil",
"deviceStateConditionSelectorInfoContent": "Si lappareil à partir duquel lutilisateur se connecte est « Jointure hybride Azure AD » ou « marqué comme conforme ».\n Cela a été déconseillé. Utilisez « {1} » à la place.",
"deviceStateConditionSelectorInfoContent": "Si lappareil à partir duquel lutilisateur se connecte dispose dune « jointure Microsoft Entra hybride » ou est « marqué comme conforme ».\n Cela a été déconseillé. Utilisez « {1} » à la place.",
"deviceStateConditionSelectorLabel": "État de lappareil (déconseillé)",
"deviceStateDomainJoined": "Appareil joint Azure AD hybride",
"deviceStateDomainJoinedInfoContent": "Les appareils joints Azure AD hybride sont exclus de l'évaluation de cette stratégie. Ainsi, par exemple, si la stratégie bloque l'accès à cette dernière, elle bloque tous les appareils, à l'exception des appareils joints Azure AD hybride.",
"deviceStateDomainJoined": "Appareil avec jointure Microsoft Entra hybride",
"deviceStateDomainJoinedInfoContent": "Les appareils avec jointure Microsoft Entra hybride sont exclus de l'évaluation de cette stratégie. Ainsi, par exemple, si la stratégie bloque l'accès à cette dernière, elle bloque tous les appareils, à l'exception des appareils avec jointure Microsoft Entra hybride.",
"deviceStateDomainJoinedInfoLinkText": "En savoir plus.",
"deviceStateExcludeDescription": "Sélectionnez la condition d'état d'appareil utilisée pour exclure des appareils de la stratégie.",
"deviceStateIncludeAndExcludeOneLabel": "{0} et exclusion de {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync avec plateformes prises en charge uniquement",
"excludeAllTrustedLocationSelectorText": "tous les emplacements approuvés",
"featureRequiresP2": "Cette fonctionnalité nécessite une licence Azure AD Premium 2.",
"featureRequiresP2": "Cette fonctionnalité nécessite une licence Microsoft Entra ID P2.",
"friday": "Vendredi",
"grantControls": "Contrôles d'octroi",
"gridNetworkTrusted": "Approuvé",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Liaisons privées sélectionnées",
"lowRisk": "Bas",
"macOsDisplayName": "Mac OS",
"managePoliciesLicenseText": "Pour gérer les stratégies d'accès conditionnel, votre organisation doit avoir Azure AD Premium P1 ou P2.",
"managePoliciesLicenseText": "Pour gérer les stratégies d'accès conditionnel, votre organisation doit avoir Microsoft Entra ID P1 ou P2.",
"manageSecurityDefaultsAriaLabel": "Gérez les paramètres de sécurité par défaut.",
"markAsTrustedCheckboxInfoBalloonContent": "La connexion à partir d'un emplacement approuvé réduit le risque de connexion d'un utilisateur. Marquez uniquement cet emplacement comme approuvé si vous savez que les plages d'adresses IP entrées sont établies et crédibles dans votre organisation.",
"markAsTrustedCheckboxLabel": "Marquer comme emplacement approuvé",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Pays ou régions",
"namedLocationTypeLabel": "Définir l'emplacement à l'aide de :",
"namedLocationUpsellBanner": "Cette vue est déconseillée. Accédez à la nouvelle vue améliorée vue « Emplacements nommés ».",
"namedLocationsHelpDescription": "Les emplacements nommés sont utilisés par les rapports de sécurité Azure AD afin de réduire les faux positifs et par les stratégies d'accès conditionnel Azure AD.\n[En savoir plus][1]\n[1] : https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Les emplacements nommés sont utilisés par les rapports de sécurité Microsoft Entra ID afin de réduire les faux positifs et par les stratégies d'accès conditionnel Microsoft Entra.\n[En savoir plus][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Ajouter une nouvelle plage IP (ex : 40.77.182.32/27)",
"namedNetworkCountryNeeded": "Vous devez sélectionner au moins un pays ou une région",
"namedNetworkDeleteCommand": "Supprimer",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Nouvel emplacement nommé",
"namedNetworksConditionHelpDescription": "Contrôlez l'accès des utilisateurs en fonction de leur emplacement physique.\n[En savoir plus][1]\n[1] : http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} et {1} exclus",
"namedNetworksHelpDescription": "Les emplacements nommés sont utilisés par les rapports de sécurité Azure AD afin de réduire les faux positifs et par les stratégies d'accès conditionnel Azure AD.\n[En savoir plus][1]\n[1] : https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Les emplacements nommés sont utilisés par les rapports de sécurité Microsoft Entra ID afin de réduire les faux positifs et par les stratégies d'accès conditionnel Microsoft Entra.\n[En savoir plus][1]\n[1] : https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} inclus",
"namedNetworksNone": "Aucun emplacement nommé trouvé.",
"namedNetworksTitle": "Configurer les emplacements",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Seuls les administrateurs généraux peuvent enregistrer cette stratégie.",
"or": "{0} OU {1}",
"pickerDoneCommand": "Terminé",
"policiesBladeAdPremiumUpsellBannerText": "Créez vos propres stratégies et ciblez des conditions spécifiques telles que Applications cloud, Connexion à risque et Plateformes d'appareils avec Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Créez vos propres stratégies et ciblez des conditions spécifiques telles que les applications cloud, les connexions à risque et les plateformes dappareils avec Microsoft Entra ID Premium.",
"policiesBladeTitle": "Stratégies",
"policiesBladeTitleWithAppName": "Stratégies : {0}",
"policiesDisabledBannerText": "La création et la modification des stratégies sont interdites pour les applications avec un attribut d'authentification lié.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Emplacement (déterminé à l'aide de la plage d'adresses IP) à partir duquel l'utilisateur se connecte",
"policyConditionLocationPreview": "Emplacements (préversion)",
"policyConditionSigninRisk": "Risque de connexion",
"policyConditionSigninRiskDescription": "Probabilité pour que la connexion provienne d'une autre personne que l'utilisateur. Le niveau de risque peut être élevé, moyen ou faible. Nécessite une licence Azure AD Premium 2.",
"policyConditionSigninRiskDescription": "Probabilité que la connexion provienne d'une autre personne que l'utilisateur. Le niveau de risque peut être élevé, moyen ou faible. Nécessite une licence Microsoft Entra ID P2.",
"policyConditionUserRisk": "Risque de lutilisateur",
"policyConditionUserRiskDescription": "Configurez les niveaux de risque utilisateur nécessaires à lapplication de la stratégie",
"policyConditioniClientApp": "Applications clientes",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Bloquer l'accès ou sélectionner des exigences supplémentaires à satisfaire avant d'autoriser l'accès",
"policyControlMfaChallengeDisplayedName": "Exiger une authentification multifacteur",
"policyControlRequireCompliantAppDisplayedName": "Exiger une stratégie de protection des applications",
"policyControlRequireDomainJoinedDisplayedName": "Exiger un appareil joint Azure AD hybride",
"policyControlRequireDomainJoinedDisplayedName": "Exiger un appareil avec jointure Microsoft Entra hybride",
"policyControlRequireMamDisplayedName": "Demander une application cliente approuvée",
"policyControlRequiredPasswordChangeDisplayedName": "Nécessite une modification du mot de passe",
"policyControlSelectAuthStrength": "Exiger la force de lauthentification",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "{0} correctement mise à jour. La stratégie sera activée dans quelques minutes si vous avez défini « Activer la stratégie » sur « Activé ».",
"policyUpdateSuccessTitle": "{0} mis à jour avec succès",
"primaryCol": "Principal",
"privateLinkLabel": "Lien privé de Azure AD",
"privateLinkLabel": "Liaison privée Microsoft Entra ID",
"reportOnlyInfoBox": "Mode rapport uniquement : les stratégies sont évaluées et consignées lors de la connexion, mais nont pas dimpact sur les utilisateurs.",
"requireAllControlsText": "Demander tous les contrôles sélectionnés",
"requireCompliantDevice": "Exiger un appareil conforme",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Exiger lauthentification multifacteur pour les applications sensibles en permanence ou uniquement en dehors du réseau de lentreprise.",
"upsellAppsTitle": "Sécuriser les applications",
"upsellBannerText": "Obtenir une version dévaluation Premium gratuite pour utiliser cette fonctionnalité",
"upsellDataDescription": "Exigez que l'appareil soit marqué comme conforme ou joint Azure AD hybride pour autoriser l'accès aux ressources de l'entreprise.",
"upsellDataDescription": "Exigez que l'appareil soit marqué comme conforme ou avec jointure Microsoft Entra hybride pour autoriser l'accès aux ressources de l'entreprise.",
"upsellDataTitle": "Sécuriser les données",
"upsellDescription": "Laccès conditionnel fournit le contrôle et la protection dont vous avez besoin pour protéger les données de votre entreprise, tout en offrant à vos utilisateurs une expérience qui leur permet de mieux travailler à partir de nimporte quel appareil. Par exemple, vous pouvez limiter laccès depuis lextérieur du réseau de société ou restreindre laccès aux appareils qui répondent aux stratégies de conformité.",
"upsellRiskDescription": "Exiger une authentification multifacteur pour les événements à risque détectés par le système Machine Learning de Microsoft.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "{0} mis à jour avec succès.",
"vpnCertUpdateSuccessTitle": "{0} mis à jour avec succès",
"vpnFeatureInfo": "Pour plus dinformations sur la connectivité VPN et l'accès conditionnel, cliquez ici.",
"vpnFeatureWarning": "Une fois qu'un certificat VPN a été créé dans le portail Azure, Azure AD commence à l'utiliser immédiatement pour émettre des certificats à courte durée vers le client VPN. Il est essentiel que le certificat VPN soit immédiatement déployé sur le serveur VPN pour éviter tout problème de validation des informations d'identification du client VPN.",
"vpnFeatureWarning": "Une fois qu'un certificat VPN a été créé dans le portail, Microsoft Entra ID commence à l'utiliser immédiatement pour émettre des certificats à courte durée vers le client VPN. Il est essentiel que le certificat VPN soit immédiatement déployé sur le serveur VPN pour éviter tout problème de validation des informations d'identification du client VPN.",
"vpnMenuText": "Connectivité VPN",
"vpncertDropdownDefaultOption": "Durée",
"vpncertDropdownInfoBalloonContent": "Sélectionnez la durée du certificat que vous souhaitez créer",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Rôle Intune personnalisé",
"customRole": "Rôle personnalisé"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} est inclus dans un ou plusieurs ensembles de stratégies. Si vous supprimez {0}, vous ne serez plus en mesure de l'affecter par l'intermédiaire de ces ensembles de stratégies. Supprimer quand même ?",
"contentWithError": "{0} est peut-être inclus dans un ou plusieurs ensembles de stratégies. Si vous supprimez {0}, vous ne serez plus en mesure de l'affecter par l'intermédiaire de ces ensembles de stratégies. Supprimer quand même ?",
"header": "Voulez-vous vraiment supprimer cette restriction ?"
},
"DeviceLimit": {
"description": "Spécifiez le nombre maximal d'appareils qu'un utilisateur peut inscrire.",
"header": "Restrictions de limite d'appareils",
"info": "Définissez le nombre d'appareils que chaque utilisateur peut inscrire."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Doit être supérieur ou égal à 1.0.",
"android": "Entrez un numéro de version valide. Exemples : 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Entrez un numéro de version valide. Par exemple : 5.0, 5.1.1",
"iOS": "Entrez un numéro de version valide. Exemples : 9.0, 10.0, 9.0.2",
"mac": "Entrez un numéro de version valide. Exemples : 10, 10.10, 10.10.1",
"min": "La valeur minimale ne peut pas être inférieure à {0}",
"minMax": "La version minimale ne peut pas être supérieure à la version maximale.",
"windows": "Doit être la version 10.0 ou ultérieur. Laisser vide pour autoriser les appareils Windows 8.1",
"windowsMobile": "Doit être la version 10.0 ou ultérieur. Laisser vide pour autoriser les appareils Windows 8.1"
},
"allPlatformsBlocked": "Toutes les plateformes d'appareils sont bloquées. Autorisez l'inscription des plateformes pour permettre leur configuration.",
"blockManufacturerPlaceHolder": "Nom du fabricant",
"blockManufacturersHeader": "Fabricants bloqués",
"cannotRestrict": "Restriction non prise en charge",
"configurationDescription": "Spécifiez les restrictions de configuration de plateforme que doit respecter un appareil pour l'inscription. Utilisez des stratégies de conformité pour restreindre les appareils après l'inscription. Définissez des versions au format major.minor.build. Les restrictions de version s'appliquent uniquement aux appareils inscrits avec le portail d'entreprise. Intune classe les appareils comme personnels par défaut. Une action supplémentaire est nécessaire pour classer les appareils comme appartenant à l'entreprise.",
"configurationDescriptionLabel": "En savoir plus sur la définition de restrictions dinscription",
"configurations": "Configurer des plateformes",
"deviceManufacturer": "Fabricant du périphérique",
"header": "Restrictions de type d'appareil",
"info": "Définissez les types de plateforme, de version et de gestion qui peuvent être inscrits.",
"manufacturer": "Fabricant",
"max": "Max",
"maxVersion": "Version maximale",
"min": "Min",
"minVersion": "Version minimale",
"newPlatforms": "Vous avez autorisé de nouvelles plateformes. Mettez à jour les configurations de plateforme.",
"personal": "Propriété personnelle",
"platform": "Plateforme",
"platformDescription": "Vous pouvez autoriser l'inscription des plateformes suivantes. Bloquez seulement les plateformes que vous ne pouvez pas prendre en charge. Les plateformes autorisées peuvent être configurées avec des restrictions d'inscription supplémentaires.",
"platformSettings": "Paramètres de plateforme",
"platforms": "Sélectionner des plateformes",
"platformsSelected": "{0} plateformes sélectionnées",
"type": "Type",
"versions": "versions",
"versionsRange": "Autoriser des valeurs min./max. :",
"windowsTooltip": "Restreint l'inscription par le biais de la gestion des appareils mobiles (MDM). Ne restreint pas l'installation de l'agent de PC. Seules les versions Windows 10 et Windows 11 sont prises en charge. N'indiquez pas de version afin d'autoriser Windows 8.1."
},
"Priority": {
"saved": "Les priorités de restriction ont été enregistrées."
},
"Row": {
"announce": "Priorité : {0}. Nom : {1}. Attribué : {2}"
},
"Table": {
"deployed": "Déployées",
"name": "Nom",
"priority": "Priorité"
},
"Type": {
"limit": "Restriction du nombre limite d'appareils",
"type": "Restriction du type d'appareil"
},
"allUsers": "Tous les utilisateurs",
"androidRestrictions": "Restrictions Android",
"create": "Créer une restriction",
"defaultLimitDescription": "Il s'agit de la restriction de limite d'appareils par défaut appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
"defaultTypeDescription": "Il s'agit de la restriction de type d'appareil par défaut appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
"defaultWhfbDescription": "Il s'agit de la configuration par défaut de Windows Hello Entreprise appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
"deleteMessage": "Les utilisateurs impactés seront limités par la restriction de priorité la plus élevée suivante qui a été affectée, ou par la restriction par défaut si aucune autre restriction n'est affectée.",
"deleteTitle": "Voulez-vous vraiment supprimer la restriction {0} ?",
"descriptionHint": "Court paragraphe décrivant l'utilisation professionnelle ou le niveau de restriction caractérisé par les paramètres de restriction.",
"edit": "Modifier la restriction",
"info": "Un appareil doit respecter les restrictions d'inscription affectées à l'utilisateur qui ont la priorité la plus haute. Vous pouvez faire glisser une restriction d'appareil pour changer sa priorité. Les restrictions par défaut ont la priorité la plus basse pour tous les utilisateurs et régissent les inscriptions sans utilisateur. Les restrictions par défaut peuvent être modifiées, mais pas supprimées.",
"iosRestrictions": "Restrictions iOS",
"mDM": "GPM",
"macRestrictions": "Restrictions MacOS",
"maxVersion": "Version maximale",
"minVersion": "Version minimale",
"nameHint": "Il s'agit de l'attribut principal visible pour identifier le jeu de restrictions.",
"noAssignmentsStatusBar": "Affectez une restriction à au moins un groupe. Cliquez sur Propriétés.",
"notFound": "Restriction introuvable.Elle a peut-être déjà été supprimée.",
"personallyOwned": "Appareils personnels",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction Type",
"selectType": "Sélectionner le type de restriction",
"selectValidation": "Sélectionnez une plateforme",
"typeHint": "Choisissez Restriction de type d'appareil pour restreindre les propriétés de l'appareil. Choisissez Restriction de limite d'appareils pour limiter le nombre d'appareils par utilisateur.",
"typeRequired": "Le type de restriction est obligatoire.",
"winPhoneRestrictions": "Restrictions Windows Phone",
"windowsECv1Info": "Les restrictions dinscription plus anciennes ne peuvent pas être modifiées ou redimensionnées. Seules les restrictions ont été supprimées.",
"windowsECv2Info": "Vous pouvez classer par ordre de priorité les restrictions dinscription en les faisant glisser et en les supprimant. Affichez les restrictions par défaut et préconfigurées ci-dessous. Toutes les nouvelles restrictions dinscription auront une priorité supérieure à celle des restrictions par défaut et préconfigurées.",
"windowsRestrictions": "Restrictions Windows",
"windowsRestrictionsPreview": "Restrictions Windows basées sur les filtres (préversion)"
},
"InstallContextType": {
"device": "Appareil",
"deviceContext": "Contexte d'appareil",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Syntaxe de la règle",
"filters": "Filtres"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} est inclus dans un ou plusieurs ensembles de stratégies. Si vous supprimez {0}, vous ne serez plus en mesure de l'affecter par l'intermédiaire de ces ensembles de stratégies. Supprimer quand même ?",
"contentWithError": "{0} est peut-être inclus dans un ou plusieurs ensembles de stratégies. Si vous supprimez {0}, vous ne serez plus en mesure de l'affecter par l'intermédiaire de ces ensembles de stratégies. Supprimer quand même ?",
"header": "Voulez-vous vraiment supprimer cette restriction ?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Autoriser l'utilisateur à changer le paramètre",
"tooltip": "Indiquez si l'utilisateur est autorisé à changer le paramètre."
},
"AllowWorkAccounts": {
"title": "Autoriser uniquement les comptes professionnels ou scolaires",
"tooltip": " Si ce paramètre est activé, les utilisateurs ne peuvent pas ajouter de comptes e-mail et de stockage personnels dans Outlook. Si un utilisateur ajoute un compte personnel dans Outlook, il est invité à le supprimer. S'il ne le supprime pas, l'ajout du compte professionnel ou scolaire échoue."
},
"BlockExternalImages": {
"title": "Bloquer les images externes",
"tooltip": "Si le blocage des images externes est activé, l'application empêche le téléchargement des images hébergées sur Internet qui sont incorporées dans le corps du message. S'il n'est pas configuré, le paramètre d'application par défaut a la valeur Désactivé"
},
"ConfigureEmail": {
"title": "Configurer les paramètres du compte e-mail"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "La signature d'application par défaut indique si l'application utilise « Obtenir Outlook pour Android » comme signature par défaut pendant la composition du message. Si le paramètre est désactivé, la signature par défaut n'est pas utilisée. Toutefois, les utilisateurs peuvent ajouter leur propre signature.\r\n\r\nS'il est défini sur Non configuré, le paramètre d'application par défaut est activé.",
"iOS": "La signature d'application par défaut indique si l'application utilise « Obtenir Outlook pour iOS » comme signature par défaut pendant la composition du message. Si le paramètre est désactivé, la signature par défaut n'est pas utilisée. Toutefois, les utilisateurs peuvent ajouter leur propre signature.\r\n\r\nS'il est défini sur Non configuré, le paramètre d'application par défaut est activé."
},
"title": "Signature d'application par défaut"
},
"OfficeFeedReplies": {
"title": "Flux Discover",
"tooltip": "Le flux Discover couvre vos fichiers Office les plus fréquemment consultés. Par défaut, ce flux est activé quand Delve est activé pour l'utilisateur. Si l'option n'est pas configurée, le paramètre d'application par défaut est défini sur Activé."
},
"OrganizeMailByThread": {
"title": "Organiser le courrier par conversation",
"tooltip": "Le comportement par défaut dans Outlook consiste à regrouper les conversations dans une vue par conversation. Si ce paramètre est désactivé, Outlook affiche les courriers individuellement et ne les regroupe pas par conversation."
},
"PlayMyEmails": {
"title": "Lire mes e-mails",
"tooltip": "La fonctionnalité Lire mes e-mails nest pas activée par défaut dans lapplication, mais elle est promue aux utilisateurs éligibles via une bannière dans la boîte de réception. Quand la valeur est Désactivé, cette fonctionnalité nest pas promue aux utilisateurs éligibles dans lapplication. Les utilisateurs peuvent choisir dactiver manuellement Lire mes e-mails à partir de lapplication, même si cette fonctionnalité est désactivée. Quand la valeur nest pas configurée, le paramètre dapplication par défaut est activé et la fonctionnalité est promue aux utilisateurs éligibles."
},
"SuggestedReplies": {
"title": "Réponses suggérées",
"tooltip": "Quand vous ouvrez un message, Outlook peut suggérer des réponses sous le message. Si vous sélectionnez une réponse suggérée, vous pouvez la modifier avant de l'envoyer."
},
"SyncCalendars": {
"title": "Synchroniser les calendriers",
"tooltip": "Spécifie si les utilisateurs peuvent synchroniser leur calendrier Outlook avec la base de données et lapplication du calendrier natif."
},
"TextPredictions": {
"title": "Prédictions de texte",
"tooltip": "Outlook peut suggérer des mots et des expressions quand vous composez des messages. Quand Outlook propose une suggestion, faites un balayage pour laccepter. Quand loption nest pas configurée, le paramètre de lapplication par défaut est défini sur Activé."
},
"DeviceLimit": {
"description": "Spécifiez le nombre maximal d'appareils qu'un utilisateur peut inscrire.",
"header": "Restrictions de limite d'appareils",
"info": "Définissez le nombre d'appareils que chaque utilisateur peut inscrire."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Doit être supérieur ou égal à 1.0.",
"android": "Entrez un numéro de version valide. Exemples : 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Entrez un numéro de version valide. Par exemple : 5.0, 5.1.1",
"iOS": "Entrez un numéro de version valide. Exemples : 9.0, 10.0, 9.0.2",
"mac": "Entrez un numéro de version valide. Exemples : 10, 10.10, 10.10.1",
"min": "La valeur minimale ne peut pas être inférieure à {0}",
"minMax": "La version minimale ne peut pas être supérieure à la version maximale.",
"windows": "Doit être la version 10.0 ou ultérieur. Laisser vide pour autoriser les appareils Windows 8.1",
"windowsMobile": "Doit être la version 10.0 ou ultérieur. Laisser vide pour autoriser les appareils Windows 8.1"
},
"allPlatformsBlocked": "Toutes les plateformes d'appareils sont bloquées. Autorisez l'inscription des plateformes pour permettre leur configuration.",
"blockManufacturerPlaceHolder": "Nom du fabricant",
"blockManufacturersHeader": "Fabricants bloqués",
"cannotRestrict": "Restriction non prise en charge",
"configurationDescription": "Spécifiez les restrictions de configuration de plateforme que doit respecter un appareil pour l'inscription. Utilisez des stratégies de conformité pour restreindre les appareils après l'inscription. Définissez des versions au format major.minor.build. Les restrictions de version s'appliquent uniquement aux appareils inscrits avec le portail d'entreprise. Intune classe les appareils comme personnels par défaut. Une action supplémentaire est nécessaire pour classer les appareils comme appartenant à l'entreprise.",
"configurationDescriptionLabel": "En savoir plus sur la définition de restrictions dinscription",
"configurations": "Configurer des plateformes",
"deviceManufacturer": "Fabricant du périphérique",
"header": "Restrictions de type d'appareil",
"info": "Définissez les types de plateforme, de version et de gestion qui peuvent être inscrits.",
"manufacturer": "Fabricant",
"max": "Max",
"maxVersion": "Version maximale",
"min": "Min",
"minVersion": "Version minimale",
"newPlatforms": "Vous avez autorisé de nouvelles plateformes. Mettez à jour les configurations de plateforme.",
"personal": "Propriété personnelle",
"platform": "Plateforme",
"platformDescription": "Vous pouvez autoriser l'inscription des plateformes suivantes. Bloquez seulement les plateformes que vous ne pouvez pas prendre en charge. Les plateformes autorisées peuvent être configurées avec des restrictions d'inscription supplémentaires.",
"platformSettings": "Paramètres de plateforme",
"platforms": "Sélectionner des plateformes",
"platformsSelected": "{0} plateformes sélectionnées",
"type": "Type",
"versions": "versions",
"versionsRange": "Autoriser des valeurs min./max. :",
"windowsTooltip": "Restreint l'inscription par le biais de la gestion des appareils mobiles (MDM). Ne restreint pas l'installation de l'agent de PC. Seules les versions Windows 10 et Windows 11 sont prises en charge. N'indiquez pas de version afin d'autoriser Windows 8.1."
},
"Priority": {
"saved": "Les priorités de restriction ont été enregistrées."
},
"Row": {
"announce": "Priorité : {0}. Nom : {1}. Attribué : {2}"
},
"Table": {
"deployed": "Déployées",
"name": "Nom",
"priority": "Priorité"
},
"Type": {
"limit": "Restriction du nombre limite d'appareils",
"type": "Restriction du type d'appareil"
},
"allUsers": "Tous les utilisateurs",
"androidRestrictions": "Restrictions Android",
"create": "Créer une restriction",
"defaultLimitDescription": "Il s'agit de la restriction de limite d'appareils par défaut appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
"defaultTypeDescription": "Il s'agit de la restriction de type d'appareil par défaut appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
"defaultWhfbDescription": "Il s'agit de la configuration par défaut de Windows Hello Entreprise appliquée avec la priorité la plus basse à tous les utilisateurs, quelle que soit leur appartenance à un groupe.",
"deleteMessage": "Les utilisateurs impactés seront limités par la restriction de priorité la plus élevée suivante qui a été affectée, ou par la restriction par défaut si aucune autre restriction n'est affectée.",
"deleteTitle": "Voulez-vous vraiment supprimer la restriction {0} ?",
"descriptionHint": "Court paragraphe décrivant l'utilisation professionnelle ou le niveau de restriction caractérisé par les paramètres de restriction.",
"edit": "Modifier la restriction",
"info": "Un appareil doit respecter les restrictions d'inscription affectées à l'utilisateur qui ont la priorité la plus haute. Vous pouvez faire glisser une restriction d'appareil pour changer sa priorité. Les restrictions par défaut ont la priorité la plus basse pour tous les utilisateurs et régissent les inscriptions sans utilisateur. Les restrictions par défaut peuvent être modifiées, mais pas supprimées.",
"iosRestrictions": "Restrictions iOS",
"mDM": "GPM",
"macRestrictions": "Restrictions MacOS",
"maxVersion": "Version maximale",
"minVersion": "Version minimale",
"nameHint": "Il s'agit de l'attribut principal visible pour identifier le jeu de restrictions.",
"noAssignmentsStatusBar": "Affectez une restriction à au moins un groupe. Cliquez sur Propriétés.",
"notFound": "Restriction introuvable.Elle a peut-être déjà été supprimée.",
"personallyOwned": "Appareils personnels",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction Type",
"selectType": "Sélectionner le type de restriction",
"selectValidation": "Sélectionnez une plateforme",
"typeHint": "Choisissez Restriction de type d'appareil pour restreindre les propriétés de l'appareil. Choisissez Restriction de limite d'appareils pour limiter le nombre d'appareils par utilisateur.",
"typeRequired": "Le type de restriction est obligatoire.",
"winPhoneRestrictions": "Restrictions Windows Phone",
"windowsRestrictions": "Restrictions Windows"
},
"ThemesEnabled": {
"title": "Thèmes activés",
"tooltip": "Spécifie si lutilisateur est autorisé à utiliser un thème visuel personnalisé."
}
},
"Titles": {
"ChromeOs": {
"devices": "Appareils Chrome OS (aperçu)"
@@ -12507,6 +12558,7 @@
"user": "Utilisateur",
"userExecutionStatus": "État de l'utilisateur",
"wdacSupplementalPolicies": "Stratégies supplémentaires en mode S",
"win32CatalogUpdateApp": "Mises à jour pour les applications de catalogue Windows (Win32)",
"windows10DriverUpdate": "Mises à jour des pilotes 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",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Connecteurs partenaires Windows 365",
"windowsDiagnosticData": "Données Windows",
"windowsEnterpriseCertificate": "Certificat d'entreprise Windows",
"windowsManagement": "Scripts PowerShell",
"windowsManagement": "Scripts",
"windowsSideLoadingKeys": "Clés de chargement indépendant Windows",
"windowsSymantecCertificate": "Certificat Windows DigiCert",
"windowsThreatReport": "État de l'agent de menace"
@@ -12551,6 +12603,10 @@
"postponed": "Différé",
"priority": "Haute priorité"
},
"AutoUpdateSupersededApps": {
"label": "Mise à jour automatique",
"sublabel": "Mettre à niveau automatiquement toutes les versions remplacées de cette application"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Arrière-plan ",
"displayText": "Téléchargement de contenu dans {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Legalább egy nagybetű használatának megkövetelése a PIN-kódban"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "A felhasználó módosíthatja a beállításokat",
"tooltip": "Adja meg, hogy a felhasználó módosíthassa-e a beállítást."
},
"AllowWorkAccounts": {
"title": "Csak munkahelyi vagy iskolai fiókok engedélyezése",
"tooltip": " Ha engedélyezi ezt a beállítást, a felhasználók nem fognak tudni személyes e-mail- és tárfiókokat felvenni az Outlookban. Ha a felhasználó rendelkezik az Outlookban felvett személyes fiókkal, az alkalmazás a felhasználótól a személyes fiók eltávolítását fogja kérni. Ha a felhasználó nem távolítja el a személyes fiókot, akkor a munkahelyi vagy iskolai fiókot nem lehet hozzáadni."
},
"BlockExternalImages": {
"title": "Külső képek blokkolása",
"tooltip": "Ha engedélyezve van a külső lemezképek letiltása, az alkalmazás megakadályozza azoknak az interneten tárolt képeknek a letöltését, amelyek az üzenettörzsbe vannak beágyazva. Ha nincs konfigurálva a beállítás, az alkalmazásbeállítás alapértelmezett értéke a Kikapcsolva."
"AppRelationshipStatus": {
"Grid": {
"appVersion": "Alkalmazásverzió",
"dependencyName": "Függőség neve",
"lastModifiedTime": "Utolsó módosítás időpontja",
"relationship": "Kapcsolat",
"replaced": "Lecserélve",
"searchPlaceholder": "Szűrés alkalmazásnév alapján",
"status": "Állapotadatok",
"statusDetails": "Állapot",
"supersedenceName": "Helyettesítés neve"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Gyermekfüggőség",
"indirectSupersedence": "Nem kapcsolódik közvetlenül",
"supersedenceAncestors": "Helyettesítő",
"supersedenceDescendants": "Helyettesítve"
},
"ConfigureEmail": {
"title": "E-mail-fiók beállításainak konfigurálása"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Az alapértelmezett alkalmazás-aláírás azt jelzi hogy az alkalmazás „Az Android Outlook letöltése” aláírást alapértelmezett aláírásként fogja-e használni üzenetek írásakor. Ha le van tiltva a beállítás, az alkalmazás nem fogja használni az alapértelmezett aláírást, a felhasználók azonban hozzáadhatják saját aláírásukat.\r\n\r\nHa nincs konfigurálva a beállítás, az alapértelmezett alkalmazásbeállítás engedélyezve lesz.",
"iOS": "Az alapértelmezett alkalmazás-aláírás azt jelzi hogy az alkalmazás „Az iOS Outlook letöltése” aláírást alapértelmezett aláírásként fogja-e használni üzenetek írásakor. Ha le van tiltva a beállítás, az alkalmazás nem fogja használni az alapértelmezett aláírást, a felhasználók azonban hozzáadhatják saját aláírásukat.\r\n\r\nHa nincs konfigurálva a beállítás, az alapértelmezett alkalmazásbeállítás engedélyezve lesz."
},
"title": "Alapértelmezett alkalmazás-aláírás"
},
"OfficeFeedReplies": {
"title": "Felfedezési hírcsatorna",
"tooltip": "A felfedezési hírcsatorna elérhetővé teszi a leggyakrabban használt Office-fájlokat. Alapértelmezés szerint ez a hírcsatorna engedélyezve van, ha a Delve használata engedélyezve van a felhasználó számára. Ha a beállítás nincs konfigurálva, az alkalmazásbeállítás alapértelmezés szerint be van kapcsolva."
},
"OrganizeMailByThread": {
"title": "Levelezés rendezése szálak szerint",
"tooltip": "Az Outlook alapértelmezett viselkedése, hogy a levelezés beszélgetéseit szálak szerint csoportosított beszélgetési nézetbe rendezi. Ha ez a beállítás le van tiltva, az Outlook minden üzenetet külön jelenít meg, és nem csoportosítja őket szálak szerint."
},
"PlayMyEmails": {
"title": "Saját e-mailek lejátszása",
"tooltip": "A saját e-mailek lejátszása funkció alapértelmezés szerint nincs engedélyezve az alkalmazásban, de a Beérkezett üzenetek mappában egy transzparensen felajánlható a jogosult felhasználóknak. Ha ez a beállítás ki van kapcsolva, a funkció nem lesz felajánlva a jogosult felhasználóknak az alkalmazásban. A felhasználók dönthetnek úgy, hogy manuálisan engedélyezik a saját e-mailek lejátszását az alkalmazásból, még akkor is, ha ez a funkció ki van kapcsolva. Ha a beállítás nincs konfigurálva, az alkalmazásbeállítás alapértelmezés szerint be van kapcsolva, és a funkció fel lesz ajánlva a jogosult felhasználóknak."
},
"SuggestedReplies": {
"title": "Javasolt válaszok",
"tooltip": "Ha megnyit egy üzenetet, az Outlook válaszokat javasolhat az üzenet alatt. Ha kiválaszt egy javasolt választ, azt a küldés előtt módosíthatja."
},
"SyncCalendars": {
"title": "Naptárak szinkronizálása",
"tooltip": "Annak konfigurálása, hogy a felhasználók szinkronizálhatják-e az Outlook-naptárt a natív naptáralkalmazással és -adatbázissal."
},
"TextPredictions": {
"title": "Prediktív szövegbevitel",
"tooltip": "Az Outlook az üzenetek írása közben javasolhat szavakat és kifejezéseket. Ha az Outlook javasol valamit, pöccintéssel elfogadhatja. Ha a beállítás nincs konfigurálva, alapértelmezett esetben be van kapcsolva az alkalmazásban."
"SupersededReplaced": {
"no": "Nem",
"yes": "Igen"
},
"ThemesEnabled": {
"title": "Témák engedélyezve",
"tooltip": "Adja meg, hogy a felhasználó használhat-e egyéni vizuális témát."
}
},
"Tabs": {
"chart": "Diagram",
"dependency": "Függőség",
"label": "Nézet: ",
"supersedence": "Helyettesítés",
"table": "Tábla"
},
"dependencyGraphAriaLabel": "Alkalmazásközi függőségi diagram",
"supersedenceGraphAriaLabel": "Alkalmazás-helyettesítési diagram"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Válasszon felderítési szkriptet",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "Powershell-szkript hozzáadása",
"customAttributeObjectName": "Egyéni attribútum",
"editPowershellScriptFlowSectionName": "PowerShell-szkript szerkesztése",
"enforceSignatureCheckInfoBalloonContent": "A szkriptet egy megbízható közzétevőnek alá kell írnia. Alapértelmezés szerint nem jelenik meg figyelmeztetés vagy üzenet, és a szkript futtatása engedélyezett.",
"enforceSignatureCheckInfoBalloonContent": "A szkriptet egy megbízható közzétevőnek kell aláírnia. Ez az alapértelmezett beállítás.",
"enforceSignatureCheckLabel": "Szkriptaláírás ellenőrzésének kényszerítése",
"executionFrequencyLabel": "Végrehajtási gyakoriság",
"failedToSavePolicy": "A(z) {0} mentése nem sikerült",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Áttekintés és hozzáadás ",
"runAs64BitInfoBalloonContent": "A szkript 64 bites ügyfélarchitektúra esetén 64 bites PowerShell gazdakörnyezetben fog futni fog futni. A szkript alapértelmezés szerint 32 bites PowerShell gazdakörnyezetben fog futni.",
"runAs64BitLabel": "Szkript futtatása 64 bites PowerShell gazdakörnyezetben",
"scriptContextInfoBalloonContent": "A szkript a felhasználó hitelesítő adataival fut az ügyfélszámítógépen. Alapértelmezés szerint a szkript a rendszerkörnyezetben fut.",
"scriptContextInfoBalloonContent": "A szkript a felhasználó hitelesítő adataival fut az ügyfélszámítógépen. Alapértelmezés szerint a szkript a felhasználói környezetben fut.",
"scriptContextLabel": "Szkript futtatása a bejelentkezéshez használt hitelesítő adatokkal",
"scriptsettingsTabHeader": "Szkriptbeállítások",
"settingsHeader": "Válassza ki a szkriptet a konfiguráláshoz",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Állandó VPN-kapcsolat",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Alapvető integritás és eszközintegritás ellenőrzése",
"androidPlayIntegrityVerdictBasicIntegrity": "Alapvető integritás ellenőrzése",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "A megbízható tanúsítványok a későbbiekben nem telepíthetők az Android 11-es vagy újabb verzióját futtató eszközökön, a Samsung Knox-eszközök kivételével. Ha SCEP-tanúsítványprofilokat használ, továbbra is létre kell hoznia és üzembe kell helyeznie egy megbízható tanúsítványsablont, majd társítania kell azt a SCEP-tanúsítványprofillal, de manuálisan kell ellátnia ezeket az eszközöket a megbízható főtanúsítvánnyal.",
"androidTenAndAbovePasswordHeader": "Android 10 és újabb verziók",
"androidTenAndAbovePasswordHeaderDescription": "Ezek a beállítások az Android 10-et vagy újabb rendszereket futtató eszközökön fognak működni.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "A biztonsági javítások és a fejlesztések automatikus telepítésének kikényszerítése az eszközön.",
"complianceUpdatesRequireAutomaticUpdatesName": "Microsoft-frissítések automatikus telepítésének megkövetelése",
"complianceWin10RequiredPasswordTypeDescription": "Ez a beállítás határozza meg, hogy milyen típusú jelszót vagy PIN-kódot kell megadni.<br>\r\nEszköz alapértelmezett beállítása (jelszó, numerikus PIN-kód vagy alfanumerikus PIN-kód szükséges)<br>\r\nAlfanumerikus (jelszó- vagy alfanumerikus PIN-kód szükséges)<br>\r\nNumerikus (jelszó vagy numerikus PIN-kód szükséges)<br>\r\nJavaslatok: kötelező jelszó típusa: alfanumerikus. Jelszóbonyolultság: számjegyek és kisbetűk megkövetelése",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 vagy 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 és 11",
"complianceWindows11DeviceHealthAttestationHeader": "Csak Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "A Microsoft Defender minimális verziója (pl. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "A Microsoft Defender kártevőirtó minimális verziója",
"complianceWindowsDeviceHealthAttestationHeader": "A Microsoft Attestation Service értékelési szabályai<br><br>Ezekkel a szabályokkal ellenőrizheti, hogy az eszközön engedélyezve vannak-e a védelmi intézkedések a rendszerindításkor. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">További információ ezekről a szabályokról</a>",
"complianceWindowsDeviceHealthAttestationHeader": "A Microsoft Attestation Service értékelési szabályai<br><br>Ezekkel a beállításokkal ellenőrizheti, hogy az eszközön be vannak-e állítva a védelmi intézkedések a rendszerindításkor. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">További információ</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Annak a legújabb operációsrendszer-verziónak a kiválasztása, amellyel egy mobileszköz rendelkezhet. Az operációsrendszer-verziót a főverzió.alverzió.build.változat formátumban kell megadni.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Annak a legrégebbi operációsrendszer-verziónak a kiválasztása, amellyel egy mobileszköz rendelkezhet. Az operációsrendszer-verziót a főverzió.alverzió.build.változat formátumban kell megadni.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "Az operációsrendszer-verziót a főverzió.alverzió.build.változat formátumban kell megadni. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95. percentilis elleni védelem",
"basicDataProtectionGuidedString": "Alapszintű adatvédelem gondoskodik arról, hogy a felhasználók PIN-kódot vagy biometrikus adatokat használjanak a munkahelyi vagy iskolai fiókadatok eléréséhez, a munkahelyi vagy iskolai fiókadatok titkosításához, és lehetővé teszi a rendszergazdák számára, hogy szükség esetén szelektív adattörlést hajtsanak végre. Androidos eszközök esetén az alapszintű adatvédelem biztosítja az eszköz kompatibilitását a Google szolgáltatásaival, és lehetővé teszi a Google számára az alkalmazások ellenőrző vizsgálatát.",
"basicIntegrity": "Alapvető integritás",
"basicIntegrityAndCertifiedDevices": "Alapvető integritás és minősített eszközök",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Inaktivitás időkorlátja",
"bioPinInactiveTimeoutTooltip": "Felülbírálás PIN-kóddal biometrikus hitelesítés helyett ennyi idő után (perc)",
"block": "Tiltás",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "A kivágás és másolás minden alkalmazásra érvényes karakterkorlátja",
"camera": "Fényképezőgép",
"checkInCountColumnTitle": "BEJELENTKEZÉSEK SZÁMA",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Beadva",
"checkedInAppNameColumnTitle": "Alkalmazás",
"checkedInButNotSynced": "Beadva. A következő szinkronizáláskor az alkalmazás a következőket fogja megkapni: {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">Nem találom a szükséges alkalmazást</a></p><p><a data-bind=\"fxclick: onClickLob\">Szeretném hozzáadni a saját üzletági alkalmazásomat</a></p>",
"guidedTemplate2": "Megkérdezzük, hogy melyik védelmi szintet szeretné üzembe helyezni a felhasználók számára. További információért tekintse meg a következőt: <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Adatvédelmi keretrendszer alkalmazásvédelmi szabályzatokkal. </a>",
"guidediOSLabel": "iOS-es alkalmazásvédelem",
"hardwareBackedKey": "Hardveralapú kulcs",
"healthCheck": "Állapot-ellenőrzések",
"helpAndSupport": "Súgó és támogatás",
"hideOverrides": "Felülbírálások elrejtése",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Platform",
"platformDropDownLabel": "Platform",
"platformVersion": "Platformverzió",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Kérjük, javítsa a hibákat az alábbi szakaszokban.",
"pleaseSelectAtLeastOneFileError": "Válasszon ki legalább egy fájlt, mielőtt továbblépne",
"policies": "Házirendek",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Eszközzárolás szükséges",
"requireThreatScanOnApps": "Kártevők keresésének megkövetelése az alkalmazásokban",
"requiredField": "Ez a mező nem hagyható üresen",
"requiredSafetyNetEvaluationType": "A kötelező SafetyNet-értékelés típusa",
"requiredSettings": "Kötelező beállítások",
"resetPin": "Új PIN-kód",
"resourceManagement": "Erőforrás-kezelés",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Bármely alkalmazás",
"restrictWebContentOption2": "{0}: Webes hivatkozások engedélyezése minden alkalmazásban",
"rootCertificate": "Főtanúsítvány",
"safetyNetDeviceAttestation": "SafetyNet-eszközigazolás",
"samsungKnoxAttestationRequired": "Samsung Knox-eszközigazolás",
"saveAppsNotificationText": "A kiválasztott alkalmazások mentése",
"saveChangesCommandText": "Mentés",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Szűrési mód",
"assignmentToast": "Végfelhasználói értesítések",
"assignmentTypeTableHeader": "HOZZÁRENDELÉS TÍPUSA",
"autoUpdate": "Automatikus frissítés",
"deadlineTimeColumnLabel": "Telepítési határidő",
"deliveryOptimizationPriorityHeader": "Szállítás optimalizálásának prioritása",
"groupTableHeader": "Csoport",
@@ -8514,6 +8496,10 @@
"showAll": "Az összes bejelentési értesítés megjelenítése",
"showReboot": "A számítógép-újraindításokra vonatkozó bejelentési értesítések megjelenítése"
},
"AutoUpdateSupersededApps": {
"enabled": "Engedélyezve",
"notConfigured": "Nincs konfigurálva"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Háttér",
"displayText": "Tartalom letöltése a következőben: {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "A „Bejelentkezési gyakoriság minden alkalommal” munkamenet-vezérlő megköveteli a „minden felhőalkalmazás” vagy a kifejezetten támogatott alkalmazások kiválasztását",
"allDayCheckboxLabel": "Egész nap",
"allDevicePlatforms": "Bármely eszköz",
"allGuestUserInfoContent": "Tartalmazza az Azure AD B2B-s vendégfelhasználókat, de a SharePoint B2B-s vendégfelhasználókat nem",
"allGuestUserInfoContent": "Tartalmazza a Microsoft Entra B2B-vendégeket, de a SharePoint B2B-vendégek nem",
"allGuestUserLabel": "Minden vendég- és külső felhasználó",
"allRiskLevelsOption": "Minden kockázati szint",
"allTrustedLocationLabel": "Minden megbízható hely",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "További információ a megfelelő eszközök megköveteléséről.",
"controlsDeviceComplianceInfoBubble": "Az eszköznek Intune-kompatibilisnek kell lennie. Ha az eszköz nem megfelelő, a rendszer kérni fogja a felhasználót, hogy tegye megfelelővé az eszközt.",
"controlsDomainJoinedAriaLabel": "További információ a hibrid Azure AD-hez csatlakozó eszközök megköveteléséről.",
"controlsDomainJoinedInfoBubble": "Az eszközöknek hibrid Azure Active Directoryhoz csatlakozónak kell lenniük.",
"controlsDomainJoinedAriaLabel": "További információ a Microsoft Entrához csatlakoztatott hibrid eszközök megköveteléséről.",
"controlsDomainJoinedInfoBubble": "Az eszközöknek hibrid Microsoft Entrához kell csatlakozniuk.",
"controlsMamAriaLabel": "További információ a jóváhagyott ügyfélalkalmazások megköveteléséről.",
"controlsMamInfoBubble": "Az eszköznek a következő jóváhagyott ügyfélalkalmazásokat kell használnia.",
"controlsMfaInfoBubble": "A felhasználónak további biztonság követelményeket kell teljesítenie, például telefonhívás, szöveg",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Eszköz megjelölve megfelelőként",
"deviceStateCompliantInfoContent": "Az Intune-kompatibilis eszközök kimaradnak a szabályzat kiértékeléséből, így például ha a szabályzat letiltja a hozzáférést, akkor az összes eszközt le fogja tiltani, kivéve azokat, amelyek Intune-kompatibilisek.",
"deviceStateConditionConfigureInfoContent": "Szabályzat konfigurálása eszközállapot alapján",
"deviceStateConditionSelectorInfoContent": "Annak meghatározása, hogy az eszköz, amelyről a felhasználó bejelentkezik, hibrid Azure AD-hez csatlakozó, vagy pedig megfelelőként megjelölt.\n Ez elavult, helyette használja a következőt: {1}.",
"deviceStateConditionSelectorInfoContent": "Annak meghatározása, hogy az eszköz, amelyről a felhasználó bejelentkezik, hibrid Microsoft Entrához csatlakozó, vagy pedig megfelelőként megjelölt.\n Ez elavult, helyette használja a következőt: {1}.",
"deviceStateConditionSelectorLabel": "Eszköz állapota (elavult)",
"deviceStateDomainJoined": "Hibrid Azure Active Directoryhoz csatlakozó eszköz",
"deviceStateDomainJoinedInfoContent": "A hibrid Azure Active Directoryhoz csatlakozó eszközök kimaradnak a szabályzat kiértékeléséből, így például ha a szabályzat letiltja a hozzáférést, akkor az összes eszközt le fogja tiltani, kivéve azokat, amelyek a hibrid Azure AD-hez vannak csatlakoztatva.",
"deviceStateDomainJoined": "Az eszköz a hibrid Microsoft Entrához csatlakoztatva",
"deviceStateDomainJoinedInfoContent": "A hibrid Microsoft Entrához csatlakozó eszközök kimaradnak a szabályzat kiértékeléséből, így ha például a szabályzat letiltja a hozzáférést, akkor az összes eszközt le fogja tiltani, kivéve azokat, amelyek a hibrid Microsoft Entrához vannak csatlakoztatva.",
"deviceStateDomainJoinedInfoLinkText": "További információ.",
"deviceStateExcludeDescription": "Válassza ki az eszközök szabályzatból való kizárásához használt eszközállapot-feltételt.",
"deviceStateIncludeAndExcludeOneLabel": "{0}, a következő kizárásával: {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync csak a támogatott platformokkal",
"excludeAllTrustedLocationSelectorText": "minden megbízható hely",
"featureRequiresP2": "Ehhez a funkcióhoz prémium szintű Azure AD 2 licenc szükséges.",
"featureRequiresP2": "Ehhez a funkcióhoz Microsoft Entra ID P2-licenc szükséges.",
"friday": "péntek",
"grantControls": "Engedélyezési vezérlők",
"gridNetworkTrusted": "Megbízható",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Kiválasztott privát kapcsolatok",
"lowRisk": "Kicsi",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "A Feltételes hozzáférési szabályzatok kezeléséhez a szervezetnek Prémium P1 vagy P2 szintű Azure AD-re van szüksége.",
"managePoliciesLicenseText": "A feltételes hozzáférési szabályzatok kezeléséhez a szervezetnek P1 vagy P2 szintű Microsoft Entrára van szüksége.",
"manageSecurityDefaultsAriaLabel": "Javasolt biztonsági beállítások kezelése.",
"markAsTrustedCheckboxInfoBalloonContent": "A megbízható helyről való bejelentkezés csökkenti az adott felhasználó bejelentkezési kockázatát. A helyet csak akkor jelölje meg megbízhatóként, ha tudja, hogy a megadott IP-címtartományok használata megalapozott és hihető a szervezetben.",
"markAsTrustedCheckboxLabel": "Megjelölés megbízható helyként",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Országok/régiók",
"namedLocationTypeLabel": "Hely megadása az alábbi használatával:",
"namedLocationUpsellBanner": "Ez a nézet elavult. Váltson az új és továbbfejlesztett Nevesített helyek nézetre.",
"namedLocationsHelpDescription": "A Microsoft Azure AD biztonsági jelentései nevesített helyeket használnak az álpozitív találatok és az Azure AD Feltételes hozzáférési szabályzatai számának csökkentésére.\n[További információ][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "A Microsoft Entra ID biztonsági jelentései nevesített helyeket használnak az álpozitív találatok és a Microsoft Entra feltételes hozzáférési szabályzatai számának csökkentésére.\n[További információ][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Új IP-címtartomány hozzáadása (példa: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "Legalább egy országot/régiót ki kell választania",
"namedNetworkDeleteCommand": "Törlés",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Új nevesített hely",
"namedNetworksConditionHelpDescription": "Felhasználói hozzáférés szabályozása a fizikai hely alapján.\n[További információ][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} és {1} kizárva",
"namedNetworksHelpDescription": "A Microsoft Azure AD biztonsági jelentései nevesített helyeket használnak a nem valós találatok és az Azure AD Feltételes hozzáférési szabályzatai számának csökkentésére.\n[További információ][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "A Microsoft Entra ID biztonsági jelentései nevesített helyeket használnak az álpozitív találatok és a Microsoft Entra feltételes hozzáférési szabályzatai számának csökkentésére.\n[További információ][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} belefoglalva",
"namedNetworksNone": "Nem találhatók nevesített helyek.",
"namedNetworksTitle": "Helyek konfigurálása",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Csak a globális rendszergazdák menthetik ezt a szabályzatot.",
"or": "{0} VAGY {1} ",
"pickerDoneCommand": "Kész",
"policiesBladeAdPremiumUpsellBannerText": "Hozzon létre saját szabályzatokat, és alkalmazza őket olyan konkrét feltételek alapján, mint a felhőbeli alkalmazások, a bejelentkezési kockázat vagy a prémium szintű Azure AD-t támogató eszközplatformok",
"policiesBladeAdPremiumUpsellBannerText": "Hozzon létre saját szabályzatokat, és olyan konkrét feltételeket célozzon meg velük, mint például a felhőbeli alkalmazások, a bejelentkezési kockázat vagy a prémium szintű Microsoft Entra ID-t használó eszközplatformok.",
"policiesBladeTitle": "Házirendek",
"policiesBladeTitleWithAppName": "Szabályzatok: {0}",
"policiesDisabledBannerText": "A szabályzatok létrehozása és szerkesztése tiltott a csatolt bejelentkezési attribútummal rendelkező alkalmazások esetében.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "A hely (az IP-címtartomány használatával megállapítva), ahonnan a felhasználó bejelentkezik",
"policyConditionLocationPreview": "Helyek (Előzetes verzió)",
"policyConditionSigninRisk": "Bejelentkezési kockázat",
"policyConditionSigninRiskDescription": "Annak valószínűsége, hogy a bejelentkezés nem a felhasználó részéről történt. A kockázati szint lehet magas, közepes vagy alacsony. A beállításhoz Azure AD Premium 2-licenc szükséges.",
"policyConditionSigninRiskDescription": "Annak valószínűsége, hogy a bejelentkezés nem a felhasználó részéről történt. A kockázati szint lehet magas, közepes vagy alacsony. A beállításhoz Microsoft Entra ID P2-licenc szükséges.",
"policyConditionUserRisk": "Felhasználói kockázat",
"policyConditionUserRiskDescription": "A szabályzat érvényesítéséhez szükséges felhasználói kockázati szintek konfigurálása",
"policyConditioniClientApp": "Ügyfélalkalmazások",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "A hozzáférés letiltása vagy a megadásához teljesítendő további követelmények kijelölése",
"policyControlMfaChallengeDisplayedName": "Többtényezős hitelesítés megkövetelése",
"policyControlRequireCompliantAppDisplayedName": "Alkalmazásvédelmi szabályzat megkövetelése",
"policyControlRequireDomainJoinedDisplayedName": "Hibrid Azure Active Directoryhoz csatlakozó eszköz megkövetelése",
"policyControlRequireDomainJoinedDisplayedName": "A hibrid Microsoft Entrához csatlakoztatott eszköz megkövetelése",
"policyControlRequireMamDisplayedName": "Jóváhagyott ügyfélalkalmazás megkövetelése",
"policyControlRequiredPasswordChangeDisplayedName": "Jelszómódosítás megkövetelése",
"policyControlSelectAuthStrength": "Hitelesítés erősségének megkövetelése",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "A(z) {0} frissítése megtörtént. A szabályzat néhány perc múlva érvénybe lép, amennyiben a Házirend engedélyezése beállítás Bekapcsolva értékre van állítva.",
"policyUpdateSuccessTitle": "A(z) {0} alkalmazás frissítése sikeresen megtörtént",
"primaryCol": "Elsődleges",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "Csak jelentés üzemmód: a rendszer bejelentkezéskor kiértékeli és naplózza a szabályzatokat, de ez nincs hatással a felhasználókra.",
"requireAllControlsText": "Az összes kijelölt vezérlő megkövetelése",
"requireCompliantDevice": "Megfelelő eszköz megkövetelése",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Többtényezős hitelesítés megkövetelése a bizalmas alkalmazásokhoz minden esetben vagy csak a vállalati hálózaton kívülről.",
"upsellAppsTitle": "Alkalmazások védelme",
"upsellBannerText": "A szolgáltatás használatához szerezze be az ingyenes Prémium szintű próbaverziót",
"upsellDataDescription": "Annak megkövetelése a vállalati erőforrások elérésének engedélyezéséhez, hogy az eszköz megfelelőként megjelölt vagy hibrid Azure Active Directoryhoz csatlakozó legyen.",
"upsellDataDescription": "Annak megkövetelése a vállalati erőforrások elérésének engedélyezéséhez, hogy az eszköz megfelelőként megjelölt vagy hibrid Microsoft Entrához csatlakozó legyen.",
"upsellDataTitle": "Adatok védelme",
"upsellDescription": "A feltételes hozzáférés biztosítja a céges adatok biztonságához szükséges vezérlési és védelmi funkciókat, és olyan környezetet kínál, amely lehetővé teszi a felhasználóknak, hogy minden eszközön a leghatékonyabban dolgozzanak. Lehetőséget nyújt például a vállalati hálózaton kívülről történő hozzáférés korlátozására vagy a hozzáférés azon eszközökre való korlátozására, amelyek megfelelnek a szabályzatok előírásainak.",
"upsellRiskDescription": "Többtényezős hitelesítés megkövetelése a Microsoft gépi tanulási rendszere által észlelt kockázati események esetében.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "A(z) {0} tanúsítvány frissítése sikerült.",
"vpnCertUpdateSuccessTitle": "A(z) {0} alkalmazás frissítése sikeresen megtörtént",
"vpnFeatureInfo": "A VPN-kapcsolatokkal és a Feltételes hozzáféréssel kapcsolatos további információért kattintson ide.",
"vpnFeatureWarning": "Ha létrehoznak egy VPN-tanúsítványt a Azure Portalon, az Azure AD azonnal megkezdi a rövid élettartamú tanúsítványok kiadását a VPN-ügyfélnek annak használatával. A VPN-ügyfél hitelesítő adatainak érvényesítésével kapcsolatos problémák elkerülése érdekében kritikus fontosságú a VPN-tanúsítvány VPN-kiszolgálón való azonnali üzembe helyezése.",
"vpnFeatureWarning": "Ha létrehoznak egy VPN-tanúsítványt a portálon, a Microsoft Entra ID azonnal megkezdi a rövid élettartamú tanúsítványok kiadását a VPN-ügyfélnek a tanúsítvány használatával. A VPN-ügyfél hitelesítő adatainak ellenőrzésével kapcsolatos problémák elkerülése érdekében kritikus fontosságú a VPN-tanúsítvány VPN-kiszolgálón való azonnali üzembe helyezése.",
"vpnMenuText": "VPN-kapcsolat",
"vpncertDropdownDefaultOption": "Időtartam",
"vpncertDropdownInfoBalloonContent": "Az érvényességi idő kiválasztása a létrehozni kívánt tanúsítványhoz",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Egyéni Intune-szerepkör",
"customRole": "Egyéni szerepkör"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "A(z) {0} egy vagy több szabályzatkészletben szerepel. A(z) {0} törlése után a továbbiakban nem tudja hozzárendelni ezeken a szabályzatkészleteken keresztül. Biztosan törli?",
"contentWithError": "A(z) {0} egy vagy több szabályzatkészletben szerepelhet. A(z) {0} törlése után a továbbiakban nem tudja hozzárendelni ezeken a szabályzatkészleteken keresztül. Biztosan törli?",
"header": "Biztosan törli ezt a korlátozást?"
},
"DeviceLimit": {
"description": "Adja meg, hogy egy felhasználó legfeljebb hány eszközt léptethet be.",
"header": "Eszközszámkorlátok",
"info": "Megadják, hogy egy felhasználó hány eszközt léptethet be."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "1.0 vagy újabb szükséges.",
"android": "Érvényes verziószámot adjon meg. Példák: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Érvényes verziószámot adjon meg. Példák: 5.0, 5.1.1",
"iOS": "Érvényes verziószámot adjon meg. Példák: 9.0, 10.0, 9.0.2",
"mac": "Érvényes verziószámot adjon meg. Példák: 10, 10.10, 10.10.1",
"min": "A minimális verziószám nem lehet kisebb a következő verziószámnál: {0}",
"minMax": "A minimális verziószám nem lehet nagyobb a maximális verziószámnál.",
"windows": "10.0-s vagy újabb verziójúnak kell lennie. A 8.1-es eszközök engedélyezéséhez hagyja üresen a mezőt",
"windowsMobile": "10.0-s vagy újabb verziójúnak kell lennie. A 8.1-es eszközök engedélyezéséhez hagyja üresen a mezőt"
},
"allPlatformsBlocked": "Minden eszközplatform blokkolva van. A platformkonfiguráció engedélyezéséhez engedélyezze a platformregisztrációt.",
"blockManufacturerPlaceHolder": "Gyártó neve",
"blockManufacturersHeader": "Letiltott gyártók",
"cannotRestrict": "A korlátozás nem támogatott",
"configurationDescription": "Adja meg azokat a platformkonfigurációs korlátozásokat, amelyeknek meg kell felelnie egy regisztrálandó eszköznek. Az eszközök regisztrálás utáni korlátozásához használjon megfelelőségi szabályzatokat. A verziókat főverzió.alverzió.buildszám formátumban definiálja. A verziókorlátozások csak a Céges portál alkalmazással regisztrált eszközökre vonatkoznak. Az Intune alapértelmezés szerint személyes tulajdonúként sorolja be az eszközöket. Az eszközök cégesként való besorolásához további műveletekre van szükség.",
"configurationDescriptionLabel": "További információ a beléptetési korlátozások beállításáról",
"configurations": "Platformok konfigurálása",
"deviceManufacturer": "Eszköz gyártója",
"header": "Eszköztípus-korlátozások",
"info": "Megadják, hogy mely platformok, verziók és felügyeleti típusok regisztrálhatók.",
"manufacturer": "Gyártó",
"max": "Maximális",
"maxVersion": "Maximális verzió",
"min": "Min.",
"minVersion": "Legalacsonyabb verzió",
"newPlatforms": "Új platformokat engedélyezett. Fontolja meg a platformkonfigurációk frissítését.",
"personal": "Személyes tulajdonú",
"platform": "Platform",
"platformDescription": "A következő platformok regisztrálását engedélyezheti. Csak azokat a platformokat tiltsa le, amelyeket nem fog támogatni. Az engedélyezett platformokhoz további regisztrációs korlátozások konfigurálhatók.",
"platformSettings": "Platformbeállítások",
"platforms": "Platformok kiválasztása",
"platformsSelected": "{0} platform kijelölve",
"type": "Típus",
"versions": "verziók",
"versionsRange": "Tartomány minimális és maximális értéke:",
"windowsTooltip": "A regisztráció korlátozása a mobileszköz-kezelés segítségével. Ez a PC-s ügynök telepítését nem korlátozza. Csak a Windows 10 és Windows 11 verziók támogatottak. A Windows 8.1 engedélyezéséhez hagyja üresen a verzió mezőt."
},
"Priority": {
"saved": "Sikeresen mentette a szoftverkorlátozási prioritásokat."
},
"Row": {
"announce": "Prioritás: {0}, név: {1}, hozzárendelve: {2}"
},
"Table": {
"deployed": "Üzembe helyezve",
"name": "Név",
"priority": "Prioritás"
},
"Type": {
"limit": "Eszközszám-korlátozás szerkesztése",
"type": "Eszköztípus-korlátozás"
},
"allUsers": "Minden felhasználó",
"androidRestrictions": "Android-korlátozások",
"create": "Korlátozás létrehozása",
"defaultLimitDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett eszközszámkorlát.",
"defaultTypeDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett eszköztípuskorlát.",
"defaultWhfbDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett Vállalati Windows Hello-konfiguráció.",
"deleteMessage": "Az érintett felhasználók a következő legmagasabb prioritású hozzárendelt korlát, illetve ha nincs más korlát hozzárendelve, az alapértelmezett korlát szerint korlátozva lesznek.",
"deleteTitle": "Biztosan törli a(z) {0} korlátozást?",
"descriptionHint": "Egy rövid bekezdés, amely leírja a korlátozás beállításai által meghatározott üzleti felhasználást vagy korlátozási szintet.",
"edit": "Korlátozás szerkesztése",
"info": "Az eszköznek meg kell felelnie a felhasználójához hozzárendelt legmagasabb prioritású regisztrációs korlátozásoknak. A prioritást az eszközkorlátozás húzásával módosíthatja. Az alapértelmezett korlátozások, amelyek az összes felhasználó esetében a legalacsonyabb prioritású korlátozások, a felhasználó nélküli regisztrációk szabályozására szolgálnak. Az alapértelmezett korlátozások szerkeszthetők, de nem törölhetők.",
"iosRestrictions": "iOS-korlátozások",
"mDM": "MDM",
"macRestrictions": "macOS-korlátozások",
"maxVersion": "Maximális verzió",
"minVersion": "Minimális verzió",
"nameHint": "Ez lesz a korlátozáskészlet azonosítása céljából megjelenített elsődleges attribútum.",
"noAssignmentsStatusBar": "Rendeljen hozzá korlátozást legalább egy csoporthoz. Kattintson a Tulajdonságok elemre.",
"notFound": "A korlátozás nem található. Lehet, hogy már törölték.",
"personallyOwned": "Személyes tulajdonú eszközök",
"restriction": "Korlátozás",
"restrictionLowerCase": "korlátozást",
"restrictionType": "Korlátozás típusa",
"selectType": "Válassza ki a korlátozás típusát",
"selectValidation": "Válasszon platformot",
"typeHint": "Az eszköztulajdonságok korlátozására válassza az eszköztípuskorlátot. Az eszközök felhasználónkénti számának korlátozására válassza az eszközszámkorlátot.",
"typeRequired": "A korlátozás típusának megadása kötelező.",
"winPhoneRestrictions": "Windows Phone-korlátozások",
"windowsECv1Info": "A régebbi regisztrációs korlátozások nem szerkeszthetők és nem módosíthatók, csak törölhetők.",
"windowsECv2Info": "Húzással rangsorolhatja a regisztrációs korlátozásokat. Alább megtekintheti az alapértelmezett és az előre konfigurált korlátozásokat. Minden új regisztrációs korlátozás prioritása magasabb lesz, mint az alapértelmezett és az előre konfigurált korlátozások.",
"windowsRestrictions": "Windows-korlátozások",
"windowsRestrictionsPreview": "Szűrőalapú Windows-korlátozások (előzetes verzió)"
},
"InstallContextType": {
"device": "Eszköz",
"deviceContext": "Eszközkörnyezet",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Szabály szintaxisa",
"filters": "Szűrők"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "A(z) {0} egy vagy több szabályzatkészletben szerepel. A(z) {0} törlése után a továbbiakban nem tudja hozzárendelni ezeken a szabályzatkészleteken keresztül. Biztosan törli?",
"contentWithError": "A(z) {0} egy vagy több szabályzatkészletben szerepelhet. A(z) {0} törlése után a továbbiakban nem tudja hozzárendelni ezeken a szabályzatkészleteken keresztül. Biztosan törli?",
"header": "Biztosan törli ezt a korlátozást?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "A felhasználó módosíthatja a beállításokat",
"tooltip": "Adja meg, hogy a felhasználó módosíthassa-e a beállítást."
},
"AllowWorkAccounts": {
"title": "Csak munkahelyi vagy iskolai fiókok engedélyezése",
"tooltip": " Ha engedélyezi ezt a beállítást, a felhasználók nem fognak tudni személyes e-mail- és tárfiókokat felvenni az Outlookban. Ha a felhasználó rendelkezik az Outlookban felvett személyes fiókkal, az alkalmazás a felhasználótól a személyes fiók eltávolítását fogja kérni. Ha a felhasználó nem távolítja el a személyes fiókot, akkor a munkahelyi vagy iskolai fiókot nem lehet hozzáadni."
},
"BlockExternalImages": {
"title": "Külső képek blokkolása",
"tooltip": "Ha engedélyezve van a külső lemezképek letiltása, az alkalmazás megakadályozza azoknak az interneten tárolt képeknek a letöltését, amelyek az üzenettörzsbe vannak beágyazva. Ha nincs konfigurálva a beállítás, az alkalmazásbeállítás alapértelmezett értéke a Kikapcsolva."
},
"ConfigureEmail": {
"title": "E-mail-fiók beállításainak konfigurálása"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Az alapértelmezett alkalmazás-aláírás azt jelzi hogy az alkalmazás „Az Android Outlook letöltése” aláírást alapértelmezett aláírásként fogja-e használni üzenetek írásakor. Ha le van tiltva a beállítás, az alkalmazás nem fogja használni az alapértelmezett aláírást, a felhasználók azonban hozzáadhatják saját aláírásukat.\r\n\r\nHa nincs konfigurálva a beállítás, az alapértelmezett alkalmazásbeállítás engedélyezve lesz.",
"iOS": "Az alapértelmezett alkalmazás-aláírás azt jelzi hogy az alkalmazás „Az iOS Outlook letöltése” aláírást alapértelmezett aláírásként fogja-e használni üzenetek írásakor. Ha le van tiltva a beállítás, az alkalmazás nem fogja használni az alapértelmezett aláírást, a felhasználók azonban hozzáadhatják saját aláírásukat.\r\n\r\nHa nincs konfigurálva a beállítás, az alapértelmezett alkalmazásbeállítás engedélyezve lesz."
},
"title": "Alapértelmezett alkalmazás-aláírás"
},
"OfficeFeedReplies": {
"title": "Felfedezési hírcsatorna",
"tooltip": "A felfedezési hírcsatorna elérhetővé teszi a leggyakrabban használt Office-fájlokat. Alapértelmezés szerint ez a hírcsatorna engedélyezve van, ha a Delve használata engedélyezve van a felhasználó számára. Ha a beállítás nincs konfigurálva, az alkalmazásbeállítás alapértelmezés szerint be van kapcsolva."
},
"OrganizeMailByThread": {
"title": "Levelezés rendezése szálak szerint",
"tooltip": "Az Outlook alapértelmezett viselkedése, hogy a levelezés beszélgetéseit szálak szerint csoportosított beszélgetési nézetbe rendezi. Ha ez a beállítás le van tiltva, az Outlook minden üzenetet külön jelenít meg, és nem csoportosítja őket szálak szerint."
},
"PlayMyEmails": {
"title": "Saját e-mailek lejátszása",
"tooltip": "A saját e-mailek lejátszása funkció alapértelmezés szerint nincs engedélyezve az alkalmazásban, de a Beérkezett üzenetek mappában egy transzparensen felajánlható a jogosult felhasználóknak. Ha ez a beállítás ki van kapcsolva, a funkció nem lesz felajánlva a jogosult felhasználóknak az alkalmazásban. A felhasználók dönthetnek úgy, hogy manuálisan engedélyezik a saját e-mailek lejátszását az alkalmazásból, még akkor is, ha ez a funkció ki van kapcsolva. Ha a beállítás nincs konfigurálva, az alkalmazásbeállítás alapértelmezés szerint be van kapcsolva, és a funkció fel lesz ajánlva a jogosult felhasználóknak."
},
"SuggestedReplies": {
"title": "Javasolt válaszok",
"tooltip": "Ha megnyit egy üzenetet, az Outlook válaszokat javasolhat az üzenet alatt. Ha kiválaszt egy javasolt választ, azt a küldés előtt módosíthatja."
},
"SyncCalendars": {
"title": "Naptárak szinkronizálása",
"tooltip": "Annak konfigurálása, hogy a felhasználók szinkronizálhatják-e az Outlook-naptárt a natív naptáralkalmazással és -adatbázissal."
},
"TextPredictions": {
"title": "Prediktív szövegbevitel",
"tooltip": "Az Outlook az üzenetek írása közben javasolhat szavakat és kifejezéseket. Ha az Outlook javasol valamit, pöccintéssel elfogadhatja. Ha a beállítás nincs konfigurálva, alapértelmezett esetben be van kapcsolva az alkalmazásban."
},
"DeviceLimit": {
"description": "Adja meg, hogy egy felhasználó legfeljebb hány eszközt léptethet be.",
"header": "Eszközszámkorlátok",
"info": "Megadják, hogy egy felhasználó hány eszközt léptethet be."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "1.0 vagy újabb szükséges.",
"android": "Érvényes verziószámot adjon meg. Példák: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Érvényes verziószámot adjon meg. Példák: 5.0, 5.1.1",
"iOS": "Érvényes verziószámot adjon meg. Példák: 9.0, 10.0, 9.0.2",
"mac": "Érvényes verziószámot adjon meg. Példák: 10, 10.10, 10.10.1",
"min": "A minimális verziószám nem lehet kisebb a következő verziószámnál: {0}",
"minMax": "A minimális verziószám nem lehet nagyobb a maximális verziószámnál.",
"windows": "10.0-s vagy újabb verziójúnak kell lennie. A 8.1-es eszközök engedélyezéséhez hagyja üresen a mezőt",
"windowsMobile": "10.0-s vagy újabb verziójúnak kell lennie. A 8.1-es eszközök engedélyezéséhez hagyja üresen a mezőt"
},
"allPlatformsBlocked": "Minden eszközplatform blokkolva van. A platformkonfiguráció engedélyezéséhez engedélyezze a platformregisztrációt.",
"blockManufacturerPlaceHolder": "Gyártó neve",
"blockManufacturersHeader": "Letiltott gyártók",
"cannotRestrict": "A korlátozás nem támogatott",
"configurationDescription": "Adja meg azokat a platformkonfigurációs korlátozásokat, amelyeknek meg kell felelnie egy regisztrálandó eszköznek. Az eszközök regisztrálás utáni korlátozásához használjon megfelelőségi szabályzatokat. A verziókat főverzió.alverzió.buildszám formátumban definiálja. A verziókorlátozások csak a Céges portál alkalmazással regisztrált eszközökre vonatkoznak. Az Intune alapértelmezés szerint személyes tulajdonúként sorolja be az eszközöket. Az eszközök cégesként való besorolásához további műveletekre van szükség.",
"configurationDescriptionLabel": "További információ a beléptetési korlátozások beállításáról",
"configurations": "Platformok konfigurálása",
"deviceManufacturer": "Eszköz gyártója",
"header": "Eszköztípus-korlátozások",
"info": "Megadják, hogy mely platformok, verziók és felügyeleti típusok regisztrálhatók.",
"manufacturer": "Gyártó",
"max": "Maximális",
"maxVersion": "Maximális verzió",
"min": "Min.",
"minVersion": "Legalacsonyabb verzió",
"newPlatforms": "Új platformokat engedélyezett. Fontolja meg a platformkonfigurációk frissítését.",
"personal": "Személyes tulajdonú",
"platform": "Platform",
"platformDescription": "A következő platformok regisztrálását engedélyezheti. Csak azokat a platformokat tiltsa le, amelyeket nem fog támogatni. Az engedélyezett platformokhoz további regisztrációs korlátozások konfigurálhatók.",
"platformSettings": "Platformbeállítások",
"platforms": "Platformok kiválasztása",
"platformsSelected": "{0} platform kijelölve",
"type": "Típus",
"versions": "verziók",
"versionsRange": "Tartomány minimális és maximális értéke:",
"windowsTooltip": "A regisztráció korlátozása a mobileszköz-kezelés segítségével. Ez a PC-s ügynök telepítését nem korlátozza. Csak a Windows 10 és Windows 11 verziók támogatottak. A Windows 8.1 engedélyezéséhez hagyja üresen a verzió mezőt."
},
"Priority": {
"saved": "Sikeresen mentette a szoftverkorlátozási prioritásokat."
},
"Row": {
"announce": "Prioritás: {0}, név: {1}, hozzárendelve: {2}"
},
"Table": {
"deployed": "Üzembe helyezve",
"name": "Név",
"priority": "Prioritás"
},
"Type": {
"limit": "Eszközszám-korlátozás szerkesztése",
"type": "Eszköztípus-korlátozás"
},
"allUsers": "Minden felhasználó",
"androidRestrictions": "Android-korlátozások",
"create": "Korlátozás létrehozása",
"defaultLimitDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett eszközszámkorlát.",
"defaultTypeDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett eszköztípuskorlát.",
"defaultWhfbDescription": "Ez a csoporttagságtól függetlenül az összes felhasználóra a legalacsonyabb prioritással alkalmazott alapértelmezett Vállalati Windows Hello-konfiguráció.",
"deleteMessage": "Az érintett felhasználók a következő legmagasabb prioritású hozzárendelt korlát, illetve ha nincs más korlát hozzárendelve, az alapértelmezett korlát szerint korlátozva lesznek.",
"deleteTitle": "Biztosan törli a(z) {0} korlátozást?",
"descriptionHint": "Egy rövid bekezdés, amely leírja a korlátozás beállításai által meghatározott üzleti felhasználást vagy korlátozási szintet.",
"edit": "Korlátozás szerkesztése",
"info": "Az eszköznek meg kell felelnie a felhasználójához hozzárendelt legmagasabb prioritású regisztrációs korlátozásoknak. A prioritást az eszközkorlátozás húzásával módosíthatja. Az alapértelmezett korlátozások, amelyek az összes felhasználó esetében a legalacsonyabb prioritású korlátozások, a felhasználó nélküli regisztrációk szabályozására szolgálnak. Az alapértelmezett korlátozások szerkeszthetők, de nem törölhetők.",
"iosRestrictions": "iOS-korlátozások",
"mDM": "MDM",
"macRestrictions": "MacOS-korlátozások",
"maxVersion": "Maximális verzió",
"minVersion": "Minimális verzió",
"nameHint": "Ez lesz a korlátozáskészlet azonosítása céljából megjelenített elsődleges attribútum.",
"noAssignmentsStatusBar": "Rendeljen hozzá korlátozást legalább egy csoporthoz. Kattintson a Tulajdonságok elemre.",
"notFound": "A korlátozás nem található. Lehet, hogy már törölték.",
"personallyOwned": "Személyes tulajdonú eszközök",
"restriction": "Korlátozás",
"restrictionLowerCase": "korlátozást",
"restrictionType": "Korlátozás típusa",
"selectType": "Válassza ki a korlátozás típusát",
"selectValidation": "Válasszon platformot",
"typeHint": "Az eszköztulajdonságok korlátozására válassza az eszköztípuskorlátot. Az eszközök felhasználónkénti számának korlátozására válassza az eszközszámkorlátot.",
"typeRequired": "A korlátozás típusának megadása kötelező.",
"winPhoneRestrictions": "Windows Phone-korlátozások",
"windowsRestrictions": "Windows-korlátozások"
},
"ThemesEnabled": {
"title": "Témák engedélyezve",
"tooltip": "Adja meg, hogy a felhasználó használhat-e egyéni vizuális témát."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS-eszközök (előzetes verzió)"
@@ -12507,6 +12558,7 @@
"user": "Felhasználó",
"userExecutionStatus": "Felhasználó állapota",
"wdacSupplementalPolicies": "Az S mód kiegészítő szabályzatai",
"win32CatalogUpdateApp": "A Windows (Win32) katalógusalkalmazásainak frissítései",
"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",
"windows10UpdateRings": "Frissítési körök Windows 10 és újabb verziókhoz",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Windows 365-partnerösszekötők",
"windowsDiagnosticData": "Windows-adatok",
"windowsEnterpriseCertificate": "Windowsos vállalati tanúsítvány",
"windowsManagement": "PowerShell-szkriptek",
"windowsManagement": "Parancsfájlok",
"windowsSideLoadingKeys": "Közvetlen telepítési kulcsok (Windows)",
"windowsSymantecCertificate": "Windows DigiCert-tanúsítvány",
"windowsThreatReport": "Veszélyforrás állapota"
@@ -12551,6 +12603,10 @@
"postponed": "Elhalasztva",
"priority": "Magas prioritás"
},
"AutoUpdateSupersededApps": {
"label": "Automatikus frissítés",
"sublabel": "Az alkalmazás minden felülírt verziójának automatikus frissítése"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Háttér",
"displayText": "Tartalom letöltése a következőben: {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Richiedi l'uso di almeno una lettera maiuscola nel PIN"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Consenti all'utente di cambiare impostazione",
"tooltip": "Specificare se l'utente è autorizzato a modificare l'impostazione."
},
"AllowWorkAccounts": {
"title": "Consenti solo account aziendali o dell'istituto di istruzione",
"tooltip": " Se si abilita questa impostazione, gli utenti non potranno aggiungere account di posta elettronica personali e account di archiviazione in Outlook. Se l'utente aggiunge un account personale a Outlook, verrà richiesta la rimozione dell'account personale. Se l'utente non rimuove l'account personale, non sarà possibile aggiungere l'account aziendale o dell'istituto di istruzione."
},
"BlockExternalImages": {
"title": "Blocca le immagini esterne",
"tooltip": "Quando il blocco delle immagini esterne è abilitato, l'app impedirà il download di immagini ospitate su Internet incorporate nel corpo del messaggio. Se questa opzione non viene configurata, l'impostazione predefinita per l'app è Off"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "Versione dell'app",
"dependencyName": "Nome della dipendenza",
"lastModifiedTime": "Ora ultima modifica",
"relationship": "Relazione",
"replaced": "Sostituito",
"searchPlaceholder": "Filtra per nome dell'app",
"status": "Dettagli stato",
"statusDetails": "Stato",
"supersedenceName": "Nome sostituzione"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Dipendenza figlio",
"indirectSupersedence": "Non direttamente correlato",
"supersedenceAncestors": "Sostituzione in corso",
"supersedenceDescendants": "Sostituito"
},
"ConfigureEmail": {
"title": "Configura le impostazioni dell'account di posta elettronica"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "L'opzione Firma dell'app predefinita indica se l'app userà \"Ottieni Outlook per Android\" come firma predefinita durante la composizione del messaggio. Se l'impostazione è configurata come Off, la firma predefinita non verrà usata. Gli utenti possono tuttavia aggiungere la propria firma.\r\n\r\nSe l'opzione è impostata su Non configurata, l'impostazione predefinita dell'app è On.",
"iOS": "L'opzione Firma dell'app predefinita indica se l'app userà \"Ottieni Outlook per iOS\" come firma predefinita durante la composizione del messaggio. Se l'impostazione è configurata come Off, la firma predefinita non verrà usata. Gli utenti possono tuttavia aggiungere la propria firma.\r\n\r\nSe l'opzione è impostata su Non configurata, l'impostazione predefinita dell'app è On."
},
"title": "Firma dell'app predefinita"
},
"OfficeFeedReplies": {
"title": "Feed di individuazione",
"tooltip": "Il feed di individuazione espone i file di Office a cui si accede più spesso. Per impostazione predefinita, questo feed viene abilitato quando Delve è abilitato per l'utente. Se non si configura questa opzione, l'impostazione predefinita dell'app è On."
},
"OrganizeMailByThread": {
"title": "Organizza i messaggi in base al thread",
"tooltip": "Il comportamento predefinito in Outlook prevede l'aggregazione delle conversazioni tramite posta elettronica in una visualizzazione di conversazioni in thread. Se questa impostazione è disabilitata, Outlook visualizzerà ogni messaggio individualmente e non raggrupperà i messaggi in base al thread."
},
"PlayMyEmails": {
"title": "Riproduci i messaggi di posta elettronica",
"tooltip": "La funzionalità Riproduci i messaggi di posta elettronica non è abilitata per impostazione predefinita nell'app, ma viene promossa a utenti idonei tramite un banner nella Posta in arrivo. Se questa opzione è impostata su Off, la funzionalità non verrà promossa a utenti idonei nell'app. Gli utenti possono scegliere di abilitare manualmente l'opzione Riproduci i messaggi di posta elettronica dall'app, anche quando questa funzionalità è impostata su Off. Se questa opzione è impostata su Non configurata, l'impostazione predefinita per l'app è On e la funzionalità verrà promossa agli utenti idonei."
},
"SuggestedReplies": {
"title": "Risposte suggerite",
"tooltip": "Quando si apre un messaggio, è possibile che Outlook suggerisca risposte sotto il messaggio. Se si seleziona una risposta suggerita, è possibile modificarla prima dell'invio."
},
"SyncCalendars": {
"title": "Sincronizza i calendari",
"tooltip": "Determinare se gli utenti possono sincronizzare il calendario di Outlook con l'app e il database del calendario nativo."
},
"TextPredictions": {
"title": "Completamenti del testo",
"tooltip": "Outlook può suggerire parole e frasi durante la composizione di messaggi. Quando Outlook offre un suggerimento, scorrere rapidamente per accettarlo. Quando questa opzione è impostata su Non configurato, l'impostazione predefinita dell'app sarà impostata su On."
"SupersededReplaced": {
"no": "No",
"yes": "Sì"
},
"ThemesEnabled": {
"title": "Temi abilitati",
"tooltip": "Specificare se l'utente è autorizzato a usare un tema visivo personalizzato."
}
},
"Tabs": {
"chart": "Grafico",
"dependency": "Dipendenza",
"label": "Visualizza: ",
"supersedence": "Sostituzione",
"table": "Tabella"
},
"dependencyGraphAriaLabel": "Grafico sulle dipendenze dell'app",
"supersedenceGraphAriaLabel": "Grafico sostituzione app"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Selezionare uno script di individuazione",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "Aggiungere uno script di PowerShell",
"customAttributeObjectName": "Attributo personalizzato",
"editPowershellScriptFlowSectionName": "Modifica lo script di PowerShell",
"enforceSignatureCheckInfoBalloonContent": "Lo script deve essere firmato da un'entità di pubblicazione attendibile. Per impostazione predefinita, non viene visualizzato alcun avviso o richiesta e lo script viene eseguito senza essere bloccato.",
"enforceSignatureCheckInfoBalloonContent": "Lo script deve essere firmato da un autore attendibile. Impostazione predefinita.",
"enforceSignatureCheckLabel": "Imponi il controllo della firma degli script",
"executionFrequencyLabel": "Frequenza di esecuzione",
"failedToSavePolicy": "Non è stato possibile salvare {0}",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Verifica e aggiungi ",
"runAs64BitInfoBalloonContent": "Lo script verrà eseguito in un host di PowerShell a 64 bit per un'architettura client a 64 bit. Per impostazione predefinita, lo script verrà eseguito in un host di PowerShell a 32 bit.",
"runAs64BitLabel": "Esegui lo script in un host di PowerShell a 64 bit",
"scriptContextInfoBalloonContent": "Lo script viene eseguito nel computer client con le credenziali degli utenti. Per impostazione predefinita, lo script viene eseguito nel contesto di sistema.",
"scriptContextInfoBalloonContent": "Lo script viene eseguito nel computer client con le credenziali degli utenti. Per impostazione predefinita, lo script viene eseguito nel contesto dell'utente.",
"scriptContextLabel": "Esegui lo script con le credenziali dell'utente connesso",
"scriptsettingsTabHeader": "Impostazioni script",
"settingsHeader": "Selezionare uno script da configurare",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "VPN sempre attiva",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Verifica lintegrità di base e lintegrità del dispositivo",
"androidPlayIntegrityVerdictBasicIntegrity": "Verifica l'integrità di base",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Non è più possibile installare certificati attendibili nei dispositivi che eseguono Android 11 o versione successiva, ad eccezione dei dispositivi Samsung Knox. Se si usano profili certificato SCEP, sarà necessario continuare a creare e distribuire un profilo certificato attendibile e associarlo con il profilo certificato SCEP, ma occorrerà distribuire manualmente il certificato radice attendibile in tali dispositivi.",
"androidTenAndAbovePasswordHeader": "Android 10 e versioni successive",
"androidTenAndAbovePasswordHeaderDescription": "Queste impostazioni sono applicabili ai dispositivi che eseguono Android 10 o versioni successive.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Forza gli aggiornamenti automatici nel dispositivo per applicare patch di protezione e miglioramenti.",
"complianceUpdatesRequireAutomaticUpdatesName": "Richiedi aggiornamenti automatici da Microsoft",
"complianceWin10RequiredPasswordTypeDescription": "Questa impostazione determina il tipo di password/PIN richiesto.<br>\r\nImpostazione predefinita dispositivo (password, PIN numerico o PIN alfanumerico richiesto)<br>\r\nAlfanumerico (password o PIN alfanumerico richiesto)<br>\r\nNumerico (password o PIN numerico richiesto)<br>\r\nRaccomandazioni: Tipo di password richiesto: Alfanumerico, Complessità password: Richiedi numeri e lettere minuscole",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 o 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 e 11",
"complianceWindows11DeviceHealthAttestationHeader": "Solo Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Versione minima di Microsoft Defender (ad esempio 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Versione minima di Microsoft Defender Antimalware",
"complianceWindowsDeviceHealthAttestationHeader": "Le regole di valutazione del servizio di attestazione Microsoft<br><br>Usare queste regole per confermare che in un dispositivo sono abilitate misure di protezione al momento dell'avvio. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Altre informazioni sulle regole</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Le impostazioni di valutazione del servizio di attestazione Microsoft<br><br>Usare queste impostazioni per confermare che in un dispositivo sono abilitate misure di protezione al momento dell'avvio. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Altre informazioni</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Consente di selezionare la versione più recente di un sistema operativo consentita in un dispositivo mobile. La versione del sistema operativo è definita come major.minor.build.revision.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Consente di selezionare la versione meno recente di un sistema operativo consentita in un dispositivo mobile. La versione del sistema operativo è definita come major.minor.build.revision.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "La versione del sistema operativo viene definita come major.minor.build.revision. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "Protezione al 95° percentile",
"basicDataProtectionGuidedString": "Protezione dei dati di base: consente di assicurare che agli utenti venga richiesto l'utilizzo del PIN o dei dati biometrici per accedere ai dati dell'account aziendale o dell'istituto di istruzione, oltre a consentire di crittografare i dati dell'account aziendale o dell'istituto di istruzione e permettere agli amministratori di eseguire cancellazioni selettive dei dati, se necessario. Per i dispositivi Android la protezione dei dati di base assicura anche la compatibilità del dispositivo con i servizi Google e abilita l'analisi di verifica app di Google.",
"basicIntegrity": "Integrità di base",
"basicIntegrityAndCertifiedDevices": "Integrità di base e dispositivi certificati",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Timeout di inattività",
"bioPinInactiveTimeoutTooltip": "Override con il PIN invece dei dati biometrici dopo (minuti)",
"block": "Blocca",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Limite di caratteri per copia e incolla per qualsiasi app",
"camera": "Fotocamera",
"checkInCountColumnTitle": "NUMERO DI SINCRONIZZAZIONI",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Sincronizzazione eseguita",
"checkedInAppNameColumnTitle": "APP",
"checkedInButNotSynced": "Sincronizzazione eseguita. Alla sincronizzazione successiva, questa app riceverà {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">Non è possibile trovare l'app necessaria</a></p><p><a data-bind=\"fxclick: onClickLob\">È necessario aggiungere un'app line-of-business personalizzata</a></p>",
"guidedTemplate2": "Verrà richiesto di specificare il livello di protezione che si vuole distribuire agli utenti. Per altre informazioni, vedere <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Framework di protezione dei dati con i criteri di protezione delle app. </a>",
"guidediOSLabel": "Protezione delle app iOS",
"hardwareBackedKey": "Chiave basata su hardware",
"healthCheck": "Controlli integrità",
"helpAndSupport": "Guida e supporto tecnico",
"hideOverrides": "Nascondi sostituzioni",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Piattaforma",
"platformDropDownLabel": "Piattaforma",
"platformVersion": "Versione della piattaforma",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Correggere gli errori nelle sezioni seguenti.",
"pleaseSelectAtLeastOneFileError": "Selezionare almeno un file prima di continuare",
"policies": "Criteri",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Richiedi blocco del dispositivo",
"requireThreatScanOnApps": "Rendi obbligatoria l'analisi delle minacce nelle app",
"requiredField": "Questo campo non può essere vuoto",
"requiredSafetyNetEvaluationType": "Tipo di valutazione SafetyNet necessario",
"requiredSettings": "Impostazioni obbligatorie",
"resetPin": "Reimposta PIN",
"resourceManagement": "Gestione risorse",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Qualsiasi app",
"restrictWebContentOption2": "{0}: consentire i collegamenti Web in qualsiasi app",
"rootCertificate": "Certificato radice",
"safetyNetDeviceAttestation": "Attestazione del dispositivo SafetyNet",
"samsungKnoxAttestationRequired": "Attestazione del dispositivo Samsung Knox",
"saveAppsNotificationText": "Salvataggio delle app selezionate",
"saveChangesCommandText": "Salva",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Modalità filtro",
"assignmentToast": "Notifiche per l'utente finale",
"assignmentTypeTableHeader": "TIPO DI ASSEGNAZIONE",
"autoUpdate": "Aggiornamento automatico",
"deadlineTimeColumnLabel": "Scadenza installazione",
"deliveryOptimizationPriorityHeader": "Priorità di ottimizzazione recapito",
"groupTableHeader": "Gruppo",
@@ -8514,6 +8496,10 @@
"showAll": "Mostra tutte le notifiche di tipo avviso popup",
"showReboot": "Mostra le notifiche di tipo avviso popup per i riavvii dei computer"
},
"AutoUpdateSupersededApps": {
"enabled": "Abilitato",
"notConfigured": "Non configurato"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Download del contenuto in {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "Il controllo della sessione di \"Frequenza di accesso ogni volta\" richiede la selezione di \"Tutte le app cloud\" o di app supportarte specifiche",
"allDayCheckboxLabel": "Tutto il giorno",
"allDevicePlatforms": "Qualsiasi dispositivo",
"allGuestUserInfoContent": "Include i guest di Azure AD B2B ma non i guest di SharePoint B2B",
"allGuestUserInfoContent": "Include i guest di Microsoft Entra B2B ma non i guest di SharePoint B2B",
"allGuestUserLabel": "Tutti gli utenti guest ed esterni",
"allRiskLevelsOption": "Tutti i livelli di rischio",
"allTrustedLocationLabel": "Tutte le posizioni attendibili",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Altre informazioni su come richiedere dispositivi conformi.",
"controlsDeviceComplianceInfoBubble": "Il dispositivo deve essere compatibile con Intune. In caso contrario, all'utente verrà chiesto di rendere compatibile il dispositivo.",
"controlsDomainJoinedAriaLabel": "Altre informazioni su come richiedere dispositivi aggiunti ad Azure AD ibrido.",
"controlsDomainJoinedInfoBubble": "I dispositivi devono essere aggiunti ad Azure AD ibrido.",
"controlsDomainJoinedAriaLabel": "Scopri di più su come richiedere dispositivi aggiunti a Microsoft Entra ibrido.",
"controlsDomainJoinedInfoBubble": "I dispositivi devono essere aggiunti a Microsoft Entra ibrido.",
"controlsMamAriaLabel": "Altre informazioni su come richiedere applicazioni client approvate.",
"controlsMamInfoBubble": "Il dispositivo deve usare queste applicazioni client approvate.",
"controlsMfaInfoBubble": "L'utente deve completare requisiti di sicurezza aggiuntivi, ad esempio telefonata, SMS",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Dispositivo contrassegnato come conforme",
"deviceStateCompliantInfoContent": "I dispositivi conformi con Intune verranno esclusi dalla valutazione di questi criteri, quindi se ad esempio i criteri bloccano l'accesso, verranno bloccati tutti i dispositivi tranne quelli conformi con Intune.",
"deviceStateConditionConfigureInfoContent": "Configura i criteri in base allo stato del dispositivo",
"deviceStateConditionSelectorInfoContent": "Indica se lo stato del dispositivo da cui l'utente esegue l'accesso è 'Aggiunto ad Azure AD ibrido' o 'contrassegnato come conforme'. \n Questo è stato deprecato. In alternativa, usare '{1}'.",
"deviceStateConditionSelectorInfoContent": "Indica se lo stato del dispositivo da cui l'utente esegue l'accesso è 'Aggiunto a Microsoft Entra ibrido' o 'contrassegnato come conforme'. \n Questo è stato deprecato. In alternativa, usare '{1}'.",
"deviceStateConditionSelectorLabel": "Stato del dispositivo (deprecato)",
"deviceStateDomainJoined": "Dispositivo aggiunto ad Azure AD ibrido",
"deviceStateDomainJoinedInfoContent": "I dispositivi aggiunti ad Azure AD ibrido verranno esclusi dalla valutazione di questi criteri, quindi se ad esempio i criteri bloccano l'accesso, verranno bloccati tutti i dispositivi tranne quelli aggiunti ad Azure AD ibrido.",
"deviceStateDomainJoined": "Dispositivo aggiunto a Microsoft Entra ibrido",
"deviceStateDomainJoinedInfoContent": "I dispositivi aggiunti a Microsoft Entra ibrido verranno esclusi dalla valutazione di questi criteri, quindi se ad esempio i criteri bloccano l'accesso, verranno bloccati tutti i dispositivi tranne quelli aggiunti a Microsoft Entra ibrido.",
"deviceStateDomainJoinedInfoLinkText": "Altre informazioni.",
"deviceStateExcludeDescription": "Selezionare la condizione dello stato del dispositivo usata per escludere i dispositivi dai criteri.",
"deviceStateIncludeAndExcludeOneLabel": "{0} ed escludi {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync solo con piattaforme supportate",
"excludeAllTrustedLocationSelectorText": "tutte le posizioni attendibili",
"featureRequiresP2": "Questa funzionalità richiede la licenza Azure AD Premium 2.",
"featureRequiresP2": "Questa funzionalità richiede la licenza Microsoft Entra ID P2.",
"friday": "Venerdì",
"grantControls": "Concedi controlli",
"gridNetworkTrusted": "Attendibile",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Collegamenti privati selezionati",
"lowRisk": "Bassa",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "Per gestire i criteri di accesso condizionale, l'organizzazione necessita di Azure AD Premium P1 o P2.",
"managePoliciesLicenseText": "Per gestire i criteri di accesso condizionale, l'organizzazione necessita di Microsoft Entra ID P1 o P2.",
"manageSecurityDefaultsAriaLabel": "Gestire le impostazioni predefinite per la sicurezza.",
"markAsTrustedCheckboxInfoBalloonContent": "L'accesso da una posizione attendibile riduce il rischio di accesso dell'utente. Contrassegnare questa posizione come attendibile solo se si è certi che gli intervalli IP immessi siano stabiliti e credibili nell'organizzazione.",
"markAsTrustedCheckboxLabel": "Contrassegna come posizione attendibile",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Paesi/aree geografiche",
"namedLocationTypeLabel": "Definisci il tipo di posizione in base a:",
"namedLocationUpsellBanner": "Questa visualizzazione è stata deprecata. Passare alla visualizzazione nuova e migliorata 'Località denominate'.",
"namedLocationsHelpDescription": "Le località denominate vengono usate dai report sulla sicurezza di Azure AD per ridurre i falsi positivi e i criteri di accesso condizionale di Azure AD.\n[Altre informazioni][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Le località denominate vengono usate dai report sulla sicurezza di Microsoft Entra ID per ridurre i falsi positivi e dai criteri di accesso condizionale di Microsoft Entra.\n[Altre informazioni][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Aggiungi un nuovo intervallo IP. Ad esempio: 40.77.182.32/27",
"namedNetworkCountryNeeded": "È necessario selezionare almeno un paese/area geografica",
"namedNetworkDeleteCommand": "Elimina",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Nuova località denominata",
"namedNetworksConditionHelpDescription": "È possibile controllare l'accesso degli utenti in base alla posizione fisica.\n[Altre informazioni][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} e {1} escluse",
"namedNetworksHelpDescription": "Le posizioni specifiche vengono usate dai report sulla sicurezza di Azure AD per ridurre i falsi positivi e dai criteri di accesso condizionale di Azure AD.\n[Altre informazioni][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Le località denominate vengono usate dai report sulla sicurezza di Microsoft Entra ID per ridurre i falsi positivi e dai criteri di accesso condizionale di Microsoft Entra.\n[Altre informazioni][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} inclusi",
"namedNetworksNone": "Non sono state trovate località denominate.",
"namedNetworksTitle": "Configura posizioni",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Solo gli amministratori globali possono salvare questi criteri.",
"or": "{0} OR {1} ",
"pickerDoneCommand": "Fatto",
"policiesBladeAdPremiumUpsellBannerText": "È possibile creare criteri personalizzati per soddisfare condizioni specifiche, ad esempio app cloud, rischio di accesso e piattaforme di dispositivi con Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "È possibile creare criteri personalizzati per soddisfare condizioni specifiche, ad esempio app cloud, rischio di accesso e piattaforme di dispositivi con Microsoft Entra ID Premium.",
"policiesBladeTitle": "Criteri",
"policiesBladeTitleWithAppName": "Criteri: {0}",
"policiesDisabledBannerText": "Non è consentito creare e modificare criteri per applicazioni con un attributo di accesso collegato.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Posizione (determinata tramite l'intervallo di indirizzi IP) da cui accede l'utente",
"policyConditionLocationPreview": "Località (anteprima)",
"policyConditionSigninRisk": "Rischio di accesso",
"policyConditionSigninRiskDescription": "Probabilità che l'accesso provenga da una persona diversa dall'utente. Il livello di rischio può essere alto, medio o basso. Richiede una licenza di Azure AD Premium 2.",
"policyConditionSigninRiskDescription": "Probabilità che l'accesso provenga da una persona diversa dall'utente. Il livello di rischio può essere alto, medio o basso. Richiede una licenza di Microsoft Entra ID P2.",
"policyConditionUserRisk": "Rischio utente",
"policyConditionUserRiskDescription": "Consente di configurare i livelli di rischio utente necessari per l'applicazione dei criteri",
"policyConditioniClientApp": "App client",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Permette di bloccare l'accesso o di selezionare requisiti aggiuntivi che devono essere soddisfatti per consentire l'accesso",
"policyControlMfaChallengeDisplayedName": "Richiedere l'autenticazione a più fattori",
"policyControlRequireCompliantAppDisplayedName": "Richiedi criteri di protezione dell'app",
"policyControlRequireDomainJoinedDisplayedName": "Richiedi dispositivo aggiunto ad Azure AD ibrido",
"policyControlRequireDomainJoinedDisplayedName": "Richiedi dispositivo aggiunto a Microsoft Entra ibrido",
"policyControlRequireMamDisplayedName": "Richiedi app client approvata",
"policyControlRequiredPasswordChangeDisplayedName": "Richiedi modifica password",
"policyControlSelectAuthStrength": "Richiedi complessità dell'autenticazione",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "L'aggiornamento di {0} è riuscito. I criteri saranno abilitati entro pochi minuti se l'opzione \"Abilita criteri\" è impostata su \"Sì\".",
"policyUpdateSuccessTitle": "L'aggiornamento di {0} è stato completato",
"primaryCol": "Primario",
"privateLinkLabel": "Collegamento privato di Azure AD",
"privateLinkLabel": "Collegamento privato a Microsoft Entra ID",
"reportOnlyInfoBox": "Modalità Solo report: i criteri vengono valutati e registrati all'accesso ma non influiscono sugli utenti.",
"requireAllControlsText": "Richiedi tutti i controlli selezionati",
"requireCompliantDevice": "Richiedi un dispositivo conforme",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "È possibile richiedere l'autenticazione a più fattori per le applicazioni sensibili sempre oppure solo dall'esterno della rete aziendale.",
"upsellAppsTitle": "Proteggere le applicazioni",
"upsellBannerText": "Per accedere a questa funzionalità, usare una versione di valutazione gratuita Premium",
"upsellDataDescription": "È possibile richiedere che i dispositivi siano contrassegnati come conformi o aggiunti ad Azure AD ibrido per consentire l'accesso alle risorse aziendali.",
"upsellDataDescription": "È possibile richiedere che i dispositivi siano contrassegnati come conformi o aggiunti a Microsoft Entra ibrido per consentire l'accesso alle risorse aziendali.",
"upsellDataTitle": "Proteggere i dati",
"upsellDescription": "L'accesso condizionale garantisce il controllo e la protezione necessari per proteggere i dati aziendali, offrendo al contempo ai dipendenti un'esperienza che permette loro di svolgere il proprio lavoro al meglio e da qualsiasi dispositivo. Ad esempio, è possibile bloccare l'accesso dall'esterno della rete aziendale oppure bloccare l'accesso ai dispositivi che non soddisfano i requisiti di conformità.",
"upsellRiskDescription": "È possibile richiedere lautenticazione a più fattori per gli eventi di rischio rilevati dal sistema di Machine Learning di Microsoft.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "L'aggiornamento di {0} è stato completato.",
"vpnCertUpdateSuccessTitle": "L'aggiornamento di {0} è stato completato",
"vpnFeatureInfo": "Per altre informazioni sulla connettività VPN e l'accesso condizionale, fare clic qui.",
"vpnFeatureWarning": "Dopo la creazione di un certificato VPN nel portale di Azure, Azure AD inizierà a usarlo immediatamente per rilasciare certificati di breve durata per il client VPN. È essenziale che il certificato VPN venga distribuito immediatamente nel server VPN per evitare problemi relativi alla convalida delle credenziali del client VPN.",
"vpnFeatureWarning": "Dopo la creazione di un certificato VPN nel portale, Microsoft Entra ID inizierà a usarlo immediatamente per rilasciare certificati di breve durata per il client VPN. È essenziale che il certificato VPN venga distribuito immediatamente nel server VPN per evitare problemi relativi alla convalida delle credenziali del client VPN.",
"vpnMenuText": "Connettività VPN",
"vpncertDropdownDefaultOption": "Durata",
"vpncertDropdownInfoBalloonContent": "Selezionare la durata per il certificato da creare",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Ruolo di Intune personalizzato",
"customRole": "Ruolo personalizzato"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} è incluso in uno o più set di criteri. Se si elimina {0}, non sarà più possibile assegnarlo tramite questi set di criteri. Eliminarlo comunque?",
"contentWithError": "È possibile che {0} sia incluso in uno o più set di criteri. Se si elimina {0}, non sarà più possibile assegnarlo tramite questi set di criteri. Eliminarlo comunque?",
"header": "Eliminare questa restrizione?"
},
"DeviceLimit": {
"description": "Specificare il numero massimo di dispositivi che un utente può registrare.",
"header": "Restrizioni sul limite di dispositivi",
"info": "Consente di definire il numero di dispositivi che ogni utente può registrare."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Deve essere 1.0 o successiva.",
"android": "Immettere un numero di versione valido. Esempi: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Immettere un numero di versione valido. Esempi: 5.0, 5.1.1",
"iOS": "Immettere un numero di versione valido. Esempi: 9.0, 10.0, 9.0.2",
"mac": "Immettere un numero di versione valido. Esempi: 10, 10.10, 10.10.1",
"min": "Il valore minimo non può essere inferiore a {0}",
"minMax": "La versione minima non può essere superiore alla versione massima.",
"windows": "Deve essere 10.0 o versioni successive. Lasciare vuoto per consentire i dispositivi 8.1",
"windowsMobile": "Deve essere 10.0 o versioni successive. Lasciare vuoto per consentire i dispositivi 8.1"
},
"allPlatformsBlocked": "Tutte le piattaforme dei dispositivi sono bloccate. Consentire la registrazione della piattaforma per abilitare la configurazione della piattaforma.",
"blockManufacturerPlaceHolder": "Nome del produttore",
"blockManufacturersHeader": "Produttori bloccati",
"cannotRestrict": "La restrizione non è supportata",
"configurationDescription": "Specificare le restrizioni della configurazione della piattaforma da soddisfare per consentire la registrazione di un dispositivo. Usare i criteri di conformità per limitare i dispositivi dopo la registrazione. Definire le versioni come major.minor.build. Le restrizioni sulla versione sono applicabili solo ai dispositivi registrati nel portale aziendale. Intune classifica i dispositivi come di proprietà personale per impostazione predefinita. Per classificare i dispositivi come di proprietà dell'azienda sono necessarie azioni aggiuntive.",
"configurationDescriptionLabel": "Altre informazioni sulla configurazione delle restrizioni della registrazione",
"configurations": "Configura le piattaforme",
"deviceManufacturer": "Produttore dispositivo",
"header": "Restrizioni dei tipi di dispositivo",
"info": "Consente di definire le piattaforme, le versioni e i tipi di gestione autorizzati alla registrazione.",
"manufacturer": "Produttore",
"max": "Max",
"maxVersion": "Versione massima",
"min": "Min",
"minVersion": "Versione minima",
"newPlatforms": "Sono state autorizzate nuove piattaforme. Prendere in considerazione l'aggiornamento delle configurazioni delle piattaforme.",
"personal": "Di proprietà personale",
"platform": "Piattaforma",
"platformDescription": "È possibile consentire la registrazione delle piattaforme seguenti. Bloccare solo le piattaforme che non verranno supportate. Le piattaforme consentite possono essere configurate con restrizioni registrazione aggiuntive.",
"platformSettings": "Impostazioni piattaforma",
"platforms": "Seleziona le piattaforme",
"platformsSelected": "{0} piattaforme selezionate",
"type": "Tipo",
"versions": "versioni",
"versionsRange": "Consenti un intervallo min/max:",
"windowsTooltip": "Consente di limitare la registrazione tramite Mobile Device Management. Non limita l'installazione dell'agente del computer. Sono supportate solo le versioni Windows 10 e Windows 11. Lasciare le versioni vuote per consentire Windows 8.1."
},
"Priority": {
"saved": "Le priorità delle restrizioni sono state salvate."
},
"Row": {
"announce": "Priorità: {0}, nome: {1}, assegnata: {2}"
},
"Table": {
"deployed": "Distribuito",
"name": "Nome",
"priority": "Priorità"
},
"Type": {
"limit": "Restrizione sul limite di dispositivi",
"type": "Restrizione dei tipi di dispositivo"
},
"allUsers": "Tutti gli utenti",
"androidRestrictions": "Restrizioni Android",
"create": "Crea restrizione",
"defaultLimitDescription": "Restrizione sul limite di dispositivi predefinita applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
"defaultTypeDescription": "Restrizione sul tipo di dispositivi predefinita applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
"defaultWhfbDescription": "Questa è la configurazione predefinita di Windows Hello for Business applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
"deleteMessage": "Gli utenti interessati saranno limitati dalla restrizione di priorità più elevata successiva assegnata o dalla restrizione predefinita, se non sono assegnate altre restrizioni.",
"deleteTitle": "Eliminare la restrizione {0}?",
"descriptionHint": "Breve paragrafo che illustra l'uso aziendale o il livello di restrizione caratterizzato dalle impostazioni di restrizione.",
"edit": "Modifica la restrizione",
"info": "Un dispositivo deve essere conforme alle restrizioni della registrazione con priorità più elevata assegnate al rispettivo utente. È possibile trascinare una restrizione del dispositivo per modificarne la priorità. Le restrizioni predefinite hanno la priorità più bassa per tutti gli utenti e regolamentano le registrazioni senza utenti. Le restrizioni predefinite possono essere modificate ma non eliminate.",
"iosRestrictions": "Restrizioni iOS",
"mDM": "Gestione dispositivi mobili",
"macRestrictions": "Restrizioni macOS",
"maxVersion": "Versione massima",
"minVersion": "Versione minima",
"nameHint": "Questo sarà l'attributo principale visibile per l'identificazione del set di restrizioni.",
"noAssignmentsStatusBar": "Assegnare la restrizione ad almeno un gruppo. Fare clic su Proprietà.",
"notFound": "La limitazione non è stata trovata. È possibile che sia già stata eliminata.",
"personallyOwned": "Dispositivi di proprietà personale",
"restriction": "Restrizione",
"restrictionLowerCase": "restrizione",
"restrictionType": "Tipo restrizione",
"selectType": "Selezionare il tipo di restrizione",
"selectValidation": "Selezionare una piattaforma",
"typeHint": "Scegliere Restrizione dei tipi di dispositivo per limitare le proprietà dei dispositivi. Scegliere Restrizione sul limite di dispositivi per limitare il numero di dispositivi per utente.",
"typeRequired": "Il tipo di restrizione è obbligatorio.",
"winPhoneRestrictions": "Restrizioni Windows Phone",
"windowsECv1Info": "Le restrizioni di registrazione meno recenti non possono essere modificate o ridimensionate, ma solo eliminate.",
"windowsECv2Info": "È possibile dare priorità alle restrizioni di registrazione trascinandole e rilasciandole. Di seguito sono elencate le restrizioni predefinite e preconfigurate. Tutte le nuove restrizioni di registrazione avranno una priorità superiore rispetto alle restrizioni predefinite e preconfigurate.",
"windowsRestrictions": "Restrizioni Windows",
"windowsRestrictionsPreview": "Restrizioni di Windows basate su filtro (anteprima)"
},
"InstallContextType": {
"device": "Dispositivo",
"deviceContext": "Contesto di dispositivo",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Sintassi delle regole",
"filters": "Filtri"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} è incluso in uno o più set di criteri. Se si elimina {0}, non sarà più possibile assegnarlo tramite questi set di criteri. Eliminarlo comunque?",
"contentWithError": "È possibile che {0} sia incluso in uno o più set di criteri. Se si elimina {0}, non sarà più possibile assegnarlo tramite questi set di criteri. Eliminarlo comunque?",
"header": "Eliminare questa restrizione?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Consenti all'utente di cambiare impostazione",
"tooltip": "Specificare se l'utente è autorizzato a modificare l'impostazione."
},
"AllowWorkAccounts": {
"title": "Consenti solo account aziendali o dell'istituto di istruzione",
"tooltip": " Se si abilita questa impostazione, gli utenti non potranno aggiungere account di posta elettronica personali e account di archiviazione in Outlook. Se l'utente aggiunge un account personale a Outlook, verrà richiesta la rimozione dell'account personale. Se l'utente non rimuove l'account personale, non sarà possibile aggiungere l'account aziendale o dell'istituto di istruzione."
},
"BlockExternalImages": {
"title": "Blocca le immagini esterne",
"tooltip": "Quando il blocco delle immagini esterne è abilitato, l'app impedirà il download di immagini ospitate su Internet incorporate nel corpo del messaggio. Se questa opzione non viene configurata, l'impostazione predefinita per l'app è Off"
},
"ConfigureEmail": {
"title": "Configura le impostazioni dell'account di posta elettronica"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "L'opzione Firma dell'app predefinita indica se l'app userà \"Ottieni Outlook per Android\" come firma predefinita durante la composizione del messaggio. Se l'impostazione è configurata come Off, la firma predefinita non verrà usata. Gli utenti possono tuttavia aggiungere la propria firma.\r\n\r\nSe l'opzione è impostata su Non configurata, l'impostazione predefinita dell'app è On.",
"iOS": "L'opzione Firma dell'app predefinita indica se l'app userà \"Ottieni Outlook per iOS\" come firma predefinita durante la composizione del messaggio. Se l'impostazione è configurata come Off, la firma predefinita non verrà usata. Gli utenti possono tuttavia aggiungere la propria firma.\r\n\r\nSe l'opzione è impostata su Non configurata, l'impostazione predefinita dell'app è On."
},
"title": "Firma dell'app predefinita"
},
"OfficeFeedReplies": {
"title": "Feed di individuazione",
"tooltip": "Il feed di individuazione espone i file di Office a cui si accede più spesso. Per impostazione predefinita, questo feed viene abilitato quando Delve è abilitato per l'utente. Se non si configura questa opzione, l'impostazione predefinita dell'app è On."
},
"OrganizeMailByThread": {
"title": "Organizza i messaggi in base al thread",
"tooltip": "Il comportamento predefinito in Outlook prevede l'aggregazione delle conversazioni tramite posta elettronica in una visualizzazione di conversazioni in thread. Se questa impostazione è disabilitata, Outlook visualizzerà ogni messaggio individualmente e non raggrupperà i messaggi in base al thread."
},
"PlayMyEmails": {
"title": "Riproduci i messaggi di posta elettronica",
"tooltip": "La funzionalità Riproduci i messaggi di posta elettronica non è abilitata per impostazione predefinita nell'app, ma viene promossa a utenti idonei tramite un banner nella Posta in arrivo. Se questa opzione è impostata su Off, la funzionalità non verrà promossa a utenti idonei nell'app. Gli utenti possono scegliere di abilitare manualmente l'opzione Riproduci i messaggi di posta elettronica dall'app, anche quando questa funzionalità è impostata su Off. Se questa opzione è impostata su Non configurata, l'impostazione predefinita per l'app è On e la funzionalità verrà promossa agli utenti idonei."
},
"SuggestedReplies": {
"title": "Risposte suggerite",
"tooltip": "Quando si apre un messaggio, è possibile che Outlook suggerisca risposte sotto il messaggio. Se si seleziona una risposta suggerita, è possibile modificarla prima dell'invio."
},
"SyncCalendars": {
"title": "Sincronizza i calendari",
"tooltip": "Determinare se gli utenti possono sincronizzare il calendario di Outlook con l'app e il database del calendario nativo."
},
"TextPredictions": {
"title": "Completamenti del testo",
"tooltip": "Outlook può suggerire parole e frasi durante la composizione di messaggi. Quando Outlook offre un suggerimento, scorrere rapidamente per accettarlo. Quando questa opzione è impostata su Non configurato, l'impostazione predefinita dell'app sarà impostata su On."
},
"DeviceLimit": {
"description": "Specificare il numero massimo di dispositivi che un utente può registrare.",
"header": "Restrizioni sul limite di dispositivi",
"info": "Consente di definire il numero di dispositivi che ogni utente può registrare."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Deve essere 1.0 o successiva.",
"android": "Immettere un numero di versione valido. Esempi: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Immettere un numero di versione valido. Esempi: 5.0, 5.1.1",
"iOS": "Immettere un numero di versione valido. Esempi: 9.0, 10.0, 9.0.2",
"mac": "Immettere un numero di versione valido. Esempi: 10, 10.10, 10.10.1",
"min": "Il valore minimo non può essere inferiore a {0}",
"minMax": "La versione minima non può essere superiore alla versione massima.",
"windows": "Deve essere 10.0 o versioni successive. Lasciare vuoto per consentire i dispositivi 8.1",
"windowsMobile": "Deve essere 10.0 o versioni successive. Lasciare vuoto per consentire i dispositivi 8.1"
},
"allPlatformsBlocked": "Tutte le piattaforme dei dispositivi sono bloccate. Consentire la registrazione della piattaforma per abilitare la configurazione della piattaforma.",
"blockManufacturerPlaceHolder": "Nome del produttore",
"blockManufacturersHeader": "Produttori bloccati",
"cannotRestrict": "La restrizione non è supportata",
"configurationDescription": "Specificare le restrizioni della configurazione della piattaforma da soddisfare per consentire la registrazione di un dispositivo. Usare i criteri di conformità per limitare i dispositivi dopo la registrazione. Definire le versioni come major.minor.build. Le restrizioni sulla versione sono applicabili solo ai dispositivi registrati nel portale aziendale. Intune classifica i dispositivi come di proprietà personale per impostazione predefinita. Per classificare i dispositivi come di proprietà dell'azienda sono necessarie azioni aggiuntive.",
"configurationDescriptionLabel": "Altre informazioni sulla configurazione delle restrizioni della registrazione",
"configurations": "Configura le piattaforme",
"deviceManufacturer": "Produttore dispositivo",
"header": "Restrizioni dei tipi di dispositivo",
"info": "Consente di definire le piattaforme, le versioni e i tipi di gestione autorizzati alla registrazione.",
"manufacturer": "Produttore",
"max": "Max",
"maxVersion": "Versione massima",
"min": "Min",
"minVersion": "Versione minima",
"newPlatforms": "Sono state autorizzate nuove piattaforme. Prendere in considerazione l'aggiornamento delle configurazioni delle piattaforme.",
"personal": "Di proprietà personale",
"platform": "Piattaforma",
"platformDescription": "È possibile consentire la registrazione delle piattaforme seguenti. Bloccare solo le piattaforme che non verranno supportate. Le piattaforme consentite possono essere configurate con restrizioni registrazione aggiuntive.",
"platformSettings": "Impostazioni piattaforma",
"platforms": "Seleziona le piattaforme",
"platformsSelected": "{0} piattaforme selezionate",
"type": "Tipo",
"versions": "versioni",
"versionsRange": "Consenti un intervallo min/max:",
"windowsTooltip": "Consente di limitare la registrazione tramite Mobile Device Management. Non limita l'installazione dell'agente del computer. Sono supportate solo le versioni Windows 10 e Windows 11. Lasciare le versioni vuote per consentire Windows 8.1."
},
"Priority": {
"saved": "Le priorità delle restrizioni sono state salvate."
},
"Row": {
"announce": "Priorità: {0}, nome: {1}, assegnata: {2}"
},
"Table": {
"deployed": "Distribuito",
"name": "Nome",
"priority": "Priorità"
},
"Type": {
"limit": "Restrizione sul limite di dispositivi",
"type": "Restrizione dei tipi di dispositivo"
},
"allUsers": "Tutti gli utenti",
"androidRestrictions": "Restrizioni Android",
"create": "Crea restrizione",
"defaultLimitDescription": "Restrizione sul limite di dispositivi predefinita applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
"defaultTypeDescription": "Restrizione sul tipo di dispositivi predefinita applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
"defaultWhfbDescription": "Questa è la configurazione predefinita di Windows Hello for Business applicata con la priorità più bassa a tutti gli utenti, indipendentemente dall'appartenenza ai gruppi.",
"deleteMessage": "Gli utenti interessati saranno limitati dalla restrizione di priorità più elevata successiva assegnata o dalla restrizione predefinita, se non sono assegnate altre restrizioni.",
"deleteTitle": "Eliminare la restrizione {0}?",
"descriptionHint": "Breve paragrafo che illustra l'uso aziendale o il livello di restrizione caratterizzato dalle impostazioni di restrizione.",
"edit": "Modifica la restrizione",
"info": "Un dispositivo deve essere conforme alle restrizioni della registrazione con priorità più elevata assegnate al rispettivo utente. È possibile trascinare una restrizione del dispositivo per modificarne la priorità. Le restrizioni predefinite hanno la priorità più bassa per tutti gli utenti e regolamentano le registrazioni senza utenti. Le restrizioni predefinite possono essere modificate ma non eliminate.",
"iosRestrictions": "Restrizioni iOS",
"mDM": "Gestione dispositivi mobili",
"macRestrictions": "Restrizioni macOS",
"maxVersion": "Versione massima",
"minVersion": "Versione minima",
"nameHint": "Questo sarà l'attributo principale visibile per l'identificazione del set di restrizioni.",
"noAssignmentsStatusBar": "Assegnare la restrizione ad almeno un gruppo. Fare clic su Proprietà.",
"notFound": "La limitazione non è stata trovata. È possibile che sia già stata eliminata.",
"personallyOwned": "Dispositivi di proprietà personale",
"restriction": "Restrizione",
"restrictionLowerCase": "restrizione",
"restrictionType": "Tipo restrizione",
"selectType": "Selezionare il tipo di restrizione",
"selectValidation": "Selezionare una piattaforma",
"typeHint": "Scegliere Restrizione dei tipi di dispositivo per limitare le proprietà dei dispositivi. Scegliere Restrizione sul limite di dispositivi per limitare il numero di dispositivi per utente.",
"typeRequired": "Il tipo di restrizione è obbligatorio.",
"winPhoneRestrictions": "Restrizioni Windows Phone",
"windowsRestrictions": "Restrizioni Windows"
},
"ThemesEnabled": {
"title": "Temi abilitati",
"tooltip": "Specificare se l'utente è autorizzato a usare un tema visivo personalizzato."
}
},
"Titles": {
"ChromeOs": {
"devices": "Dispositivi Chrome OS (anteprima)"
@@ -12507,6 +12558,7 @@
"user": "Utente",
"userExecutionStatus": "Stato dell'utente",
"wdacSupplementalPolicies": "Criteri supplementari per la modalità S",
"win32CatalogUpdateApp": "App del catalogo di Aggiornamenti per Windows (Win32)",
"windows10DriverUpdate": "Aggiornamenti del driver 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",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Connettori partner di Windows 365",
"windowsDiagnosticData": "Dati di Windows",
"windowsEnterpriseCertificate": "Certificato Windows Enterprise",
"windowsManagement": "Script di PowerShell",
"windowsManagement": "Script",
"windowsSideLoadingKeys": "Chiavi di sideload Windows",
"windowsSymantecCertificate": "Certificato DigiCert Windows",
"windowsThreatReport": "Stato dell'agente delle minacce"
@@ -12551,6 +12603,10 @@
"postponed": "Posticipata",
"priority": "Priorità alta"
},
"AutoUpdateSupersededApps": {
"label": "Aggiornamento automatico",
"sublabel": "Aggiorna automaticamente le eventuali versioni sostituite di questa applicazione"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Sfondo",
"displayText": "Download del contenuto in {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "PIN で大文字を 1 文字以上使うことを要求する"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "ユーザーに設定の変更を許可する",
"tooltip": "ユーザーに設定の変更を許可するかどうかを指定します。"
},
"AllowWorkAccounts": {
"title": "職場または学校アカウントのみ許可する",
"tooltip": "この設定を有効にすると、ユーザーは Outlook での個人用のメールおよびストレージ アカウントの追加ができません。ユーザーが Outlook に追加された個人用アカウントを持っている場合は、個人用アカウントを削除するように求められます。ユーザーが個人用アカウントを削除しない場合は、職場または学校アカウントを追加できません。"
},
"BlockExternalImages": {
"title": "外部画像をブロックする",
"tooltip": "外部画像のブロックを有効にすると、アプリはメッセージの本文に埋め込まれているインターネット上でホストされている画像をダウンロードしません。設定で構成しない場合、既定のアプリ設定はオフになっています。"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "アプリのバージョン",
"dependencyName": "依存関係名",
"lastModifiedTime": "最終変更時刻",
"relationship": "リレーションシップ",
"replaced": "置換済み",
"searchPlaceholder": "アプリ名でフィルター処理",
"status": "状態の詳細",
"statusDetails": "状態",
"supersedenceName": "置き換えの名前"
},
"RelatedAppRelationship": {
"dependencyDescendants": "子の依存関係",
"indirectSupersedence": "直接関連付けられていません",
"supersedenceAncestors": "置き換え中",
"supersedenceDescendants": "置き換え済み"
},
"ConfigureEmail": {
"title": "メール アカウント設定を構成する"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "既定のアプリ署名では、アプリでメッセージを作成中に、既定の署名に「Outlook for Android の入手」を使用するかどうかを示します。設定がオフに構成されている場合、既定の署名は使用されませんが、ユーザー独自の署名を追加することができます。\r\n\r\n[未構成] に設定すると、既定のアプリ設定がオンになります。",
"iOS": "既定のアプリ署名では、アプリでメッセージを作成中に、既定の署名に「Outlook for iOSの入手」を使用するかどうかを示します。設定がオフに構成されている場合、既定の署名は使用されませんが、ユーザー独自の署名を追加することができます。\r\n\r\n[未構成] に設定すると、既定のアプリ設定がオンになります。"
},
"title": "既定のアプリ署名"
},
"OfficeFeedReplies": {
"title": "Discover フィード",
"tooltip": "Discover フィードは、最も頻繁にアクセスされている Office ファイルを明らかにします。既定では、Delve がユーザーに対して有効になっているときに、このフィードが有効になります。未構成として設定した場合、既定のアプリ設定はオンに設定されます。"
},
"OrganizeMailByThread": {
"title": "スレッド別にメールを整理",
"tooltip": "Outlook の既定の動作では、電子メールの会話がスレッド形式の会話ビューにまとめられます。この設定を無効にすると、Outlook で各メールが個別に表示され、スレッドごとにグループ化されません。"
},
"PlayMyEmails": {
"title": "メールの再生",
"tooltip": "アプリでは、メールの再生機能は既定では有効になっていませんが、受信トレイ内のバナーを介して対象ユーザーに宣伝されます。オフに設定すると、この機能はアプリ内の対象ユーザーに宣伝されなくなります。ユーザーは、この機能がオフに設定されている場合でも、アプリ内からメールの再生を手動で有効にすることを選択できます。未構成として設定した場合、既定のアプリ設定はオンになり、機能が対象ユーザーに宣伝されます。"
},
"SuggestedReplies": {
"title": "返信の提案",
"tooltip": "Outlook でメッセージを開くと、メッセージの下に返信が提案される場合があります。提案された返信を選択し、編集してから送信できます。"
},
"SyncCalendars": {
"title": "予定表の同期",
"tooltip": "ユーザーが Outlook カレンダーをネイティブのカレンダー アプリとデータベースと同期できるようにするかどうかを構成します。"
},
"TextPredictions": {
"title": "予測入力",
"tooltip": "Outlook では、メッセージを作成するときに、単語やフレーズを候補として表示できます。Outlook で候補が提示されたら、スワイプして受け入れます。未構成として設定されている場合、既定のアプリ設定は [オン] に設定されます。"
"SupersededReplaced": {
"no": "いいえ",
"yes": "はい"
},
"ThemesEnabled": {
"title": "テーマの有効化",
"tooltip": "ユーザーがカスタム ビジュアル テーマを使用できるかどうかを指定します。"
}
},
"Tabs": {
"chart": "グラフ",
"dependency": "依存関係",
"label": "表示: ",
"supersedence": "置き換え",
"table": "テーブル"
},
"dependencyGraphAriaLabel": "アプリの依存関係グラフ",
"supersedenceGraphAriaLabel": "アプリの置き換えグラフ"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "検出スクリプトを選択してください",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "PowerShell スクリプトの追加",
"customAttributeObjectName": "カスタム属性",
"editPowershellScriptFlowSectionName": "PowerShell スクリプトの編集",
"enforceSignatureCheckInfoBalloonContent": "スクリプトは信頼された発行元によって署名されている必要があります。既定では、警告またはプロンプトは表示されず、スクリプトの実行はブロックされません。",
"enforceSignatureCheckInfoBalloonContent": "スクリプトは信頼できる発行元によって署名されている必要があります。これは既定です。",
"enforceSignatureCheckLabel": "スクリプト署名チェックを強制",
"executionFrequencyLabel": "実行の頻度",
"failedToSavePolicy": "{0} を保存できませんでした",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "確認 + 追加",
"runAs64BitInfoBalloonContent": "スクリプトは、64 ビット クライアント アーキテクチャの 64 ビットの PowerShell ホストで実行されます。既定では、スクリプトは、32 ビットの PowerShell ホストで実行されます。",
"runAs64BitLabel": "64 ビットの PowerShell ホストでスクリプトを実行する",
"scriptContextInfoBalloonContent": "スクリプトは、クライアント コンピューターでユーザーの資格情報によって実行されます。既定では、スクリプトはシステム コンテキストで実行されます。",
"scriptContextInfoBalloonContent": "スクリプトは、クライアント コンピューターでユーザーの資格情報によって実行されます。既定では、スクリプトはユーザー コンテキストで実行されます。",
"scriptContextLabel": "このスクリプトをログオンしたユーザーの資格情報を使用して実行する",
"scriptsettingsTabHeader": "スクリプト設定",
"settingsHeader": "構成するスクリプトを選択します",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Always On VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "基本的な整合性とデバイスの整合性のチェック",
"androidPlayIntegrityVerdictBasicIntegrity": "基本的な整合性のチェック",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "信頼された証明書は、Samsung Knox デバイスを除く、Android 11 以降を実行するデバイスにインストールできなくなりました。SCEP 証明書プロファイルを使用する場合は、引き続き信頼された証明書プロファイルを作成して展開し、それを SCEP 証明書プロファイルに関連付ける必要がありますが、信頼されたルート証明書を手動でそれらのデバイスに配布する必要があります。",
"androidTenAndAbovePasswordHeader": "Android 10 以降",
"androidTenAndAbovePasswordHeaderDescription": "これらの設定は、Android 10 以降を実行しているデバイスで機能します。",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "セキュリティの修正プログラムと機能強化のために自動的にデバイスが強制的に更新されるようにします。",
"complianceUpdatesRequireAutomaticUpdatesName": "Microsoft からの自動更新を必須にする",
"complianceWin10RequiredPasswordTypeDescription": "この設定では、必要なパスワードまたは PIN の種類を決定します。<br>\r\nデバイスの既定 (パスワード、数字 PIN、または英数字 PIN が必要)<br>\r\n英数字 (パスワードまたは英数字 PIN が必要)<br>\r\n数字 (パスワードまたは数字 PIN が必要)<br>\r\n推奨事項: 必要なパスワードの種類: 英数字、パスワードの複雑さ: 数字と小文字が必要",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 または 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 および 11",
"complianceWindows11DeviceHealthAttestationHeader": "Windows 11 のみ",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Microsoft Defender の最小バージョン (4.11.0.0 など)",
"complianceWindowsDefenderMinimumVersionName": "Microsoft Defender マルウェア対策の最小バージョン",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service の評価規則<br><br>これらの規則を使用して、デバイスの起動時に保護対策が有効になっていることを確認します。<a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">これらの規則に関する詳細情報</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service の評価設定<br><br>これらの設定を使用して、デバイスの起動時に保護対策が有効になっていることを確認します。<a href=\"https://learn.microsoft.com/ja-jp/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">詳細情報</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "モバイル デバイスで使用できる最新の OS バージョンを選択します。オペレーティング システム バージョンは major.minor.build.revision として定義されます。",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "モバイル デバイスで使用できる最も古い OS バージョンを選択します。オペレーティング システム バージョンは major.minor.build.revision として定義されます。",
"complianceWindowsOsVersionRestrictionHeaderDescription": "オペレーティング システム バージョンは major.minor.build.revision として定義されます。",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95 パーセンタイルの保護",
"basicDataProtectionGuidedString": "基本データ保護 職場または学校アカウント データにアクセスし、職場または学校アカウント データを暗号化し、必要に応じて管理者が選択したデータ ワイプを実行するために、ユーザーが PIN または生体認証を使用することを必須にします。Android デバイスでは、基本データ保護により、デバイスと Google のサービスとの互換性を確保し、Google の [アプリの確認] によるスキャンを実行できるようにします。",
"basicIntegrity": "基本的な整合性",
"basicIntegrityAndCertifiedDevices": "基本的な整合性と認定デバイス",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "非アクティブ タイムアウト",
"bioPinInactiveTimeoutTooltip": "(分) 後に生体認証ではなく PIN で上書きします",
"block": "ブロック",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "あらゆるアプリの切り取りとコピーの文字制限",
"camera": "カメラ",
"checkInCountColumnTitle": "チェックイン数",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "チェックイン済み",
"checkedInAppNameColumnTitle": "アプリ",
"checkedInButNotSynced": "チェックインしました。次回同期時に、このアプリは {0} を受け取ります",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">必要なアプリが見つかりません</a></p><p><a data-bind=\"fxclick: onClickLob\">独自の基幹業務アプリを追加する必要があります</a></p>",
"guidedTemplate2": "ユーザーに対してどの保護レベルをデプロイするかを指定してください。詳細については、<a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">アプリ保護ポリシーを使用するデータ保護フレームワーク</a>を参照してください。",
"guidediOSLabel": "iOS アプリの保護",
"hardwareBackedKey": "ハードウェアを利用するキー",
"healthCheck": "正常性チェック",
"helpAndSupport": "ヘルプとサポート",
"hideOverrides": "オーバーライドの非表示",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "プラットフォーム",
"platformDropDownLabel": "プラットフォーム",
"platformVersion": "プラットフォームのバージョン",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "以下のセクションのエラーを修正してください。",
"pleaseSelectAtLeastOneFileError": "続行する前に少なくとも 1 つのファイルを選択してください",
"policies": "ポリシー",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "デバイス ロックの要求",
"requireThreatScanOnApps": "アプリの脅威のスキャンが必須",
"requiredField": "このフィールドを空にすることはできません",
"requiredSafetyNetEvaluationType": "必要な SafetyNet 評価の種類",
"requiredSettings": "必須の設定",
"resetPin": "PIN のリセット",
"resourceManagement": "リソース管理",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "任意のアプリ",
"restrictWebContentOption2": "{0}: すべてのアプリで Web リンクを許可する",
"rootCertificate": "ルート証明書",
"safetyNetDeviceAttestation": "SafetyNet デバイスの構成証明",
"samsungKnoxAttestationRequired": "Samsung Knox デバイス構成証明",
"saveAppsNotificationText": "選択したアプリを保存しています",
"saveChangesCommandText": "保存",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "フィルター モード",
"assignmentToast": "エンド ユーザーの通知",
"assignmentTypeTableHeader": "割り当ての種類",
"autoUpdate": "自動更新",
"deadlineTimeColumnLabel": "インストールの期限",
"deliveryOptimizationPriorityHeader": "配信の最適化の優先度",
"groupTableHeader": "グループ",
@@ -8514,6 +8496,10 @@
"showAll": "すべてのトースト通知を表示する",
"showReboot": "コンピューターの再起動時にトースト通知を表示する"
},
"AutoUpdateSupersededApps": {
"enabled": "有効",
"notConfigured": "構成されていません"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "バックグラウンド",
"displayText": "{0} でのコンテンツ ダウンロード",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "[サインインの頻度 (毎回)] セッション コントロールでは、[すべてのクラウド アプリ] または特にサポートされているアプリを選択する必要があります",
"allDayCheckboxLabel": "終日",
"allDevicePlatforms": "任意のデバイス",
"allGuestUserInfoContent": "Azure AD B2B のゲストは含まれますが、SharePoint B2B のゲストは含まれません",
"allGuestUserInfoContent": "Microsoft Entra B2B のゲストは含まれますが、SharePoint B2B のゲストは含まれません",
"allGuestUserLabel": "すべてのゲストと外部ユーザー",
"allRiskLevelsOption": "すべてのリスク レベル",
"allTrustedLocationLabel": "すべての信頼できる場所",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "準拠しているデバイスの要求に関する詳細情報を表示します。",
"controlsDeviceComplianceInfoBubble": "デバイスは Intune に準拠している必要があります。デバイスが準拠していない場合、ユーザーはデバイスを準拠した状態にするよう求められます。",
"controlsDomainJoinedAriaLabel": "Hybrid Azure AD Join を使用したデバイスの要求に関する詳細情報を表示します。",
"controlsDomainJoinedInfoBubble": "デバイスは Hybrid Azure AD Join を使用したである必要があります。",
"controlsDomainJoinedAriaLabel": "Microsoft Entra ハイブリッド参加済みデバイスの要求について詳細をご確認ください。",
"controlsDomainJoinedInfoBubble": "デバイスは Microsoft Entra Hybrid 参加済みである必要があります。",
"controlsMamAriaLabel": "承認済みのクライアント アプリケーションの要求に関する詳細情報を表示します。",
"controlsMamInfoBubble": "デバイスは、これらの承認されたクライアント アプリケーションを使用する必要があります。",
"controlsMfaInfoBubble": "ユーザーは、電話やテキスト メッセージなど、追加のセキュリティ要件を完了する必要があります",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "デバイスは準拠としてマーク済み",
"deviceStateCompliantInfoContent": "Intune に準拠しているデバイスはこのポリシーの評価から除外されるため、たとえばポリシーがアクセスをブロックする場合、Intune 準拠デバイスを除くすべてのデバイスがブロックされます。",
"deviceStateConditionConfigureInfoContent": "デバイスの状態に基づいてポリシーを構成します",
"deviceStateConditionSelectorInfoContent": "ユーザーがサインインしているデバイスが [Hybrid Azure AD Join を使用した] と [準拠としてマーク済み] のどちらであるかを示します。\n これは非推奨になりました。代わりに '{1}' をお使いください。",
"deviceStateConditionSelectorInfoContent": "ユーザーがサインインしているデバイスが [Microsoft Entra Hybrid 参加済み] と [準拠としてマーク済み] のどちらであるかを示します。\n これは非推奨になりました。代わりに '{1}' をお使いください。",
"deviceStateConditionSelectorLabel": "デバイスの状態 (非推奨)",
"deviceStateDomainJoined": "Hybrid Azure AD Join を使用したデバイス",
"deviceStateDomainJoinedInfoContent": "Hybrid Azure AD Join を使用したデバイスはこのポリシーの評価から除外されため、たとえばポリシーアクセスブロックる場合、Hybrid Azure AD Join を使用したデバイスを除くすべてのデバイスがブロックされます。",
"deviceStateDomainJoined": "Microsoft Entra Hybrid 参加済みのデバイス",
"deviceStateDomainJoinedInfoContent": "Microsoft Entra Hybrid 参加済みのデバイスはこのポリシーの評価から除外されます。そのため、たとえばポリシーアクセスブロックされる場合は、Microsoft Entra Hybrid 参加済みのデバイスを除くすべてのデバイスがブロックされます。",
"deviceStateDomainJoinedInfoLinkText": "詳細情報。",
"deviceStateExcludeDescription": "ポリシーからデバイスを除外するために使用するデバイスの状態の条件を選択します。",
"deviceStateIncludeAndExcludeOneLabel": "{0} を含め、{1} を除外する",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync とサポートされているプラットフォームのみ",
"excludeAllTrustedLocationSelectorText": "すべての信頼できる場所",
"featureRequiresP2": "この機能には、Azure AD Premium 2 ライセンスが必要です。",
"featureRequiresP2": "この機能には Microsoft Entra ID P2 ライセンスが必要です。",
"friday": "金曜日",
"grantControls": "制御の許可",
"gridNetworkTrusted": "信頼されている",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "選択したプライベート リンク",
"lowRisk": "低",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "条件付きアクセス ポリシーを管理するには、組織で Azure AD Premium P1 または P2 が必要です。",
"managePoliciesLicenseText": "条件付きアクセス ポリシーを管理するには、お客様の組織に Microsoft Entra ID P1 または P2 が必要です。",
"manageSecurityDefaultsAriaLabel": "セキュリティの既定値群の設定の管理。",
"markAsTrustedCheckboxInfoBalloonContent": "信頼できる場所からサインインすると、ユーザーのサインイン リスクが低くなります。入力した IP 範囲が確立され、組織内で信用されていることがわかる場合のみ、この場所を信頼できる場所とマークしてください。",
"markAsTrustedCheckboxLabel": "信頼できる場所としてマークする",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "国/地域 ",
"namedLocationTypeLabel": "次を使用して場所を定義します:",
"namedLocationUpsellBanner": "このビューは非推奨になりました。強化された新しい [ネームド ロケーション] ビューに移動してください。",
"namedLocationsHelpDescription": "ネームド ロケーションは、誤検知を減らすために Azure AD セキュリティ レポートで使用されるほか、Azure AD 条件付きアクセス ポリシーでも使用されます。\n[詳細情報][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "ネームド ロケーションは、擬陽性を減らすために Microsoft Entra ID セキュリティ レポートで使用されるほか、Microsoft Entra 条件付きアクセス ポリシーでも使用されます。\n[詳細情報][1]\n[1]: https://learn.microsoft.com/ja-jp/azure/active-directory/conditional-access/location-condition#preview-features",
"namedNetworkAddIpRanges": "新しい IP 範囲の追加 (例: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "少なくとも 1 つの国または地域を選択する必要があります。",
"namedNetworkDeleteCommand": "削除",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "新しいネームド ロケーション",
"namedNetworksConditionHelpDescription": "物理的な場所に基づいてユーザー アクセスを制御します。\n[詳細][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} かつ {1} 件を除く",
"namedNetworksHelpDescription": "ネームド ロケーションは、誤検知を減らすために Azure AD セキュリティ レポートで使用されるほか、Azure AD 条件付きアクセス ポリシーでも使用されます。\n[詳細情報][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "ネームド ロケーションは、誤検知を減らすために Microsoft Entra ID セキュリティ レポートで使用されるほか、Microsoft Entra 条件付きアクセス ポリシーでも使用されます。\n[詳細情報][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} 件を含む",
"namedNetworksNone": "ネームド ロケーションが見つかりません。",
"namedNetworksTitle": "場所の構成",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "このポリシーを保存できるのは、全体管理者のみです。",
"or": "{0}または{1}",
"pickerDoneCommand": "完了",
"policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium を使用して独自のポリシーを作成しクラウド アプリサインイン リスクデバイス プラットフォームなど特定の条件をターゲットしま",
"policiesBladeAdPremiumUpsellBannerText": "Microsoft Entra ID Premium 独自のポリシーを作成して、[クラウド アプリ]、[サインイン リスク]、[デバイス プラットフォーム] など特定の条件をターゲットしましょう。",
"policiesBladeTitle": "ポリシー",
"policiesBladeTitleWithAppName": "ポリシー: {0}",
"policiesDisabledBannerText": "リンクされたサインオン属性が設定されたアプリケーションの場合、ポリシーの作成および編集は禁止されています。",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "ユーザーがサインインしている場所 (IP アドレスの範囲を使用して特定)",
"policyConditionLocationPreview": "場所 (プレビュー)",
"policyConditionSigninRisk": "サインインのリスク",
"policyConditionSigninRiskDescription": "対象ユーザー以外からのサインインの可能性。リスク レベルは高、中、または低になります。Azure AD Premium 2 ライセンスが必要です。",
"policyConditionSigninRiskDescription": "対象ユーザー以外からのサインインの可能性。リスク レベルは高、中、または低になります。Microsoft Entra ID P2 ライセンスが必要です。",
"policyConditionUserRisk": "ユーザーのリスク",
"policyConditionUserRiskDescription": "ポリシーを適用するために必要なユーザー リスクのレベルを構成します",
"policyConditioniClientApp": "クライアント アプリ",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "アクセスをブロックするか、アクセスを許可するために満たす必要のある追加要件を選択します",
"policyControlMfaChallengeDisplayedName": "多要素認証を要求する",
"policyControlRequireCompliantAppDisplayedName": "アプリの保護ポリシーが必要",
"policyControlRequireDomainJoinedDisplayedName": "Hybrid Azure AD Join を使用したデバイスが必要",
"policyControlRequireDomainJoinedDisplayedName": "Microsoft Entra ハイブリッド参加済みデバイスが必要",
"policyControlRequireMamDisplayedName": "承認されたクライアント アプリが必要です",
"policyControlRequiredPasswordChangeDisplayedName": "パスワードの変更を必須とする",
"policyControlSelectAuthStrength": "認証強度が必要",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "{0} が正常に更新されました。[ポリシーの有効化] を [オン] に設定している場合は、ポリシーが数分で有効になります。",
"policyUpdateSuccessTitle": "{0} が正常に更新されました",
"primaryCol": "プライマリ",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "レポート専用モード: サインイン時にポリシーが評価されてログに記録されますが、ユーザーに影響しません。",
"requireAllControlsText": "選択したコントロールすべてが必要",
"requireCompliantDevice": "準拠しているデバイスが必要です",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "機密情報を扱うアプリケーションでは、常時または会社のネットワーク外部からアクセスする場合のみ、多要素認証が必要です。",
"upsellAppsTitle": "セキュリティで保護されたアプリケーション",
"upsellBannerText": "無料の Premium 評価版を入手して、この機能を使用します",
"upsellDataDescription": "会社のリソースへのアクセスを許可するには、デバイス準拠としてマーク済みまたはHybrid Azure AD Join を使用したである必要があります。",
"upsellDataDescription": "会社のリソースへのアクセスを許可するには、デバイス準拠としてマーク済みまたは Microsoft Entra Hybrid 参加済みである必要があります。",
"upsellDataTitle": "セキュリティで保護されたデータ",
"upsellDescription": "条件付きアクセスは、会社のデータを安全に保つために必要な制御と保護を提供すると同時に、ユーザーが任意のデバイスから最適な作業を実行できるようにします。たとえば、会社のネットワーク外部からのアクセスを制限したり、コンプライアンス ポリシーを満たすデバイスへのアクセスを制限したりできます。",
"upsellRiskDescription": "Microsoft の機械学習システムで検出されたリスク イベントには多要素認証が必要です。",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "{0} が正常に更新されました。",
"vpnCertUpdateSuccessTitle": "{0} が正常に更新されました",
"vpnFeatureInfo": "VPN 接続と条件付きアクセスの詳細については、こちらをクリックしてください。",
"vpnFeatureWarning": "Azure portal で VPN 証明書が作成されると、Azure AD すぐにそれを利用して、存続期間が短い証明書 VPN クライアントに発行します。VPN クライアントの資格情報の検証に関する問題を回避するために、VPN 証明書を直ちに VPN サーバーに展開することが重要です。",
"vpnFeatureWarning": "ポータルで VPN 証明書が作成されると、Microsoft Entra ID すぐにそれが使用され始めて、存続期間が短い証明書 VPN クライアントに対して発行されます。VPN クライアントの資格情報の検証に関する問題を回避するために、VPN 証明書を直ちに VPN サーバーに展開することが重要です。",
"vpnMenuText": "VPN 接続",
"vpncertDropdownDefaultOption": "期間",
"vpncertDropdownInfoBalloonContent": "作成する証明書の有効期間を選択します",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Intune のカスタム ロール",
"customRole": "カスタム ロール"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} は、1 つ以上のポリシー セットに含まれています。{0} を削除すると、これらのポリシー セットを使用してそれを割り当てることができなくなります。削除しますか?",
"contentWithError": "{0} は、1 つ以上のポリシー セットに含まれている可能性があります。{0} を削除すると、これらのポリシー セットを使用してそれを割り当てることができなくなります。削除しますか?",
"header": "この制限を削除しますか?"
},
"DeviceLimit": {
"description": "ユーザーが登録できるデバイスの最大数を指定します。",
"header": "デバイスの上限数の制限",
"info": "各ユーザーが登録できるデバイス数を定義します。"
},
"DeviceType": {
"VersionValidation": {
"aOSP": "1.0 以上でなければなりません。",
"android": "有効なバージョン番号を入力してください。例: 5.0、5.5.1、6.0.0.1",
"androidForWork": "有効なバージョン番号を入力してください。例: 5.0、5.1.1",
"iOS": "有効なバージョン番号を入力してください。例: 9.0、10.0、9.0.2",
"mac": "有効なバージョン番号を入力してください。例: 10、10.10、10.10.1",
"min": "下限は {0} 以上にする必要があります",
"minMax": "最小バージョンは最大バージョン以下にする必要があります。",
"windows": "10.0 以上である必要があります。8.1 デバイスを許可するには空白のままにします",
"windowsMobile": "10.0 以上である必要があります。8.1 デバイスを許可するには空白のままにします"
},
"allPlatformsBlocked": "すべてのデバイス プラットフォームがブロックされています。プラットフォームの登録を許可して、プラットフォームを構成できるようにしてください。",
"blockManufacturerPlaceHolder": "製造元の名前",
"blockManufacturersHeader": "ブロックされた製造元",
"cannotRestrict": "サポートされていない制限です",
"configurationDescription": "登録するデバイスで適合する必要のあるプラットフォーム構成の制限を指定します。登録後のデバイスを制限するには、コンプライアンス ポリシーを使用します。バージョンは major.minor.build として定義します。バージョンの制限事項はポータル サイトで登録されたデバイスにのみ適用されます。既定では、Intune はデバイスを個人の所有として分類します。デバイスを会社の所有として分類するには、追加の操作が必要です。",
"configurationDescriptionLabel": "登録制限の設定に関する詳細情報",
"configurations": "プラットフォームの構成",
"deviceManufacturer": "デバイス製造元",
"header": "デバイスの種類の制限",
"info": "登録できるプラットフォーム、バージョン、および管理の種類を定義します。",
"manufacturer": "製造元",
"max": "最大",
"maxVersion": "最大バージョン",
"min": "最小",
"minVersion": "最小バージョン",
"newPlatforms": "新しいプラットフォームを許可しました。プラットフォーム構成を更新することをご検討ください。",
"personal": "個人所有",
"platform": "プラットフォーム",
"platformDescription": "次のフラットフォームの登録を許可できます。ブロック プラットフォームのみサポートされません。許可されるプラットフォームは追加の登録制限を指定して構成できます。",
"platformSettings": "プラットフォームの設定",
"platforms": "プラットフォームの選択",
"platformsSelected": "{0} 個のプラットフォームが選択されています",
"type": "種類",
"versions": "versions",
"versionsRange": "最小/最大の許容範囲:",
"windowsTooltip": "モバイル デバイス管理から登録を制限します。PC エージェントのインストールは制限されません。Windows 10 および Windows 11 のバージョンのみがサポートされています。Windows 8.1 を許可するにはバージョンを空白のままにします。"
},
"Priority": {
"saved": "優先順位の制限が正しく保存されました。"
},
"Row": {
"announce": "優先度: {0}、名前: {1}、割り当て済み: {2}"
},
"Table": {
"deployed": "展開済み",
"name": "名前",
"priority": "優先度"
},
"Type": {
"limit": "デバイスの上限数の制限",
"type": "デバイスの種類の制限"
},
"allUsers": "すべてのユーザー",
"androidRestrictions": "Android の制限",
"create": "制限を作成",
"defaultLimitDescription": "これは既定のデバイスの上限数の制限であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
"defaultTypeDescription": "これは既定のデバイスの種類の制限であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
"defaultWhfbDescription": "これは Windows Hello for Business の既定の構成であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
"deleteMessage": "影響を受けるユーザーには、割り当てられている優先度が次に高い制限が適用されます。他の制限が割り当てられていない場合は既定の制限が適用されます。",
"deleteTitle": "{0} 制限を削除しますか?",
"descriptionHint": "制限の設定によって特徴づけられる、業務での使用または制限のレベルの短い説明文。",
"edit": "制限の編集",
"info": "デバイスは、そのユーザーに割り当てられている優先順位の最も高い登録制限に準拠している必要があります。優先順位を変更するには、デバイスの制限をドラッグします。既定の制限は、どのユーザーでも優先順位が最低であり、ユーザーのいない登録を管理します。既定の制限を編集することはできますが、削除することはできません。",
"iosRestrictions": "iOS の制限",
"mDM": "MDM",
"macRestrictions": "macOS の制限",
"maxVersion": "最大バージョン",
"minVersion": "最小バージョン",
"nameHint": "これは、制限セットを識別するために表示される主属性になります。",
"noAssignmentsStatusBar": "少なくとも 1 つのグループに制限を割り当てます。[プロパティ] をクリックしてください。",
"notFound": "制限が見つかりません。既に削除されている可能性があります。",
"personallyOwned": "個人所有のデバイス",
"restriction": "制限",
"restrictionLowerCase": "制限",
"restrictionType": "Restriction Type",
"selectType": "制限の種類の選択",
"selectValidation": "プラットフォームを選択してください",
"typeHint": "デバイスのプロパティを制限するには、[デバイスの種類の制限] を選びます。ユーザーあたりのデバイス数を制限するには、[デバイスの上限数の制限] を選びます。",
"typeRequired": "制限の種類が必要です。",
"winPhoneRestrictions": "Windows Phone の制限",
"windowsECv1Info": "古い登録制限は編集したり優先順位を変更したりすることはできず、削除のみが可能です。",
"windowsECv2Info": "登録制限をドラッグ アンド ドロップすることで優先順位を付けることができます。以下の既定および事前構成された制限を確認してください。すべての新しい登録制限は、既定および事前構成された制限よりも高い優先順位を持ちます。",
"windowsRestrictions": "Windows の制限",
"windowsRestrictionsPreview": "フィルターベースの Windows の制限 (プレビュー)"
},
"InstallContextType": {
"device": "デバイス",
"deviceContext": "デバイス コンテキスト",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "規則の構文",
"filters": "フィルター"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} は、1 つ以上のポリシー セットに含まれています。{0} を削除すると、これらのポリシー セットを使用してそれを割り当てることができなくなります。削除しますか?",
"contentWithError": "{0} は、1 つ以上のポリシー セットに含まれている可能性があります。{0} を削除すると、これらのポリシー セットを使用してそれを割り当てることができなくなります。削除しますか?",
"header": "この制限を削除しますか?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "ユーザーに設定の変更を許可する",
"tooltip": "ユーザーに設定の変更を許可するかどうかを指定します。"
},
"AllowWorkAccounts": {
"title": "職場または学校アカウントのみ許可する",
"tooltip": "この設定を有効にすると、ユーザーは Outlook での個人用のメールおよびストレージ アカウントの追加ができません。ユーザーが Outlook に追加された個人用アカウントを持っている場合は、個人用アカウントを削除するように求められます。ユーザーが個人用アカウントを削除しない場合は、職場または学校アカウントを追加できません。"
},
"BlockExternalImages": {
"title": "外部画像をブロックする",
"tooltip": "外部画像のブロックを有効にすると、アプリはメッセージの本文に埋め込まれているインターネット上でホストされている画像をダウンロードしません。設定で構成しない場合、既定のアプリ設定はオフになっています。"
},
"ConfigureEmail": {
"title": "メール アカウント設定を構成する"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "既定のアプリ署名では、アプリでメッセージを作成中に、既定の署名に「Outlook for Android の入手」を使用するかどうかを示します。設定がオフに構成されている場合、既定の署名は使用されませんが、ユーザー独自の署名を追加することができます。\r\n\r\n[未構成] に設定すると、既定のアプリ設定がオンになります。",
"iOS": "既定のアプリ署名では、アプリでメッセージを作成中に、既定の署名に「Outlook for iOSの入手」を使用するかどうかを示します。設定がオフに構成されている場合、既定の署名は使用されませんが、ユーザー独自の署名を追加することができます。\r\n\r\n[未構成] に設定すると、既定のアプリ設定がオンになります。"
},
"title": "既定のアプリ署名"
},
"OfficeFeedReplies": {
"title": "Discover フィード",
"tooltip": "Discover フィードは、最も頻繁にアクセスされている Office ファイルを明らかにします。既定では、Delve がユーザーに対して有効になっているときに、このフィードが有効になります。未構成として設定した場合、既定のアプリ設定はオンに設定されます。"
},
"OrganizeMailByThread": {
"title": "スレッド別にメールを整理",
"tooltip": "Outlook の既定の動作では、電子メールの会話がスレッド形式の会話ビューにまとめられます。この設定を無効にすると、Outlook で各メールが個別に表示され、スレッドごとにグループ化されません。"
},
"PlayMyEmails": {
"title": "メールの再生",
"tooltip": "アプリでは、メールの再生機能は既定では有効になっていませんが、受信トレイ内のバナーを介して対象ユーザーに宣伝されます。オフに設定すると、この機能はアプリ内の対象ユーザーに宣伝されなくなります。ユーザーは、この機能がオフに設定されている場合でも、アプリ内からメールの再生を手動で有効にすることを選択できます。未構成として設定した場合、既定のアプリ設定はオンになり、機能が対象ユーザーに宣伝されます。"
},
"SuggestedReplies": {
"title": "返信の提案",
"tooltip": "Outlook でメッセージを開くと、メッセージの下に返信が提案される場合があります。提案された返信を選択し、編集してから送信できます。"
},
"SyncCalendars": {
"title": "予定表の同期",
"tooltip": "ユーザーが Outlook カレンダーをネイティブのカレンダー アプリとデータベースと同期できるようにするかどうかを構成します。"
},
"TextPredictions": {
"title": "予測入力",
"tooltip": "Outlook では、メッセージを作成するときに、単語やフレーズを候補として表示できます。Outlook で候補が提示されたら、スワイプして受け入れます。未構成として設定されている場合、既定のアプリ設定は [オン] に設定されます。"
},
"DeviceLimit": {
"description": "ユーザーが登録できるデバイスの最大数を指定します。",
"header": "デバイスの上限数の制限",
"info": "各ユーザーが登録できるデバイス数を定義します。"
},
"DeviceType": {
"VersionValidation": {
"aOSP": "1.0 以上でなければなりません。",
"android": "有効なバージョン番号を入力してください。例: 5.0、5.5.1、6.0.0.1",
"androidForWork": "有効なバージョン番号を入力してください。例: 5.0、5.1.1",
"iOS": "有効なバージョン番号を入力してください。例: 9.0、10.0、9.0.2",
"mac": "有効なバージョン番号を入力してください。例: 10、10.10、10.10.1",
"min": "下限は {0} 以上にする必要があります",
"minMax": "最小バージョンは最大バージョン以下にする必要があります。",
"windows": "10.0 以上である必要があります。8.1 デバイスを許可するには空白のままにします",
"windowsMobile": "10.0 以上である必要があります。8.1 デバイスを許可するには空白のままにします"
},
"allPlatformsBlocked": "すべてのデバイス プラットフォームがブロックされています。プラットフォームの登録を許可して、プラットフォームを構成できるようにしてください。",
"blockManufacturerPlaceHolder": "製造元の名前",
"blockManufacturersHeader": "ブロックされた製造元",
"cannotRestrict": "サポートされていない制限です",
"configurationDescription": "登録するデバイスで適合する必要のあるプラットフォーム構成の制限を指定します。登録後のデバイスを制限するには、コンプライアンス ポリシーを使用します。バージョンは major.minor.build として定義します。バージョンの制限事項はポータル サイトで登録されたデバイスにのみ適用されます。既定では、Intune はデバイスを個人の所有として分類します。デバイスを会社の所有として分類するには、追加の操作が必要です。",
"configurationDescriptionLabel": "登録制限の設定に関する詳細情報",
"configurations": "プラットフォームの構成",
"deviceManufacturer": "デバイス製造元",
"header": "デバイスの種類の制限",
"info": "登録できるプラットフォーム、バージョン、および管理の種類を定義します。",
"manufacturer": "製造元",
"max": "最大",
"maxVersion": "最大バージョン",
"min": "最小",
"minVersion": "最小バージョン",
"newPlatforms": "新しいプラットフォームを許可しました。プラットフォーム構成を更新することをご検討ください。",
"personal": "個人所有",
"platform": "プラットフォーム",
"platformDescription": "次のフラットフォームの登録を許可できます。ブロック プラットフォームのみサポートされません。許可されるプラットフォームは追加の登録制限を指定して構成できます。",
"platformSettings": "プラットフォームの設定",
"platforms": "プラットフォームの選択",
"platformsSelected": "{0} 個のプラットフォームが選択されています",
"type": "種類",
"versions": "versions",
"versionsRange": "最小/最大の許容範囲:",
"windowsTooltip": "モバイル デバイス管理から登録を制限します。PC エージェントのインストールは制限されません。Windows 10 および Windows 11 のバージョンのみがサポートされています。Windows 8.1 を許可するにはバージョンを空白のままにします。"
},
"Priority": {
"saved": "優先順位の制限が正しく保存されました。"
},
"Row": {
"announce": "優先度: {0}、名前: {1}、割り当て済み: {2}"
},
"Table": {
"deployed": "展開済み",
"name": "名前",
"priority": "優先度"
},
"Type": {
"limit": "デバイスの上限数の制限",
"type": "デバイスの種類の制限"
},
"allUsers": "すべてのユーザー",
"androidRestrictions": "Android の制限",
"create": "制限を作成",
"defaultLimitDescription": "これは既定のデバイスの上限数の制限であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
"defaultTypeDescription": "これは既定のデバイスの種類の制限であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
"defaultWhfbDescription": "これは Windows Hello for Business の既定の構成であり、グループ メンバーシップに関係なく、すべてのユーザーに最も低い優先順位で適用されます。",
"deleteMessage": "影響を受けるユーザーには、割り当てられている優先度が次に高い制限が適用されます。他の制限が割り当てられていない場合は既定の制限が適用されます。",
"deleteTitle": "{0} 制限を削除しますか?",
"descriptionHint": "制限の設定によって特徴づけられる、業務での使用または制限のレベルの短い説明文。",
"edit": "制限の編集",
"info": "デバイスは、そのユーザーに割り当てられている優先順位の最も高い登録制限に準拠している必要があります。優先順位を変更するには、デバイスの制限をドラッグします。既定の制限は、どのユーザーでも優先順位が最低であり、ユーザーのいない登録を管理します。既定の制限を編集することはできますが、削除することはできません。",
"iosRestrictions": "iOS の制限",
"mDM": "MDM",
"macRestrictions": "MacOS の制限",
"maxVersion": "最大バージョン",
"minVersion": "最小バージョン",
"nameHint": "これは、制限セットを識別するために表示される主属性になります。",
"noAssignmentsStatusBar": "少なくとも 1 つのグループに制限を割り当てます。[プロパティ] をクリックしてください。",
"notFound": "制限が見つかりません。既に削除されている可能性があります。",
"personallyOwned": "個人所有のデバイス",
"restriction": "制限",
"restrictionLowerCase": "制限",
"restrictionType": "Restriction Type",
"selectType": "制限の種類の選択",
"selectValidation": "プラットフォームを選択してください",
"typeHint": "デバイスのプロパティを制限するには、[デバイスの種類の制限] を選びます。ユーザーあたりのデバイス数を制限するには、[デバイスの上限数の制限] を選びます。",
"typeRequired": "制限の種類が必要です。",
"winPhoneRestrictions": "Windows Phone の制限",
"windowsRestrictions": "Windows の制限"
},
"ThemesEnabled": {
"title": "テーマの有効化",
"tooltip": "ユーザーがカスタム ビジュアル テーマを使用できるかどうかを指定します。"
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS デバイス (プレビュー)"
@@ -12507,6 +12558,7 @@
"user": "ユーザー",
"userExecutionStatus": "ユーザーの状態",
"wdacSupplementalPolicies": "S モードの補足ポリシー",
"win32CatalogUpdateApp": "Windows (Win32) カタログ アプリの更新プログラム",
"windows10DriverUpdate": "Windows 10 以降向けドライバー更新プログラム",
"windows10QualityUpdate": "Windows 10 以降向け品質更新プログラム",
"windows10UpdateRings": "Windows 10 以降向け更新リング",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Windows 365 パートナー コネクタ",
"windowsDiagnosticData": "Windows データ",
"windowsEnterpriseCertificate": "Windows Enterprise 証明書",
"windowsManagement": "PowerShell スクリプト",
"windowsManagement": "スクリプト",
"windowsSideLoadingKeys": "Windows サイドローディング キー",
"windowsSymantecCertificate": "Windows DigiCert 証明書",
"windowsThreatReport": "脅威エージェントの状態"
@@ -12551,6 +12603,10 @@
"postponed": "延期",
"priority": "高優先度"
},
"AutoUpdateSupersededApps": {
"label": "自動更新",
"sublabel": "このアプリケーションの置き換えられるバージョンを自動的にアップグレードする"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "バックグラウンド",
"displayText": "{0} でのコンテンツ ダウンロード",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "PIN에 대문자를 하나 이상 사용해야 함"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "사용자가 설정을 변경할 수 있도록 허용",
"tooltip": "사용자가 설정을 변경할 수 있도록 허용할지를 지정합니다."
},
"AllowWorkAccounts": {
"title": "회사 또는 학교 계정만 허용",
"tooltip": " 설정을 사용하도록 설정하면 사용자가 Outlook 내에서 개인 메일 및 스토리지 계정을 추가할 수 없습니다. 사용자가 Outlook에 개인 계정을 추가한 경우 개인 계정을 제거하라는 메시지가 표시됩니다. 사용자가 개인 계정을 제거하지 않으면 회사 또는 학교 계정을 추가할 수 없습니다."
},
"BlockExternalImages": {
"title": "외부 이미지 차단",
"tooltip": "블록 외부 이미지를 사용하도록 설정하면 앱에서 인터넷에 호스트되어 있는 메시지 본문에 포함된 이미지 다운로드를 방지합니다. 구성되지 않도록 설정하면 기본 앱 설정이 [끄기]로 설정됩니다."
"AppRelationshipStatus": {
"Grid": {
"appVersion": "앱 버전",
"dependencyName": "종속성 이름",
"lastModifiedTime": "마지막으로 수정된 시간",
"relationship": "관계",
"replaced": "대체됨",
"searchPlaceholder": "름으로 필터링",
"status": "상태 정보",
"statusDetails": "상태",
"supersedenceName": "대체 이름"
},
"RelatedAppRelationship": {
"dependencyDescendants": "자식 종속성",
"indirectSupersedence": "직접 관련되지 않음",
"supersedenceAncestors": "대체하는",
"supersedenceDescendants": "대체됨"
},
"ConfigureEmail": {
"title": "메일 계정 설정 구성"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "기본 앱 서명은 앱이 메시지 작성 중 기본 서명으로 “Android용 Outlook 다운로드”를 사용할지 여부를 나타냅니다. 설정이 [끄기]로 구성된 경우 기본 서명은 사용되지 않지만, 사용자가 고유한 서명을 추가할 수 있습니다.\r\n\r\n[구성되지 않음]으로 설정된 경우 기본 앱 설정은 [켜기]로 설정됩니다.",
"iOS": "기본 앱 서명은 앱이 메시지 작성 중 기본 서명으로 “iOS용 Outlook 다운로드”를 사용할지 여부를 나타냅니다. 설정이 [끄기]로 구성된 경우 기본 서명은 사용되지 않지만, 사용자가 고유한 서명을 추가할 수 있습니다.\r\n\r\n[구성되지 않음]으로 설정된 경우 기본 앱 설정은 [켜기]로 설정됩니다."
},
"title": "기본 앱 서명"
},
"OfficeFeedReplies": {
"title": "피드 검색",
"tooltip": "피드 검색에는 가장 자주 액세스하는 Office 파일이 표시됩니다. 기본적으로, Delve가 해당 사용자에게 사용하도록 설정된 경우 이 피드를 사용할 수 있습니다. 구성되지 않음으로 설정하면 기본 앱 설정이 On으로 설정됩니다."
},
"OrganizeMailByThread": {
"title": "스레드별로 메일 구성",
"tooltip": "Outlook의 기본 동작은 메일 대화를 스레드된 대화 보기로 묶는 것입니다. 이 설정을 사용하지 않도록 설정하는 경우 Outlook은 각 메일을 개별적으로 표시하며 스레드별로 그룹화하지 않습니다."
},
"PlayMyEmails": {
"title": "내 전자 메일 재생",
"tooltip": "[내 전자 메일 재생] 기능은 앱에서 기본적으로 사용하도록 설정되어 있지 않지만 받은 편지함의 배너를 통해 적격 사용자로 기능의 수준이 올라갑니다. 이 기능이 [끄기]로 설정되면 앱에서 적격 사용자로 수준이 올라가지 않습니다. 사용자는 이 기능이 [끄기]로 설정된 경우에도 앱 내에서 [내 전자 메일 재생]을 수동으로 사용하도록 설정할 수 있습니다. [구성되지 않음]으로 설정하는 경우 기본 앱 설정은 [켜기]이며 적격 사용자로 기능의 수준이 올라갑니다."
},
"SuggestedReplies": {
"title": "제안된 회신",
"tooltip": "메시지를 여는 경우, Outlook에서 메시지 아래에 회신을 제안할 수 있습니다. 제안된 회신을 선택하면 회신을 보내기 전에 편집할 수 있습니다."
},
"SyncCalendars": {
"title": "일정 동기화",
"tooltip": "사용자가 Outlook 일정을 기본 일정 앱 및 데이터베이스와 동기화할 수 있는지 여부를 구성합니다."
},
"TextPredictions": {
"title": "텍스트 예측",
"tooltip": "Outlook에서 메시지를 작성할 때 단어와 구를 제안할 수 있습니다. Outlook에서 단어나 구를 제안하는 경우 수락하려면 제안된 단어나 구를 살짝 밉니다. [구성되지 않음]으로 설정하면 기본 앱 설정이 [켜기]로 설정됩니다."
"SupersededReplaced": {
"no": "아니요",
"yes": "예"
},
"ThemesEnabled": {
"title": "테마 사용",
"tooltip": "사용자가 사용자 지정 시각적 개체 테마를 사용할 수 있는지 여부를 지정합니다."
}
},
"Tabs": {
"chart": "차트",
"dependency": "종속성",
"label": "보기: ",
"supersedence": "대체",
"table": "테이블"
},
"dependencyGraphAriaLabel": "앱 종속성 차트",
"supersedenceGraphAriaLabel": "앱 대체 차트"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "검색 스크립트를 선택하세요.",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "PowerShell 스크립트 추가",
"customAttributeObjectName": "사용자 지정 특성",
"editPowershellScriptFlowSectionName": "PowerShell 스크립트 편집",
"enforceSignatureCheckInfoBalloonContent": "신뢰할 수 있는 게시자가 스크립트에 서명해야 합니다. 기본적으로 경고 또는 프롬프트가 표시되지 않고 스크립트가 차단 해제된 상태로 실행됩니다.",
"enforceSignatureCheckInfoBalloonContent": "신뢰할 수 있는 게시자가 스크립트에 서명해야 합니다. 기본값입니다.",
"enforceSignatureCheckLabel": "스크립트 서명 확인 적용",
"executionFrequencyLabel": "실행 빈도",
"failedToSavePolicy": "{0}을(를) 저장하지 못함",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "검토 + 추가",
"runAs64BitInfoBalloonContent": "스크립트는 64비트 클라이언트 아키텍처에 대해 64비트 PowerShell 호스트에서 실행됩니다. 기본적으로 스크립트는 32비트 PowerShell 호스트에서 실행됩니다.",
"runAs64BitLabel": "64비트 PowerShell 호스트에서 스크립트 실행",
"scriptContextInfoBalloonContent": "스크립트 클라이언트 컴퓨터에서 사용자의 자격 증명으로 실행됩니다. 기본적으로 스크립트는 시스템 컨텍스트에서 실행됩니다.",
"scriptContextInfoBalloonContent": "스크립트 클라이언트 컴퓨터에서 사용자의 자격 증명으로 실행됩니다. 기본적으로 스크립트는 사용자 컨텍스트에서 실행됩니다.",
"scriptContextLabel": "로그온된 자격 증명을 사용하여 이 스크립트 실행",
"scriptsettingsTabHeader": "스크립트 설정",
"settingsHeader": "구성할 스크립트 선택",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Always-On VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "기본 무결성 및 디바이스 무결성 확인",
"androidPlayIntegrityVerdictBasicIntegrity": "기본 무결성 검사",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "삼성 Knox 디바이스를 제외하고 Android 11 이상을 실행하는 디바이스에는 신뢰할 수 있는 인증서를 더 이상 설치할 수 없습니다. SCEP 인증서 프로필을 사용하는 경우 계속해서 신뢰할 수 있는 인증서 프로필을 만들어 배포하고 이를 SCEP 인증서 프로필과 연결해야 하지만 신뢰할 수 있는 루트 인증서를 이러한 디바이스에 수동으로 전달해야 합니다.",
"androidTenAndAbovePasswordHeader": "Android 10 이상",
"androidTenAndAbovePasswordHeaderDescription": "이러한 설정은 Android 10 이상 버전을 실행하는 디바이스에 적용됩니다.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "보안 패치 및 향상된 기능을 위해 디바이스에서 강제로 자동 업데이트를 수행합니다.",
"complianceUpdatesRequireAutomaticUpdatesName": "Microsoft에서 자동 업데이트 요구",
"complianceWin10RequiredPasswordTypeDescription": "이 설정은 필요한 암호/PIN 유형을 결정합니다.<br>\r\n디바이스 기본값(암호, 숫자 PIN 또는 영숫자 PIN 필요)<br>\r\n영숫자(암호 또는 영숫자 PIN 필요)<br>\r\n숫자(암호 또는 숫자 PIN 필요)<br>\r\n권장 사항: 필요한 암호 유형: 영숫자, 암호 복잡도: 숫자 및 소문자 필요",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 또는 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 11",
"complianceWindows11DeviceHealthAttestationHeader": "Windows 11만 해당",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Microsoft Defender의 최소 버전(예: 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Microsoft Defender 맬웨어 방지 최소 버전",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft 증명 서비스 평가 규칙<br><br>이러한 규칙을 사용하여 부팅 시 디바이스에 보호 조치가 사용하도록 설정되어 있음을 확인합니다. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">이 규칙에 대해 자세히 알아보기</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service 평가 설정<br><br>부팅 시 장치에 보호 조치가 활성화되어 있는지 확인하려면 이 설정을 사용합니다. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">자세히 알아보기</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "모바일 디바이스에서 실행할 수 있는 최신 OS 버전을 선택합니다. 운영 체제 버전은 주 버전.부 버전.빌드.수정 버전으로 정의됩니다.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "모바일 디바이스에서 실행할 수 있는 가장 오래된 OS 버전을 선택합니다. 운영 체제 버전은 주 버전.부 버전.빌드.수정 버전으로 정의됩니다.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "운영 체제 버전은 주 버전.부 버전.빌드.수정 버전으로 정의됩니다. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95번째 백분위수 보호",
"basicDataProtectionGuidedString": "기본 데이터 보호 - PIN 또는 생체 인식을 활용하여 회사 또는 학교 계정 데이터에 액세스하고, 회사 또는 학교 계정 데이터를 암호화하고, 필요한 경우 관리자가 선택적 데이터 초기화를 수행할 수 있도록 합니다. Android 디바이스의 경우 기본 데이터 보호는 Google 서비스와 디바이스 간의 호환성을 유지하고 Google의 Verify Apps 검사를 사용하도록 설정합니다.",
"basicIntegrity": "기본 무결성",
"basicIntegrityAndCertifiedDevices": "기본 무결성 및 인증 디바이스",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "비활성화 시간 제한",
"bioPinInactiveTimeoutTooltip": "다음 시간(분) 이후 생체 인식 대신 PIN으로 재정의",
"block": "차단",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "모든 앱에 대한 문자 제한 잘라내기 및 복사",
"camera": "카메라",
"checkInCountColumnTitle": "체크 인 수",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "체크인",
"checkedInAppNameColumnTitle": "앱",
"checkedInButNotSynced": "체크 인되었습니다. 다음 동기화 시 이 앱에서 {0}을(를) 수신합니다.",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">필요한 앱을 찾을 수 없습니다.</a></p><p><a data-bind=\"fxclick: onClickLob\">고유한 LOB(기간 업무) 앱을 추가해야 합니다.</a></p>",
"guidedTemplate2": "사용자에게 배포할 보호 수준을 묻는 메시지가 표시됩니다. 자세한 내용은 <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">앱 보호 정책이 포함된 데이터 보호 프레임워크</a>를 참조하세요.",
"guidediOSLabel": "iOS 앱 보호",
"hardwareBackedKey": "하드웨어 백업 키",
"healthCheck": "상태 검사",
"helpAndSupport": "도움말 및 지원",
"hideOverrides": "재정의 숨기기",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "플랫폼",
"platformDropDownLabel": "플랫폼",
"platformVersion": "플랫폼 버전",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "아래 섹션의 오류를 수정하세요!",
"pleaseSelectAtLeastOneFileError": "계속하기 전에 하나 이상의 파일을 선택하세요.",
"policies": "정책",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "장치 잠금 필요",
"requireThreatScanOnApps": "앱에서 위협 검색 필요",
"requiredField": "이 필드는 비워 둘 수 없습니다.",
"requiredSafetyNetEvaluationType": "필요한 SafetyNet 평가 유형",
"requiredSettings": "필수 설정",
"resetPin": "PIN 재설정",
"resourceManagement": "리소스 관리",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "모든 앱",
"restrictWebContentOption2": "{0}: 모든 앱에서 웹 링크 허용",
"rootCertificate": "루트 인증서",
"safetyNetDeviceAttestation": "SafetyNet 디바이스 증명",
"samsungKnoxAttestationRequired": "삼성 Knox 디바이스 증명",
"saveAppsNotificationText": "선택한 앱을 저장하는 중",
"saveChangesCommandText": "저장",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "필터 모드",
"assignmentToast": "최종 사용자 알림",
"assignmentTypeTableHeader": "할당 유형",
"autoUpdate": "자동 업데이트",
"deadlineTimeColumnLabel": "설치 최종 기한",
"deliveryOptimizationPriorityHeader": "배달 최적화 우선 순위",
"groupTableHeader": "그룹",
@@ -8514,6 +8496,10 @@
"showAll": "모든 알림 메시지 표시",
"showReboot": "컴퓨터 다시 시작에 대한 알림 메시지 표시"
},
"AutoUpdateSupersededApps": {
"enabled": "사용",
"notConfigured": "구성되지 않음"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "백그라운드",
"displayText": "{0}에서 콘텐츠 다운로드",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "\"매번 로그인 빈도\" 세션 컨트롤에는 \"모든 클라우드 앱\" 또는 특별히 지원되는 앱을 선택해야 합니다.",
"allDayCheckboxLabel": "하루 종일",
"allDevicePlatforms": "모든 디바이스",
"allGuestUserInfoContent": "Azure AD B2B 게스트를 포함하지만 SharePoint B2B 게스트는 포함하지 않",
"allGuestUserInfoContent": "Microsoft Entra B2B 게스트를 포함하지만 SharePoint B2B 게스트는 포함하지 않습니다.",
"allGuestUserLabel": "모든 게스트 및 외부 사용자",
"allRiskLevelsOption": "모든 위험 수준",
"allTrustedLocationLabel": "모든 신뢰된 위치",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "규격 디바이스를 요구하는 방법에 대해 자세히 알아보세요.",
"controlsDeviceComplianceInfoBubble": "디바이스가 Intune을 준수해야 합니다. 디바이스가 Intune을 준수하지 않는 경우 사용자에게 디바이스의 준수를 요구하는 메시지가 표시됩니다.",
"controlsDomainJoinedAriaLabel": "하이브리드 Azure AD 조인 디바이스를 요구하는 방법에 대해 자세히 알아보세요.",
"controlsDomainJoinedInfoBubble": "디바이스는 하이브리드 Azure AD 조인되어야 합니다.",
"controlsDomainJoinedAriaLabel": "Microsoft Entra 하이브리드 조인 디바이스를 요구하는 방법에 대해 자세히 알아보세요.",
"controlsDomainJoinedInfoBubble": "디바이스는 Microsoft Entra 하이브리드 조인되어야 합니다.",
"controlsMamAriaLabel": "승인된 클라이언트 애플리케이션을 요구하는 방법에 대해 자세히 알아보세요.",
"controlsMamInfoBubble": "디바이스가 이러한 승인된 클라이언트 애플리케이션을 사용해야 합니다.",
"controlsMfaInfoBubble": "사용자는 전화 통화, 텍스트 등의 추가 보안 요구 사항을 완료해야 합니다.",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "디바이스가 준수 상태로 표시됨",
"deviceStateCompliantInfoContent": "Intune을 준수하는 디바이스는 이 정책의 평가에서 제외됩니다. 즉, 예를 들어 정책이 액세스를 차단하는 경우 Intune을 준수하는 디바이스 외의 모든 디바이스가 차단됩니다.",
"deviceStateConditionConfigureInfoContent": "디바이스 상태에 따라 정책 구성",
"deviceStateConditionSelectorInfoContent": "사용자가 로그인하는 장치가 '하이브리드 Azure AD 조인'되었거나 '준수 표시'인지 여부입니다.\n 이 항목은 더 이상 사용되지 않습니다. '{1}'을(를) 대신 사용하세요.",
"deviceStateConditionSelectorInfoContent": "사용자가 로그인하는 장치가 'Microsoft Entra 하이브리드 조인'되었거나 '준수 표시'인지 여부입니다.\n 이 항목은 더 이상 사용되지 않습니다. '{1}'을(를) 대신 사용하세요.",
"deviceStateConditionSelectorLabel": "디바이스 상태(사용되지 않음)",
"deviceStateDomainJoined": "하이브리드 Azure AD 조인된 디바이스",
"deviceStateDomainJoinedInfoContent": "하이브리드 Azure AD 조인된 디바이스는 이 정책의 평가에서 제외됩니다. 즉, 예를 들어 정책이 액세스를 차단하는 경우 하이브리드 Azure AD 조인 디바이스 외의 모든 디바이스 차단니다.",
"deviceStateDomainJoined": "디바이스 Microsoft Entra 하이브리드 조인됨",
"deviceStateDomainJoinedInfoContent": "Microsoft Entra 하이브리드 조인된 디바이스는 이 정책의 평가에서 제외되므로, 예를 들어 정책이 액세스를 차단하는 경우 Microsoft Entra 하이브리드 조인 디바이스를 제외한 모든 디바이스 차단니다.",
"deviceStateDomainJoinedInfoLinkText": "자세히 알아보세요.",
"deviceStateExcludeDescription": "정책에서 디바이스를 제외하는 데 사용된 디바이스 상태 조건을 선택합니다.",
"deviceStateIncludeAndExcludeOneLabel": "{0} 포함 및 {1} 제외",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "지원되는 플랫폼이 있는 Exchange ActiveSync만",
"excludeAllTrustedLocationSelectorText": "모든 신뢰할 수 있는 위치 제외",
"featureRequiresP2": "이 기능을 사용하려면 Azure AD Premium 2개의 라이선스가 필요합니다.",
"featureRequiresP2": "이 기능을 사용하려면 Microsoft Entra ID P2 라이선스가 필요합니다.",
"friday": "금요일",
"grantControls": "컨트롤 권한 부여",
"gridNetworkTrusted": "인증 신뢰",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "선택한 사설 링크",
"lowRisk": "낮음",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "조건부 액세스 정책을 관리하려면 조직에 Azure AD Premium P1 또는 P2가 있어야 합니다.",
"managePoliciesLicenseText": "조건부 액세스 정책을 관리하려면 조직에 Microsoft Entra ID P1 또는 P2가 필요합니다.",
"manageSecurityDefaultsAriaLabel": "보안 기본 설정을 관리합니다.",
"markAsTrustedCheckboxInfoBalloonContent": "신뢰할 수 있는 위치에서 로그인하면 사용자의 로그인 위험이 낮아집니다. 입력한 IP 범위가 조직에 설정되어 신뢰할 수 있는 경우 이 위치만 신뢰할 수 있음으로 표시하세요.",
"markAsTrustedCheckboxLabel": "신뢰할 수 있는 위치로 표시",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "국가/지역",
"namedLocationTypeLabel": "사용 위치 정의:",
"namedLocationUpsellBanner": "이 보기는 더 이상 사용되지 않습니다. 새롭게 개선된 '명명된 위치' 보기로 이동합니다.",
"namedLocationsHelpDescription": "명명된 위치는 가양성 및 Azure AD 조건부 액세스 정책을 줄이기 위해 Azure AD 보안 보고서에서 사용됩니다.\n[자세한 정보][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "명명된 위치는 가양성 및 Microsoft Entra ID 조건부 액세스 정책을 줄이기 위해 Microsoft Entra 보안 보고서에서 사용됩니다.\n[자세한 정보][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "새 IP 범위(예: 40.77.182.32/27) 추가",
"namedNetworkCountryNeeded": "국가/지역을 하나 이상 선택해야 합니다.",
"namedNetworkDeleteCommand": "삭제",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "새 명명된 위치",
"namedNetworksConditionHelpDescription": "물리적 위치에 따라 사용자 액세스를 제어합니다.\n[자세한 정보][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0}, {1}개 제외됨",
"namedNetworksHelpDescription": "명명된 위치는 가양성 및 Azure AD 조건부 액세스 정책을 줄이기 위해 Azure AD 보안 보고서에서 사용됩니다.\n[자세한 정보][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "명명된 위치는 가양성 및 Microsoft Entra ID 조건부 액세스 정책을 줄이기 위해 Microsoft Entra 보안 보고서에서 사용됩니다.\n[자세한 정보][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0}개 포함됨",
"namedNetworksNone": "명명된 위치를 찾을 수 없습니다.",
"namedNetworksTitle": "위치 구성",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "전역 관리자만 이 정책을 저장할 수 있습니다.",
"or": "{0} 또는 {1}",
"pickerDoneCommand": "완료",
"policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium을 통해 클라우드 앱, 로그인 위험 및 디바이스 플랫폼 같은 대상별 조건 사용자 고유의 정책 만들기",
"policiesBladeAdPremiumUpsellBannerText": "Microsoft Entra ID Premium을 통해 클라우드 앱, 로그인 위험 및 장치 플랫폼 같은 대상별 조건 사용자 고유의 정책듭니다.",
"policiesBladeTitle": "정책",
"policiesBladeTitleWithAppName": "정책: {0}",
"policiesDisabledBannerText": "연결된 로그온 특성이 있는 애플리케이션의 정책 만들기와 편집은 금지됩니다.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "사용자가 로그인하는 위치(IP 주소 범위를 사용하여 확인)입니다.",
"policyConditionLocationPreview": "위치(미리 보기)",
"policyConditionSigninRisk": "로그인 위험",
"policyConditionSigninRiskDescription": "사용자 이외의 누군가가 로그인했을 가능성입니다. 위험 수준은 높음, 중간 또는 낮음이 될 수 있습니다. Azure AD Premium 2 라이선스가 필요합니다.",
"policyConditionSigninRiskDescription": "사용자 이외의 누군가가 로그인했을 가능성입니다. 위험 수준은 높음, 중간 또는 낮음이 될 수 있습니다. Microsoft Entra ID P2 라이선스가 필요합니다.",
"policyConditionUserRisk": "사용자 위험",
"policyConditionUserRiskDescription": "정책을 적용하기 위해 필요한 사용자 위험 수준 구성",
"policyConditioniClientApp": "클라이언트 앱",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "액세스를 차단하거나, 액세스를 허용하기 위해 충족해야 하는 추가 요구 사항 선택",
"policyControlMfaChallengeDisplayedName": "다단계 인증 필요",
"policyControlRequireCompliantAppDisplayedName": "앱 보호 정책 필요",
"policyControlRequireDomainJoinedDisplayedName": "하이브리드 Azure AD 조인 디바이스 필요",
"policyControlRequireDomainJoinedDisplayedName": "Microsoft Entra 하이브리드 조인 디바이스 필요",
"policyControlRequireMamDisplayedName": "승인된 클라이언트 앱 필요",
"policyControlRequiredPasswordChangeDisplayedName": "암호 변경 필요",
"policyControlSelectAuthStrength": "인증 강도 필요",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "{0}을(를) 업데이트했습니다. [정책 사용]이 [켜기]로 설정되어 있으면 몇 분 후에 정책이 활성화됩니다.",
"policyUpdateSuccessTitle": "{0} 업데이트 성공",
"primaryCol": "주",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "보고서 전용 모드: 정책은 로그인할 때 평가 및 기록되지만 사용자에게 영향을 주지 않습니다.",
"requireAllControlsText": "선택된 컨트롤이 모두 필요함",
"requireCompliantDevice": "준수 디바이스 필요",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "중요한 애플리케이션에 대해 항상 또는 회사 네트워크 외부인 경우에만 다단계 인증을 요구합니다.",
"upsellAppsTitle": "보안 애플리케이션",
"upsellBannerText": "무료 Premium 평가판을 받아서 이 기능을 사용하세요.",
"upsellDataDescription": "회사 리소스에 액세스를 허용하려면 준수 상태로 표시된 디바이스나 하이브리드 Azure AD 조인된 디바이스가 필요합니다.",
"upsellDataDescription": "회사 리소스에 대한 액세스를 허용하려면 디바이스를 규격 또는 Microsoft Entra 하이브리드 조인으로 표시해야 합니다.",
"upsellDataTitle": "보안 데이터",
"upsellDescription": "조건부 액세스는 회사 데이터를 안전하게 유지하는 데 필요한 제어 및 보호를 제공하는 한편, 직원들이 모든 디바이스에서 최고의 작업을 수행할 수 있는 환경을 제공합니다. 예를 들어, 회사 네트워크 외부에서 액세스를 제한하거나 준수 정책을 충족하는 디바이스만 액세스하도록 제한할 수 있습니다.",
"upsellRiskDescription": "Microsoft의 기계 학습 시스템을 통해 검색된 위험 이벤트에 대해 다단계 인증을 요구합니다.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "{0}을(를) 업데이트했습니다.",
"vpnCertUpdateSuccessTitle": "{0} 업데이트 성공",
"vpnFeatureInfo": "VPN 연결 및 조건부 액세스에 대한 자세한 내용을 보려면 여기를 클릭하세요.",
"vpnFeatureWarning": "Azure Portal에서 VPN 인증서를 만들면 Azure AD는 바로 VPN 클라이언트에 대해 짧은 수명의 인증서를 발급하는 데 사용됩니다. Vpn 클라이언트의 자격 증명 확인에 문제가 발생하지 않도록 vpn 인증서를 VPN 서버에 즉시 배포하는 것이 중요합니다.",
"vpnFeatureWarning": "Portal에서 VPN 인증서를 만들면 Microsoft Entra ID는 바로 VPN 클라이언트에 대해 짧은 수명의 인증서를 발급하는 데 사용됩니다. Vpn 클라이언트의 자격 증명 확인에 문제가 발생하지 않도록 vpn 인증서를 VPN 서버에 즉시 배포하는 것이 중요합니다.",
"vpnMenuText": "VPN 연결",
"vpncertDropdownDefaultOption": "기간",
"vpncertDropdownInfoBalloonContent": "만들 인증서의 기간 선택",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "사용자 지정 Intune 역할",
"customRole": "사용자 지정 역할"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0}은(는) 하나 이상의 정책 집합에 포함되어 있습니다. {0}을(를) 삭제하면 이러한 정책 집합을 통해 더 이상 할당할 수 없게 됩니다. 그래도 삭제하시겠습니까?",
"contentWithError": "{0}은(는) 하나 이상의 정책 집합에 포함되어 있을 수 있습니다. {0}을(를) 삭제하면 이러한 정책 집합을 통해 더 이상 할당할 수 없게 됩니다. 그래도 삭제하시겠습니까?",
"header": "이 제한을 삭제하시겠습니까?"
},
"DeviceLimit": {
"description": "사용자가 등록할 수 있는 최대 디바이스 수를 지정합니다.",
"header": "디바이스 개수 제한",
"info": "각 사용자가 등록할 수 있는 디바이스 수를 정의합니다."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "1.0 이상이어야 합니다.",
"android": "올바른 버전 번호를 입력합니다. 예: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "유효한 버전 번호를 입력합니다. 예: 5.0, 5.1.1",
"iOS": "올바른 버전 번호를 입력합니다. 예: 9.0, 10.0, 9.0.2",
"mac": "올바른 버전 번호를 입력하세요. 예: 10, 10.10, 10.10.1",
"min": "최소값은 {0}보다 작을 수 없습니다.",
"minMax": "최소 버전이 최대 버전보다 클 수 없습니다.",
"windows": "10.0 이상이어야 합니다. 8.1 디바이스를 허용하려면 비워 둡니다.",
"windowsMobile": "10.0 이상이어야 합니다. 8.1 디바이스를 허용하려면 비워 둡니다."
},
"allPlatformsBlocked": "모든 디바이스 플랫폼이 차단됩니다. 플랫폼 구성을 사용하려면 플랫폼 등록을 허용하세요.",
"blockManufacturerPlaceHolder": "제조업체 이름",
"blockManufacturersHeader": "차단된 제조업체",
"cannotRestrict": "제한이 지원되지 않습니다.",
"configurationDescription": "디바이스를 등록하기 위해 충족해야 하는 플랫폼 구성 제한을 지정합니다. 등록 후 준수 정책을 사용하여 디바이스를 제한할 수 있습니다. 버전을 major.minor.build로 정의합니다. 버전 제한은 회사 포털로 등록된 디바이스에만 적용됩니다. Intune은 기본적으로 디바이스를 개인 소유로 분류합니다. 디바이스를 회사 소유로 분류하려면 추가 작업이 필요합니다.",
"configurationDescriptionLabel": "등록 제한 설정에 대해 자세히 알아보기",
"configurations": "플랫폼 구성",
"deviceManufacturer": "장치 제조업체",
"header": "디바이스 유형 제한",
"info": "등록할 수 있는 플랫폼, 버전 및 관리 유형을 정의합니다.",
"manufacturer": "제조업체",
"max": "최대",
"maxVersion": "최대 버전",
"min": "최소",
"minVersion": "최소 버전",
"newPlatforms": "새 플랫폼을 허용했습니다. 플랫폼 구성 업데이트를 고려하세요.",
"personal": "개인적으로 소유함",
"platform": "플랫폼",
"platformDescription": "다음 플랫폼의 등록을 허용할 수 있습니다. 지원하지 않을 플랫폼만 차단합니다. 허용된 플랫폼에 대해 추가 등록 제한을 구성할 수 있습니다.",
"platformSettings": "플랫폼 설정",
"platforms": "플랫폼 선택",
"platformsSelected": "{0}개의 플랫폼 선택됨",
"type": "유형",
"versions": "버전",
"versionsRange": "최소/최대 범위 허용:",
"windowsTooltip": "모바일 디바이스 관리를 통해 등록을 제한합니다. PC 에이전트 설치를 제한하지 않습니다. Windows 10 및 Windows 11 버전만 지원됩니다. Windows 8.1을 허용하려면 버전을 비워 두세요."
},
"Priority": {
"saved": "제한 우선 순위를 저장했습니다."
},
"Row": {
"announce": "우선 순위: {0}, 이름: {1}, 할당: {2}"
},
"Table": {
"deployed": "배포됨",
"name": "이름",
"priority": "우선 순위"
},
"Type": {
"limit": "디바이스 개수 제한",
"type": "디바이스 유형 제한"
},
"allUsers": "모든 사용자",
"androidRestrictions": "Android 제한 사항",
"create": "제한 만들기",
"defaultLimitDescription": "그룹 멤버 자격에 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 디바이스 개수 제한입니다.",
"defaultTypeDescription": "그룹 멤버 자격에 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 디바이스 유형 제한입니다.",
"defaultWhfbDescription": "그룹 멤버 자격과 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 비즈니스용 Windows Hello 구성입니다.",
"deleteMessage": "영향을 받는 사용자가 할당된 다음 최고 우선 순위 제한으로 제한되거나 다른 제한이 할당되지 않은 경우 기본 제한으로 제한됩니다.",
"deleteTitle": "{0} 제한을 삭제할까요?",
"descriptionHint": "제한 설정을 통해 특징이 지정된 비즈니스 사용 목적 또는 제한 수준을 간단히 설명합니다.",
"edit": "편집 제한",
"info": "디바이스는 사용자에게 할당된 우선 순위가 가장 높은 등록 제한을 준수해야 합니다. 디바이스 제한을 끌어서 우선 순위를 변경할 수 있습니다. 기본 제한은 모든 사용자에 대해 가장 낮은 우선 순위이며 사용자가 없는 등록을 제어합니다. 기본 제한을 편집할 수 있지만 삭제할 수는 없습니다.",
"iosRestrictions": "iOS 제한 사항",
"mDM": "MDM",
"macRestrictions": "macOS 제한 사항",
"maxVersion": "최대 버전",
"minVersion": "최소 버전",
"nameHint": "제한 집합 식별을 위해 표시되는 주 특성입니다.",
"noAssignmentsStatusBar": "하나 이상의 그룹에 제한을 할당하세요. [속성]을 클릭하세요.",
"notFound": "제한을 찾을 수 없습니다. 이미 삭제되었을 수 있습니다.",
"personallyOwned": "개인적으로 소유한 디바이스",
"restriction": "제한",
"restrictionLowerCase": "제한",
"restrictionType": "Restriction type",
"selectType": "제한 유형 선택",
"selectValidation": "플랫폼 선택",
"typeHint": "[디바이스 유형 제한]을 선택하여 디바이스 속성을 제한합니다. [디바이스 개수 제한]을 선택하여 사용자당 디바이스 수를 제한합니다.",
"typeRequired": "제한 유형이 필요합니다.",
"winPhoneRestrictions": "Windows Phone 제한 사항",
"windowsECv1Info": "이전 등록 제한은 편집하거나 다시 할당할 수’없으며 삭제만 가능합니다.",
"windowsECv2Info": "등록 제한을 드래그 앤 드롭하여 우선 순위를 지정할 수 있습니다. 아래에서 기본 및 미리 구성된 제한 사항을 확인하세요. 모든 새로운 등록 제한은 기본 및 사전 구성된 제한보다 우선 순위가 높습니다.",
"windowsRestrictions": "Windows 제한 사항",
"windowsRestrictionsPreview": "필터 기반 Windows 제한 사항(미리 보기)"
},
"InstallContextType": {
"device": "디바이스",
"deviceContext": "디바이스 컨텍스트",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "규칙 구문",
"filters": "필터"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0}은(는) 하나 이상의 정책 집합에 포함되어 있습니다. {0}을(를) 삭제하면 이러한 정책 집합을 통해 더 이상 할당할 수 없게 됩니다. 그래도 삭제하시겠습니까?",
"contentWithError": "{0}은(는) 하나 이상의 정책 집합에 포함되어 있을 수 있습니다. {0}을(를) 삭제하면 이러한 정책 집합을 통해 더 이상 할당할 수 없게 됩니다. 그래도 삭제하시겠습니까?",
"header": "이 제한을 삭제하시겠습니까?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "사용자가 설정을 변경할 수 있도록 허용",
"tooltip": "사용자가 설정을 변경할 수 있도록 허용할지를 지정합니다."
},
"AllowWorkAccounts": {
"title": "회사 또는 학교 계정만 허용",
"tooltip": " 이 설정을 사용하도록 설정하면 사용자가 Outlook 내에서 개인 메일 및 스토리지 계정을 추가할 수 없습니다. 사용자가 Outlook에 개인 계정을 추가한 경우 개인 계정을 제거하라는 메시지가 표시됩니다. 사용자가 개인 계정을 제거하지 않으면 회사 또는 학교 계정을 추가할 수 없습니다."
},
"BlockExternalImages": {
"title": "외부 이미지 차단",
"tooltip": "블록 외부 이미지를 사용하도록 설정하면 앱에서 인터넷에 호스트되어 있는 메시지 본문에 포함된 이미지 다운로드를 방지합니다. 구성되지 않도록 설정하면 기본 앱 설정이 [끄기]로 설정됩니다."
},
"ConfigureEmail": {
"title": "메일 계정 설정 구성"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "기본 앱 서명은 앱이 메시지 작성 중 기본 서명으로 “Android용 Outlook 다운로드”를 사용할지 여부를 나타냅니다. 설정이 [끄기]로 구성된 경우 기본 서명은 사용되지 않지만, 사용자가 고유한 서명을 추가할 수 있습니다.\r\n\r\n[구성되지 않음]으로 설정된 경우 기본 앱 설정은 [켜기]로 설정됩니다.",
"iOS": "기본 앱 서명은 앱이 메시지 작성 중 기본 서명으로 “iOS용 Outlook 다운로드”를 사용할지 여부를 나타냅니다. 설정이 [끄기]로 구성된 경우 기본 서명은 사용되지 않지만, 사용자가 고유한 서명을 추가할 수 있습니다.\r\n\r\n[구성되지 않음]으로 설정된 경우 기본 앱 설정은 [켜기]로 설정됩니다."
},
"title": "기본 앱 서명"
},
"OfficeFeedReplies": {
"title": "피드 검색",
"tooltip": "피드 검색에는 가장 자주 액세스하는 Office 파일이 표시됩니다. 기본적으로, Delve가 해당 사용자에게 사용하도록 설정된 경우 이 피드를 사용할 수 있습니다. 구성되지 않음으로 설정하면 기본 앱 설정이 On으로 설정됩니다."
},
"OrganizeMailByThread": {
"title": "스레드별로 메일 구성",
"tooltip": "Outlook의 기본 동작은 메일 대화를 스레드된 대화 보기로 묶는 것입니다. 이 설정을 사용하지 않도록 설정하는 경우 Outlook은 각 메일을 개별적으로 표시하며 스레드별로 그룹화하지 않습니다."
},
"PlayMyEmails": {
"title": "내 전자 메일 재생",
"tooltip": "[내 전자 메일 재생] 기능은 앱에서 기본적으로 사용하도록 설정되어 있지 않지만 받은 편지함의 배너를 통해 적격 사용자로 기능의 수준이 올라갑니다. 이 기능이 [끄기]로 설정되면 앱에서 적격 사용자로 수준이 올라가지 않습니다. 사용자는 이 기능이 [끄기]로 설정된 경우에도 앱 내에서 [내 전자 메일 재생]을 수동으로 사용하도록 설정할 수 있습니다. [구성되지 않음]으로 설정하는 경우 기본 앱 설정은 [켜기]이며 적격 사용자로 기능의 수준이 올라갑니다."
},
"SuggestedReplies": {
"title": "제안된 회신",
"tooltip": "메시지를 여는 경우, Outlook에서 메시지 아래에 회신을 제안할 수 있습니다. 제안된 회신을 선택하면 회신을 보내기 전에 편집할 수 있습니다."
},
"SyncCalendars": {
"title": "일정 동기화",
"tooltip": "사용자가 Outlook 일정을 기본 일정 앱 및 데이터베이스와 동기화할 수 있는지 여부를 구성합니다."
},
"TextPredictions": {
"title": "텍스트 예측",
"tooltip": "Outlook에서 메시지를 작성할 때 단어와 구를 제안할 수 있습니다. Outlook에서 단어나 구를 제안하는 경우 수락하려면 제안된 단어나 구를 살짝 밉니다. [구성되지 않음]으로 설정하면 기본 앱 설정이 [켜기]로 설정됩니다."
},
"DeviceLimit": {
"description": "사용자가 등록할 수 있는 최대 디바이스 수를 지정합니다.",
"header": "디바이스 개수 제한",
"info": "각 사용자가 등록할 수 있는 디바이스 수를 정의합니다."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "1.0 이상이어야 합니다.",
"android": "올바른 버전 번호를 입력합니다. 예: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "유효한 버전 번호를 입력합니다. 예: 5.0, 5.1.1",
"iOS": "올바른 버전 번호를 입력합니다. 예: 9.0, 10.0, 9.0.2",
"mac": "올바른 버전 번호를 입력하세요. 예: 10, 10.10, 10.10.1",
"min": "최소값은 {0}보다 작을 수 없습니다.",
"minMax": "최소 버전이 최대 버전보다 클 수 없습니다.",
"windows": "10.0 이상이어야 합니다. 8.1 디바이스를 허용하려면 비워 둡니다.",
"windowsMobile": "10.0 이상이어야 합니다. 8.1 디바이스를 허용하려면 비워 둡니다."
},
"allPlatformsBlocked": "모든 디바이스 플랫폼이 차단됩니다. 플랫폼 구성을 사용하려면 플랫폼 등록을 허용하세요.",
"blockManufacturerPlaceHolder": "제조업체 이름",
"blockManufacturersHeader": "차단된 제조업체",
"cannotRestrict": "제한이 지원되지 않습니다.",
"configurationDescription": "디바이스를 등록하기 위해 충족해야 하는 플랫폼 구성 제한을 지정합니다. 등록 후 준수 정책을 사용하여 디바이스를 제한할 수 있습니다. 버전을 major.minor.build로 정의합니다. 버전 제한은 회사 포털로 등록된 디바이스에만 적용됩니다. Intune은 기본적으로 디바이스를 개인 소유로 분류합니다. 디바이스를 회사 소유로 분류하려면 추가 작업이 필요합니다.",
"configurationDescriptionLabel": "등록 제한 설정에 대해 자세히 알아보기",
"configurations": "플랫폼 구성",
"deviceManufacturer": "장치 제조업체",
"header": "디바이스 유형 제한",
"info": "등록할 수 있는 플랫폼, 버전 및 관리 유형을 정의합니다.",
"manufacturer": "제조업체",
"max": "최대",
"maxVersion": "최대 버전",
"min": "최소",
"minVersion": "최소 버전",
"newPlatforms": "새 플랫폼을 허용했습니다. 플랫폼 구성 업데이트를 고려하세요.",
"personal": "개인적으로 소유함",
"platform": "플랫폼",
"platformDescription": "다음 플랫폼의 등록을 허용할 수 있습니다. 지원하지 않을 플랫폼만 차단합니다. 허용된 플랫폼에 대해 추가 등록 제한을 구성할 수 있습니다.",
"platformSettings": "플랫폼 설정",
"platforms": "플랫폼 선택",
"platformsSelected": "{0}개의 플랫폼 선택됨",
"type": "유형",
"versions": "버전",
"versionsRange": "최소/최대 범위 허용:",
"windowsTooltip": "모바일 디바이스 관리를 통해 등록을 제한합니다. PC 에이전트 설치를 제한하지 않습니다. Windows 10 및 Windows 11 버전만 지원됩니다. Windows 8.1을 허용하려면 버전을 비워 두세요."
},
"Priority": {
"saved": "제한 우선 순위를 저장했습니다."
},
"Row": {
"announce": "우선 순위: {0}, 이름: {1}, 할당: {2}"
},
"Table": {
"deployed": "배포됨",
"name": "이름",
"priority": "우선 순위"
},
"Type": {
"limit": "디바이스 개수 제한",
"type": "디바이스 유형 제한"
},
"allUsers": "모든 사용자",
"androidRestrictions": "Android 제한 사항",
"create": "제한 만들기",
"defaultLimitDescription": "그룹 멤버 자격에 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 디바이스 개수 제한입니다.",
"defaultTypeDescription": "그룹 멤버 자격에 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 디바이스 유형 제한입니다.",
"defaultWhfbDescription": "그룹 멤버 자격과 상관없이 모든 사용자에게 우선 순위가 가장 낮게 적용된 기본 비즈니스용 Windows Hello 구성입니다.",
"deleteMessage": "영향을 받는 사용자가 할당된 다음 최고 우선 순위 제한으로 제한되거나 다른 제한이 할당되지 않은 경우 기본 제한으로 제한됩니다.",
"deleteTitle": "{0} 제한을 삭제할까요?",
"descriptionHint": "제한 설정을 통해 특징이 지정된 비즈니스 사용 목적 또는 제한 수준을 간단히 설명합니다.",
"edit": "편집 제한",
"info": "디바이스는 사용자에게 할당된 우선 순위가 가장 높은 등록 제한을 준수해야 합니다. 디바이스 제한을 끌어서 우선 순위를 변경할 수 있습니다. 기본 제한은 모든 사용자에 대해 가장 낮은 우선 순위이며 사용자가 없는 등록을 제어합니다. 기본 제한을 편집할 수 있지만 삭제할 수는 없습니다.",
"iosRestrictions": "iOS 제한 사항",
"mDM": "MDM",
"macRestrictions": "MacOS 제한 사항",
"maxVersion": "최대 버전",
"minVersion": "최소 버전",
"nameHint": "제한 집합 식별을 위해 표시되는 주 특성입니다.",
"noAssignmentsStatusBar": "하나 이상의 그룹에 제한을 할당하세요. [속성]을 클릭하세요.",
"notFound": "제한을 찾을 수 없습니다. 이미 삭제되었을 수 있습니다.",
"personallyOwned": "개인적으로 소유한 디바이스",
"restriction": "제한",
"restrictionLowerCase": "제한",
"restrictionType": "Restriction type",
"selectType": "제한 유형 선택",
"selectValidation": "플랫폼 선택",
"typeHint": "[디바이스 유형 제한]을 선택하여 디바이스 속성을 제한합니다. [디바이스 개수 제한]을 선택하여 사용자당 디바이스 수를 제한합니다.",
"typeRequired": "제한 유형이 필요합니다.",
"winPhoneRestrictions": "Windows Phone 제한 사항",
"windowsRestrictions": "Windows 제한 사항"
},
"ThemesEnabled": {
"title": "테마 사용",
"tooltip": "사용자가 사용자 지정 시각적 개체 테마를 사용할 수 있는지 여부를 지정합니다."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS 장치(미리 보기)"
@@ -12507,6 +12558,7 @@
"user": "사용자",
"userExecutionStatus": "사용자 상태",
"wdacSupplementalPolicies": "S 모드 추가 정책",
"win32CatalogUpdateApp": "Windows용 업데이트(Win32) 카탈로그 앱",
"windows10DriverUpdate": "Windows 10 이상용 드라이버 업데이트",
"windows10QualityUpdate": "Windows 10 이상의 품질 업데이트",
"windows10UpdateRings": "Windows 10 이상용 링 업데이트",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Windows 365 파트너 커넥터",
"windowsDiagnosticData": "Windows 데이터",
"windowsEnterpriseCertificate": "Windows 엔터프라이즈 인증서",
"windowsManagement": "PowerShell 스크립트",
"windowsManagement": "스크립트",
"windowsSideLoadingKeys": "Windows 테스트용 로드 키",
"windowsSymantecCertificate": "Windows DigiCert 인증서",
"windowsThreatReport": "위협 에이전트 상태"
@@ -12551,6 +12603,10 @@
"postponed": "연기됨",
"priority": "높은 우선 순위"
},
"AutoUpdateSupersededApps": {
"label": "자동 업데이트",
"sublabel": "이 애플리케이션의 대체된 버전을 자동으로 업그레이드"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "배경",
"displayText": "{0}에서 콘텐츠 다운로드",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Minimaal één hoofdletter vereisen in een pincode"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Toestaan dat de gebruiker de instelling kan wijzigen",
"tooltip": "Geef aan of de gebruiker de synchronisatie-instelling mag wijzigen."
},
"AllowWorkAccounts": {
"title": "Alleen werk- of schoolaccounts toestaan",
"tooltip": " Als u deze instelling inschakelt, kunnen gebruikers geen persoonlijke e-mail- en opslagaccounts toevoegen in Outlook. Als de gebruiker een persoonlijk account heeft toegevoegd aan Outlook, wordt de gebruiker gevraagd om dit te verwijderen. Als de gebruiker het persoonlijke account niet verwijdert, kan het werk- of schoolaccount niet worden toegevoegd."
},
"BlockExternalImages": {
"title": "Externe afbeeldingen blokkeren",
"tooltip": "Als de optie Externe afbeeldingen blokkeren is ingeschakeld, wordt met de app voorkomen dat afbeeldingen die op internet worden gehost en in de berichttekst zijn ingesloten, kunnen worden gedownload. Als de optie niet is geconfigureerd, wordt standaard de app-instelling Uit gebruikt"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "App-versie",
"dependencyName": "Naam van afhankelijkheid",
"lastModifiedTime": "Tijdstip laatst gewijzigd",
"relationship": "Relatie",
"replaced": "Vervangen",
"searchPlaceholder": "Filteren op app-naam",
"status": "Statusdetails",
"statusDetails": "Status",
"supersedenceName": "Vervangingsnaam"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Onderliggende afhankelijkheid",
"indirectSupersedence": "Niet rechtstreeks gerelateerd",
"supersedenceAncestors": "Vervangen",
"supersedenceDescendants": "Vervangen"
},
"ConfigureEmail": {
"title": "Instellingen van e-mailaccount configureren"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "In de standaardhandtekening voor de app wordt aangegeven of 'Outlook voor Android downloaden' als standaardhandtekening voor de app wordt gebruikt tijdens het opstellen van berichten. Als de instelling op Uit is ingesteld, wordt de standaardhandtekening niet gebruikt; gebruikers kunnen echter wel hun eigen handtekening toevoegen.\r\n\r\nWanneer deze instelling op Niet geconfigureerd is ingesteld, wordt de standaardinstelling voor de app ingesteld op Aan.",
"iOS": "In de standaardhandtekening voor de app wordt aangegeven of 'Outlook voor iOS downloaden' als standaardhandtekening voor de app wordt gebruikt tijdens het opstellen van berichten. Als de instelling op Uit is ingesteld, wordt de standaardhandtekening niet gebruikt; gebruikers kunnen echter wel hun eigen handtekening toevoegen.\r\n\r\nWanneer deze instelling op Niet geconfigureerd is ingesteld, wordt de standaardinstelling voor de app ingesteld op Aan."
},
"title": "Standaardhandtekening voor apps"
},
"OfficeFeedReplies": {
"title": "Feed detecteren",
"tooltip": "Feeds detecteren van uw meest gebruikte Office-bestanden. Deze feed is standaard ingeschakeld wanneer Delve is ingeschakeld voor de gebruiker. Wanneer de instelling niet is geconfigureerd, is de app standaard ingesteld op Aan."
},
"OrganizeMailByThread": {
"title": "E-mailberichten rangschikken op thread",
"tooltip": "Standaard worden e-mailconversaties in Outlook gebundeld in een weergave met gespreksthreads. Als deze instelling is uitgeschakeld, wordt elk e-mailbericht in Outlook afzonderlijk weergegeven en worden berichten niet op thread gegroepeerd."
},
"PlayMyEmails": {
"title": "Mijn e-mailberichten afspelen",
"tooltip": "De functie Mijn e-mailberichten afspelen is standaard niet ingeschakeld in de app, maar wordt aangeboden aan in aanmerking komende gebruikers via een banner in het Postvak IN. Wanneer deze functie is ingesteld op Uit, wordt deze niet aangeboden aan in aanmerking komende gebruikers in de app. Gebruikers kunnen ervoor kiezen Mijn e-mailberichten afspelen handmatig in te schakelen vanuit de app, zelfs wanneer deze functie is ingesteld op Uit. Als deze optie is ingesteld als Niet geconfigureerd, is de standaardinstelling voor de app Aan en wordt de functie aangeboden aan in aanmerking komende gebruikers."
},
"SuggestedReplies": {
"title": "Voorgestelde antwoorden",
"tooltip": "Wanneer u een bericht opent, kan Outlook antwoorden voorstellen onder het bericht. Als u een voorgesteld antwoord selecteert, kunt u het antwoord bewerken voordat u het verzendt."
},
"SyncCalendars": {
"title": "Agenda's synchroniseren",
"tooltip": "Configureren of gebruikers hun Outlook-agenda kunnen synchroniseren met de systeemeigen agenda-app en -database."
},
"TextPredictions": {
"title": "Tekstvoorspellingen",
"tooltip": "Outlook kan woorden en zinsdelen voorstellen bij het opstellen van berichten. Wanneer Outlook een suggestie geeft, kunt u vegen om deze te accepteren. Wanneer deze functie niet is geconfigureerd, is de app-standaardinstelling Aan."
"SupersededReplaced": {
"no": "Nee",
"yes": "Ja"
},
"ThemesEnabled": {
"title": "Thema's zijn ingeschakeld",
"tooltip": "Opgeven of de gebruiker een aangepast visueel thema mag gebruiken."
}
},
"Tabs": {
"chart": "Diagram",
"dependency": "Afhankelijkheid",
"label": "Weergeven: ",
"supersedence": "Vervanging",
"table": "Tabel"
},
"dependencyGraphAriaLabel": "Diagram app-afhankelijkheid",
"supersedenceGraphAriaLabel": "Appvervangingsgrafiek"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Selecteer een detectiescript",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "PowerShell-script toevoegen",
"customAttributeObjectName": "Aangepast kenmerk",
"editPowershellScriptFlowSectionName": "PowerShell-script bewerken",
"enforceSignatureCheckInfoBalloonContent": "Het script moet worden ondertekend door een vertrouwde uitgever. Standaard wordt geen waarschuwing of prompt weergegeven en het script wordt niet geblokkeerd en uitgevoerd.",
"enforceSignatureCheckInfoBalloonContent": "Het script moet zijn ondertekend door een vertrouwde uitgever. Dit is de standaardinstelling.",
"enforceSignatureCheckLabel": "Controle van scripthandtekening afdwingen",
"executionFrequencyLabel": "Uitvoeringsfrequentie",
"failedToSavePolicy": "Kan {0} niet opslaan",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Controleren en toevoegen ",
"runAs64BitInfoBalloonContent": "Het script wordt op een 64-bits PowerShell-host voor een 64-bits clientarchitectuur uitgevoerd. Het script wordt standaard uitgevoerd op een 32-bits PowerShell-host.",
"runAs64BitLabel": "Script uitvoeren op een 64-bits PowerShell-host",
"scriptContextInfoBalloonContent": "Het script wordt uitgevoerd met de referenties van de gebruiker op de clientcomputer. Standaard wordt het script uitgevoerd in de systeemcontext.",
"scriptContextInfoBalloonContent": "Het script wordt uitgevoerd met de referenties van de gebruiker op de clientcomputer. Standaard wordt het script uitgevoerd in de gebruikerscontext.",
"scriptContextLabel": "Dit script uitvoeren met referenties van aangemelde gebruiker",
"scriptsettingsTabHeader": "Scriptinstellingen",
"settingsHeader": "Te configureren script selecteren",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Always-on-VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Basisintegriteit en apparaatintegriteit controleren",
"androidPlayIntegrityVerdictBasicIntegrity": "Basisintegriteit controleren",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Vertrouwde certificaten kunnen niet meer worden geïnstalleerd op apparaten waarop Android 11 of hoger wordt uitgevoerd, met uitzondering van Samsung Knox-apparaten. Als u SCEP-certificaatprofielen gebruikt, moet u een vertrouwd certificaatprofiel maken en implementeren en dit koppelen aan het SCEP-certificaatprofiel, maar u moet het vertrouwde basiscertificaat handmatig naar die apparaten leveren.",
"androidTenAndAbovePasswordHeader": "Windows 10 en later",
"androidTenAndAbovePasswordHeaderDescription": "Deze instellingen werken voor apparaten waarop Android 10 of hoger wordt uitgevoerd.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Automatische updates van beveiligingspatches en verbeteringen voor het apparaat forceren.",
"complianceUpdatesRequireAutomaticUpdatesName": "Automatische updates van Microsoft vereisen",
"complianceWin10RequiredPasswordTypeDescription": "Met deze instelling wordt bepaald welk type wachtwoord/pincode vereist is.<br>\r\nStandaardwaarde apparaat (wachtwoord, numerieke pincode of alfanumerieke pincode is vereist)<br>\r\nAlfanumeriek (wachtwoord of alfanumerieke pincode is vereist)<br>\r\nNumeriek (wachtwoord of numerieke pincode is vereist)<br>\r\nAanbevelingen: vereist wachtwoordtype: alfanumerieke tekens, wachtwoordcomplexiteit: cijfers en kleine letters zijn vereist",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 of 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 en 11",
"complianceWindows11DeviceHealthAttestationHeader": "Alleen Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Minimale versie van Microsoft Defender (bijvoorbeeld 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Minimale versie van Microsoft Defender Antimalware",
"complianceWindowsDeviceHealthAttestationHeader": "Evaluatieregels voor de Microsoft Attestation-service<br><br>Gebruik deze regels om te controleren of voor een apparaat beschermende maatregelen zijn ingeschakeld tijdens het opstarten. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Meer informatie over deze regels</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Evaluatie-instellingen van Microsoft Attestation Service<br><br>Gebruik deze instellingen om te bevestigen dat voor een apparaat beschermende maatregelen zijn ingeschakeld bij het opstarten. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Meer informatie</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Selecteer de nieuwste toegestane besturingssysteemversie voor een mobiel apparaat. De besturingssysteemversie is gedefinieerd als major.minor.build.revision.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Selecteer de oudste toegestane besturingssysteemversie voor een mobiel apparaat. De besturingssysteemversie is gedefinieerd als major.minor.build.revision.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "De besturingssysteemversie wordt gedefinieerd als primair.secundair.build.revisie. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95e percentiel beveiliging",
"basicDataProtectionGuidedString": "Basisgegevensbescherming: gebruikers moeten een pincode of biometrie moeten gebruiken om toegang te krijgen tot de gegevens van werk- of schoolaccounts, werk- of schoolaccounts worden versleuteld en beheerders zo nodig gegevens selectief wissen. Voor Android-apparaten zorgt basisgegevensbeveiliging ervoor dat het apparaat compatibel is met Google-services en dat de Verify Apps-scan van Google wordt ingeschakeld.",
"basicIntegrity": "Basisintegriteit",
"basicIntegrityAndCertifiedDevices": "Basisintegriteit en gecertificeerde apparaten",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Time-out vanwege inactiviteit",
"bioPinInactiveTimeoutTooltip": "Overschrijven met pincode in plaats van biometrische gegevens na (minuten)",
"block": "Blokkeren",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Tekenlimiet van knippen en kopiëren voor elke app",
"camera": "Camera",
"checkInCountColumnTitle": "AANTAL CHECK-INS",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Ingecheckt",
"checkedInAppNameColumnTitle": "APP",
"checkedInButNotSynced": "Ingecheckt. Tijdens de volgende synchronisatie ontvangt deze app {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">Ik kan de app die ik nodig heb niet vinden</a></p><p><a data-bind=\"fxclick: onClickLob\">Ik wil mijn eigen Line-Of-Business-app toevoegen</a></p>",
"guidedTemplate2": "U wordt gevraagd welk beveiligingsniveau u wilt implementeren voor uw gebruikers. Zie <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Data Protection Framework met app-beveiligingsbeleid</a> voor meer informatie.",
"guidediOSLabel": "iOS-app-beveiliging",
"hardwareBackedKey": "Sleutel op basis van hardware",
"healthCheck": "Statuscontroles",
"helpAndSupport": "Help en ondersteuning",
"hideOverrides": "Onderdrukkingen verbergen",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Platform",
"platformDropDownLabel": "Platform",
"platformVersion": "Platformversie",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Corrigeer de fouten in de onderstaande secties.",
"pleaseSelectAtLeastOneFileError": "Selecteer ten minste één bestand voordat u doorgaat",
"policies": "Beleidsregels",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Apparaatvergrendeling vereisen",
"requireThreatScanOnApps": "Bedreigingsscans voor apps vereisen",
"requiredField": "Dit veld mag niet leeg zijn",
"requiredSafetyNetEvaluationType": "Vereist SafetyNet-evaluatietype",
"requiredSettings": "Verplichte instellingen",
"resetPin": "Pincode opnieuw instellen",
"resourceManagement": "Resourcebeheer",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Willekeurige app",
"restrictWebContentOption2": "{0}: Webkoppelingen toestaan in elke app",
"rootCertificate": "Basiscertificaat",
"safetyNetDeviceAttestation": "SafetyNet-apparaatattestation",
"samsungKnoxAttestationRequired": "Samsung Knox-apparaatbevestiging",
"saveAppsNotificationText": "Geselecteerde apps opslaan",
"saveChangesCommandText": "Opslaan",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Filtermodus",
"assignmentToast": "Meldingen van eindgebruiker",
"assignmentTypeTableHeader": "TOEWIJZINGSTYPE",
"autoUpdate": "Automatisch bijwerken",
"deadlineTimeColumnLabel": "Installatiedeadline",
"deliveryOptimizationPriorityHeader": "Delivery Optimization-prioriteit",
"groupTableHeader": "Groep",
@@ -8514,6 +8496,10 @@
"showAll": "Alle pop-upmeldingen weergeven",
"showReboot": "Pop-upmeldingen voor de computer opnieuw opstarten weergeven"
},
"AutoUpdateSupersededApps": {
"enabled": "Ingeschakeld",
"notConfigured": "Niet geconfigureerd"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Achtergrond",
"displayText": "Inhoud downloaden in {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "Voor het sessiebeheer 'aanmeldingsfrequentie elke keer' moeten 'alle cloud-apps' of specifiek ondersteunde apps worden geselecteerd",
"allDayCheckboxLabel": "Hele dag",
"allDevicePlatforms": "Elk apparaat",
"allGuestUserInfoContent": "Inclusief Azure AD B2B-gasten, maar geen SharePoint B2B-gasten",
"allGuestUserInfoContent": "Omvat Microsoft Entra B2B-gasten, maar geen SharePoint B2B-gasten",
"allGuestUserLabel": "Alle gastgebruikers en externe gebruikers",
"allRiskLevelsOption": "Alle risiconiveaus",
"allTrustedLocationLabel": "Alle vertrouwde locaties",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Meer informatie over het vereisen van compatibele apparaten.",
"controlsDeviceComplianceInfoBubble": "Het apparaat moet compatibel zijn met Intune. Als het apparaat niet compatibel is, wordt de gebruiker gevraagd de nalevingsprocedure uit te voeren.",
"controlsDomainJoinedAriaLabel": "Meer informatie over het vereisen van hybride Azure AD-gekoppelde apparaten.",
"controlsDomainJoinedInfoBubble": "Apparaten moeten hybride Azure AD-gekoppeld zijn.",
"controlsDomainJoinedAriaLabel": "Meer informatie over het vereisen van apparaten die aan hybride Microsoft Entra zijn gekoppeld.",
"controlsDomainJoinedInfoBubble": "Apparaten moeten zijn samengevoegd met hybride Microsoft Entra.",
"controlsMamAriaLabel": "Meer informatie over het vereisen van goedgekeurde clienttoepassingen.",
"controlsMamInfoBubble": "Op het apparaat moeten deze goedgekeurde clienttoepassingen worden gebruikt.",
"controlsMfaInfoBubble": "De gebruiker moet voldoen aan aanvullende beveiligingsvereisten, bijvoorbeeld via een telefoongesprek of sms-bericht",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Gemarkeerd als compatibel apparaat",
"deviceStateCompliantInfoContent": "Apparaten die compatibel met Intune zijn, worden uitgesloten van de evaluatie van dit beleid. Als het beleid dus bijvoorbeeld de toegang blokkeert, worden alle apparaten die compatibel zijn met Intune geblokkeerd.",
"deviceStateConditionConfigureInfoContent": "Beleid configureren op basis van de apparaatstatus",
"deviceStateConditionSelectorInfoContent": "Of het apparaat waarvandaan de gebruiker zich aanmeldt 'Hybride Azure AD-gekoppeld' of 'gemarkeerd als compatibel' is.\n is afgeschaft. Gebruik in plaats daarvan '{1}'.",
"deviceStateConditionSelectorInfoContent": "Of het apparaat van waaruit de gebruiker zich aanmeldt, 'met hybride Microsoft Entra toegevoegd' of 'gemarkeerd als conform' is.\n Dit is afgeschaft. Gebruik in plaats daarvan {1}.",
"deviceStateConditionSelectorLabel": "Apparaatstatus (afgeschaft)",
"deviceStateDomainJoined": "Apparaat is hybride Azure AD-gekoppeld",
"deviceStateDomainJoinedInfoContent": "Apparaten die hybride Azure AD-gekoppeld zijn, worden uitgesloten van de evaluatie van dit beleid. Als het beleid dus bijvoorbeeld de toegang blokkeert, worden alle apparaten geblokkeerd, behalve apparaten die hybride Azure AD-gekoppeld zijn.",
"deviceStateDomainJoined": "Apparaat is met hybride Microsoft Entra toegevoegd",
"deviceStateDomainJoinedInfoContent": "Apparaten die met hybride Microsoft Entra zijn samengevoegd, worden uitgesloten van de evaluatie van dit beleid. Als het beleid dus bijvoorbeeld de toegang blokkeert, worden alle apparaten geblokkeerd, behalve apparaten die met hybride Microsoft Entra zijn samengevoegd.",
"deviceStateDomainJoinedInfoLinkText": "Meer informatie.",
"deviceStateExcludeDescription": "De apparaatstatusvoorwaarde selecteren die wordt gebruikt om apparaten van het beleid uit te sluiten.",
"deviceStateIncludeAndExcludeOneLabel": "{0} en {1} uitsluiten",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Alleen Exchange ActiveSync met ondersteunde platformen",
"excludeAllTrustedLocationSelectorText": "alle vertrouwde locaties",
"featureRequiresP2": "Voor deze functie is Azure AD Premium 2-licentie vereist.",
"featureRequiresP2": "Voor deze functie is een Microsoft Entra ID P2-licentie vereist.",
"friday": "vrijdag",
"grantControls": "Besturingselementen toekennen",
"gridNetworkTrusted": "Vertrouwd",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Geselecteerde persoonlijke koppelingen",
"lowRisk": "Laag",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "Uw organisatie heeft Azure AD Premium P1 of P2 nodig voor het beheren van beleid voor voorwaardelijke toegang.",
"managePoliciesLicenseText": "Uw organisatie heeft Microsoft Entra ID P1 of P2 nodig voor het beheren van beleid voor voorwaardelijke toegang.",
"manageSecurityDefaultsAriaLabel": "Standaardinstellingen voor beveiliging beheren.",
"markAsTrustedCheckboxInfoBalloonContent": "Met het aanmelden vanaf een vertrouwde locatie wordt het aanmeldingsrisico van een gebruiker verlaagd. Markeer deze locatie alleen als vertrouwd als u er zeker van bent dat de IP-bereiken bekend en betrouwbaar zijn in uw organisatie.",
"markAsTrustedCheckboxLabel": "Als vertrouwde locatie markeren",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Landen/regio's",
"namedLocationTypeLabel": "De locatie definiëren met het volgende:",
"namedLocationUpsellBanner": "Deze weergave is afgeschaft. Ga naar de nieuwe en verbeterde weergave 'Benoemde locaties'.",
"namedLocationsHelpDescription": "Benoemde locaties worden gebruikt voor de Azure AD-beveiligingsrapporten voor het reduceren van het aantal fout-positieven en Azure AD-beleid voor voorwaardelijke toegang.\n[Meer informatie][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Benoemde locaties worden voor Microsoft Entra ID-beveiligingsrapporten gebruikt om het aantal fout-positieven te verminderen en voor het Microsoft Entra-beleid voor voorwaardelijke toegang.\n[Meer informatie][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Een nieuw IP-bereik toevoegen (bijvoorbeeld 40.77.182.32/27)",
"namedNetworkCountryNeeded": "U moet ten minste één land/regio selecteren",
"namedNetworkDeleteCommand": "Verwijderen",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Nieuwe benoemde locatie",
"namedNetworksConditionHelpDescription": "Gebruikerstoegang beheren op basis van de fysieke locatie.\n[Meer informatie][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} en {1} uitgesloten",
"namedNetworksHelpDescription": "Benoemde locaties worden gebruikt voor de Azure AD-beveiligingsrapporten voor het reduceren van het aantal fout-positieven en Azure AD-beleid voor voorwaardelijke toegang.\n[Meer informatie][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Benoemde locaties worden voor Microsoft Entra ID-beveiligingsrapporten gebruikt om het aantal fout-positieven te verminderen en voor het Microsoft Entra-beleid voor voorwaardelijke toegang.\n[Meer informatie][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} opgenomen",
"namedNetworksNone": "Kan geen benoemde locaties vinden.",
"namedNetworksTitle": "Locaties configureren",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Alleen globale beheerders kunnen dit beleid opslaan.",
"or": "{0} OF {1} ",
"pickerDoneCommand": "Gereed",
"policiesBladeAdPremiumUpsellBannerText": "Maak uw eigen beleid en doelspecifieke voorwaarden zoals Cloud-apps, Aanmeldingsrisico en Apparaatplatformen met Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Maak uw eigen beleid en richt u op specifieke voorwaarden, zoals cloud-apps, aanmeldingsrisico's en apparaatplatforms met Microsoft Entra ID Premium",
"policiesBladeTitle": "Beleidsregels",
"policiesBladeTitleWithAppName": "Beleid: {0}",
"policiesDisabledBannerText": "Het maken en bewerken van beleid is niet toegestaan voor toepassingen waaraan een aanmeldingskenmerk is gekoppeld.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Locatie (bepaald op basis van IP-adresbereik) waarvandaan de gebruiker zich aanmeldt",
"policyConditionLocationPreview": "Locaties (preview)",
"policyConditionSigninRisk": "Aanmeldingsrisico",
"policyConditionSigninRiskDescription": "De kans dat iemand anders dan de gebruiker zich probeert aan te melden. Het risiconiveau kan hoog, gemiddeld of laag zijn. Hiervoor is een Azure AD Premium 2-licentie vereist.",
"policyConditionSigninRiskDescription": "De kans dat iemand anders dan de gebruiker zich probeert aan te melden. Het risiconiveau kan hoog, gemiddeld of laag zijn. Hiervoor is een Microsoft Entra ID P2-licentie vereist.",
"policyConditionUserRisk": "Gebruikersrisico",
"policyConditionUserRiskDescription": "Gebruikersrisiconiveaus configureren die nodig zijn om beleid af te dwingen",
"policyConditioniClientApp": "Client-apps",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Toegang blokkeren of aanvullende vereisten selecteren waaraan moet worden voldaan voordat toegang wordt verleend",
"policyControlMfaChallengeDisplayedName": "Meervoudige verificatie vereisen",
"policyControlRequireCompliantAppDisplayedName": "Beleid voor app-beveiliging vereisen",
"policyControlRequireDomainJoinedDisplayedName": "Hybride Azure AD-gekoppeld apparaat is vereist",
"policyControlRequireDomainJoinedDisplayedName": "Vereisen dat apparaten zijn samengevoegd met hybride Microsoft Entra",
"policyControlRequireMamDisplayedName": "Goedgekeurde client-apps vereisen",
"policyControlRequiredPasswordChangeDisplayedName": "Wachtwoordwijziging vereisen",
"policyControlSelectAuthStrength": "Verificatiesterkte vereisen",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "{0} is bijgewerkt. Het beleid wordt over enkele minuten ingeschakeld als u Beleid inschakelen hebt ingesteld op Aan.",
"policyUpdateSuccessTitle": "{0} is bijgewerkt",
"primaryCol": "Primair",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Modus voor alleen rapporteren: beleidsregels worden geëvalueerd en geregistreerd tijdens aanmelden, maar dit heeft geen impact voor gebruikers.",
"requireAllControlsText": "Alle geselecteerde besturingselementen vereisen",
"requireCompliantDevice": "Compatibel apparaat vereisen",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Altijd meervoudige verificatie vereisen voor gevoelige toepassingen of alleen voor toepassingen buiten het bedrijfsnetwerk.",
"upsellAppsTitle": "Beveiligde toepassingen",
"upsellBannerText": "Neem een gratis Premium-proefversie als u deze functie wilt gebruiken",
"upsellDataDescription": "Vereisen dat het apparaat moet worden gemarkeerd als compatibel of hybride Azure AD-gekoppeld voor toegang tot bedrijfsresources.",
"upsellDataDescription": "Vereisen dat het apparaat is gemarkeerd als conform of samengevoegd met hybride Microsoft Entra voordat toegang tot bedrijfsresources wordt toegestaan.",
"upsellDataTitle": "Beveiligde gegevens",
"upsellDescription": "Met voorwaardelijke toegang beschikt u over de controle en beveiliging die u nodig hebt om uw bedrijfsgegevens veilig te houden, terwijl gebruikers hun werkzaamheden op elk apparaat kunnen uitvoeren. U kunt bijvoorbeeld de toegang van buiten het bedrijfsnetwerk beperken of de toegang beperken tot apparaten die voldoen aan het nalevingsbeleid.",
"upsellRiskDescription": "Meervoudige verificatie vereisen voor risicogebeurtenissen die worden gedetecteerd door het machine learning-systeem van Microsoft.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "{0} is bijgewerkt.",
"vpnCertUpdateSuccessTitle": "{0} is bijgewerkt",
"vpnFeatureInfo": "Klik hier voor meer informatie over de VPN-verbinding en voorwaardelijke toegang.",
"vpnFeatureWarning": "Nadat een VPN-certificaat is gemaakt in Azure Portal, wordt het direct door Azure AD gebruikt om certificaten met korte levensduur te verlenen aan de VPN-client. Het is van cruciaal belang dat het VPN-certificaat direct wordt geïmplementeerd op de VPN-server om eventuele problemen met de validatie van referenties van de VPN-client te voorkomen.",
"vpnFeatureWarning": "Nadat een VPN-certificaat is gemaakt in de portal, wordt het direct door Microsoft Entra ID gebruikt om certificaten met korte levensduur te verlenen aan de VPN-client. Het is van cruciaal belang dat het VPN-certificaat direct wordt geïmplementeerd op de VPN-server om eventuele problemen met de validatie van referenties van de VPN-client te voorkomen.",
"vpnMenuText": "VPN-verbinding",
"vpncertDropdownDefaultOption": "Duur",
"vpncertDropdownInfoBalloonContent": "Selecteer de duur van het certificaat dat u wilt maken",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11568,7 +11564,7 @@
"template": "Sjabloonnaam"
},
"Row": {
"ariaLabel": "row {0} of {1} column {2}"
"ariaLabel": "rij {0} van {1} kolom {2}"
}
},
"SettingsCatalog": {
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Aangepaste Intune-rol",
"customRole": "Aangepaste rol"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} maakt deel uit van een of meer beleidssets. Als u {0} verwijdert, kunt u deze niet langer toewijzen via deze beleidssets. Wilt u toch verwijderen?",
"contentWithError": "{0} maakt mogelijk deel uit van een of meer beleidssets. Als u {0} verwijdert, kunt u deze niet langer toewijzen via deze beleidssets. Wilt u toch verwijderen?",
"header": "Weet u zeker dat u deze beperking wilt verwijderen?"
},
"DeviceLimit": {
"description": "Geef het maximum aantal apparaten op dat een gebruiker kan registreren.",
"header": "Beperkingen voor apparaatlimieten",
"info": "Hiermee geeft u op hoeveel apparaten elke gebruiker kan registreren."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Moet 1,0 of hoger zijn.",
"android": "Voer een geldig versienummer in. Voorbeelden: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Voer een geldig versienummer in. Voorbeelden: 5.0, 5.1.1",
"iOS": "Voer een geldig versienummer in. Voorbeelden: 9.0, 10.0, 9.0.2",
"mac": "Voer een geldig versienummer in. Voorbeelden: 10, 10.10, 10.10.1",
"min": "De minimumwaarde mag niet lager zijn dan {0}",
"minMax": "De minimale versie mag niet groter zijn dan de maximale versie.",
"windows": "Moet 10.0 of hoger zijn. Laat dit leeg als u ook 8.1-apparaten wilt toestaan.",
"windowsMobile": "Moet 10.0 of hoger zijn. Laat dit leeg als u ook 8.1-apparaten wilt toestaan."
},
"allPlatformsBlocked": "Alle apparaatplatformen zijn geblokkeerd. Sta platforminschrijving toe om platformconfiguratie in te schakelen.",
"blockManufacturerPlaceHolder": "Naam van fabrikant",
"blockManufacturersHeader": "Geblokkeerde fabrikanten",
"cannotRestrict": "De beperking wordt niet ondersteund",
"configurationDescription": "Hiermee geeft u de configuratiebeperkingen voor het platform op waaraan een apparaat moet voldoen om te kunnen worden geregistreerd. Gebruik regels voor nalevingsbeleid om apparaten na de registratie te beperken. Geef versies als major.minor.build op. Versiebeperkingen zijn alleen van toepassing op apparaten die zijn geregistreerd bij de bedrijfsportal. Apparaten worden in Intune standaard geclassificeerd als persoonlijke apparaten. Er is aanvullende actie vereist als u apparaten wilt classificeren als apparaten in bedrijfseigendom.",
"configurationDescriptionLabel": "Meer informatie over het instellen van inschrijvingsbeperkingen",
"configurations": "Platformen configureren",
"deviceManufacturer": "Fabrikant van apparaat",
"header": "Beperkingen voor apparaattypen",
"info": "Hiermee geeft u op welke platformen, besturingssysteemversies en eigendomstypen kunnen worden geregistreerd.",
"manufacturer": "Fabrikant",
"max": "Max.",
"maxVersion": "Maximumversie",
"min": "Min",
"minVersion": "Minimumversie",
"newPlatforms": "U hebt nieuwe platformen toegestaan. Werk de platformconfiguraties bij.",
"personal": "Persoonlijk eigendom",
"platform": "Platform",
"platformDescription": "U kunt de volgende platformen inschrijven. Blokkeer alleen platformen die u niet ondersteunt. Toegestane platformen kunnen worden geconfigureerd met aanvullende inschrijvingsbeperkingen.",
"platformSettings": "Platforminstellingen",
"platforms": "Platformen selecteren",
"platformsSelected": "{0} platformen geselecteerd",
"type": "Type",
"versions": "versies",
"versionsRange": "Min/max bereik toestaan:",
"windowsTooltip": "Hiermee beperkt u de inschrijving via Mobile Device Management. De installatie van de pc-agent wordt niet beperkt. Alleen Windows 10- en Windows 11-versies worden ondersteund. Laat dit leeg als u Windows 8.1 wilt toestaan."
},
"Priority": {
"saved": "De prioriteiten van de beperking zijn opgeslagen."
},
"Row": {
"announce": "Prioriteit: {0}, naam: {1}, toegewezen: {2}"
},
"Table": {
"deployed": "Geïmplementeerd",
"name": "Naam",
"priority": "Prioriteit"
},
"Type": {
"limit": "Beperking voor apparaatlimiet",
"type": "Beperking voor apparaattype"
},
"allUsers": "Alle gebruikers",
"androidRestrictions": "Android-beperkingen",
"create": "Beperking maken",
"defaultLimitDescription": "Dit is de standaardlimietbeperking voor apparaten die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
"defaultTypeDescription": "Dit is de standaardtypebeperking voor apparaten die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
"defaultWhfbDescription": "Dit is de standaardconfiguratie voor typebeperking voor Windows Hello voor Bedrijven die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
"deleteMessage": "Betrokken gebruikers worden beperkt door de toegewezen beperking van het volgende niveau of door de standaardbeperking als er geen andere beperking is toegewezen.",
"deleteTitle": "Weet u zeker dat u de beperking {0} wilt verwijderen?",
"descriptionHint": "Korte alinea met een beschrijving van het zakelijke gebruik of het beperkingsniveau op basis van de instellingen van de beperking.",
"edit": "Beperking bewerken",
"info": "Een apparaat moet voldoen aan de beperkingen met hoogste prioriteit voor inschrijving die zijn toegewezen aan de gebruiker. U kunt een apparaatbeperking slepen om de prioriteit te wijzigen. Standaardbeperkingen hebben de laagste prioriteit voor alle gebruikers en zijn van toepassing op inschrijvingen zonder gebruiker. Standaardbeperkingen kunnen worden bewerkt, maar niet verwijderd.",
"iosRestrictions": "iOS-beperkingen",
"mDM": "MDM",
"macRestrictions": "macOS-beperkingen",
"maxVersion": "Maximale versie",
"minVersion": "Minimale versie",
"nameHint": "Dit is het primaire kenmerk dat zichtbaar is voor de identificatie van de ingestelde beperking.",
"noAssignmentsStatusBar": "Wijs de beperking toe aan minimaal één groep. Klik op Eigenschappen.",
"notFound": "Beperking niet gevonden. Het is mogelijk al verwijderd.",
"personallyOwned": "Apparaten met persoonlijke eigendom",
"restriction": "Beperking",
"restrictionLowerCase": "beperking",
"restrictionType": "Beperkingstype",
"selectType": "Beperkingstype selecteren",
"selectValidation": "Selecteer een platform",
"typeHint": "Kies Apparaattypebeperking om de apparaateigenschappen te beperken. Kies Apparaatlimietbeperking om het aantal apparaten per gebruiker te beperken.",
"typeRequired": "Beperkingstype is vereist.",
"winPhoneRestrictions": "Windows Phone-beperkingen",
"windowsECv1Info": "Oudere inschrijvingsbeperkingen kunnen niet worden bewerkt of een nieuwe prioriteit krijgen. Deze kunnen alleen worden verwijderd.",
"windowsECv2Info": "U kunt prioriteit geven aan inschrijvingsbeperkingen door deze te slepen en neer te zetten. Bekijk de standaard- en vooraf geconfigureerde beperkingen hieronder. Alle nieuwe inschrijvingsbeperkingen hebben een hogere prioriteit dan standaard- en vooraf geconfigureerde beperkingen.",
"windowsRestrictions": "Windows-beperkingen",
"windowsRestrictionsPreview": "Windows-beperkingen op basis van filters (preview-versie)"
},
"InstallContextType": {
"device": "Apparaat",
"deviceContext": "Apparaatcontext",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Regelsyntaxis",
"filters": "Filters"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} maakt deel uit van een of meer beleidssets. Als u {0} verwijdert, kunt u deze niet langer toewijzen via deze beleidssets. Wilt u toch verwijderen?",
"contentWithError": "{0} maakt mogelijk deel uit van een of meer beleidssets. Als u {0} verwijdert, kunt u deze niet langer toewijzen via deze beleidssets. Wilt u toch verwijderen?",
"header": "Weet u zeker dat u deze beperking wilt verwijderen?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Toestaan dat de gebruiker de instelling kan wijzigen",
"tooltip": "Geef aan of de gebruiker de synchronisatie-instelling mag wijzigen."
},
"AllowWorkAccounts": {
"title": "Alleen werk- of schoolaccounts toestaan",
"tooltip": " Als u deze instelling inschakelt, kunnen gebruikers geen persoonlijke e-mail- en opslagaccounts toevoegen in Outlook. Als de gebruiker een persoonlijk account heeft toegevoegd aan Outlook, wordt de gebruiker gevraagd om dit te verwijderen. Als de gebruiker het persoonlijke account niet verwijdert, kan het werk- of schoolaccount niet worden toegevoegd."
},
"BlockExternalImages": {
"title": "Externe afbeeldingen blokkeren",
"tooltip": "Als de optie Externe afbeeldingen blokkeren is ingeschakeld, wordt met de app voorkomen dat afbeeldingen die op internet worden gehost en in de berichttekst zijn ingesloten, kunnen worden gedownload. Als de optie niet is geconfigureerd, wordt standaard de app-instelling Uit gebruikt"
},
"ConfigureEmail": {
"title": "Instellingen van e-mailaccount configureren"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "In de standaardhandtekening voor de app wordt aangegeven of 'Outlook voor Android downloaden' als standaardhandtekening voor de app wordt gebruikt tijdens het opstellen van berichten. Als de instelling op Uit is ingesteld, wordt de standaardhandtekening niet gebruikt; gebruikers kunnen echter wel hun eigen handtekening toevoegen.\r\n\r\nWanneer deze instelling op Niet geconfigureerd is ingesteld, wordt de standaardinstelling voor de app ingesteld op Aan.",
"iOS": "In de standaardhandtekening voor de app wordt aangegeven of 'Outlook voor iOS downloaden' als standaardhandtekening voor de app wordt gebruikt tijdens het opstellen van berichten. Als de instelling op Uit is ingesteld, wordt de standaardhandtekening niet gebruikt; gebruikers kunnen echter wel hun eigen handtekening toevoegen.\r\n\r\nWanneer deze instelling op Niet geconfigureerd is ingesteld, wordt de standaardinstelling voor de app ingesteld op Aan."
},
"title": "Standaardhandtekening voor apps"
},
"OfficeFeedReplies": {
"title": "Feed detecteren",
"tooltip": "Feeds detecteren van uw meest gebruikte Office-bestanden. Deze feed is standaard ingeschakeld wanneer Delve is ingeschakeld voor de gebruiker. Wanneer de instelling niet is geconfigureerd, is de app standaard ingesteld op Aan."
},
"OrganizeMailByThread": {
"title": "E-mailberichten rangschikken op thread",
"tooltip": "Standaard worden e-mailconversaties in Outlook gebundeld in een weergave met gespreksthreads. Als deze instelling is uitgeschakeld, wordt elk e-mailbericht in Outlook afzonderlijk weergegeven en worden berichten niet op thread gegroepeerd."
},
"PlayMyEmails": {
"title": "Mijn e-mailberichten afspelen",
"tooltip": "De functie Mijn e-mailberichten afspelen is standaard niet ingeschakeld in de app, maar wordt aangeboden aan in aanmerking komende gebruikers via een banner in het Postvak IN. Wanneer deze functie is ingesteld op Uit, wordt deze niet aangeboden aan in aanmerking komende gebruikers in de app. Gebruikers kunnen ervoor kiezen Mijn e-mailberichten afspelen handmatig in te schakelen vanuit de app, zelfs wanneer deze functie is ingesteld op Uit. Als deze optie is ingesteld als Niet geconfigureerd, is de standaardinstelling voor de app Aan en wordt de functie aangeboden aan in aanmerking komende gebruikers."
},
"SuggestedReplies": {
"title": "Voorgestelde antwoorden",
"tooltip": "Wanneer u een bericht opent, kan Outlook antwoorden voorstellen onder het bericht. Als u een voorgesteld antwoord selecteert, kunt u het antwoord bewerken voordat u het verzendt."
},
"SyncCalendars": {
"title": "Agenda's synchroniseren",
"tooltip": "Configureren of gebruikers hun Outlook-agenda kunnen synchroniseren met de systeemeigen agenda-app en -database."
},
"TextPredictions": {
"title": "Tekstvoorspellingen",
"tooltip": "Outlook kan woorden en zinsdelen voorstellen bij het opstellen van berichten. Wanneer Outlook een suggestie geeft, kunt u vegen om deze te accepteren. Wanneer deze functie niet is geconfigureerd, is de app-standaardinstelling Aan."
},
"DeviceLimit": {
"description": "Geef het maximum aantal apparaten op dat een gebruiker kan registreren.",
"header": "Beperkingen voor apparaatlimieten",
"info": "Hiermee geeft u op hoeveel apparaten elke gebruiker kan registreren."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Moet 1,0 of hoger zijn.",
"android": "Voer een geldig versienummer in. Voorbeelden: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Voer een geldig versienummer in. Voorbeelden: 5.0, 5.1.1",
"iOS": "Voer een geldig versienummer in. Voorbeelden: 9.0, 10.0, 9.0.2",
"mac": "Voer een geldig versienummer in. Voorbeelden: 10, 10.10, 10.10.1",
"min": "De minimumwaarde mag niet lager zijn dan {0}",
"minMax": "De minimale versie mag niet groter zijn dan de maximale versie.",
"windows": "Moet 10.0 of hoger zijn. Laat dit leeg als u ook 8.1-apparaten wilt toestaan.",
"windowsMobile": "Moet 10.0 of hoger zijn. Laat dit leeg als u ook 8.1-apparaten wilt toestaan."
},
"allPlatformsBlocked": "Alle apparaatplatformen zijn geblokkeerd. Sta platforminschrijving toe om platformconfiguratie in te schakelen.",
"blockManufacturerPlaceHolder": "Naam van fabrikant",
"blockManufacturersHeader": "Geblokkeerde fabrikanten",
"cannotRestrict": "De beperking wordt niet ondersteund",
"configurationDescription": "Hiermee geeft u de configuratiebeperkingen voor het platform op waaraan een apparaat moet voldoen om te kunnen worden geregistreerd. Gebruik regels voor nalevingsbeleid om apparaten na de registratie te beperken. Geef versies als major.minor.build op. Versiebeperkingen zijn alleen van toepassing op apparaten die zijn geregistreerd bij de bedrijfsportal. Apparaten worden in Intune standaard geclassificeerd als persoonlijke apparaten. Er is aanvullende actie vereist als u apparaten wilt classificeren als apparaten in bedrijfseigendom.",
"configurationDescriptionLabel": "Meer informatie over het instellen van inschrijvingsbeperkingen",
"configurations": "Platformen configureren",
"deviceManufacturer": "Fabrikant van apparaat",
"header": "Beperkingen voor apparaattypen",
"info": "Hiermee geeft u op welke platformen, besturingssysteemversies en eigendomstypen kunnen worden geregistreerd.",
"manufacturer": "Fabrikant",
"max": "Max.",
"maxVersion": "Maximumversie",
"min": "Min",
"minVersion": "Minimumversie",
"newPlatforms": "U hebt nieuwe platformen toegestaan. Werk de platformconfiguraties bij.",
"personal": "Persoonlijk eigendom",
"platform": "Platform",
"platformDescription": "U kunt de volgende platformen inschrijven. Blokkeer alleen platformen die u niet ondersteunt. Toegestane platformen kunnen worden geconfigureerd met aanvullende inschrijvingsbeperkingen.",
"platformSettings": "Platforminstellingen",
"platforms": "Platformen selecteren",
"platformsSelected": "{0} platformen geselecteerd",
"type": "Type",
"versions": "versies",
"versionsRange": "Min/max bereik toestaan:",
"windowsTooltip": "Hiermee beperkt u de inschrijving via Mobile Device Management. De installatie van de pc-agent wordt niet beperkt. Alleen Windows 10- en Windows 11-versies worden ondersteund. Laat dit leeg als u Windows 8.1 wilt toestaan."
},
"Priority": {
"saved": "De prioriteiten van de beperking zijn opgeslagen."
},
"Row": {
"announce": "Prioriteit: {0}, naam: {1}, toegewezen: {2}"
},
"Table": {
"deployed": "Geïmplementeerd",
"name": "Naam",
"priority": "Prioriteit"
},
"Type": {
"limit": "Beperking voor apparaatlimiet",
"type": "Beperking voor apparaattype"
},
"allUsers": "Alle gebruikers",
"androidRestrictions": "Android-beperkingen",
"create": "Beperking maken",
"defaultLimitDescription": "Dit is de standaardlimietbeperking voor apparaten die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
"defaultTypeDescription": "Dit is de standaardtypebeperking voor apparaten die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
"defaultWhfbDescription": "Dit is de standaardconfiguratie voor typebeperking voor Windows Hello voor Bedrijven die met de laagste prioriteit wordt toegepast op alle gebruikers, ongeacht hun groepslidmaatschap.",
"deleteMessage": "Betrokken gebruikers worden beperkt door de toegewezen beperking van het volgende niveau of door de standaardbeperking als er geen andere beperking is toegewezen.",
"deleteTitle": "Weet u zeker dat u de beperking {0} wilt verwijderen?",
"descriptionHint": "Korte alinea met een beschrijving van het zakelijke gebruik of het beperkingsniveau op basis van de instellingen van de beperking.",
"edit": "Beperking bewerken",
"info": "Een apparaat moet voldoen aan de beperkingen met hoogste prioriteit voor inschrijving die zijn toegewezen aan de gebruiker. U kunt een apparaatbeperking slepen om de prioriteit te wijzigen. Standaardbeperkingen hebben de laagste prioriteit voor alle gebruikers en zijn van toepassing op inschrijvingen zonder gebruiker. Standaardbeperkingen kunnen worden bewerkt, maar niet verwijderd.",
"iosRestrictions": "iOS-beperkingen",
"mDM": "MDM",
"macRestrictions": "MacOS-beperkingen",
"maxVersion": "Maximale versie",
"minVersion": "Minimale versie",
"nameHint": "Dit is het primaire kenmerk dat zichtbaar is voor de identificatie van de ingestelde beperking.",
"noAssignmentsStatusBar": "Wijs de beperking toe aan minimaal één groep. Klik op Eigenschappen.",
"notFound": "Beperking niet gevonden. Het is mogelijk al verwijderd.",
"personallyOwned": "Apparaten met persoonlijke eigendom",
"restriction": "Beperking",
"restrictionLowerCase": "beperking",
"restrictionType": "Beperkingstype",
"selectType": "Beperkingstype selecteren",
"selectValidation": "Selecteer een platform",
"typeHint": "Kies Apparaattypebeperking om de apparaateigenschappen te beperken. Kies Apparaatlimietbeperking om het aantal apparaten per gebruiker te beperken.",
"typeRequired": "Beperkingstype is vereist.",
"winPhoneRestrictions": "Windows Phone-beperkingen",
"windowsRestrictions": "Windows-beperkingen"
},
"ThemesEnabled": {
"title": "Thema's zijn ingeschakeld",
"tooltip": "Opgeven of de gebruiker een aangepast visueel thema mag gebruiken."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS-apparaten (preview)"
@@ -12507,6 +12558,7 @@
"user": "Gebruiker",
"userExecutionStatus": "Gebruikersstatus",
"wdacSupplementalPolicies": "Aanvullende beleidsregels S-modus",
"win32CatalogUpdateApp": "Updates voor Windows-catalogus-apps (Win32)",
"windows10DriverUpdate": "Stuurprogramma-updates voor Windows 10 en hoger",
"windows10QualityUpdate": "Kwaliteitsupdates voor Windows 10 en hoger",
"windows10UpdateRings": "Ringen bijwerken voor Windows 10 en hoger",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Windows 365-partnerconnectors",
"windowsDiagnosticData": "Windows-gegevens",
"windowsEnterpriseCertificate": "Windows Enterprise-certificaat",
"windowsManagement": "PowerShell-scripts",
"windowsManagement": "Scripts",
"windowsSideLoadingKeys": "Windows-sleutels voor extern laden",
"windowsSymantecCertificate": "Windows-DigiCert-certificaat",
"windowsThreatReport": "Status van dreigingsagent"
@@ -12551,6 +12603,10 @@
"postponed": "Uitgesteld",
"priority": "Hoge prioriteit"
},
"AutoUpdateSupersededApps": {
"label": "Automatisch bijwerken",
"sublabel": "Vervangen versies van deze toepassing automatisch upgraden"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Achtergrond",
"displayText": "Inhoud downloaden in {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Wymagaj użycia co najmniej jednej wielkiej litery w kodzie PIN"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Zezwalaj użytkownikowi na zmianę ustawienia",
"tooltip": "Określ, czy użytkownik może zmieniać ustawienie."
},
"AllowWorkAccounts": {
"title": "Zezwalaj tylko na konta służbowe",
"tooltip": "Po włączeniu tego ustawienia użytkownicy nie będą mogli dodawać osobistych kont e-mail i magazynu w programie Outlook. Jeśli użytkownik ma już dodane konto osobiste do programu Outlook, zostanie poproszony o jego usunięcie. Jeśli użytkownik nie usunie konta osobistego, nie będzie można dodać konta służbowego."
},
"BlockExternalImages": {
"title": "Blokuj obrazy zewnętrzne",
"tooltip": "Gdy blokowanie obrazów zewnętrznych jest włączone, aplikacja nie będzie pozwalać na pobieranie obrazów hostowanych w Internecie, które są osadzone w treści wiadomości. Jeśli ta funkcja jest ustawiona jako nieskonfigurowana, jej domyślnym ustawieniem w aplikacji jest Wyłączone"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "Wersja aplikacji",
"dependencyName": "Nazwa zależności",
"lastModifiedTime": "Czas ostatniej modyfikacji",
"relationship": "Relacja",
"replaced": "Zastąpiono",
"searchPlaceholder": "Filtruj według nazwy aplikacji",
"status": "Szczegóły stanu",
"statusDetails": "Stan",
"supersedenceName": "Nazwa zastępowania"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Zależność podrzędna",
"indirectSupersedence": "Niezwiązane bezpośrednio",
"supersedenceAncestors": "Zastępujący",
"supersedenceDescendants": "Zastąpione"
},
"ConfigureEmail": {
"title": "Konfiguruj ustawienia konta e-mail"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Domyślny podpis aplikacji wskazuje, czy aplikacja będzie używać podpisu „Pobierz program Outlook dla systemu Android” jako domyślnego podpisu podczas tworzenia wiadomości. Jeśli to ustawienie zostanie wyłączone, domyślny podpis nie będzie używany, ale użytkownicy będą mogli dodać własny podpis.\r\n\r\nJeśli zostanie ustawiona wartość Nie skonfigurowano, domyślnie ustawienie aplikacji będzie włączone.",
"iOS": "Domyślny podpis aplikacji wskazuje, czy aplikacja będzie używać podpisu „Pobierz program Outlook dla systemu iOS” jako domyślnego podpisu podczas tworzenia wiadomości. Jeśli to ustawienie zostanie wyłączone, domyślny podpis nie będzie używany, ale użytkownicy będą mogli dodać własny podpis.\r\n\r\nJeśli zostanie ustawiona wartość Nie skonfigurowano, domyślnie ustawienie aplikacji będzie włączone."
},
"title": "Domyślny podpis aplikacji"
},
"OfficeFeedReplies": {
"title": "Kanał informacyjny odkrywania",
"tooltip": "Kanał informacyjny odkrywania przedstawia najczęściej używane pliki pakietu Office. Domyślnie ten kanał jest włączony, gdy dla użytkownika włączono usługę Delve. W przypadku ustawienia wartości Nie skonfigurowano domyślne ustawienie aplikacji to Włączone."
},
"OrganizeMailByThread": {
"title": "Organizuj pocztę według wątku",
"tooltip": "Zachowanie domyślne w programie Outlook polega na przekształcaniu konwersacji pocztowych w widok wątku. Jeśli to ustawienie zostanie wyłączone, program Outlook będzie wyświetlał każdą wiadomość pojedynczo i nie będzie grupować ich według wątku."
},
"PlayMyEmails": {
"title": "Odtwarzaj moje wiadomości e-mail",
"tooltip": "Funkcja Odtwarzaj moje wiadomości e-mail nie jest domyślnie włączona w aplikacji, ale jest polecana uprawnionym użytkownikom za pośrednictwem baneru w skrzynce odbiorczej. Ustawienie na wartość Wyłączone spowoduje, że ta funkcja nie będzie polecana uprawnionym użytkownikom w aplikacji. Użytkownicy mogą ręcznie włączać funkcję Odtwarzaj moje wiadomości e-mail w aplikacji, nawet jeśli ta funkcja jest ustawiona na wartość Wyłączona. Po ustawieniu wartości Nie skonfigurowano domyślnym ustawieniem aplikacji jest Włączone i funkcja będzie polecana uprawnionym użytkownikom."
},
"SuggestedReplies": {
"title": "Sugerowane odpowiedzi",
"tooltip": "Po otwarciu wiadomości program Outlook może wyświetlić pod nią sugerowane odpowiedzi. Jeśli wybierzesz sugerowaną odpowiedź, możesz ją edytować przed wysłaniem."
},
"SyncCalendars": {
"title": "Synchronizuj kalendarze",
"tooltip": "Skonfiguruj, czy użytkownicy mogą synchronizować swoje kalendarze programu Outlook z natywną aplikacją kalendarza i bazą danych. "
},
"TextPredictions": {
"title": "Podpowiadanie tekstu",
"tooltip": "Program Outlook może sugerować wyrazy i frazy podczas redagowania wiadomości. Gdy aplikacja Outlook wyświetli sugestię, przesuń, aby ją zaakceptować. Gdy ustawienie nie jest skonfigurowane, domyślnym ustawieniem aplikacji jest Włączone."
"SupersededReplaced": {
"no": "Nie",
"yes": "Tak"
},
"ThemesEnabled": {
"title": "Kompozycje włączone",
"tooltip": "Określ, czy użytkownik może używać niestandardowego motywu wizualnego."
}
},
"Tabs": {
"chart": "Wykres",
"dependency": "Zależność",
"label": "Widok: ",
"supersedence": "Zastępowanie",
"table": "Tabela"
},
"dependencyGraphAriaLabel": "Wykres zależności aplikacji",
"supersedenceGraphAriaLabel": "Wykres zastępowania aplikacji"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Wybierz skrypt odnajdywania",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "Dodaj skrypt programu PowerShell",
"customAttributeObjectName": "Atrybut niestandardowy",
"editPowershellScriptFlowSectionName": "Edytuj skrypt programu PowerShell",
"enforceSignatureCheckInfoBalloonContent": "Skrypt musi być podpisany przez zaufanego wydawcę. Domyślnie nie jest wyświetlane żadne ostrzeżenie ani monit, a uruchomienie skryptu nie jest blokowane.",
"enforceSignatureCheckInfoBalloonContent": "Skrypt musi być podpisany przez zaufanego wydawcę. Jest to ustawienie domyślne.",
"enforceSignatureCheckLabel": "Wymuszaj sprawdzanie podpisu skryptu",
"executionFrequencyLabel": "Częstotliwość wykonywania",
"failedToSavePolicy": "Nie można zapisać jednostki {0}",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Przejrzyj i dodaj",
"runAs64BitInfoBalloonContent": "Skrypt zostanie uruchomiony na 64-bitowym hoście programu PowerShell w przypadku 64-bitowej architektury klienta. Domyślnie skrypt zostanie uruchomiony na 32-bitowym hoście programu PowerShell.",
"runAs64BitLabel": "Uruchom skrypt na 64-bitowym hoście programu PowerShell",
"scriptContextInfoBalloonContent": "Skrypt jest uruchamiany z poświadczeniami użytkownika na komputerze klienckim. Domyślnie skrypt jest uruchamiany w kontekście systemowym.",
"scriptContextInfoBalloonContent": "Skrypt jest uruchamiany z poświadczeniami użytkownika u klienta. Domyślnie skrypt jest uruchamiany w kontekście użytkownika.",
"scriptContextLabel": "Uruchom ten skrypt, używając poświadczeń zalogowanego użytkownika",
"scriptsettingsTabHeader": "Ustawienia skryptu",
"settingsHeader": "Wybierz skrypt do skonfigurowania",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Zawsze włączona sieć VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Sprawdź podstawową integralność i integralność urządzenia",
"androidPlayIntegrityVerdictBasicIntegrity": "Sprawdź podstawową integralność",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Certyfikatów zaufanych nie można już instalować na urządzeniach z systemem Android 11 lub nowszym, z wyjątkiem urządzeń z rozwiązaniem Samsung Knox. Jeśli korzystasz z profilów certyfikatów SCEP, musisz nadal tworzyć i wdrażać profil certyfikatu zaufanego oraz kojarzyć go z profilem certyfikatu SCEP, ale musisz ręcznie dostarczyć zaufany certyfikat główny do tych urządzeń.",
"androidTenAndAbovePasswordHeader": "Android 10 i nowsze",
"androidTenAndAbovePasswordHeaderDescription": "Te ustawienia działają na urządzeniach z systemem Android 10 lub nowszym.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Wymuś automatyczną aktualizacje poprawek bezpieczeństwa i usprawnień urządzeń.",
"complianceUpdatesRequireAutomaticUpdatesName": "Wymagaj aktualizacji automatycznych firmy Microsoft",
"complianceWin10RequiredPasswordTypeDescription": "To ustawienie określa wymagany typ hasła/kodu PIN.<br>\r\nUstawienie domyślne urządzenia (wymagane hasło, liczbowy kod PIN lub alfanumeryczny kod PIN)<br>\r\nAlfanumeryczne (wymagane hasło lub alfanumeryczny kod PIN)<br>\r\nLiczbowe (wymagane hasło lub liczbowy kod PIN)<br>\r\nZalecenia: wymagany typ hasła: Alfanumeryczne, złożoność hasła: Wymagaj cyfr i małych liter",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 lub 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 i 11",
"complianceWindows11DeviceHealthAttestationHeader": "Tylko system Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Minimalna wersja usługi Microsoft Defender (np. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Minimalna wersja usługi Microsoft Defender Antimalware",
"complianceWindowsDeviceHealthAttestationHeader": "Reguły oceny usługi zaświadczania firmy Microsoft<br><br>Użyj tych reguł, aby potwierdzić, że urządzenie ma włączone środki ochronne w czasie rozruchu. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Dowiedz się więcej o tych regułach</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Ustawienia oceny usługi zaświadczania firmy Microsoft<br><br>Użyj tych ustawień, aby potwierdzić, że urządzenie ma włączone środki ochronne w czasie rozruchu. <a href=\"https://learn.microsoft.com/pl-pl/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Dowiedz się więcej</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Wybierz najnowszą wersję systemu operacyjnego, która może być zainstalowana na urządzeniu przenośnym. Wersję podaj w formacie wersja_główna.wersja_pomocnicza.kompilacja.poprawka.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Wybierz najstarszą wersję systemu operacyjnego, która może być zainstalowana na urządzeniu przenośnym. Wersję podaj w formacie wersja_główna.wersja_pomocnicza.kompilacja.poprawka.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "Wersja systemu operacyjnego jest definiowana w formacie wersja_główna.wersja_pomocnicza.kompilacja.poprawka.",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "Ochrona 95. percentylu",
"basicDataProtectionGuidedString": "Podstawowa ochrona danych — gwarantuje, że użytkownicy są zobowiązani do korzystania z kodów PIN lub zabezpieczeń biometrycznych, aby uzyskać dostęp do danych konta służbowego, szyfruje dane konta służbowego oraz umożliwia administratorom przeprowadzanie selektywnego czyszczenia danych, jeśli to konieczne. W przypadku urządzeń z systemem Android podstawowa ochrona danych gwarantuje również zgodność urządzenia z usługami Google i umożliwia skanowanie firmy Google do weryfikowania aplikacji.",
"basicIntegrity": "Podstawowa integralność",
"basicIntegrityAndCertifiedDevices": "Podstawowa integralność i certyfikowane urządzenia",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Limit czasu braku aktywności",
"bioPinInactiveTimeoutTooltip": "Przesłoń dane biometryczne numerem PIN po (minuty)",
"block": "Blokuj",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Limit znaków wycinania i kopiowania dla dowolnej aplikacji",
"camera": "Kamera",
"checkInCountColumnTitle": "LICZNIK EWIDENCJONOWAŃ",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Zaewidencjonowane",
"checkedInAppNameColumnTitle": "APLIKACJA",
"checkedInButNotSynced": "Zaewidencjonowano. Podczas następnej synchronizacji ta aplikacja otrzyma zestaw {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">Nie mogę znaleźć aplikacji, której potrzebuję</a></p><p><a data-bind=\"fxclick: onClickLob\">Chcę dodać własną aplikację biznesową</a></p>",
"guidedTemplate2": "Zapytamy Cię, jaki poziom ochrony chcesz wdrożyć dla użytkowników. Aby uzyskać więcej informacji, zobacz <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Struktura ochrony danych przy użyciu zasad ochrony aplikacji</a>.",
"guidediOSLabel": "Ochrona aplikacji systemu iOS",
"hardwareBackedKey": "Klucz wspierany sprzętowo",
"healthCheck": "Kontrole kondycji",
"helpAndSupport": "Pomoc i obsługa techniczna",
"hideOverrides": "Ukryj przesłonięcia",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Platforma",
"platformDropDownLabel": "Platforma",
"platformVersion": "Wersja platformy",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Popraw błędy w sekcjach poniżej.",
"pleaseSelectAtLeastOneFileError": "Przed kontynuowaniem wybierz co najmniej jeden plik",
"policies": "Zasady",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Wymagaj hasła urządzenia",
"requireThreatScanOnApps": "Wymagaj skanowania zagrożeń w aplikacjach",
"requiredField": "To pole nie może być puste",
"requiredSafetyNetEvaluationType": "Wymagany typ oceny SafetyNet",
"requiredSettings": "Wymagane ustawienia",
"resetPin": "Resetowanie numeru PIN",
"resourceManagement": "Zarządzanie zasobami",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Dowolna aplikacja",
"restrictWebContentOption2": "{0}: Zezwalaj na linki internetowe w dowolnej aplikacji",
"rootCertificate": "Certyfikat główny",
"safetyNetDeviceAttestation": "Zaświadczanie urządzeń SafetyNet",
"samsungKnoxAttestationRequired": "Zaświadczanie urządzenia Samsung Knox",
"saveAppsNotificationText": "Zapisywanie wybranych aplikacji",
"saveChangesCommandText": "Zapisz",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Tryb filtru",
"assignmentToast": "Powiadomienia użytkownika końcowego",
"assignmentTypeTableHeader": "TYP PRZYPISANIA",
"autoUpdate": "Automatyczna aktualizacja",
"deadlineTimeColumnLabel": "Ostateczny termin instalacji",
"deliveryOptimizationPriorityHeader": "Priorytet optymalizacji dostarczania",
"groupTableHeader": "Grupa",
@@ -8514,6 +8496,10 @@
"showAll": "Pokaż wszystkie wyskakujące powiadomienia",
"showReboot": "Pokaż wyskakujące powiadomienia dotyczące ponownego uruchomienia komputera"
},
"AutoUpdateSupersededApps": {
"enabled": "Włączone",
"notConfigured": "Nie skonfigurowano"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Tło",
"displayText": "Pobieranie zawartości za {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "Kontrola sesji „częstotliwość logowania za każdym razem” wymaga wybrania „wszystkich aplikacji w chmurze” lub specjalnie obsługiwanych aplikacji",
"allDayCheckboxLabel": "Cały dzień",
"allDevicePlatforms": "Dowolne urządzenie",
"allGuestUserInfoContent": "Obejmuje gości usługi Azure AD B2B, ale nie gości programu SharePoint",
"allGuestUserInfoContent": "Obejmuje gości usługi Microsoft Entra B2B, ale nie gości programu SharePoint B2B",
"allGuestUserLabel": "Wszyscy goście i użytkownicy zewnętrzni",
"allRiskLevelsOption": "Wszystkie poziomy ryzyka",
"allTrustedLocationLabel": "Wszystkie zaufane lokalizacje",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Dowiedz się więcej o wymaganiach zgodnych urządzeń.",
"controlsDeviceComplianceInfoBubble": "Urządzenie musi być zgodne z usługą Intune. Jeśli urządzenie jest niezgodne, użytkownikowi zostanie wyświetlony monit o doprowadzenie urządzenia do stanu zgodności.",
"controlsDomainJoinedAriaLabel": "Dowiedz się więcej o wymaganiach urządzeń przyłączonych hybrydowo do usługi Azure AD.",
"controlsDomainJoinedInfoBubble": "Urządzenia muszą być przyłączone hybrydowo do usługi Azure AD.",
"controlsDomainJoinedAriaLabel": "Dowiedz się więcej o wymaganiach urządzeń dołączonych hybrydowo do rozwiązania Microsoft Entra.",
"controlsDomainJoinedInfoBubble": "Urządzenia muszą być dołączone hybrydowo do usługi Microsoft Entra.",
"controlsMamAriaLabel": "Dowiedz się więcej o wymaganiach zatwierdzonych aplikacji klienckich.",
"controlsMamInfoBubble": "Urządzenie musi używać tych zatwierdzonych aplikacji klienckich.",
"controlsMfaInfoBubble": "Użytkownik musi spełnić dodatkowe wymagania dotyczące zabezpieczeń, takie jak połączenie telefoniczne, wiadomość SMS",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Urządzenie oznaczone jako zgodne",
"deviceStateCompliantInfoContent": "Urządzenia zgodne z usługą Intune zostaną wykluczone z oceny tych zasad, więc jeśli na przykład zasady blokują dostęp, spowoduje to zablokowanie wszystkich urządzeń z wyjątkiem urządzeń zgodnych z usługą Intune.",
"deviceStateConditionConfigureInfoContent": "Konfigurowanie zasad na podstawie stanu urządzenia",
"deviceStateConditionSelectorInfoContent": "Niezależnie od tego, czy urządzenie, z poziomu z którego loguje się użytkownik, ma wartość „Przyłączone hybrydowo do usługi Azure AD”, czy „oznaczone jako zgodne”.\n Ta funkcja jest przestarzała. Zamiast tego użyj „{1}”.",
"deviceStateConditionSelectorInfoContent": "Niezależnie od tego, czy urządzenie, z poziomu z którego loguje się użytkownik, ma wartość „Dołączone hybrydowo do usługi Microsoft Entra”, czy „oznaczone jako zgodne”.\n Ta funkcja jest przestarzała. Zamiast tego użyj „{1}”.",
"deviceStateConditionSelectorLabel": "Stan urządzenia (przestarzałe)",
"deviceStateDomainJoined": "Urządzenie przyłączone hybrydowo do usługi Azure AD",
"deviceStateDomainJoinedInfoContent": "Urządzenia przyłączone hybrydowo do usługi Azure AD zostaną wykluczone z oceny tych zasad, więc jeśli na przykład zasady blokują dostęp, spowoduje to zablokowanie wszystkich urządzeń z wyjątkiem urządzeń przyłączonych hybrydowo do usługi Azure AD.",
"deviceStateDomainJoined": "Urządzenie dołączone hybrydowo do usługi Microsoft Entra",
"deviceStateDomainJoinedInfoContent": "Urządzenia przyłączone hybrydowo do usługi Microsoft Entra zostaną wykluczone z oceny tych zasad, więc jeśli na przykład zasady blokują dostęp, spowoduje to zablokowanie wszystkich urządzeń z wyjątkiem urządzeń przyłączonych hybrydowo do usługi Microsoft Entra.",
"deviceStateDomainJoinedInfoLinkText": "Dowiedz się więcej.",
"deviceStateExcludeDescription": "Wybierz warunek stanu urządzenia używany do wykluczania urządzeń z zasad.",
"deviceStateIncludeAndExcludeOneLabel": "Dołącz: {0}. Wyklucz: {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Tylko usługa Exchange ActiveSync z obsługiwanymi platformami",
"excludeAllTrustedLocationSelectorText": "wszystkie zaufane lokalizacje",
"featureRequiresP2": "Ta funkcja wymaga licencji usługi Azure AD Premium 2.",
"featureRequiresP2": "Ta funkcja wymaga licencji Microsoft Entra ID P2.",
"friday": "Piątek",
"grantControls": "Udziel kontroli",
"gridNetworkTrusted": "Zaufane",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Wybrane łącza prywatne",
"lowRisk": "Niskie",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "Aby zarządzać zasadami dostępu warunkowego, organizacja musi korzystać z usługi Azure AD — wersja Premium P1 lub P2.",
"managePoliciesLicenseText": "Aby zarządzać zasadami dostępu warunkowego, Twoja organizacja potrzebuje usługi Microsoft Entra ID P1 lub P2.",
"manageSecurityDefaultsAriaLabel": "Zarządzaj ustawieniami domyślnymi zabezpieczeń.",
"markAsTrustedCheckboxInfoBalloonContent": "Logowanie z zaufanej lokalizacji obniża ryzyko związane z logowaniem użytkownika. Oznacz tę lokalizację jako zaufaną tylko wtedy, jeśli wprowadzone zakresy adresów IP są uznawane za znane i wiarygodne w Twojej organizacji.",
"markAsTrustedCheckboxLabel": "Oznacz jako zaufaną lokalizację",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Kraje/regiony",
"namedLocationTypeLabel": "Zdefiniuj lokalizację za pomocą:",
"namedLocationUpsellBanner": "Ten widok jest przestarzały. Przejdź do nowego i ulepszonego widoku \"Nazwane lokalizacje\".",
"namedLocationsHelpDescription": "Nazwane lokalizacje są używane w raportach zabezpieczeń usługi Microsoft Azure Active Directory, aby zredukować liczbę wyników fałszywie dodatnich i zasad dostępu warunkowego usługi Azure AD.\n[Dowiedz się więcej][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Nazwane lokalizacje są używane przez raporty zabezpieczeń usługi Microsoft Entra ID w celu zmniejszenia liczby wyników fałszywie dodatnich i zasad dostępu warunkowego usługi Microsoft Entra.\n[Dowiedz się więcej][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Dodaj nowy zakres adresów IP (np. 40.77.182.32/27)",
"namedNetworkCountryNeeded": "Należy wybrać co najmniej jeden kraj/region",
"namedNetworkDeleteCommand": "Usuń",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Nowa nazwana lokalizacja",
"namedNetworksConditionHelpDescription": "Kontrola dostępu użytkownika na podstawie jego fizycznej lokalizacji.\n[Dowiedz się więcej][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "Wykluczono {0} i {1}",
"namedNetworksHelpDescription": "Nazwane lokalizacje są używane w raportach zabezpieczeń usługi Azure AD, aby zredukować liczbę wyników fałszywie dodatnich i zasad dostępu warunkowego usługi Microsoft Azure Active Directory.\n[Dowiedz się więcej][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Nazwane lokalizacje są używane przez raporty zabezpieczeń Microsoft Entra ID w celu zmniejszenia liczby wyników fałszywie dodatnich i zasad dostępu warunkowego usługi Microsoft Entra.\n[Dowiedz się więcej][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "Włączono: {0}",
"namedNetworksNone": "Nie odnaleziono żadnej nazwanej lokalizacji.",
"namedNetworksTitle": "Skonfiguruj lokalizacje",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Tylko administratorzy globalni mogą zapisać te zasady.",
"or": "{0} LUB {1}",
"pickerDoneCommand": "Gotowe",
"policiesBladeAdPremiumUpsellBannerText": "Twórz własne zasady i określaj konkretne warunki docelowe, takie jak aplikacje w chmurze, ryzyko związane z logowaniem i platformy urządzeń, za pomocą usługi Azure AD wersja Premium",
"policiesBladeAdPremiumUpsellBannerText": "Twórz własne zasady i określaj konkretne warunki docelowe, takie jak aplikacje w chmurze, ryzyko związane z logowaniem i platformy urządzeń, za pomocą usługi Microsoft Entra ID w warstwie Premium.",
"policiesBladeTitle": "Zasady",
"policiesBladeTitleWithAppName": "Zasady: {0}",
"policiesDisabledBannerText": "Tworzenie i edytowanie zasad jest zabronione w przypadku aplikacji z atrybutem połączonego logowania.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Lokalizacja (ustalana podstawie zakresu adresów IP), z której loguje się użytkownik",
"policyConditionLocationPreview": "Lokalizacje (wersja zapoznawcza)",
"policyConditionSigninRisk": "Ryzyko logowania",
"policyConditionSigninRiskDescription": "Prawdopodobieństwo, że loguje się ktoś inny niż użytkownik. Poziom ryzyka może być wysoki, średni lub niski. Wymaga licencji usługi Azure AD Premium 2.",
"policyConditionSigninRiskDescription": "Prawdopodobieństwo, że loguje się ktoś inny niż użytkownik. Poziom ryzyka może być wysoki, średni lub niski. Wymaga licencji usługi Microsoft Entra ID P2.",
"policyConditionUserRisk": "Ryzyko związane z użytkownikiem",
"policyConditionUserRiskDescription": "Konfigurowanie poziomów ryzyka związanego z użytkownikiem potrzebnych do wymuszania zasad",
"policyConditioniClientApp": "Aplikacje klienckie",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Zablokuj dostęp lub wybierz dodatkowe wymagania, które będą musiały zostać spełnione, aby uzyskać zezwolenie na dostęp",
"policyControlMfaChallengeDisplayedName": "Wymagaj uwierzytelniania wieloskładnikowego",
"policyControlRequireCompliantAppDisplayedName": "Wymagaj zasad ochrony aplikacji",
"policyControlRequireDomainJoinedDisplayedName": "Wymagaj urządzenia przyłączonego hybrydowo do usługi Azure AD",
"policyControlRequireDomainJoinedDisplayedName": "Wymagaj urządzenia dołączonego hybrydowo do usługi Microsoft Entra",
"policyControlRequireMamDisplayedName": "Wymagaj zatwierdzonej aplikacji klienckiej",
"policyControlRequiredPasswordChangeDisplayedName": "Wymagaj zmiany hasła",
"policyControlSelectAuthStrength": "Wymagaj siły uwierzytelniania",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "Pomyślnie zaktualizowano element {0}. Zasady zostaną włączone w ciągu kilku minut, jeśli opcja „Włącz zasady” jest ustawiona na „Wł.”.",
"policyUpdateSuccessTitle": "Pomyślnie zaktualizowano element {0}",
"primaryCol": "Podstawowe",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Usługa Private Link usługi Microsoft Entra ID",
"reportOnlyInfoBox": "Tryb samego raportowania: zasady są oceniane i rejestrowane przy logowaniu, ale nie mają wpływu na użytkowników.",
"requireAllControlsText": "Wymagaj wszystkich wybranych kontrolek",
"requireCompliantDevice": "Wymagaj zgodnego urządzenia",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Wymagaj uwierzytelniania wieloskładnikowego w przypadku poufnych aplikacji przez cały czas lub tylko w przypadku dostępu spoza sieci firmowej.",
"upsellAppsTitle": "Zabezpiecz aplikacje",
"upsellBannerText": "Uzyskaj bezpłatną wersję próbną usługi — wersja Premium, aby korzystać z tej funkcji",
"upsellDataDescription": "Wymagaj, aby urządzenie było oznaczone jako zgodne lub przyłączone hybrydowo do usługi Azure AD w celu umożliwienia dostępu do zasobów firmowych.",
"upsellDataDescription": "Wymagaj, aby urządzenie było oznaczone jako zgodne lub dołączone hybrydowo do usługi Microsoft Entra, aby zezwolić na dostęp do zasobów firmy.",
"upsellDataTitle": "Zabezpiecz dane",
"upsellDescription": "Dostęp warunkowy zapewnia kontrolę i ochronę, dzięki którym dane korporacyjne są bezpieczne, a pracownicy mogą korzystać ze środowiska umożliwiającego najlepsze wykonywanie pracy z dowolnego urządzenia. Przykładowo możesz ograniczyć dostęp spoza sieci firmowej lub ograniczyć dostęp do urządzeń, które spełniają zasady zgodności.",
"upsellRiskDescription": "Wymagaj uwierzytelniania wieloskładnikowego w przypadku zdarzeń o podwyższonym ryzyku wykrytych przez system uczenia maszynowego firmy Microsoft.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "Pomyślnie zaktualizowano: {0}.",
"vpnCertUpdateSuccessTitle": "Pomyślnie zaktualizowano element {0}",
"vpnFeatureInfo": "Aby uzyskać więcej informacji o łączności sieci VPN i dostępie warunkowym, kliknij tutaj.",
"vpnFeatureWarning": "Po utworzeniu certyfikatu sieci VPN w witrynie Azure Portal usługa Azure AD natychmiast rozpocznie jego używanie w celu wystawiania klientowi sieci VPN certyfikatów o krótkim okresie istnienia. Bardzo ważne jest natychmiastowe wdrożenie certyfikatu sieci VPN na serwerze sieci VPN, aby uniknąć problemów z weryfikacją poświadczeń klienta sieci VPN.",
"vpnFeatureWarning": "Po utworzeniu certyfikatu sieci VPN w witrynie, usługa Microsoft Entra ID natychmiast rozpocznie korzystanie z niego w celu wystawiania klientowi sieci VPN certyfikatów o krótkim okresie życia. Niezwykle ważne jest natychmiastowe wdrożenie certyfikatu sieci VPN na serwerze sieci VPN, aby uniknąć problemów z weryfikacją poświadczeń klienta sieci VPN.",
"vpnMenuText": "Łączność sieci VPN",
"vpncertDropdownDefaultOption": "Czas trwania",
"vpncertDropdownInfoBalloonContent": "Wybierz czas trwania certyfikatu, który chcesz utworzyć",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Niestandardowa rola usługi Intune",
"customRole": "Rola niestandardowa"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "Element {0} jest uwzględniony w co najmniej jednym zestawie zasad. Jeśli usuniesz element {0}, nie będzie już można go przypisywać za pomocą tych zestawów zasad. Czy usunąć go mimo to?",
"contentWithError": "Element {0} może być uwzględniony w co najmniej jednym zestawie zasad. Jeśli usuniesz element {0}, nie będzie już można go przypisywać za pomocą tych zestawów zasad. Czy usunąć go mimo to?",
"header": "Czy na pewno chcesz usunąć to ograniczenie?"
},
"DeviceLimit": {
"description": "Określ maksymalną liczbę urządzeń, które może zarejestrować użytkownik.",
"header": "Ograniczenia limitu urządzeń",
"info": "Określ liczbę urządzeń, które może zarejestrować każdy użytkownik."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Musi to być wartość 1.0 lub większa.",
"android": "Wprowadź prawidłowy numer wersji. Przykłady: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Wprowadź prawidłowy numer wersji. Przykłady: 5.0, 5.1.1",
"iOS": "Wprowadź prawidłowy numer wersji. Przykłady: 9.0, 10.0, 9.0.2",
"mac": "Wprowadź prawidłowy numer wersji. Przykłady: 10, 10.10, 10.10.1",
"min": "Wersja minimalna nie może być niższa niż {0}",
"minMax": "Wersja minimalna nie może być większa niż wersja maksymalna.",
"windows": "Musi to być wersja 10.0 lub nowsza. Pozostaw to pole puste, aby zezwolić na urządzenia w wersji 8.1",
"windowsMobile": "Musi to być wersja 10.0 lub nowsza. Pozostaw to pole puste, aby zezwolić na urządzenia w wersji 8.1"
},
"allPlatformsBlocked": "Wszystkie platformy urządzeń są zablokowane. Zezwalaj na rejestrowanie platform, aby włączyć konfigurowanie platform.",
"blockManufacturerPlaceHolder": "Nazwa producenta",
"blockManufacturersHeader": "Zablokowani producenci",
"cannotRestrict": "Ograniczenie nie jest obsługiwane",
"configurationDescription": "Określ ograniczenia konfiguracji platformy, które muszą zostać spełnione w celu rejestracji urządzenia. Użyj zasad zgodności do ograniczenia urządzeń po rejestracji. Definiuj wersje w formacie główna.pomocnicza.kompilacja. Ograniczenia wersji mają zastosowanie tylko do urządzeń rejestrowanych przy użyciu Portalu firmy. Domyślnie usługa Intune klasyfikuje urządzenia jako będące własnością osobistą. Aby zaklasyfikować urządzenia jako będące własnością firmy, należy podjąć specjalną akcję.",
"configurationDescriptionLabel": "Dowiedz się więcej o ustawianiu ograniczeń rejestracji",
"configurations": "Konfiguruj platformy",
"deviceManufacturer": "Producent urządzenia",
"header": "Ograniczenia typu urządzeń",
"info": "Zdefiniuj platformy, wersje i typy zarządzania dopuszczone do rejestracji.",
"manufacturer": "Producent",
"max": "Maks.",
"maxVersion": "Maksymalna wersja",
"min": "Minimum",
"minVersion": "Minimalna wersja",
"newPlatforms": "Dopuszczono nowe platformy. Rozważ aktualizację konfiguracji platform.",
"personal": "Własność użytkownika",
"platform": "Platforma",
"platformDescription": "Możesz dopuścić rejestrację następujących platform. Blokuj tylko platformy, których nie będziesz obsługiwać. Dopuszczone platformy można skonfigurować z dodatkowymi ograniczeniami rejestracji.",
"platformSettings": "Ustawienia platformy",
"platforms": "Wybierz platformy",
"platformsSelected": "Wybrane platformy: {0}",
"type": "Typ",
"versions": "wersje",
"versionsRange": "Zezwalaj na minimalny/maksymalny zakres:",
"windowsTooltip": "Ogranicza rejestrację za pośrednictwem zarządzania urządzeniami przenośnymi. Nie ogranicza instalacji agenta komputera. Obsługiwane są tylko wersje systemów Windows 10 i Windows 11. Pozostaw puste wersje, aby zezwolić na korzystanie z systemu Windows 8.1."
},
"Priority": {
"saved": "Pomyślnie zapisano priorytety ograniczeń."
},
"Row": {
"announce": "Priorytet: {0}, nazwa: {1}, przypisano: {2}"
},
"Table": {
"deployed": "Wdrożone",
"name": "Nazwa",
"priority": "Priorytet"
},
"Type": {
"limit": "Ograniczenie limitu urządzeń",
"type": "Ograniczenie typu urządzeń"
},
"allUsers": "Wszyscy użytkownicy",
"androidRestrictions": "Ograniczenia systemu Android",
"create": "Utwórz ograniczenie",
"defaultLimitDescription": "To jest domyślne ograniczenie limitu urządzeń stosowane z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
"defaultTypeDescription": "To jest domyślne ograniczenie typu urządzenia stosowane z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
"defaultWhfbDescription": "To jest domyślna konfiguracja funkcji Windows Hello dla firm stosowana z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
"deleteMessage": "Na użytkowników, których to dotyczy, zostanie nałożone przypisane ograniczenie o kolejnym najwyższym priorytecie lub domyślne ograniczenie, jeśli żadne ograniczenie nie zostało przypisane.",
"deleteTitle": "Czy na pewno chcesz usunąć ograniczenie {0}?",
"descriptionHint": "Krótki akapit z opisem użycia poziomu ograniczeń określanego przez ustawienia ograniczeń w firmie.",
"edit": "Edytuj ograniczenie",
"info": "Urządzenie musi być zgodne z ograniczeniami rejestracji o najwyższym priorytecie przypisanymi do jego użytkownika. Możesz przeciągać ograniczenia urządzenia, aby zmieniać ich priorytet. Ograniczenia domyślne mają najniższy priorytet dla wszystkich użytkowników i służą do zarządzania rejestracjami bez użytkowników. Ograniczenia domyślne można edytować, ale nie można ich usuwać.",
"iosRestrictions": "Ograniczenia systemu iOS",
"mDM": "MDM",
"macRestrictions": "Ograniczenia systemu MacOS",
"maxVersion": "Wersja maksymalna",
"minVersion": "Wersja minimalna",
"nameHint": "To będzie główny atrybut widoczny w celu identyfikacji zestawu ograniczeń.",
"noAssignmentsStatusBar": "Przypisz ograniczenie do co najmniej jednej grupy. Kliknij pozycję Właściwości.",
"notFound": "Nie znaleziono ograniczenia. Być może zostało już usunięte.",
"personallyOwned": "Urządzenia osobiste",
"restriction": "Ograniczenie",
"restrictionLowerCase": "ograniczenie",
"restrictionType": "Typ ograniczenia",
"selectType": "Wybierz typ ograniczenia",
"selectValidation": "Wybierz platformę",
"typeHint": "Wybierz opcję Ograniczenie typu urządzeń, aby ograniczyć właściwości urządzeń. Wybierz opcję Ograniczenie limitu urządzeń, aby ograniczyć liczbę urządzeń na użytkownika.",
"typeRequired": "Wymagany jest typ ograniczenia.",
"winPhoneRestrictions": "Ograniczenia systemu Windows Phone",
"windowsECv1Info": "Starszych ograniczeń rejestracji nie można edytować ani zmieniać ich priorytetów, tylko usuwać.",
"windowsECv2Info": "Możesz określić priorytety ograniczeń rejestracji, przeciągając je i upuszczając. Wyświetl ograniczenia domyślne i wstępnie skonfigurowane poniżej. Wszystkie nowe ograniczenia rejestracji będą miały wyższy priorytet niż domyślne i wstępnie skonfigurowane ograniczenia.",
"windowsRestrictions": "Ograniczenia systemu Windows",
"windowsRestrictionsPreview": "Ograniczenia systemu Windows oparte na filtrach (wersja zapoznawcza)"
},
"InstallContextType": {
"device": "Urządzenie",
"deviceContext": "Kontekst urządzenia",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Składnia reguł",
"filters": "Filtry"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "Element {0} jest uwzględniony w co najmniej jednym zestawie zasad. Jeśli usuniesz element {0}, nie będzie już można go przypisywać za pomocą tych zestawów zasad. Czy usunąć go mimo to?",
"contentWithError": "Element {0} może być uwzględniony w co najmniej jednym zestawie zasad. Jeśli usuniesz element {0}, nie będzie już można go przypisywać za pomocą tych zestawów zasad. Czy usunąć go mimo to?",
"header": "Czy na pewno chcesz usunąć to ograniczenie?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Zezwalaj użytkownikowi na zmianę ustawienia",
"tooltip": "Określ, czy użytkownik może zmieniać ustawienie."
},
"AllowWorkAccounts": {
"title": "Zezwalaj tylko na konta służbowe",
"tooltip": "Po włączeniu tego ustawienia użytkownicy nie będą mogli dodawać osobistych kont e-mail i magazynu w programie Outlook. Jeśli użytkownik ma już dodane konto osobiste do programu Outlook, zostanie poproszony o jego usunięcie. Jeśli użytkownik nie usunie konta osobistego, nie będzie można dodać konta służbowego."
},
"BlockExternalImages": {
"title": "Blokuj obrazy zewnętrzne",
"tooltip": "Gdy blokowanie obrazów zewnętrznych jest włączone, aplikacja nie będzie pozwalać na pobieranie obrazów hostowanych w Internecie, które są osadzone w treści wiadomości. Jeśli ta funkcja jest ustawiona jako nieskonfigurowana, jej domyślnym ustawieniem w aplikacji jest Wyłączone"
},
"ConfigureEmail": {
"title": "Konfiguruj ustawienia konta e-mail"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Domyślny podpis aplikacji wskazuje, czy aplikacja będzie używać podpisu „Pobierz program Outlook dla systemu Android” jako domyślnego podpisu podczas tworzenia wiadomości. Jeśli to ustawienie zostanie wyłączone, domyślny podpis nie będzie używany, ale użytkownicy będą mogli dodać własny podpis.\r\n\r\nJeśli zostanie ustawiona wartość Nie skonfigurowano, domyślnie ustawienie aplikacji będzie włączone.",
"iOS": "Domyślny podpis aplikacji wskazuje, czy aplikacja będzie używać podpisu „Pobierz program Outlook dla systemu iOS” jako domyślnego podpisu podczas tworzenia wiadomości. Jeśli to ustawienie zostanie wyłączone, domyślny podpis nie będzie używany, ale użytkownicy będą mogli dodać własny podpis.\r\n\r\nJeśli zostanie ustawiona wartość Nie skonfigurowano, domyślnie ustawienie aplikacji będzie włączone."
},
"title": "Domyślny podpis aplikacji"
},
"OfficeFeedReplies": {
"title": "Kanał informacyjny odkrywania",
"tooltip": "Kanał informacyjny odkrywania przedstawia najczęściej używane pliki pakietu Office. Domyślnie ten kanał jest włączony, gdy dla użytkownika włączono usługę Delve. W przypadku ustawienia wartości Nie skonfigurowano domyślne ustawienie aplikacji to Włączone."
},
"OrganizeMailByThread": {
"title": "Organizuj pocztę według wątku",
"tooltip": "Zachowanie domyślne w programie Outlook polega na przekształcaniu konwersacji pocztowych w widok wątku. Jeśli to ustawienie zostanie wyłączone, program Outlook będzie wyświetlał każdą wiadomość pojedynczo i nie będzie grupować ich według wątku."
},
"PlayMyEmails": {
"title": "Odtwarzaj moje wiadomości e-mail",
"tooltip": "Funkcja Odtwarzaj moje wiadomości e-mail nie jest domyślnie włączona w aplikacji, ale jest polecana uprawnionym użytkownikom za pośrednictwem baneru w skrzynce odbiorczej. Ustawienie na wartość Wyłączone spowoduje, że ta funkcja nie będzie polecana uprawnionym użytkownikom w aplikacji. Użytkownicy mogą ręcznie włączać funkcję Odtwarzaj moje wiadomości e-mail w aplikacji, nawet jeśli ta funkcja jest ustawiona na wartość Wyłączona. Po ustawieniu wartości Nie skonfigurowano domyślnym ustawieniem aplikacji jest Włączone i funkcja będzie polecana uprawnionym użytkownikom."
},
"SuggestedReplies": {
"title": "Sugerowane odpowiedzi",
"tooltip": "Po otwarciu wiadomości program Outlook może wyświetlić pod nią sugerowane odpowiedzi. Jeśli wybierzesz sugerowaną odpowiedź, możesz ją edytować przed wysłaniem."
},
"SyncCalendars": {
"title": "Synchronizuj kalendarze",
"tooltip": "Skonfiguruj, czy użytkownicy mogą synchronizować swoje kalendarze programu Outlook z natywną aplikacją kalendarza i bazą danych. "
},
"TextPredictions": {
"title": "Podpowiadanie tekstu",
"tooltip": "Program Outlook może sugerować wyrazy i frazy podczas redagowania wiadomości. Gdy aplikacja Outlook wyświetli sugestię, przesuń, aby ją zaakceptować. Gdy ustawienie nie jest skonfigurowane, domyślnym ustawieniem aplikacji jest Włączone."
},
"DeviceLimit": {
"description": "Określ maksymalną liczbę urządzeń, które może zarejestrować użytkownik.",
"header": "Ograniczenia limitu urządzeń",
"info": "Określ liczbę urządzeń, które może zarejestrować każdy użytkownik."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Musi to być wartość 1.0 lub większa.",
"android": "Wprowadź prawidłowy numer wersji. Przykłady: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Wprowadź prawidłowy numer wersji. Przykłady: 5.0, 5.1.1",
"iOS": "Wprowadź prawidłowy numer wersji. Przykłady: 9.0, 10.0, 9.0.2",
"mac": "Wprowadź prawidłowy numer wersji. Przykłady: 10, 10.10, 10.10.1",
"min": "Wersja minimalna nie może być niższa niż {0}",
"minMax": "Wersja minimalna nie może być większa niż wersja maksymalna.",
"windows": "Musi to być wersja 10.0 lub nowsza. Pozostaw to pole puste, aby zezwolić na urządzenia w wersji 8.1",
"windowsMobile": "Musi to być wersja 10.0 lub nowsza. Pozostaw to pole puste, aby zezwolić na urządzenia w wersji 8.1"
},
"allPlatformsBlocked": "Wszystkie platformy urządzeń są zablokowane. Zezwalaj na rejestrowanie platform, aby włączyć konfigurowanie platform.",
"blockManufacturerPlaceHolder": "Nazwa producenta",
"blockManufacturersHeader": "Zablokowani producenci",
"cannotRestrict": "Ograniczenie nie jest obsługiwane",
"configurationDescription": "Określ ograniczenia konfiguracji platformy, które muszą zostać spełnione w celu rejestracji urządzenia. Użyj zasad zgodności do ograniczenia urządzeń po rejestracji. Definiuj wersje w formacie główna.pomocnicza.kompilacja. Ograniczenia wersji mają zastosowanie tylko do urządzeń rejestrowanych przy użyciu Portalu firmy. Domyślnie usługa Intune klasyfikuje urządzenia jako będące własnością osobistą. Aby zaklasyfikować urządzenia jako będące własnością firmy, należy podjąć specjalną akcję.",
"configurationDescriptionLabel": "Dowiedz się więcej o ustawianiu ograniczeń rejestracji",
"configurations": "Konfiguruj platformy",
"deviceManufacturer": "Producent urządzenia",
"header": "Ograniczenia typu urządzeń",
"info": "Zdefiniuj platformy, wersje i typy zarządzania dopuszczone do rejestracji.",
"manufacturer": "Producent",
"max": "Maks.",
"maxVersion": "Maksymalna wersja",
"min": "Minimum",
"minVersion": "Minimalna wersja",
"newPlatforms": "Dopuszczono nowe platformy. Rozważ aktualizację konfiguracji platform.",
"personal": "Własność użytkownika",
"platform": "Platforma",
"platformDescription": "Możesz dopuścić rejestrację następujących platform. Blokuj tylko platformy, których nie będziesz obsługiwać. Dopuszczone platformy można skonfigurować z dodatkowymi ograniczeniami rejestracji.",
"platformSettings": "Ustawienia platformy",
"platforms": "Wybierz platformy",
"platformsSelected": "Wybrane platformy: {0}",
"type": "Typ",
"versions": "wersje",
"versionsRange": "Zezwalaj na minimalny/maksymalny zakres:",
"windowsTooltip": "Ogranicza rejestrację za pośrednictwem zarządzania urządzeniami przenośnymi. Nie ogranicza instalacji agenta komputera. Obsługiwane są tylko wersje systemów Windows 10 i Windows 11. Pozostaw puste wersje, aby zezwolić na korzystanie z systemu Windows 8.1."
},
"Priority": {
"saved": "Pomyślnie zapisano priorytety ograniczeń."
},
"Row": {
"announce": "Priorytet: {0}, nazwa: {1}, przypisano: {2}"
},
"Table": {
"deployed": "Wdrożone",
"name": "Nazwa",
"priority": "Priorytet"
},
"Type": {
"limit": "Ograniczenie limitu urządzeń",
"type": "Ograniczenie typu urządzeń"
},
"allUsers": "Wszyscy użytkownicy",
"androidRestrictions": "Ograniczenia systemu Android",
"create": "Utwórz ograniczenie",
"defaultLimitDescription": "To jest domyślne ograniczenie limitu urządzeń stosowane z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
"defaultTypeDescription": "To jest domyślne ograniczenie typu urządzenia stosowane z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
"defaultWhfbDescription": "To jest domyślna konfiguracja funkcji Windows Hello dla firm stosowana z najniższym priorytetem dla wszystkich użytkowników niezależnie od członkostwa w grupie.",
"deleteMessage": "Na użytkowników, których to dotyczy, zostanie nałożone przypisane ograniczenie o kolejnym najwyższym priorytecie lub domyślne ograniczenie, jeśli żadne ograniczenie nie zostało przypisane.",
"deleteTitle": "Czy na pewno chcesz usunąć ograniczenie {0}?",
"descriptionHint": "Krótki akapit z opisem użycia poziomu ograniczeń określanego przez ustawienia ograniczeń w firmie.",
"edit": "Edytuj ograniczenie",
"info": "Urządzenie musi być zgodne z ograniczeniami rejestracji o najwyższym priorytecie przypisanymi do jego użytkownika. Możesz przeciągać ograniczenia urządzenia, aby zmieniać ich priorytet. Ograniczenia domyślne mają najniższy priorytet dla wszystkich użytkowników i służą do zarządzania rejestracjami bez użytkowników. Ograniczenia domyślne można edytować, ale nie można ich usuwać.",
"iosRestrictions": "Ograniczenia systemu iOS",
"mDM": "MDM",
"macRestrictions": "Ograniczenia systemu MacOS",
"maxVersion": "Wersja maksymalna",
"minVersion": "Wersja minimalna",
"nameHint": "To będzie główny atrybut widoczny w celu identyfikacji zestawu ograniczeń.",
"noAssignmentsStatusBar": "Przypisz ograniczenie do co najmniej jednej grupy. Kliknij pozycję Właściwości.",
"notFound": "Nie znaleziono ograniczenia. Być może zostało już usunięte.",
"personallyOwned": "Urządzenia osobiste",
"restriction": "Ograniczenie",
"restrictionLowerCase": "ograniczenie",
"restrictionType": "Typ ograniczenia",
"selectType": "Wybierz typ ograniczenia",
"selectValidation": "Wybierz platformę",
"typeHint": "Wybierz opcję Ograniczenie typu urządzeń, aby ograniczyć właściwości urządzeń. Wybierz opcję Ograniczenie limitu urządzeń, aby ograniczyć liczbę urządzeń na użytkownika.",
"typeRequired": "Wymagany jest typ ograniczenia.",
"winPhoneRestrictions": "Ograniczenia systemu Windows Phone",
"windowsRestrictions": "Ograniczenia systemu Windows"
},
"ThemesEnabled": {
"title": "Kompozycje włączone",
"tooltip": "Określ, czy użytkownik może używać niestandardowego motywu wizualnego."
}
},
"Titles": {
"ChromeOs": {
"devices": "Urządzenia z systemem operacyjnym Chrome (wersja zapoznawcza)"
@@ -12507,6 +12558,7 @@
"user": "Użytkownik",
"userExecutionStatus": "Stan użytkownika",
"wdacSupplementalPolicies": "Uzupełniające zasady trybu S",
"win32CatalogUpdateApp": "Aktualizacje dla aplikacji wykazu systemu Windows (Win32)",
"windows10DriverUpdate": "Aktualizacje sterowników 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",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Łączniki partnerów systemu Windows 365",
"windowsDiagnosticData": "Dane systemu Windows",
"windowsEnterpriseCertificate": "Certyfikat przedsiębiorstwa systemu Windows",
"windowsManagement": "Skrypty programu PowerShell",
"windowsManagement": "Skrypty",
"windowsSideLoadingKeys": "Klucze ładowania bezpośredniego systemu Windows",
"windowsSymantecCertificate": "Certyfikat firmy DigiCert dla systemu Windows",
"windowsThreatReport": "Stan agenta zagrożenia"
@@ -12551,6 +12603,10 @@
"postponed": "Odłożone",
"priority": "Wysoki priorytet"
},
"AutoUpdateSupersededApps": {
"label": "Automatyczna aktualizacja",
"sublabel": "Automatycznie uaktualnij wszystkie zastąpione wersje tej aplikacji"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Tło",
"displayText": "Pobieranie zawartości za {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Allow user to change setting",
"tooltip": "Specify if the user is allowed to change the setting."
},
"AllowWorkAccounts": {
"title": "Allow only work or school accounts",
"tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
},
"BlockExternalImages": {
"title": "Block external images",
"tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "App Version",
"dependencyName": "Dependency name",
"lastModifiedTime": "Last modified time",
"relationship": "Relationship",
"replaced": "Replaced",
"searchPlaceholder": "Filter by app name",
"status": "Status details",
"statusDetails": "Status",
"supersedenceName": "Supersedence name"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Child dependency",
"indirectSupersedence": "Not directly related",
"supersedenceAncestors": "Superseding",
"supersedenceDescendants": "Superseded"
},
"ConfigureEmail": {
"title": "Configure email account settings"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
"iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
},
"title": "Default app signature"
},
"OfficeFeedReplies": {
"title": "Discover Feed",
"tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
},
"OrganizeMailByThread": {
"title": "Organize mail by thread",
"tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
},
"PlayMyEmails": {
"title": "Play My Emails",
"tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
},
"SuggestedReplies": {
"title": "Suggested replies",
"tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
},
"SyncCalendars": {
"title": "Sync Calendars",
"tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
},
"TextPredictions": {
"title": "Text Predictions",
"tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
"SupersededReplaced": {
"no": "No",
"yes": "Yes"
},
"ThemesEnabled": {
"title": "Themes enabled",
"tooltip": "Specify if the user is allowed to use a custom visual theme."
}
},
"Tabs": {
"chart": "Chart",
"dependency": "Dependency",
"label": "View: ",
"supersedence": "Supersedence",
"table": "Table"
},
"dependencyGraphAriaLabel": "App dependency chart",
"supersedenceGraphAriaLabel": "App supersedence chart"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Please select a discovery script",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Always-on VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Check basic integrity & device integrity",
"androidPlayIntegrityVerdictBasicIntegrity": "Check basic integrity",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Trusted certificates can no longer install on devices that run Android 11 or later, except for Samsung Knox devices. If you use SCEP certificate profiles, you must continue to create and deploy a trusted certificate profile and associate it with the SCEP certificate profile, but you must manually deliver the trusted root certificate to those devices.",
"androidTenAndAbovePasswordHeader": "Android 10 and later",
"androidTenAndAbovePasswordHeaderDescription": "These settings work for devices running Android 10 or later.",
@@ -2769,8 +2750,8 @@
"blockTouchIDAndFaceIDUnlockName": "Block Touch ID and Face ID unlock",
"blockUSBConnectionDescription": "Specifies whether the USB connection on the device is enabled. USB charging will not be affected by this setting. This setting isn't supported on Windows desktop platforms.",
"blockUSBConnectionName": "USB connection",
"blockUnifiedPasswordForWorkProfileDescription": "Block using one lock if you want users to use two different passwords for their lock screen and work profile. Using one screen lock is convenient to the user, but makes the work profile accessible to anyone who can unlock the device. Applies to devices running Android 9.0 Pie and later.",
"blockUnifiedPasswordForWorkProfileName": "One lock for work profile and device",
"blockUnifiedPasswordForWorkProfileDescription": "Block if you want users to use two different passwords for their lock screen and work profile. Applies to devices running Android 9.0 Pie and later.",
"blockUnifiedPasswordForWorkProfileName": "One lock for device and work profile",
"blockUnmanagedDocumentsInManagedAppsName": "Block viewing non-corporate documents in corporate apps",
"blockUntrustedTLSCertificatesDescription": "Block untrusted Transport Layer Security (TLS) certificates.",
"blockUntrustedTLSCertificatesName": "Block untrusted TLS certificates",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Force the device to automatically update for security patches and improvements.",
"complianceUpdatesRequireAutomaticUpdatesName": "Require automatic updates from Microsoft",
"complianceWin10RequiredPasswordTypeDescription": "This setting determines the type of Password/PIN required.<br>\nDevice Default (Password, Numeric PIN, or Alphanumeric PIN required)<br>\nAlphanumeric (Password or Alphanumberic PIN required)<br>\nNumeric (Password or Numeric PIN required)<br>\nRecommendations: Required password type: Alphanumeric, Password complexity: Require digits and lowercase letters",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 or 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 and 11",
"complianceWindows11DeviceHealthAttestationHeader": "Windows 11 only",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Minimum version of Microsoft Defender (e.g. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Microsoft Defender Antimalware minimum version",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service evaluation rules<br><br>Use these rules to confirm that a device has protective measures enabled at boot time. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Learn more about these rules</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service evaluation settings<br><br>Use these settings to confirm that a device has protective measures enabled at boot time. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Learn more</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have. The operating system version is defined as major.minor.build.revision.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have. The operating system version is defined as major.minor.build.revision.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "The operating system version is defined as major.minor.build.revision. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95th percentile protection",
"basicDataProtectionGuidedString": "Basic data protection ensure users are required to utilize PIN or biometrics to access work or school account data, encrypts work or school account data, and enables administrators to perform selective data wipes, if necessary. For Android devices, basic data protection also ensures the compatibility of the device with Google's services and enables Google's Verify Apps scan.",
"basicIntegrity": "Basic integrity",
"basicIntegrityAndCertifiedDevices": "Basic integrity and certified devices",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Inactivity timeout",
"bioPinInactiveTimeoutTooltip": "Override with PIN instead of biometric after (minutes)",
"block": "Block",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Cut and copy character limit for any app",
"camera": "Camera",
"checkInCountColumnTitle": "CHECK-IN COUNT",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Checked in",
"checkedInAppNameColumnTitle": "APP",
"checkedInButNotSynced": "Checked in. On next sync, this app will receive {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">I can't find the app I need</a></p><p><a data-bind=\"fxclick: onClickLob\">I need to add my own line-of-business app</a></p>",
"guidedTemplate2": "Well ask you which protection level you would like to deploy to your users. For more information, see <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Data protection framework with app protection policies. </a>",
"guidediOSLabel": "iOS app protection",
"hardwareBackedKey": "Hardware-backed key",
"healthCheck": "Health Checks",
"helpAndSupport": "Help and support",
"hideOverrides": "Hide Overrides",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Platform",
"platformDropDownLabel": "Platform",
"platformVersion": "Platform version",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Please fix the errors in the sections below!",
"pleaseSelectAtLeastOneFileError": "Please select at least one file before continuing",
"policies": "Policies",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Require device lock",
"requireThreatScanOnApps": "Require threat scan on apps",
"requiredField": "This field can't be empty",
"requiredSafetyNetEvaluationType": "Required SafetyNet evaluation type",
"requiredSettings": "Required settings",
"resetPin": "Reset PIN",
"resourceManagement": "Resource management",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Any app",
"restrictWebContentOption2": "{0}: Allow web links in any app",
"rootCertificate": "Root Certificate",
"safetyNetDeviceAttestation": "SafetyNet device attestation",
"samsungKnoxAttestationRequired": "Samsung Knox device attestation",
"saveAppsNotificationText": "Saving selected apps",
"saveChangesCommandText": "Save",
@@ -8346,7 +8327,7 @@
"administrativeTemplates": "Administrative Templates",
"androidCompliancePolicy": "Android compliance policy",
"aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
"applicationControl": "Application Control",
"applicationControl": "App Control for Business",
"attackSurfaceReductionRules": "Attack Surface Reduction Rules",
"bitlocker": "BitLocker",
"custom": "Custom",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Filter mode",
"assignmentToast": "End user notifications",
"assignmentTypeTableHeader": "ASSIGNMENT TYPE",
"autoUpdate": "Auto update",
"deadlineTimeColumnLabel": "Installation deadline",
"deliveryOptimizationPriorityHeader": "Delivery optimization priority",
"groupTableHeader": "Group",
@@ -8514,6 +8496,10 @@
"showAll": "Show all toast notifications",
"showReboot": "Show toast notifications for computer restarts"
},
"AutoUpdateSupersededApps": {
"enabled": "Enabled",
"notConfigured": "Not configured"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Content download in {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allRiskLevelsOption": "All risk levels",
"allTrustedLocationLabel": "All trusted locations",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra ID security reports to reduce false positives and Microsoft Entra Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country/region",
"namedNetworkDeleteCommand": "Delete",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "New named location",
"namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Named locations are used by Microsoft Entra ID security reports to reduce false positives and Microsoft Entra Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
"or": "{0} OR {1} ",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
"policyConditionLocationPreview": "Locations (Preview)",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataDescription": "Require device to be marked as compliant or Microsoft Entra hybrid joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Custom Intune role",
"customRole": "Custom Role"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"header": "Are you sure you want to delete this restriction?"
},
"DeviceLimit": {
"description": "Specify the maximum number of devices a user can enroll.",
"header": "Device limit restrictions",
"info": "Define how many devices each user can enroll."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Must be 1.0 or greater.",
"android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
"iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
"mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
"min": "Minimum cannot be lower than {0}",
"minMax": "Minimum version cannot be greater than maximum version.",
"windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
"windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
},
"allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
"blockManufacturerPlaceHolder": "Manufacturer name",
"blockManufacturersHeader": "Blocked manufacturers",
"cannotRestrict": "Restriction not supported",
"configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
"configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
"configurations": "Configure platforms",
"deviceManufacturer": "Device manufacturer",
"header": "Device type restrictions",
"info": "Define which platforms, versions, and management types can enroll.",
"manufacturer": "Manufacturer",
"max": "Max",
"maxVersion": "Maximum version",
"min": "Min",
"minVersion": "Minimum version",
"newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
"personal": "Personally owned",
"platform": "Platform",
"platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
"platformSettings": "Platform settings",
"platforms": "Select platforms",
"platformsSelected": "{0} platforms selected",
"type": "Type",
"versions": "versions",
"versionsRange": "Allow min/max range:",
"windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
},
"Priority": {
"saved": "Restriction Priorities were successfully saved."
},
"Row": {
"announce": "Priority: {0}, Name: {1}, Assigned: {2}"
},
"Table": {
"deployed": "Deployed",
"name": "Name",
"priority": "Priority"
},
"Type": {
"limit": "Device limit restriction",
"type": "Device type restriction"
},
"allUsers": "All Users",
"androidRestrictions": "Android restrictions",
"create": "Create restriction",
"defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
"defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
"defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
"deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
"deleteTitle": "Are you sure you want to delete {0} restriction?",
"descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
"edit": "Edit restriction",
"info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
"iosRestrictions": "iOS restrictions",
"mDM": "MDM",
"macRestrictions": "macOS restrictions",
"maxVersion": "Max Version",
"minVersion": "Min Version",
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
"notFound": "Restriction not found. It may have already been deleted.",
"personallyOwned": "Personally owned devices",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction type",
"selectType": "Select restriction type",
"selectValidation": "Please select a platform",
"typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
"typeRequired": "Restriction type is required.",
"winPhoneRestrictions": "Windows Phone restrictions",
"windowsECv1Info": "Older enrollment restrictions cant be edited or reprioritized, only deleted.",
"windowsECv2Info": "You can prioritize enrollment restrictions by dragging and dropping them. View default and preconfigured restrictions below. All new enrollment restrictions will have a higher priority than default and preconfigured restrictions.",
"windowsRestrictions": "Windows restrictions",
"windowsRestrictionsPreview": "Filter-based Windows restrictions (preview)"
},
"InstallContextType": {
"device": "Device",
"deviceContext": "Device context",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Rule syntax",
"filters": "Filters"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"header": "Are you sure you want to delete this restriction?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Allow user to change setting",
"tooltip": "Specify if the user is allowed to change the setting."
},
"AllowWorkAccounts": {
"title": "Allow only work or school accounts",
"tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
},
"BlockExternalImages": {
"title": "Block external images",
"tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
},
"ConfigureEmail": {
"title": "Configure email account settings"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
"iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
},
"title": "Default app signature"
},
"OfficeFeedReplies": {
"title": "Discover Feed",
"tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
},
"OrganizeMailByThread": {
"title": "Organize mail by thread",
"tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
},
"PlayMyEmails": {
"title": "Play My Emails",
"tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
},
"SuggestedReplies": {
"title": "Suggested replies",
"tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
},
"SyncCalendars": {
"title": "Sync Calendars",
"tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
},
"TextPredictions": {
"title": "Text Predictions",
"tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
},
"DeviceLimit": {
"description": "Specify the maximum number of devices a user can enroll.",
"header": "Device limit restrictions",
"info": "Define how many devices each user can enroll."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Must be 1.0 or greater.",
"android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
"iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
"mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
"min": "Minimum cannot be lower than {0}",
"minMax": "Minimum version cannot be greater than maximum version.",
"windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
"windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
},
"allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
"blockManufacturerPlaceHolder": "Manufacturer name",
"blockManufacturersHeader": "Blocked manufacturers",
"cannotRestrict": "Restriction not supported",
"configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
"configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
"configurations": "Configure platforms",
"deviceManufacturer": "Device manufacturer",
"header": "Device type restrictions",
"info": "Define which platforms, versions, and management types can enroll.",
"manufacturer": "Manufacturer",
"max": "Max",
"maxVersion": "Maximum version",
"min": "Min",
"minVersion": "Minimum version",
"newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
"personal": "Personally owned",
"platform": "Platform",
"platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
"platformSettings": "Platform settings",
"platforms": "Select platforms",
"platformsSelected": "{0} platforms selected",
"type": "Type",
"versions": "versions",
"versionsRange": "Allow min/max range:",
"windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
},
"Priority": {
"saved": "Restriction Priorities were successfully saved."
},
"Row": {
"announce": "Priority: {0}, Name: {1}, Assigned: {2}"
},
"Table": {
"deployed": "Deployed",
"name": "Name",
"priority": "Priority"
},
"Type": {
"limit": "Device limit restriction",
"type": "Device type restriction"
},
"allUsers": "All Users",
"androidRestrictions": "Android restrictions",
"create": "Create restriction",
"defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
"defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
"defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
"deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
"deleteTitle": "Are you sure you want to delete {0} restriction?",
"descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
"edit": "Edit restriction",
"info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
"iosRestrictions": "iOS restrictions",
"mDM": "MDM",
"macRestrictions": "MacOS restrictions",
"maxVersion": "Max Version",
"minVersion": "Min Version",
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
"notFound": "Restriction not found. It may have already been deleted.",
"personallyOwned": "Personally owned devices",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction type",
"selectType": "Select restriction type",
"selectValidation": "Please select a platform",
"typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
"typeRequired": "Restriction type is required.",
"winPhoneRestrictions": "Windows Phone restrictions",
"windowsRestrictions": "Windows restrictions"
},
"ThemesEnabled": {
"title": "Themes enabled",
"tooltip": "Specify if the user is allowed to use a custom visual theme."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS devices (preview)"
@@ -12392,7 +12443,7 @@
"advancedThreatProtection": "Microsoft Defender for Endpoint",
"allApps": "All apps",
"allDevices": "All devices",
"androidFotaDeployments": "Android FOTA deployments (preview)",
"androidFotaDeployments": "Android FOTA deployments",
"appBundles": "App Bundles",
"appCategories": "App categories",
"appConfigPolicies": "App configuration policies",
@@ -12453,7 +12504,7 @@
"featureFlighting": "Feature flighting",
"featureUpdateDeployments": "Feature updates for Windows 10 and later",
"flighting": "Flighting",
"fotaUpdate": "Firmware over-the-air update (preview)",
"fotaUpdate": "Firmware over-the-air update",
"groupPolicy": "Administrative Templates",
"groupPolicyAnalytics": "Group policy analytics",
"helpSupport": "Help and support",
@@ -12507,6 +12558,7 @@
"user": "User",
"userExecutionStatus": "User status",
"wdacSupplementalPolicies": "S mode supplemental policies",
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
"windows10UpdateRings": "Update rings for Windows 10 and later",
@@ -12551,6 +12603,10 @@
"postponed": "Postponed",
"priority": "High Priority"
},
"AutoUpdateSupersededApps": {
"label": "Auto update",
"sublabel": "Automatically upgrade any superseded versions of this application"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Content download in {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Требовать по меньшей мере одну прописную букву в ПИН-коде"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Разрешить пользователю менять настройку",
"tooltip": "Укажите, разрешено ли пользователю менять настройку."
},
"AllowWorkAccounts": {
"title": "Разрешение только рабочих и учебных учетных записей",
"tooltip": " При включении этого параметра пользователи не смогут добавить личный адрес электронной почты и учетные записи хранения в Outlook. Если у пользователя добавлена в Outlook личная учетная запись, ему потребуется ее удалить. Если он этого не сделает, добавить рабочую или учебную учетную запись будет невозможно."
},
"BlockExternalImages": {
"title": "Блокировка внешних изображений",
"tooltip": "При блокировке внешних изображений приложение не позволит скачивать размещенные в Интернете изображения, встроенные в текст сообщения. Если не настроить эту функцию, по умолчанию она будет для приложения отключена."
"AppRelationshipStatus": {
"Grid": {
"appVersion": "Версия приложения",
"dependencyName": "Имя зависимости",
"lastModifiedTime": "Время последнего изменения",
"relationship": "Связь",
"replaced": "Заменено",
"searchPlaceholder": "Фильтровать по имени приложения",
"status": "Сведения о состоянии",
"statusDetails": "Состояние",
"supersedenceName": "Имя замены"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Зависимость дочернего элемента",
"indirectSupersedence": "Нет прямой связи",
"supersedenceAncestors": "Заменяет",
"supersedenceDescendants": "Заменено"
},
"ConfigureEmail": {
"title": "Параметры учетной записи электронной почты"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Подпись приложения по умолчанию указывает, будет ли приложение использовать \"Получить Outlook для Android\" в качестве подписи по умолчанию во время написания сообщения. Если параметр отключен, подпись по умолчанию не будет использоваться, однако пользователи могут добавить собственную подпись.\r\n\r\nЕсли задано значение \"Не настроено\", параметр приложения по умолчанию включен.",
"iOS": "Подпись приложения по умолчанию указывает, будет ли приложение использовать \"Получить Outlook для iOS\" в качестве подписи по умолчанию во время написания сообщения. Если параметр отключен, подпись по умолчанию не будет использоваться, однако пользователи могут добавить собственную подпись.\r\n\r\nЕсли задано значение \"Не настроено\", параметр приложения по умолчанию включен."
},
"title": "Подпись приложения по умолчанию"
},
"OfficeFeedReplies": {
"title": "Веб-канал обнаружения",
"tooltip": "Веб-канал обнаружения отображает ваши самые часто используемые файлы Office. По умолчанию он включен, когда для пользователя включена служба Delve. Если не настроить канал, по умолчанию для приложения используется значение \"Включено\"."
},
"OrganizeMailByThread": {
"title": "Сообщения в цепочках",
"tooltip": "По умолчанию в Outlook используется режим объединения бесед в представление беседы с несколькими цепочками. Если этот параметр отключен, Outlook будет отображать все сообщения по отдельности и не будет группировать их по цепочкам."
},
"PlayMyEmails": {
"title": "Воспроизвести мои письма",
"tooltip": "По умолчанию функция \"Воспроизвести мои письма\" отключена в приложении, но доступна соответствующим пользователям в виде баннера в папке \"Входящие\". Если параметру задано значение \"Отключено\", функция будет недоступна соответствующим пользователям в приложении. Пользователи могут вручную включить эту функцию в приложении, даже если она отключена. Если параметру задано значение \"Не настроено\", по умолчанию используется значение параметра \"Включено\", и функция будет доступна соответствующим пользователям."
},
"SuggestedReplies": {
"title": "Предлагаемые ответы",
"tooltip": "Outlook может предлагать варианты ответов в нижней части при открытии сообщения. Выбрав предложенный ответ, вы можете изменить его перед отправкой."
},
"SyncCalendars": {
"title": "Синхронизация календарей",
"tooltip": "Укажите, могут ли пользователи синхронизировать свой календарь Outlook с собственным приложением календаря и базой данных."
},
"TextPredictions": {
"title": "Прогнозирование текста",
"tooltip": "Outlook может предлагать слова и фразы при создании сообщений. Если Outlook предлагает вариант, проведите, чтобы принять его. Если задано значение \"Не настроено\", используется параметр приложения по умолчанию со значением \"Включено\"."
"SupersededReplaced": {
"no": "Нет",
"yes": "Да"
},
"ThemesEnabled": {
"title": "Темы включены",
"tooltip": "Укажите, разрешено ли пользователю применять настраиваемую визуальную тему."
}
},
"Tabs": {
"chart": "Диаграмма",
"dependency": "Зависимость",
"label": "Представление: ",
"supersedence": "Замена",
"table": "Таблица"
},
"dependencyGraphAriaLabel": "Диаграмма зависимости приложений",
"supersedenceGraphAriaLabel": "Диаграмма замены приложений"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Выберите сценарий обнаружения.",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "Добавление сценария PowerShell",
"customAttributeObjectName": "Настраиваемый атрибут",
"editPowershellScriptFlowSectionName": "Изменение сценария PowerShell",
"enforceSignatureCheckInfoBalloonContent": "Сценарий должен быть подписан доверенным издателем. По умолчанию предупреждения и приглашения не отображаются, а сценарий не блокируется при выполнении.",
"enforceSignatureCheckInfoBalloonContent": "Сценарий должен быть подписан надежным издателем. Это значение по умолчанию.",
"enforceSignatureCheckLabel": "Принудительно проверить подпись сценария",
"executionFrequencyLabel": "Частота выполнения",
"failedToSavePolicy": "Не удалось сохранить {0}",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Просмотреть и добавить ",
"runAs64BitInfoBalloonContent": "Скрипт будет запускаться на 64-разрядном узле PowerShell при 64-разрядной архитектуре клиента. По умолчанию скрипт будет запускаться на 32-разрядном узле PowerShell.",
"runAs64BitLabel": "Запуск скрипта на 64-разрядном узле PowerShell",
"scriptContextInfoBalloonContent": "Сценарий выполняется с учетными данными пользователей на клиентском компьютере. По умолчанию сценарий выполняется в контексте локального компьютера.",
"scriptContextInfoBalloonContent": "Сценарий выполняется с учетными данными пользователей на клиентском компьютере. По умолчанию сценарий выполняется в контексте пользователя.",
"scriptContextLabel": "Запускать сценарий по учетным данным",
"scriptsettingsTabHeader": "Параметры сценариев",
"settingsHeader": "Выберите сценарий для настройки",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Постоянное VPN-подключение",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Проверка базовой целостности и целостности устройства",
"androidPlayIntegrityVerdictBasicIntegrity": "Проверка базовой целостности",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Доверенные сертификаты больше не могут быть установлены на устройствах с Android 11 или более поздними версиями за исключением устройств Samsung Knox. Если вы используете профили сертификатов SCEP, вам по-прежнему необходимо создать и развернуть профиль доверенного сертификата, а затем связать его с профилем сертификата SCEP, но при этом нужно вручную передать доверенный корневой сертификат на эти устройства.",
"androidTenAndAbovePasswordHeader": "Android 10 и более поздних версий",
"androidTenAndAbovePasswordHeaderDescription": "Эти параметры применяются к устройствам с Android 10 или более поздних версий.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Принудительное автоматическое обновление устройства для применения обновлений системы безопасности и улучшений.",
"complianceUpdatesRequireAutomaticUpdatesName": "Запрашивать автоматические обновления у Майкрософт",
"complianceWin10RequiredPasswordTypeDescription": "Этот параметр определяет тип требуемого пароля или ПИН-кода.<br>\r\nПо умолчанию для устройства (требуется пароль, числовой или буквенно-цифровой ПИН-код)<br>\r\nБуквенно-цифровой (требуется пароль или буквенно-цифровой ПИН-код)<br>\r\nЧисловой (требуется пароль или числовой ПИН-код)<br>\r\nРекомендуется следующее: требуемый тип пароля — буквенно-цифровой, сложность пароля — требовать цифры и строчные буквы.",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 или 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 и 11",
"complianceWindows11DeviceHealthAttestationHeader": "Только Windows 11",
"complianceWindowsDefenderHeader": "Защитник",
"complianceWindowsDefenderMinimumVersionDescription": "Минимальная версия Microsoft Defender (например, 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Минимальная версия антивредоносной программы в Microsoft Defender",
"complianceWindowsDeviceHealthAttestationHeader": равила оценки службы аттестации (Майкрософт)<br><br>Используйте эти правила, чтобы подтвердить включение защитных мер на устройстве во время загрузки. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Подробнее об этих правилах</a>",
"complianceWindowsDeviceHealthAttestationHeader": араметры оценки службы аттестации (Майкрософт)<br><br>Используйте эти параметры, чтобы подтвердить включение защитных мер на устройстве во время загрузки. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Подробнее</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Выберите самую последнюю допустимую версию ОС для мобильного устройства. Версия операционной системы указывается в формате \"основной номер.дополнительный номер.сборка.редакция\".",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Выберите самую раннюю допустимую версию ОС для мобильного устройства. Версия операционной системы указывается в формате \"основной номер.дополнительный номер.сборка.редакция\".",
"complianceWindowsOsVersionRestrictionHeaderDescription": "Версия операционной системы указывается в формате \"основной номер.дополнительный номер.сборка.редакция\". ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "Защита на уровне 95-го процентиля",
"basicDataProtectionGuidedString": "Базовая защита данных — обеспечивает необходимость ввода ПИН-кода или биометрической проверки подлинности для доступа пользователей к данным рабочей или учебной учетной записи, выполняет шифрование этих данных и позволяет администраторам выполнять выборочное стирание данных в случае необходимости. Для устройств Android базовая защита данных также обеспечивает совместимость устройства со службами Google и позволяет использовать проверку приложений Google.",
"basicIntegrity": "Базовая целостность",
"basicIntegrityAndCertifiedDevices": "Базовая целостность и сертифицированные устройства",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Таймаут неактивности",
"bioPinInactiveTimeoutTooltip": "Использовать ПИН-код, а не биометрические данные, через (мин).",
"block": "Блокировать",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Ограничение на количество символов для копирования и вставки в любом приложении",
"camera": "Камера",
"checkInCountColumnTitle": "Число синхронизаций",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Записано после изменения",
"checkedInAppNameColumnTitle": "ПРИЛОЖЕНИЕ",
"checkedInButNotSynced": "Зарегистрировано. При следующей синхронизации это приложение получит {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">Не могу найти нужное приложение</a></p><p><a data-bind=\"fxclick: onClickLob\">Мне нужно добавить собственное бизнес-приложение</a></p>",
"guidedTemplate2": "Мы запросим у вас уровень защиты, который нужно развернуть для пользователей. Дополнительные сведения: <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Использование политик защиты приложений на платформе защиты данных. </a>",
"guidediOSLabel": "Защита приложений iOS",
"hardwareBackedKey": "Аппаратный ключ",
"healthCheck": "Проверки работоспособности",
"helpAndSupport": "Справка и поддержка",
"hideOverrides": "Скрыть переопределения",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Платформа",
"platformDropDownLabel": "Платформа",
"platformVersion": "Версия платформы",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Исправьте ошибки в следующих разделах!",
"pleaseSelectAtLeastOneFileError": "Прежде чем продолжить, выберите по меньшей мере один файл",
"policies": "Политики",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Требовать блокировки устройства",
"requireThreatScanOnApps": "Требовать проверку угроз в приложениях",
"requiredField": "Это поле не может быть пустым.",
"requiredSafetyNetEvaluationType": "Требуемый тип оценки SafetyNet",
"requiredSettings": "Обязательные параметры",
"resetPin": "Сбросить ПИН-код",
"resourceManagement": "Управление ресурсами",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Любое приложение",
"restrictWebContentOption2": "{0}: разрешить веб-ссылки в любом приложении.",
"rootCertificate": "Корневой сертификат",
"safetyNetDeviceAttestation": "Аттестация устройств SafetyNet",
"samsungKnoxAttestationRequired": "Аттестация устройства Samsung Knox",
"saveAppsNotificationText": "Идет сохранение выбранных приложений",
"saveChangesCommandText": "Сохранить",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Режим фильтра",
"assignmentToast": "Уведомления для конечных пользователей",
"assignmentTypeTableHeader": "Тип назначения",
"autoUpdate": "Автоматическое обновление",
"deadlineTimeColumnLabel": "Крайний срок установки",
"deliveryOptimizationPriorityHeader": "Приоритет оптимизации доставки",
"groupTableHeader": "Группа",
@@ -8514,6 +8496,10 @@
"showAll": "Показывать все всплывающие уведомления",
"showReboot": "Показывать всплывающие уведомления о перезапуске компьютера"
},
"AutoUpdateSupersededApps": {
"enabled": "Включено",
"notConfigured": "Не настроено"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Фон",
"displayText": "Скачивание содержимого в {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "Для элемента управления сеансом \"Частота входа (каждый раз)\" требуется выбрать \"Все облачные приложения\" или специально поддерживаемые приложения",
"allDayCheckboxLabel": "Весь день",
"allDevicePlatforms": "Любое устройство",
"allGuestUserInfoContent": "Включает гостей Azure AD B2B, но не гостей SharePoint B2B",
"allGuestUserInfoContent": "Включает гостей Microsoft Entra B2B, но не включает гостей SharePoint B2B",
"allGuestUserLabel": "Все гости и внешние пользователи",
"allRiskLevelsOption": "Все уровни рисков",
"allTrustedLocationLabel": "Все надежные расположения",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Дополнительные сведения о требовании совместимых устройств.",
"controlsDeviceComplianceInfoBubble": "Устройство должно соответствовать политике Intune. Если устройство не соответствует ей, пользователя попросят привести его в соответствие с требованиями.",
"controlsDomainJoinedAriaLabel": "Дополнительные сведения о требовании гибридных устройств, присоединенных к Azure AD.",
"controlsDomainJoinedInfoBubble": "Устройства должны быть устройствами с гибридным присоединением к Azure AD.",
"controlsDomainJoinedAriaLabel": "Подробнее о требовании устройства с гибридным присоединением к Microsoft Entra.",
"controlsDomainJoinedInfoBubble": "Устройства должны иметь гибридное присоединение к Microsoft Entra.",
"controlsMamAriaLabel": "Дополнительные сведения об обязательном использовании утвержденных клиентских приложений.",
"controlsMamInfoBubble": "Устройство должно использовать следующие утвержденные клиентские приложения.",
"controlsMfaInfoBubble": "Пользователь должен выполнить дополнительные требования безопасности, такие как телефонный звонок, SMS.",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Устройство, отмеченное как соответствующее требованиям",
"deviceStateCompliantInfoContent": "Устройства, совместимые с Intune, будут исключены из оценки этой политики, поэтому, например, если политика блокирует доступ, она заблокирует все устройства, кроме совместимых с Intune.",
"deviceStateConditionConfigureInfoContent": "Настроить политику на основе состояния устройства",
"deviceStateConditionSelectorInfoContent": "Определяет состояние устройства, с которого входит пользователь: \\\"с гибридным присоединением к Azure AD\\\" или \\\"помеченное как соответствующее требованиям\\\".\n Этот параметр не рекомендуется. Вместо этого используйте \\\"{1}\\\".",
"deviceStateConditionSelectorInfoContent": "Обозначает состояние устройства, с которого входит пользователь: с гибридным присоединением к Microsoft Entra или помечено как соответствующее требованиям.\n Этот параметр больше не рекомендуется к использованию. Используйте вместо него \"{1}\".",
"deviceStateConditionSelectorLabel": "Состояние устройства (не рекомендуется)",
"deviceStateDomainJoined": "Устройство с гибридным присоединением к Azure AD",
"deviceStateDomainJoinedInfoContent": "Устройства с гибридным присоединением к Azure AD не будут проверяться на соответствие этой политике. Например, если политика блокирует доступ, она будет делать это для всех устройств, кроме этих.",
"deviceStateDomainJoined": "Устройство с гибридным присоединением к Microsoft Entra",
"deviceStateDomainJoinedInfoContent": "Устройства с гибридным присоединением к Microsoft Entra не будут проверяться на соответствие этой политике. Например, если политика блокирует доступ, она будет делать это для всех устройств, кроме устройств с гибридным присоединением к Microsoft Entra.",
"deviceStateDomainJoinedInfoLinkText": "Дополнительные сведения.",
"deviceStateExcludeDescription": "Выберите условие состояния устройства, используемое для исключения устройств из политики.",
"deviceStateIncludeAndExcludeOneLabel": "{0} и исключить {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Только Exchange ActiveSync с поддерживаемыми платформами",
"excludeAllTrustedLocationSelectorText": "все надежные расположения",
"featureRequiresP2": "Для этой функции требуется лицензия Azure AD Premium 2.",
"featureRequiresP2": "Для этой функции требуется лицензия Microsoft Entra ID P2.",
"friday": "Пятница",
"grantControls": "Предоставить управление",
"gridNetworkTrusted": "Надежный",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Выбранные приватные каналы",
"lowRisk": "Низкий",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "Для управления политиками условного доступа вашей организации требуется Azure AD Premium P1 или P2.",
"managePoliciesLicenseText": "Для управления политиками условного доступа вашей организации требуется Microsoft Entra ID P1 или P2.",
"manageSecurityDefaultsAriaLabel": "Управление параметрами безопасности по умолчанию.",
"markAsTrustedCheckboxInfoBalloonContent": "Вход из надежного расположения снижает риск входа пользователя. Отмечайте это расположение как надежное, только если указанные диапазоны IP-адресов в организации хорошо известны и получены из достоверных источников.",
"markAsTrustedCheckboxLabel": "Отметить как надежное расположение",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Страны/регионы",
"namedLocationTypeLabel": "Задайте расположение, используя:",
"namedLocationUpsellBanner": "Использовать это представление не рекомендуется. Перейти к новому улучшенному представлению \"Именованные расположения\".",
"namedLocationsHelpDescription": "Именованные расположения используются отчетами о безопасности Microsoft Azure AD для сокращения числа ложноположительных результатов, а также политиками условного доступа Microsoft Azure AD.\n[Подробнее][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Именованные расположения используются отчетами о безопасности Microsoft Entra ID для сокращения числа ложноположительных результатов, а также политиками условного доступа Microsoft Entra.\n[Подробнее][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Добавьте новый диапазон IP-адресов (например: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "Нужно выбрать по меньшей мере одну страну или регион",
"namedNetworkDeleteCommand": "Удалить",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Новое именованное расположение",
"namedNetworksConditionHelpDescription": "Управление доступом пользователей на основе физического расположения.\n[Дополнительные сведения][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "Исключены: {0} и {1}",
"namedNetworksHelpDescription": "Именованные расположения используются отчетами о безопасности Microsoft Azure AD для сокращения числа ложноположительных результатов, а также политиками условного доступа Microsoft Azure AD.\n[Подробнее][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Именованные расположения используются отчетами о безопасности Microsoft Entra ID для сокращения числа ложноположительных результатов, а также политиками условного доступа Microsoft Entra.\n[Подробнее][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "Включено: {0}",
"namedNetworksNone": "Нет именованных расположений",
"namedNetworksTitle": "Настройка расположений",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Только глобальные администраторы могут сохранить эту политику.",
"or": "{0} ИЛИ {1} ",
"pickerDoneCommand": "Готово",
"policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium позволяет вам создавать собственные политики под конкретные области: облачные приложения, риски входа и платформы устройств",
"policiesBladeAdPremiumUpsellBannerText": "Microsoft Entra ID Premium позволяет вам создавать собственные политики под конкретные условия: облачные приложения, риски входа и платформы устройств",
"policiesBladeTitle": "Политики",
"policiesBladeTitleWithAppName": "Политик: {0}",
"policiesDisabledBannerText": "Создание и изменение политик запрещено для приложений, с которыми связан атрибут входа.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Расположение, определенное при помощи диапазона IP-адресов, из которого пользователь выполняет вход.",
"policyConditionLocationPreview": "Расположения (предварительная версия)",
"policyConditionSigninRisk": "Риск при входе",
"policyConditionSigninRiskDescription": "Вероятность входа по чужим учетным данным. Уровень риска может быть высоким, средним или низким. Требуется лицензия Azure AD Premium 2.",
"policyConditionSigninRiskDescription": "Вероятность входа по чужим учетным данным. Уровень риска может быть высоким, средним или низким. Требуется лицензия Microsoft Entra ID P2.",
"policyConditionUserRisk": "Риск пользователя",
"policyConditionUserRiskDescription": "Настройте уровни риска пользователей, необходимые для применения политики.",
"policyConditioniClientApp": "Клиентские приложения",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Заблокируйте доступ или укажите дополнительные требования, которые необходимо выполнить для разрешения доступа.",
"policyControlMfaChallengeDisplayedName": "Требовать многофакторную проверку подлинности",
"policyControlRequireCompliantAppDisplayedName": "Требование политики защиты приложений",
"policyControlRequireDomainJoinedDisplayedName": "Требовать устройство с гибридным присоединением к Azure AD",
"policyControlRequireDomainJoinedDisplayedName": "Потребовать устройство с гибридным присоединением к Microsoft Entra",
"policyControlRequireMamDisplayedName": "Требовать утвержденное клиентское приложение",
"policyControlRequiredPasswordChangeDisplayedName": "Требовать изменения пароля",
"policyControlSelectAuthStrength": "Требуемая надежность проверки подлинности",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "Политика {0} обновлена. Она будет включена через несколько минут, если параметр \"Включить политику\" имеет значение \"Включен\".",
"policyUpdateSuccessTitle": "{0} успешно обновлено",
"primaryCol": "Основной",
"privateLinkLabel": "Приватный канал Azure AD",
"privateLinkLabel": "Приватный канал Microsoft Entra ID",
"reportOnlyInfoBox": "Режим \"Только отчет\": при входе выполняется оценка соответствия политикам и запись в журнал, но пользователи никак не затрагиваются.",
"requireAllControlsText": "Требовать все выбранные элементы управления",
"requireCompliantDevice": "Требовать соответствующее устройство",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Требовать многофакторную проверку подлинности для конфиденциальных приложений всегда или только при использовании вне сети организации.",
"upsellAppsTitle": "Защита приложений",
"upsellBannerText": "Получить бесплатную пробную версию уровня \"Премиум\" для использования этой возможности",
"upsellDataDescription": "Требовать, чтобы устройство было помечено как соответствующее или являлось устройствами с гибридным присоединением к Azure AD, чтобы получить доступ к ресурсам компании.",
"upsellDataDescription": "Требовать, чтобы для получения доступа к ресурсам компании устройство было помечено как соответствующее требованиям или являлось устройством с гибридным присоединением к Microsoft Entra.",
"upsellDataTitle": "Защита данных",
"upsellDescription": "Условный доступ предоставляет механизмы управления и защиту, необходимые для обеспечения безопасности данных организации, а также позволяет пользователям наиболее эффективно работать с любого устройства. Например, вы можете разрешить доступ только при работе из локальной сети или запретить доступ устройствам, которые не соответствуют политикам.",
"upsellRiskDescription": "Требовать многофакторную проверку подлинности для событий риска, обнаруженных системой машинного обучения Майкрософт.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "Сертификат {0} успешно обновлен.",
"vpnCertUpdateSuccessTitle": "{0} успешно обновлено",
"vpnFeatureInfo": "Чтобы получить дополнительные сведения о подключении VPN и условном доступе, щелкните здесь.",
"vpnFeatureWarning": "Сертификат VPN, созданный на портале Azure, будет сразу же использоваться в Azure AD для выдачи краткосрочных сертификатов VPN-клиенту. Чтобы избежать проблем с проверкой учетных данных VPN-клиента, необходимо немедленно развернуть сертификат VPN на VPN-сервере.",
"vpnFeatureWarning": "После создания на портале сертификата VPN Microsoft Entra ID начнет использовать его для выдачи краткосрочных сертификатов VPN-клиенту. Чтобы избежать проблем с проверкой учетных данных VPN-клиента, необходимо немедленно развернуть сертификат VPN на VPN-сервере.",
"vpnMenuText": "Подключение VPN",
"vpncertDropdownDefaultOption": "Длительность",
"vpncertDropdownInfoBalloonContent": "Выберите срок действия создаваемого сертификата",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Настраиваемая роль Intune",
"customRole": "Настраиваемая роль"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} включено как минимум в один набор политик. Если вы удалите {0}, вы больше не сможете назначать его через эти наборы. Все равно удалить?",
"contentWithError": "{0}, возможно, включено как минимум в один набор политик. Если вы удалите {0}, вы больше не сможете назначать его через эти наборы. Все равно удалить?",
"header": "Вы действительно хотите удалить это ограничение?"
},
"DeviceLimit": {
"description": "Укажите максимальное число устройств, которые может зарегистрировать пользователь.",
"header": "Ограничения числа устройств",
"info": "Определяет, сколько устройств может зарегистрировать каждый пользователь."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Должна использоваться версия 1.0 или более поздняя.",
"android": "Введите допустимый номер версии. Например, 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Введите допустимый номер версии. Например, 5.0, 5.1.1",
"iOS": "Введите допустимый номер версии. Например, 9.0, 10.0, 9.0.2",
"mac": "Введите допустимый номер версии. Примеры: 10, 10.10, 10.10.1",
"min": "Минимум не может быть меньше {0}",
"minMax": "Минимальная версия не может быть больше максимальной.",
"windows": "Требуется 10.0 или более поздняя версия. Оставьте поле пустым, чтобы разрешить устройства с версией 8.1.",
"windowsMobile": "Требуется 10.0 или более поздняя версия. Оставьте поле пустым, чтобы разрешить устройства с версией 8.1."
},
"allPlatformsBlocked": "Все платформы устройств заблокированы. Разрешите регистрацию платформ, чтобы включить их конфигурацию.",
"blockManufacturerPlaceHolder": "Имя изготовителя",
"blockManufacturersHeader": "Заблокированные производители",
"cannotRestrict": "Ограничение не поддерживается",
"configurationDescription": "Укажите ограничения конфигурации платформы, которые должны быть соблюдены при регистрации устройства. Для ограничения устройств после регистрации используйте политики соответствия. Формат версии: основная.дополнительная.сборка. Ограничения версии относятся только к устройствам, зарегистрированным на корпоративном портале. Intune по умолчанию классифицирует устройства как находящиеся в личном владении. Для их классификации как корпоративных нужны дополнительные действия.",
"configurationDescriptionLabel": "Дополнительные сведения о настройке ограничений регистрации",
"configurations": "Настройка платформ",
"deviceManufacturer": "Производитель устройства",
"header": "Ограничения по типу устройств",
"info": "Определяет, какие платформы, версии и типы управления можно регистрировать.",
"manufacturer": "Производитель",
"max": "Макс.",
"maxVersion": "Максимальная версия",
"min": "Min",
"minVersion": "Минимальная версия",
"newPlatforms": "Вы разрешили использование новых платформ. При необходимости обновите конфигурации платформ.",
"personal": "Личные",
"platform": "Платформа",
"platformDescription": "Вы можете разрешить регистрацию для следующих платформ. Блокируйте только те платформы, которые не будете поддерживать. Для разрешенных платформ можно настроить дополнительные ограничения развертывания.",
"platformSettings": "Параметры платформы",
"platforms": "Выбор платформ",
"platformsSelected": "Выбрано платформ: {0}",
"type": "Тип",
"versions": "версии",
"versionsRange": "Разрешите диапазон минимальных и максимальных значений:",
"windowsTooltip": "Ограничивает регистрацию через Управление мобильными устройствами. Установка с использованием агента для ПК не ограничивается. Поддерживаются только версии Windows 10 и Windows 11. Чтобы разрешить Windows 8.1, оставьте поле версий пустым."
},
"Priority": {
"saved": "Приоритеты ограничений успешно сохранены."
},
"Row": {
"announce": "Приоритет: {0}, имя: {1}, назначено: {2}"
},
"Table": {
"deployed": "Развернуто",
"name": "Имя",
"priority": "Приоритет"
},
"Type": {
"limit": "Ограничение на число устройств",
"type": "Ограничение на типы устройств"
},
"allUsers": "Все пользователи",
"androidRestrictions": "Ограничения Android",
"create": "Создать ограничение",
"defaultLimitDescription": "Это — ограничение на максимальное число устройств по умолчанию, применяемое с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
"defaultTypeDescription": "Это — ограничение на тип устройств по умолчанию, применяемое с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
"defaultWhfbDescription": "Это конфигурация Windows Hello для бизнеса по умолчанию, применяемая с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
"deleteMessage": "На затронутых пользователей будет распространяться следующее ограничение с самым высоким приоритетом или ограничение по умолчанию, если другие ограничения не назначены.",
"deleteTitle": "Вы действительно хотите удалить ограничение {0}?",
"descriptionHint": "Короткий текст, содержащий описание бизнес-использования или уровня ограничения, задаваемых параметрами ограничения.",
"edit": "Изменить ограничение",
"info": "Устройство должно соответствовать приоритетным ограничениям регистрации, назначенным его пользователю. Вы можете перетаскивать ограничения, чтобы изменять их приоритет. Ограничения по умолчанию имеют для всех пользователей самый низкий приоритет, и они предназначены для регистрации без пользователей. Вы можете редактировать ограничения по умолчанию, но не можете их удалять.",
"iosRestrictions": "Ограничения iOS",
"mDM": "MDM",
"macRestrictions": "Ограничения macOS",
"maxVersion": "Максимальная версия",
"minVersion": "Минимальная версия",
"nameHint": "Это основной видимый атрибут для идентификации набора ограничений.",
"noAssignmentsStatusBar": "Назначьте ограничение по меньшей мере одной группе. Щелкните \"Свойства\".",
"notFound": "Ограничение не найдено. Возможно, оно уже удалено.",
"personallyOwned": "Личные устройства",
"restriction": "Ограничение",
"restrictionLowerCase": "ограничение",
"restrictionType": "Тип ограничения",
"selectType": "Выбрать тип ограничения",
"selectValidation": "Выберите платформу",
"typeHint": "Выберите \"Ограничение на типы устройств\", чтобы ограничить их свойства. Выберите \"Ограничение на число устройств\", чтобы ограничить число устройств на пользователя.",
"typeRequired": "Требуется тип ограничения.",
"winPhoneRestrictions": "Ограничения Windows Phone",
"windowsECv1Info": "Старые ограничения регистрации нельзя изменять или перераспределять. Их можно только удалять.",
"windowsECv2Info": "Вы можете задать приоритет для ограничений регистрации, перетащив их. Просмотрите ограничения по умолчанию и предварительно настроенные ограничения ниже. Все новые ограничения регистрации будут иметь более высокий приоритет, чем стандартные и предварительно настроенные ограничения.",
"windowsRestrictions": "Ограничения Windows",
"windowsRestrictionsPreview": "Ограничения Windows на основе фильтров (предварительная версия)"
},
"InstallContextType": {
"device": "Устройство",
"deviceContext": "Контекст устройства",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Синтаксис правила",
"filters": "Фильтры"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} включено как минимум в один набор политик. Если вы удалите {0}, вы больше не сможете назначать его через эти наборы. Все равно удалить?",
"contentWithError": "{0}, возможно, включено как минимум в один набор политик. Если вы удалите {0}, вы больше не сможете назначать его через эти наборы. Все равно удалить?",
"header": "Вы действительно хотите удалить это ограничение?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Разрешить пользователю менять настройку",
"tooltip": "Укажите, разрешено ли пользователю менять настройку."
},
"AllowWorkAccounts": {
"title": "Разрешение только рабочих и учебных учетных записей",
"tooltip": " При включении этого параметра пользователи не смогут добавить личный адрес электронной почты и учетные записи хранения в Outlook. Если у пользователя добавлена в Outlook личная учетная запись, ему потребуется ее удалить. Если он этого не сделает, добавить рабочую или учебную учетную запись будет невозможно."
},
"BlockExternalImages": {
"title": "Блокировка внешних изображений",
"tooltip": "При блокировке внешних изображений приложение не позволит скачивать размещенные в Интернете изображения, встроенные в текст сообщения. Если не настроить эту функцию, по умолчанию она будет для приложения отключена."
},
"ConfigureEmail": {
"title": "Параметры учетной записи электронной почты"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Подпись приложения по умолчанию указывает, будет ли приложение использовать \"Получить Outlook для Android\" в качестве подписи по умолчанию во время написания сообщения. Если параметр отключен, подпись по умолчанию не будет использоваться, однако пользователи могут добавить собственную подпись.\r\n\r\nЕсли задано значение \"Не настроено\", параметр приложения по умолчанию включен.",
"iOS": "Подпись приложения по умолчанию указывает, будет ли приложение использовать \"Получить Outlook для iOS\" в качестве подписи по умолчанию во время написания сообщения. Если параметр отключен, подпись по умолчанию не будет использоваться, однако пользователи могут добавить собственную подпись.\r\n\r\nЕсли задано значение \"Не настроено\", параметр приложения по умолчанию включен."
},
"title": "Подпись приложения по умолчанию"
},
"OfficeFeedReplies": {
"title": "Веб-канал обнаружения",
"tooltip": "Веб-канал обнаружения отображает ваши самые часто используемые файлы Office. По умолчанию он включен, когда для пользователя включена служба Delve. Если не настроить канал, по умолчанию для приложения используется значение \"Включено\"."
},
"OrganizeMailByThread": {
"title": "Сообщения в цепочках",
"tooltip": "По умолчанию в Outlook используется режим объединения бесед в представление беседы с несколькими цепочками. Если этот параметр отключен, Outlook будет отображать все сообщения по отдельности и не будет группировать их по цепочкам."
},
"PlayMyEmails": {
"title": "Воспроизвести мои письма",
"tooltip": "По умолчанию функция \"Воспроизвести мои письма\" отключена в приложении, но доступна соответствующим пользователям в виде баннера в папке \"Входящие\". Если параметру задано значение \"Отключено\", функция будет недоступна соответствующим пользователям в приложении. Пользователи могут вручную включить эту функцию в приложении, даже если она отключена. Если параметру задано значение \"Не настроено\", по умолчанию используется значение параметра \"Включено\", и функция будет доступна соответствующим пользователям."
},
"SuggestedReplies": {
"title": "Предлагаемые ответы",
"tooltip": "Outlook может предлагать варианты ответов в нижней части при открытии сообщения. Выбрав предложенный ответ, вы можете изменить его перед отправкой."
},
"SyncCalendars": {
"title": "Синхронизация календарей",
"tooltip": "Укажите, могут ли пользователи синхронизировать свой календарь Outlook с собственным приложением календаря и базой данных."
},
"TextPredictions": {
"title": "Прогнозирование текста",
"tooltip": "Outlook может предлагать слова и фразы при создании сообщений. Если Outlook предлагает вариант, проведите, чтобы принять его. Если задано значение \"Не настроено\", используется параметр приложения по умолчанию со значением \"Включено\"."
},
"DeviceLimit": {
"description": "Укажите максимальное число устройств, которые может зарегистрировать пользователь.",
"header": "Ограничения числа устройств",
"info": "Определяет, сколько устройств может зарегистрировать каждый пользователь."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Должна использоваться версия 1.0 или более поздняя.",
"android": "Введите допустимый номер версии. Например, 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Введите допустимый номер версии. Например, 5.0, 5.1.1",
"iOS": "Введите допустимый номер версии. Например, 9.0, 10.0, 9.0.2",
"mac": "Введите допустимый номер версии. Примеры: 10, 10.10, 10.10.1",
"min": "Минимум не может быть меньше {0}",
"minMax": "Минимальная версия не может быть больше максимальной.",
"windows": "Требуется 10.0 или более поздняя версия. Оставьте поле пустым, чтобы разрешить устройства с версией 8.1.",
"windowsMobile": "Требуется 10.0 или более поздняя версия. Оставьте поле пустым, чтобы разрешить устройства с версией 8.1."
},
"allPlatformsBlocked": "Все платформы устройств заблокированы. Разрешите регистрацию платформ, чтобы включить их конфигурацию.",
"blockManufacturerPlaceHolder": "Имя изготовителя",
"blockManufacturersHeader": "Заблокированные производители",
"cannotRestrict": "Ограничение не поддерживается",
"configurationDescription": "Укажите ограничения конфигурации платформы, которые должны быть соблюдены при регистрации устройства. Для ограничения устройств после регистрации используйте политики соответствия. Формат версии: основная.дополнительная.сборка. Ограничения версии относятся только к устройствам, зарегистрированным на корпоративном портале. Intune по умолчанию классифицирует устройства как находящиеся в личном владении. Для их классификации как корпоративных нужны дополнительные действия.",
"configurationDescriptionLabel": "Дополнительные сведения о настройке ограничений регистрации",
"configurations": "Настройка платформ",
"deviceManufacturer": "Производитель устройства",
"header": "Ограничения по типу устройств",
"info": "Определяет, какие платформы, версии и типы управления можно регистрировать.",
"manufacturer": "Производитель",
"max": "Макс.",
"maxVersion": "Максимальная версия",
"min": "Min",
"minVersion": "Минимальная версия",
"newPlatforms": "Вы разрешили использование новых платформ. При необходимости обновите конфигурации платформ.",
"personal": "Личные",
"platform": "Платформа",
"platformDescription": "Вы можете разрешить регистрацию для следующих платформ. Блокируйте только те платформы, которые не будете поддерживать. Для разрешенных платформ можно настроить дополнительные ограничения развертывания.",
"platformSettings": "Параметры платформы",
"platforms": "Выбор платформ",
"platformsSelected": "Выбрано платформ: {0}",
"type": "Тип",
"versions": "версии",
"versionsRange": "Разрешите диапазон минимальных и максимальных значений:",
"windowsTooltip": "Ограничивает регистрацию через Управление мобильными устройствами. Установка с использованием агента для ПК не ограничивается. Поддерживаются только версии Windows 10 и Windows 11. Чтобы разрешить Windows 8.1, оставьте поле версий пустым."
},
"Priority": {
"saved": "Приоритеты ограничений успешно сохранены."
},
"Row": {
"announce": "Приоритет: {0}, имя: {1}, назначено: {2}"
},
"Table": {
"deployed": "Развернуто",
"name": "Имя",
"priority": "Приоритет"
},
"Type": {
"limit": "Ограничение на число устройств",
"type": "Ограничение на типы устройств"
},
"allUsers": "Все пользователи",
"androidRestrictions": "Ограничения Android",
"create": "Создать ограничение",
"defaultLimitDescription": "Это — ограничение на максимальное число устройств по умолчанию, применяемое с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
"defaultTypeDescription": "Это — ограничение на тип устройств по умолчанию, применяемое с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
"defaultWhfbDescription": "Это конфигурация Windows Hello для бизнеса по умолчанию, применяемая с наименьшим приоритетом ко всем пользователям вне зависимости от группы.",
"deleteMessage": "На затронутых пользователей будет распространяться следующее ограничение с самым высоким приоритетом или ограничение по умолчанию, если другие ограничения не назначены.",
"deleteTitle": "Вы действительно хотите удалить ограничение {0}?",
"descriptionHint": "Короткий текст, содержащий описание бизнес-использования или уровня ограничения, задаваемых параметрами ограничения.",
"edit": "Изменить ограничение",
"info": "Устройство должно соответствовать приоритетным ограничениям регистрации, назначенным его пользователю. Вы можете перетаскивать ограничения, чтобы изменять их приоритет. Ограничения по умолчанию имеют для всех пользователей самый низкий приоритет, и они предназначены для регистрации без пользователей. Вы можете редактировать ограничения по умолчанию, но не можете их удалять.",
"iosRestrictions": "Ограничения iOS",
"mDM": "MDM",
"macRestrictions": "Ограничения MacOS",
"maxVersion": "Максимальная версия",
"minVersion": "Минимальная версия",
"nameHint": "Это основной видимый атрибут для идентификации набора ограничений.",
"noAssignmentsStatusBar": "Назначьте ограничение по меньшей мере одной группе. Щелкните \"Свойства\".",
"notFound": "Ограничение не найдено. Возможно, оно уже удалено.",
"personallyOwned": "Личные устройства",
"restriction": "Ограничение",
"restrictionLowerCase": "ограничение",
"restrictionType": "Тип ограничения",
"selectType": "Выбрать тип ограничения",
"selectValidation": "Выберите платформу",
"typeHint": "Выберите \"Ограничение на типы устройств\", чтобы ограничить их свойства. Выберите \"Ограничение на число устройств\", чтобы ограничить число устройств на пользователя.",
"typeRequired": "Требуется тип ограничения.",
"winPhoneRestrictions": "Ограничения Windows Phone",
"windowsRestrictions": "Ограничения Windows"
},
"ThemesEnabled": {
"title": "Темы включены",
"tooltip": "Укажите, разрешено ли пользователю применять настраиваемую визуальную тему."
}
},
"Titles": {
"ChromeOs": {
"devices": "Устройства Chrome OS (предварительная версия)"
@@ -12507,6 +12558,7 @@
"user": "Пользователь",
"userExecutionStatus": "Состояние пользователя",
"wdacSupplementalPolicies": "Дополнительные политики режима S",
"win32CatalogUpdateApp": "Обновления для приложений каталога Windows (Win32)",
"windows10DriverUpdate": "Обновления драйверов для Windows 10 и более поздних версий",
"windows10QualityUpdate": "Исправления для Windows 10 и более поздних версий",
"windows10UpdateRings": "Круги обновления для Windows 10 и более поздних версий",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Соединители партнеров Windows 365",
"windowsDiagnosticData": "Данные Windows",
"windowsEnterpriseCertificate": "Сертификат Windows Корпоративная",
"windowsManagement": "Сценарии PowerShell",
"windowsManagement": "Сценарии",
"windowsSideLoadingKeys": "Ключи загрузки неопубликованных приложений Windows",
"windowsSymantecCertificate": "Сертификат Windows DigiCert",
"windowsThreatReport": "Состояние агента угроз"
@@ -12551,6 +12603,10 @@
"postponed": "Отложено",
"priority": "Высокий приоритет"
},
"AutoUpdateSupersededApps": {
"label": "Автоматическое обновление",
"sublabel": "Автоматически обновлять замененные версии этого приложения"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Фон",
"displayText": "Скачивание содержимого в {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Kräv att minst en versal bokstav används i PIN-kod"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Tillåt användaren att ändra inställning",
"tooltip": "Ange om användaren får ändra inställningen."
},
"AllowWorkAccounts": {
"title": "Tillåt endast arbets- eller skolkonton",
"tooltip": " När den här inställningen är aktiverad kan användarna inte lägga till privata mejl och lagringskonton i Outlook. En användare som har ett lagt till ett privat konto i Outlook ombeds att ta bort det privata kontot. Om användaren inte tar bort det privata kontot går det inte att lägga till arbets- eller skolkontot."
},
"BlockExternalImages": {
"title": "Blockera externa bilder",
"tooltip": "När Blockera externa bilder är aktiverat går det inte att ladda ned bilder från Internet som är inbäddade i meddelandetexten. När alternativet inte är konfigurerat är standardappinställningen Av"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "Appversion",
"dependencyName": "Namn på beroende",
"lastModifiedTime": "Tid för senaste ändring",
"relationship": "Relation",
"replaced": "Ersatt",
"searchPlaceholder": "Filtrera efter appnamn",
"status": "Statusinformation",
"statusDetails": "Status",
"supersedenceName": "Namn för ersättande"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Underordnat beroende",
"indirectSupersedence": "Inte direkt relaterad",
"supersedenceAncestors": "Ersättande pågår",
"supersedenceDescendants": "Ersatt av ett nytt"
},
"ConfigureEmail": {
"title": "Ställ in e-postkontoinställningar"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Standardsignatur för app visar om appen ska använda Skaffa Outlook för Android som standardsignatur när meddelanden skrivs. Om inställningen är Av, används ingen standardsignatur utan användarna kan lägga till egna signaturer.\r\n\r\nNär alternativet inte är konfigurerat är standardappinställningen På.",
"iOS": "Standardsignatur för app visar om appen ska använda Skaffa Outlook för iOS som standardsignatur när meddelanden skrivs. Om inställningen är Av, används ingen standardsignatur utan användarna kan lägga till egna signaturer.\r\n\r\nNär alternativet inte är konfigurerat är standardappinställningen På."
},
"title": "Standardsignatur för app"
},
"OfficeFeedReplies": {
"title": "Identifieringsflöde",
"tooltip": "Identifieringsflödet täcker de Office-filer du använder mest. Det här flödet aktiveras automatiskt när Delve har aktiverats för användaren. När alternativet inte är konfigurerat är standardappinställningen På."
},
"OrganizeMailByThread": {
"title": "Sortera e-post efter tråd",
"tooltip": "Standardfunktionssättet i Outlook är att slå ihop mejlkonversationer till en trådad konversationsvy. Om inställningen är inaktiverad visas varje mejl enskilt i Outlook och grupperas inte efter tråd."
},
"PlayMyEmails": {
"title": "Spela upp mina e-postmeddelanden",
"tooltip": "Funktionen Spela upp mina e-postmeddelanden är inte aktiverad som standard i appen men visas för behöriga användare via en banderoll i inkorgen. När funktionen är inställd på Av, visas den inte för behöriga användare i appen. Användarna kan manuellt aktivera Spela upp mina e-postmeddelanden inifrån appen även när funktionen är Av. När den är inställd på Inte konfigurerat är standardappinställningen På och funktionen visas för behöriga användare."
},
"SuggestedReplies": {
"title": "Föreslagna svar",
"tooltip": "När du öppnar ett meddelande kan du få svarsförslag från Office under meddelandet. Om du markerar ett förslag på svar kan du redigera det innan du skickar det."
},
"SyncCalendars": {
"title": "Synkronisera kalendrar",
"tooltip": "Ställ in om användarna ska kunna synkronisera Outlook-kalendern med den inbyggda kalenderappen och databasen."
},
"TextPredictions": {
"title": "Textförutsägelse",
"tooltip": "Outlook kan föreslå ord och fraser medan du skriver meddelanden. Svep för att godkänna ett förslag från Outlook. När alternativet inte är konfigurerat är standardappinställningen På."
"SupersededReplaced": {
"no": "Nej",
"yes": "Ja"
},
"ThemesEnabled": {
"title": "Aktiverade teman",
"tooltip": "Ange om användaren får använda ett anpassat visuellt tema."
}
},
"Tabs": {
"chart": "Diagram",
"dependency": "Beroende",
"label": "Visa: ",
"supersedence": "Ersättande",
"table": "Tabell"
},
"dependencyGraphAriaLabel": "Diagram över appsamband",
"supersedenceGraphAriaLabel": "Diagram över ersättande app"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Välj ett identifieringsskript",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "Lägg till PowerShell-skript",
"customAttributeObjectName": "Anpassat attribut",
"editPowershellScriptFlowSectionName": "Redigera PowerShell-skript",
"enforceSignatureCheckInfoBalloonContent": "Skriptet måste signeras av en betrodd utgivare. Som standard visas ingen varning eller fråga och skriptet körs oblockerat.",
"enforceSignatureCheckInfoBalloonContent": "Skriptet måste vara signerat av en betrodd utgivare. Det här är standardinställningen.",
"enforceSignatureCheckLabel": "Framtvinga signaturkontroll av skript",
"executionFrequencyLabel": "Körningsfrekvens",
"failedToSavePolicy": "Det gick inte att spara {0}",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Granska + lägg till ",
"runAs64BitInfoBalloonContent": "Skriptet körs på en 64-bitars PowerShell-värd för en 64-bitars klientarkitektur. Skriptet körs som standard på en 32-bitars PowerShell-värd.",
"runAs64BitLabel": "Kör skript i 64-bitars PowerShell-värd",
"scriptContextInfoBalloonContent": "Skriptet körs med användarnas autentiseringsuppgifter på klientdatorn. Som standard körs skriptet i systemkontext.",
"scriptContextInfoBalloonContent": "Skriptet körs med användarnas autentiseringsuppgifter på klientdatorn. Skriptet körs som standard i användarkontext.",
"scriptContextLabel": "Kör det här skriptet med inloggningsuppgifterna",
"scriptsettingsTabHeader": "Skriptinställningar",
"settingsHeader": "Välj ett skript som ska ställas in",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Alltid på-VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Kontrollera grundläggande integritet och enhetsintegritet",
"androidPlayIntegrityVerdictBasicIntegrity": "Kontrollera grundläggande integritet",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Betrodda certifikat kan inte längre installeras på enheter med Android 11 eller senare, förutom Samsung Knox-enheter. Om du använder SCEP-profiler måste du fortfarande skapa och distribuera en betrodd certifikatprofil och koppla den till SCEP-certifikatprofilen men du måste leverera det betrodda rotcertifikatet manuellt till enheterna.",
"androidTenAndAbovePasswordHeader": "Android 10 eller senare",
"androidTenAndAbovePasswordHeaderDescription": "Enheterna måste köra Android 10 eller senare för att inställningarna ska gälla.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Tvinga enheten att uppdatera säkerhetskorrigeringar och förbättringar automatiskt.",
"complianceUpdatesRequireAutomaticUpdatesName": "Kräv automatiska uppdateringar från Microsoft",
"complianceWin10RequiredPasswordTypeDescription": "Den här inställningen visar vilken typ av lösenord/PIN-kod som krävs.<br>\r\nEnhetens standardinställning (lösenord, numerisk PIN-kod eller alfanumerisk PIN-kod krävs)<br>\r\nAlfanumeriskt (lösenord eller alfanumerisk PIN-kod krävs)<br>\r\nNumeriskt (lösenord eller numerisk PIN-kod krävs)<br>\r\nRekommendationer: Krav på lösenordstyp: Alfanumerisk, lösenordskomplexitet: Kräv siffror och gemener",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 eller 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 och 11",
"complianceWindows11DeviceHealthAttestationHeader": "Endast Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Lägsta version av Microsoft Defender (t.ex. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Lägsta version av Microsoft Defender Antimalware",
"complianceWindowsDeviceHealthAttestationHeader": "Utvärderingsregler för Microsoft Attestation-tjänsten<br><br>Använd de här reglerna för att bekräfta att en enhet har skyddsåtgärder aktiverade vid start. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Mer information om de här reglerna</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Utvärderingsinställningar för Microsoft Attestation-tjänsten<br><br>Använd de här inställningarna för att bekräfta att en enhet har skyddsåtgärder aktiverade vid start. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Mer information</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Välj den senaste operativsystemversion en mobil enhet kan ha. Operativsystemversionen definieras som major.minor.build.revision.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Välj den äldsta operativsystemversion en mobil enhet kan ha. Operativsystemversionen definieras som major.minor.build.revision.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "Operativsystemversionen definieras som major.minor.build.revision. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "Skydd för 95:e percentilen",
"basicDataProtectionGuidedString": "Grundläggande dataskydd användarna måste använda PIN-kod eller biometrik för att få tillgång till arbets- eller skolkontodata, arbets- eller skolkontodata krypteras och administratörer kan utföra selektiva datarensningar om så behövs. För Android-enheter säkerställs även att enheten är kompatibel med Googles tjänster, och genomsökning med Googles Verifiera program aktiveras.",
"basicIntegrity": "Grundläggande integritet",
"basicIntegrityAndCertifiedDevices": "Grundläggande integritet och certifierade enheter",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Tidsgräns för inaktivitet",
"bioPinInactiveTimeoutTooltip": "Åsidosätt med PIN-kod istället för biometrik efter (minuter)",
"block": "Blockera",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Teckengräns för klippa ut och kopiera för valfri app",
"camera": "Kamera",
"checkInCountColumnTitle": "ANTAL INCHECKNINGAR",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Incheckad",
"checkedInAppNameColumnTitle": "APP",
"checkedInButNotSynced": "Incheckad. Vid nästa synkronisering kommer den här appen att ta emot {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">Jag hittar inte appen jag behöver</a></p><p><a data-bind=\"fxclick: onClickLob\">Jag vill lägga till en egen verksamhetsspecifik app</a></p>",
"guidedTemplate2": "Vi kommer att fråga vilken skyddsnivå du vill distribuera till användarna. Mer information finns på <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Ramverk för dataskydd med appskyddsprinciper. </a>",
"guidediOSLabel": "iOS-appskydd",
"hardwareBackedKey": "Maskinvarubaserad nyckel",
"healthCheck": "Hälsokontroller",
"helpAndSupport": "Hjälp och support",
"hideOverrides": "Dölj åsidosättningar",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Plattform",
"platformDropDownLabel": "Plattform",
"platformVersion": "Plattformsversion",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Åtgärda felen i avsnitten nedan!",
"pleaseSelectAtLeastOneFileError": "Markera minst en fil innan du fortsätter",
"policies": "Principer",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Kräv enhetslås",
"requireThreatScanOnApps": "Kräv genomsökning efter hot i appar",
"requiredField": "Det här fältet måste fyllas i",
"requiredSafetyNetEvaluationType": "SafetyNet-utvärderingstyp som krävs",
"requiredSettings": "Nödvändiga inställningar",
"resetPin": "Återställ PIN-kod",
"resourceManagement": "Resurshantering",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Valfri app",
"restrictWebContentOption2": "{0}: Tillåt webblänkar i alla appar",
"rootCertificate": "Rotcertifikat",
"safetyNetDeviceAttestation": "SafetyNet-enhetsbestyrkande",
"samsungKnoxAttestationRequired": "Samsung Knox-enhetsattestering",
"saveAppsNotificationText": "Sparar valda appar",
"saveChangesCommandText": "Spara",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Filterläge",
"assignmentToast": "Slutanvändarmeddelanden",
"assignmentTypeTableHeader": "TILLDELNINGSTYP",
"autoUpdate": "Automatisk uppdatering",
"deadlineTimeColumnLabel": "Tidsgräns för installation",
"deliveryOptimizationPriorityHeader": "Prioritet för leveransoptimering",
"groupTableHeader": "Grupp",
@@ -8514,6 +8496,10 @@
"showAll": "Visa alla popup-meddelanden",
"showReboot": "Visa popup-meddelanden om omstart av dator"
},
"AutoUpdateSupersededApps": {
"enabled": "Aktiverad",
"notConfigured": "Inte konfigurerat"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Bakgrund",
"displayText": "Innehållsnedladdning i {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "Sessionskontrollen Inloggningsfrekvens varje gång kräver att Alla molnappar eller appar som specifikt stöds har valts",
"allDayCheckboxLabel": "Dygnet runt",
"allDevicePlatforms": "Valfri enhet",
"allGuestUserInfoContent": "Omfattar Azure AD B2B-gäster men inte SharePoint B2B-gäster",
"allGuestUserInfoContent": "Omfattar Microsoft Entra B2B-gäster men inte SharePoint B2B-gäster",
"allGuestUserLabel": "Alla gästanvändare och externa användare",
"allRiskLevelsOption": "Alla risknivåer",
"allTrustedLocationLabel": "Alla betrodda platser",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Läs mer om att kräva kompatibla enheter.",
"controlsDeviceComplianceInfoBubble": "Enheten måste vara Intune-kompatibel. Om enheten inte är kompatibel ombeds användaren att göra enheten kompatibel.",
"controlsDomainJoinedAriaLabel": "Läs mer om att kräva Azure AD-anslutna hybridenheter.",
"controlsDomainJoinedInfoBubble": "Enheterna måste vara Hybrid Azure AD-anslutna.",
"controlsDomainJoinedAriaLabel": "Läs mer om att kräva Microsoft Entra-hybridanslutna enheter.",
"controlsDomainJoinedInfoBubble": "Enheter måste vara Microsoft Entra-hybridanslutna.",
"controlsMamAriaLabel": "Läs mer om att kräva godkända klientprogram.",
"controlsMamInfoBubble": "Enheten måste använda de här godkända programmen.",
"controlsMfaInfoBubble": "Användaren måste slutföra ytterligare säkerhetskrav, exempelvis ett telefonsamtal eller textmeddelande",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Enheten markerades som kompatibel",
"deviceStateCompliantInfoContent": "Enheter som är Intune-kompatibla kommer att uteslutas från bedömningen av den här principen så att om principen blockerar åtkomst till exempel så blockeras alla enheter utom de som är Intune-kompatibla.",
"deviceStateConditionConfigureInfoContent": "Konfigurera princip baserat på enhetstillstånd",
"deviceStateConditionSelectorInfoContent": "Huruvida den enhet som användaren loggar in från är hybrid Azure AD-ansluten eller markerad som kompatibel. \n Den här har tagits ur bruk. Använd {1} istället.",
"deviceStateConditionSelectorInfoContent": "Huruvida den enhet som användaren loggar in från är Microsoft Entra-hybridansluten eller markerad som kompatibel.\n Det här har tagits ur bruk. Använd {1} istället.",
"deviceStateConditionSelectorLabel": "Enhetstillstånd (ur bruk)",
"deviceStateDomainJoined": "Hybrid Azure AD-ansluten enhet",
"deviceStateDomainJoinedInfoContent": "Enheter som är Hybrid Azure AD-anslutna utesluts från utvärderingen av den här policyn. Så om policyn t.ex. blockerar åtkomst blockeras alla enheter utom de som är Hybrid Azure AD-anslutna.",
"deviceStateDomainJoined": "Microsoft Entra-hybridansluten enhet",
"deviceStateDomainJoinedInfoContent": "Enheter som är Microsoft Entra-hybridanslutna utesluts från utvärderingen av den här policyn. Så om policyn t.ex. blockerar åtkomst, blockeras alla enheter utom de som är Microsoft Entra-hybridanslutna.",
"deviceStateDomainJoinedInfoLinkText": "Läs mer.",
"deviceStateExcludeDescription": "Välj det enhetstillståndsvillkor som används för att utesluta enheter från principen.",
"deviceStateIncludeAndExcludeOneLabel": "{0} och uteslut {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync enbart med plattformar som stöds",
"excludeAllTrustedLocationSelectorText": "alla betrodda platser",
"featureRequiresP2": "Den här funktionen kräver en Azure Active Directory Premium 2-licens.",
"featureRequiresP2": "Den här funktionen kräver Microsoft Entra ID P2-licens.",
"friday": "fredag",
"grantControls": "Bevilja kontroller",
"gridNetworkTrusted": "Betrodda",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Valda privata länkar",
"lowRisk": "Låg",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "Om du vill hantera principer för villkorsstyrd åtkomst måste organisationen ha Azure AD Premium P1 eller P2.",
"managePoliciesLicenseText": "Om du vill hantera principer för villkorsstyrd åtkomst måste organisationen ha Microsoft Entra ID P1 eller P2.",
"manageSecurityDefaultsAriaLabel": "Hantera standardsäkerhetsinställningarna.",
"markAsTrustedCheckboxInfoBalloonContent": "Inloggning från en betrodd plats sänker en användares inloggningsrisk. Markera bara den här platsen som betrodd om du känner till att de IP-intervall som angetts är etablerade och trovärdiga inom din organisation.",
"markAsTrustedCheckboxLabel": "Markera som betrodd plats",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Länder/regioner",
"namedLocationTypeLabel": "Definiera platsen med:",
"namedLocationUpsellBanner": "Den här vyn är inaktuell. Gå till den nya och förbättrade vyn Namngivna platser.",
"namedLocationsHelpDescription": "Namngivna platser används av Azure AD-säkerhetsrapporter för att minska falskt positiva resultat och Azure AD-principer för villkorsstyrd åtkomst.\n[Läs mer][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Namngivna platser används av Microsoft Entra ID-säkerhetsrapporter för att minska falskt positiva resultat och Microsoft Entra-principer för villkorsstyrd åtkomst.\n[Läs mer][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Lägg till ett nytt IP-intervall (t.ex. 40.77.182.32/27)",
"namedNetworkCountryNeeded": "Du måste välja minst ett land/en region",
"namedNetworkDeleteCommand": "Ta bort",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Ny namngiven plats",
"namedNetworksConditionHelpDescription": "Kontrollera användaråtkomst baserat på fysisk plats.\n[Läs mer][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} och {1} exkluderades",
"namedNetworksHelpDescription": "Namngivna platser används av Azure AD-säkerhetsrapporter för att minska falskt positiva resultat och Azure AD-principer för villkorsstyrd åtkomst.\n[Läs mer][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Namngivna platser används av Microsoft Entra ID-säkerhetsrapporter för att minska falskt positiva resultat och Microsoft Entra-principer för villkorsstyrd åtkomst.\n[Läs mer][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} inkluderade",
"namedNetworksNone": "Det gick inte att hitta några namgivna platser.",
"namedNetworksTitle": "Konfigurera platser",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Endast globala administratörer kan spara den här policyn.",
"or": "{0} ELLER {1}",
"pickerDoneCommand": "Klart",
"policiesBladeAdPremiumUpsellBannerText": "Skapa dina egna principer och målspecifika villkor som molnappar, inloggningsrisk och enhetsplattformar med Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Skapa dina egna principer och målspecifika villkor som molnappar, inloggningsrisk och enhetsplattformar med Microsoft Entra ID Premium",
"policiesBladeTitle": "Principer",
"policiesBladeTitleWithAppName": "Principer: {0}",
"policiesDisabledBannerText": "Att skapa och redigera principer är inte tillåtet för program med länkade inloggningsattribut.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Platsen (fastställs av IP-adressintervallet) som användaren loggar in från",
"policyConditionLocationPreview": "Platser (förhandsversion)",
"policyConditionSigninRisk": "Inloggningsrisk",
"policyConditionSigninRiskDescription": "Sannolikhet att inloggningen kommer från någon annan än användaren. Risknivån kan vara hög, medel eller låg. Kräver en Azure AD Premium 2-licens.",
"policyConditionSigninRiskDescription": "Sannolikhet att inloggningen kommer från någon annan än användaren. Risknivån kan vara hög, medel eller låg. Kräver en Microsoft Entra ID Premium 2-licens.",
"policyConditionUserRisk": "Användarrisk",
"policyConditionUserRiskDescription": "Konfigurera de användarrisknivåer som krävs för att principen ska tillämpas",
"policyConditioniClientApp": "Klientappar",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Blockera åtkomst eller välj ytterligare krav som behöver uppfyllas för att tillåta åtkomst",
"policyControlMfaChallengeDisplayedName": "Kräv multifaktorautentisering",
"policyControlRequireCompliantAppDisplayedName": "Kräv appskyddsprincip",
"policyControlRequireDomainJoinedDisplayedName": "Kräv Hybrid Azure AD-ansluten enhet",
"policyControlRequireDomainJoinedDisplayedName": "Kräv Microsoft Entra-hybridanslutna enhet",
"policyControlRequireMamDisplayedName": "Kräv godkänd klientapp",
"policyControlRequiredPasswordChangeDisplayedName": "Kräv lösenordsändring",
"policyControlSelectAuthStrength": "Kräv autentiseringsstyrka",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "{0} har uppdaterats. Principen kommer att aktiveras om några minuter om du har satt \"aktivera princip\" till \"På\".",
"policyUpdateSuccessTitle": "{0} har uppdaterats",
"primaryCol": "Primär",
"privateLinkLabel": "Microsoft Azure Active Directory privatnk",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "Rapportspecifikt läge: Policyer utvärderas och loggas i samband med inloggningen, men de påverkar inte användarna.",
"requireAllControlsText": "Begär alla de valda kontrollerna",
"requireCompliantDevice": "Kräv kompatibel enhet",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Kräv alltid multifaktorautentisering för känsliga program eller bara från utanför företagsnätverket.",
"upsellAppsTitle": "Säkra program",
"upsellBannerText": "Skaffa en kostnadsfri Premium-utvärderingsversion om du vill använda den här funktionen",
"upsellDataDescription": "Kräv att enheten markeras som att den följer standard eller är Hybrid Azure AD-ansluten för att den ska beviljas åtkomst till företagsresurserna.",
"upsellDataDescription": "Kräv att enheten markeras som kompatibel eller är Microsoft Entra-hybridansluten för att den ska beviljas åtkomst till företagsresurserna.",
"upsellDataTitle": "Säkra data",
"upsellDescription": "Villkorad åtkomst ger dig den kontroll och det skydd du behöver för att hålla dina företagsdata säkra, samtidigt som den ger dina användare möjligheten att arbeta från valfri enhet. Du kan t.ex. begränsa åtkomsten utanför företagsnätverket eller begränsa åtkomsten till enheter med principer som följer standard.",
"upsellRiskDescription": "Kräv multifaktorautentisering för riskhändelser som identifierats av Microsofts maskininlärningssystem.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "{0} har uppdaterats.",
"vpnCertUpdateSuccessTitle": "{0} har uppdaterats",
"vpnFeatureInfo": "Klicka här om du vill ha mer information om VPN-anslutningsmöjligheter och villkorsstyrd åtkomst.",
"vpnFeatureWarning": "När ett VPN-certifikat har skapats i Azure Portal, så börjar Azure AD använda det omedelbart för att kunna utfärda certifikat med kort livslängd till VPN-klienten. Det är viktigt att VPN-certifikatet omedelbart distribueras till VPN-servern, så att du undviker problem med valideringen av VPN-klientens autentiseringsuppgifter.",
"vpnFeatureWarning": "När ett VPN-certifikat har skapats i portalen börjar Microsoft Entra ID använda det omedelbart för att kunna utfärda certifikat med kort livslängd till VPN-klienten. Det är viktigt att VPN-certifikatet omedelbart distribueras till VPN-servern, så att du undviker problem med valideringen av VPN-klientens autentiseringsuppgifter.",
"vpnMenuText": "VPN-anslutningsmöjlighet",
"vpncertDropdownDefaultOption": "Giltighetstid",
"vpncertDropdownInfoBalloonContent": "Välj varaktighet för certifikatet som du vill skapa",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Anpassad Intune-roll",
"customRole": "Anpassad roll"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} ingår i en eller flera principuppsättningar. Om du tar bort {0} kan du inte längre tilldela den via de principuppsättningarna. Vill ta bort den ändå?",
"contentWithError": "{0} kan ingå i en eller flera principuppsättningar. Om du tar bort {0} kan du inte längre tilldela den via de principuppsättningarna. Vill ta bort den ändå?",
"header": "Vill du ta bort den här begränsningen?"
},
"DeviceLimit": {
"description": "Ange högst antal enheter som en användare får registrera.",
"header": "Begränsningar för antal enheter",
"info": "Ange hur många enheter som varje användare kan registrera."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Måste vara minst 1.0.",
"android": "Ange ett giltigt versionsnummer. Exempel: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Ange ett giltigt versionsnummer. Exempel: 5.0, 5.1.1",
"iOS": "Ange ett giltigt versionsnummer. Exempel: 9.0, 10.0, 9.0.2",
"mac": "Ange ett giltigt versionsnummer. Exempel: 10, 10.10, 10.10.1",
"min": "Minimum får inte vara lägre än {0}",
"minMax": "Minimiversionen får inte vara högre än maxversionen.",
"windows": "Måste vara minst 10.0. Lämna tomt för att tillåta 8.1-enheter",
"windowsMobile": "Måste vara minst 10.0. Lämna tomt för att tillåta 8.1-enheter"
},
"allPlatformsBlocked": "Alla enhetsplattformar är blockerade. Tillåt plattformsregistrering för att aktivera plattformskonfiguration.",
"blockManufacturerPlaceHolder": "Namn på tillverkare",
"blockManufacturersHeader": "Blockerade tillverkare",
"cannotRestrict": "Begränsningen stöds inte",
"configurationDescription": "Ange de begränsningar för plattformskonfiguration som gäller för att registrera en enhet. Använd kompatibilitetsprinciper för att begränsa enheter efter registreringen. Ange versioner som major.minor.build. Versionsbegränsningar gäller endast för enheter som registrerats med företagsportalen. Intune klassificerar enheter som privatägda som standard. En ytterligare åtgärd krävs för att klassificera enheter som företagsägda.",
"configurationDescriptionLabel": "Läs mer om att ställa in registreringsbegränsningar",
"configurations": "Konfigurera plattformar",
"deviceManufacturer": "Enhetstillverkare",
"header": "Begränsningar av enhetstyp",
"info": "Ange vilka plattformar, versioner och hanteringstyper som kan registreras.",
"manufacturer": "Tillverkare",
"max": "Max",
"maxVersion": "Högsta version",
"min": "Min",
"minVersion": "Lägsta version",
"newPlatforms": "Du har tillåtit nya plattformar. Uppdatera plattformskonfigurationer.",
"personal": "Personligt ägd",
"platform": "Plattform",
"platformDescription": "Du kan tillåta registrering av följande plattformar. Blockera bara plattformar som du inte har stöd för. Du kan ange ytterligare registreringsbegränsningar för tillåtna plattformar.",
"platformSettings": "Plattformsinställningar",
"platforms": "Välj plattformar",
"platformsSelected": "{0} plattformar markerade",
"type": "Typ",
"versions": "versioner",
"versionsRange": "Tillåt minsta/största intervall:",
"windowsTooltip": "Begränsar registrering via mobilenhetshantering. Begränsar inte installation av datoragent. Det finns bara stöd för Windows 10- och Windows 11-enheter. Lämna versioner tomt för att tillåta Windows 8.1."
},
"Priority": {
"saved": "Begränsningsprioriteringar har sparats."
},
"Row": {
"announce": "Prioritet: {0}, namn: {1}, tilldelat: {2}"
},
"Table": {
"deployed": "Distribuerad",
"name": "Namn",
"priority": "Prioritet"
},
"Type": {
"limit": "Begränsning för antal enheter",
"type": "Begränsning av enhetstyp"
},
"allUsers": "Alla användare",
"androidRestrictions": "Android-begränsningar",
"create": "Skapa begränsning",
"defaultLimitDescription": "Det här är standardbegränsningen för antal enheter som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
"defaultTypeDescription": "Det här är standardbegränsningen för enhetstyper som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
"defaultWhfbDescription": "Det här är standardkonfigurationen för Windows Hello för företag som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
"deleteMessage": "Användare som påverkas begränsas av nästa högsta tilldelade prioritetsbegränsning eller standardbegränsningen om ingen annan begränsning har tilldelats.",
"deleteTitle": "Vill du ta bort begränsningen för {0}?",
"descriptionHint": "Kort stycke som beskriver företagsanvändning eller begränsningsnivå som anges av begränsningsinställningarna.",
"edit": "Redigera begränsning",
"info": "En enhet måste uppfylla de mest högprioriterade registreringsbegränsningarna som tilldelats användaren. Du kan dra en enhetsbegränsning om du vill ändra prioriteten. Standardbegränsningar har lägst prioritet för alla användare och styr användarlösa registreringar. En standardbegränsning kan redigeras men inte tas bort.",
"iosRestrictions": "iOS-begränsningar",
"mDM": "MDM",
"macRestrictions": "macOS-begränsningar",
"maxVersion": "Högsta version",
"minVersion": "Lägsta version",
"nameHint": "Det här är det primära attributet som visas för att identifiera begränsningsuppsättningen.",
"noAssignmentsStatusBar": "Koppla en begränsning till minst en grupp. Klicka på Egenskaper.",
"notFound": "Begränsningen hittades inte. Den kanske redan har tagits bort.",
"personallyOwned": "Privatägda enheter",
"restriction": "Begränsning",
"restrictionLowerCase": "begränsning",
"restrictionType": "Begränsningstyp",
"selectType": "Välj begränsningstyp",
"selectValidation": "Välj en plattform",
"typeHint": "Välj begränsning för enhetstyp för att begränsa enhetsegenskaper. Välj begränsning för enhetsgräns för att begränsa antalet enheter per användare.",
"typeRequired": "Begränsningstyp krävs.",
"winPhoneRestrictions": "Windows Phone-begränsningar",
"windowsECv1Info": "Äldre registreringsbegränsningar kan inte redigeras eller omprioriteras, endast tas bort.",
"windowsECv2Info": "Du kan prioritera registreringsbegränsningar genom att dra och släppa dem. Visa standardbegränsningar och förkonfigurerade begränsningar nedan. Alla nya registreringsbegränsningar har högre prioritet än standardbegränsningar och förkonfigurerade begränsningar.",
"windowsRestrictions": "Windows-begränsningar",
"windowsRestrictionsPreview": "Filterbaserade Windows-begränsningar (förhandsversion)"
},
"InstallContextType": {
"device": "Enhet",
"deviceContext": "Enhetssammanhang",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Regelsyntax",
"filters": "Filter"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} ingår i en eller flera principuppsättningar. Om du tar bort {0} kan du inte längre tilldela den via de principuppsättningarna. Vill ta bort den ändå?",
"contentWithError": "{0} kan ingå i en eller flera principuppsättningar. Om du tar bort {0} kan du inte längre tilldela den via de principuppsättningarna. Vill ta bort den ändå?",
"header": "Vill du ta bort den här begränsningen?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Tillåt användaren att ändra inställning",
"tooltip": "Ange om användaren får ändra inställningen."
},
"AllowWorkAccounts": {
"title": "Tillåt endast arbets- eller skolkonton",
"tooltip": " När den här inställningen är aktiverad kan användarna inte lägga till privata mejl och lagringskonton i Outlook. En användare som har ett lagt till ett privat konto i Outlook ombeds att ta bort det privata kontot. Om användaren inte tar bort det privata kontot går det inte att lägga till arbets- eller skolkontot."
},
"BlockExternalImages": {
"title": "Blockera externa bilder",
"tooltip": "När Blockera externa bilder är aktiverat går det inte att ladda ned bilder från Internet som är inbäddade i meddelandetexten. När alternativet inte är konfigurerat är standardappinställningen Av"
},
"ConfigureEmail": {
"title": "Ställ in e-postkontoinställningar"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Standardsignatur för app visar om appen ska använda Skaffa Outlook för Android som standardsignatur när meddelanden skrivs. Om inställningen är Av, används ingen standardsignatur utan användarna kan lägga till egna signaturer.\r\n\r\nNär alternativet inte är konfigurerat är standardappinställningen På.",
"iOS": "Standardsignatur för app visar om appen ska använda Skaffa Outlook för iOS som standardsignatur när meddelanden skrivs. Om inställningen är Av, används ingen standardsignatur utan användarna kan lägga till egna signaturer.\r\n\r\nNär alternativet inte är konfigurerat är standardappinställningen På."
},
"title": "Standardsignatur för app"
},
"OfficeFeedReplies": {
"title": "Identifieringsflöde",
"tooltip": "Identifieringsflödet täcker de Office-filer du använder mest. Det här flödet aktiveras automatiskt när Delve har aktiverats för användaren. När alternativet inte är konfigurerat är standardappinställningen På."
},
"OrganizeMailByThread": {
"title": "Sortera e-post efter tråd",
"tooltip": "Standardfunktionssättet i Outlook är att slå ihop mejlkonversationer till en trådad konversationsvy. Om inställningen är inaktiverad visas varje mejl enskilt i Outlook och grupperas inte efter tråd."
},
"PlayMyEmails": {
"title": "Spela upp mina e-postmeddelanden",
"tooltip": "Funktionen Spela upp mina e-postmeddelanden är inte aktiverad som standard i appen men visas för behöriga användare via en banderoll i inkorgen. När funktionen är inställd på Av, visas den inte för behöriga användare i appen. Användarna kan manuellt aktivera Spela upp mina e-postmeddelanden inifrån appen även när funktionen är Av. När den är inställd på Inte konfigurerat är standardappinställningen På och funktionen visas för behöriga användare."
},
"SuggestedReplies": {
"title": "Föreslagna svar",
"tooltip": "När du öppnar ett meddelande kan du få svarsförslag från Office under meddelandet. Om du markerar ett förslag på svar kan du redigera det innan du skickar det."
},
"SyncCalendars": {
"title": "Synkronisera kalendrar",
"tooltip": "Ställ in om användarna ska kunna synkronisera Outlook-kalendern med den inbyggda kalenderappen och databasen."
},
"TextPredictions": {
"title": "Textförutsägelse",
"tooltip": "Outlook kan föreslå ord och fraser medan du skriver meddelanden. Svep för att godkänna ett förslag från Outlook. När alternativet inte är konfigurerat är standardappinställningen På."
},
"DeviceLimit": {
"description": "Ange högst antal enheter som en användare får registrera.",
"header": "Begränsningar för antal enheter",
"info": "Ange hur många enheter som varje användare kan registrera."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Måste vara minst 1.0.",
"android": "Ange ett giltigt versionsnummer. Exempel: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Ange ett giltigt versionsnummer. Exempel: 5.0, 5.1.1",
"iOS": "Ange ett giltigt versionsnummer. Exempel: 9.0, 10.0, 9.0.2",
"mac": "Ange ett giltigt versionsnummer. Exempel: 10, 10.10, 10.10.1",
"min": "Minimum får inte vara lägre än {0}",
"minMax": "Minimiversionen får inte vara högre än maxversionen.",
"windows": "Måste vara minst 10.0. Lämna tomt för att tillåta 8.1-enheter",
"windowsMobile": "Måste vara minst 10.0. Lämna tomt för att tillåta 8.1-enheter"
},
"allPlatformsBlocked": "Alla enhetsplattformar är blockerade. Tillåt plattformsregistrering för att aktivera plattformskonfiguration.",
"blockManufacturerPlaceHolder": "Namn på tillverkare",
"blockManufacturersHeader": "Blockerade tillverkare",
"cannotRestrict": "Begränsningen stöds inte",
"configurationDescription": "Ange de begränsningar för plattformskonfiguration som gäller för att registrera en enhet. Använd kompatibilitetsprinciper för att begränsa enheter efter registreringen. Ange versioner som major.minor.build. Versionsbegränsningar gäller endast för enheter som registrerats med företagsportalen. Intune klassificerar enheter som privatägda som standard. En ytterligare åtgärd krävs för att klassificera enheter som företagsägda.",
"configurationDescriptionLabel": "Läs mer om att ställa in registreringsbegränsningar",
"configurations": "Konfigurera plattformar",
"deviceManufacturer": "Enhetstillverkare",
"header": "Begränsningar av enhetstyp",
"info": "Ange vilka plattformar, versioner och hanteringstyper som kan registreras.",
"manufacturer": "Tillverkare",
"max": "Max",
"maxVersion": "Högsta version",
"min": "Min",
"minVersion": "Lägsta version",
"newPlatforms": "Du har tillåtit nya plattformar. Uppdatera plattformskonfigurationer.",
"personal": "Personligt ägd",
"platform": "Plattform",
"platformDescription": "Du kan tillåta registrering av följande plattformar. Blockera bara plattformar som du inte har stöd för. Du kan ange ytterligare registreringsbegränsningar för tillåtna plattformar.",
"platformSettings": "Plattformsinställningar",
"platforms": "Välj plattformar",
"platformsSelected": "{0} plattformar markerade",
"type": "Typ",
"versions": "versioner",
"versionsRange": "Tillåt minsta/största intervall:",
"windowsTooltip": "Begränsar registrering via mobilenhetshantering. Begränsar inte installation av datoragent. Det finns bara stöd för Windows 10- och Windows 11-enheter. Lämna versioner tomt för att tillåta Windows 8.1."
},
"Priority": {
"saved": "Begränsningsprioriteringar har sparats."
},
"Row": {
"announce": "Prioritet: {0}, namn: {1}, tilldelat: {2}"
},
"Table": {
"deployed": "Distribuerad",
"name": "Namn",
"priority": "Prioritet"
},
"Type": {
"limit": "Begränsning för antal enheter",
"type": "Begränsning av enhetstyp"
},
"allUsers": "Alla användare",
"androidRestrictions": "Android-begränsningar",
"create": "Skapa begränsning",
"defaultLimitDescription": "Det här är standardbegränsningen för antal enheter som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
"defaultTypeDescription": "Det här är standardbegränsningen för enhetstyper som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
"defaultWhfbDescription": "Det här är standardkonfigurationen för Windows Hello för företag som tillämpas med lägsta prioritet för alla användare oavsett gruppmedlemskap.",
"deleteMessage": "Användare som påverkas begränsas av nästa högsta tilldelade prioritetsbegränsning eller standardbegränsningen om ingen annan begränsning har tilldelats.",
"deleteTitle": "Vill du ta bort begränsningen för {0}?",
"descriptionHint": "Kort stycke som beskriver företagsanvändning eller begränsningsnivå som anges av begränsningsinställningarna.",
"edit": "Redigera begränsning",
"info": "En enhet måste uppfylla de mest högprioriterade registreringsbegränsningarna som tilldelats användaren. Du kan dra en enhetsbegränsning om du vill ändra prioriteten. Standardbegränsningar har lägst prioritet för alla användare och styr användarlösa registreringar. En standardbegränsning kan redigeras men inte tas bort.",
"iosRestrictions": "iOS-begränsningar",
"mDM": "MDM",
"macRestrictions": "MacOS-begränsningar",
"maxVersion": "Högsta version",
"minVersion": "Lägsta version",
"nameHint": "Det här är det primära attributet som visas för att identifiera begränsningsuppsättningen.",
"noAssignmentsStatusBar": "Koppla en begränsning till minst en grupp. Klicka på Egenskaper.",
"notFound": "Begränsningen hittades inte. Den kanske redan har tagits bort.",
"personallyOwned": "Privatägda enheter",
"restriction": "Begränsning",
"restrictionLowerCase": "begränsning",
"restrictionType": "Begränsningstyp",
"selectType": "Välj begränsningstyp",
"selectValidation": "Välj en plattform",
"typeHint": "Välj begränsning för enhetstyp för att begränsa enhetsegenskaper. Välj begränsning för enhetsgräns för att begränsa antalet enheter per användare.",
"typeRequired": "Begränsningstyp krävs.",
"winPhoneRestrictions": "Windows Phone-begränsningar",
"windowsRestrictions": "Windows-begränsningar"
},
"ThemesEnabled": {
"title": "Aktiverade teman",
"tooltip": "Ange om användaren får använda ett anpassat visuellt tema."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS-enheter"
@@ -12507,6 +12558,7 @@
"user": "Användare",
"userExecutionStatus": "Användarstatus",
"wdacSupplementalPolicies": "Tilläggsprinciper för S-läge",
"win32CatalogUpdateApp": "Uppdateringar för Windows-katalogappar (Win32)",
"windows10DriverUpdate": "Drivrutinsuppdateringar för Windows 10 och senare",
"windows10QualityUpdate": "Kvalitetsuppdateringar för Windows 10 och senare",
"windows10UpdateRings": "Uppdateringringar för Windows 10 och senare",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Windows 365 partnerkopplingar",
"windowsDiagnosticData": "Windows-data",
"windowsEnterpriseCertificate": "Windows Enterprise-certifikat",
"windowsManagement": "PowerShell-skript",
"windowsManagement": "Skript",
"windowsSideLoadingKeys": "Nycklar för separat inläsning i Windows",
"windowsSymantecCertificate": "Windows DigiCert-certifikat",
"windowsThreatReport": "Agentstatus för hot"
@@ -12551,6 +12603,10 @@
"postponed": "Uppskjuten",
"priority": "Hög prioritet"
},
"AutoUpdateSupersededApps": {
"label": "Automatisk uppdatering",
"sublabel": "Uppgradera automatiskt ersatta versioner av programmet"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Bakgrund",
"displayText": "Innehållsnedladdning i {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "PIN'de en az bir büyük harf kullanılmasını gerektir"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Kullanıcının ayar değiştirmesine izin ver",
"tooltip": "Kullanıcının ayarı değiştirmesine izin verilip verilmediğini belirtin."
},
"AllowWorkAccounts": {
"title": "Yalnızca iş veya okul hesaplarına izin ver",
"tooltip": " Bu ayar etkinleştirildiğinde kullanıcılar Outlook'a kişisel e-posta ve depolama hesapları ekleyemez. Kullanıcı Outlook'a kişisel hesap eklemişse kişisel hesabı kaldırması istenir. Kullanıcı bu hesabı kaldırmazsa iş veya okul hesabı eklenemez."
},
"BlockExternalImages": {
"title": "Harici görüntüleri engelle",
"tooltip": "Harici görüntüleri engelleme özelliği etkinleştirildiğinde uygulama İnternet'te barındırılan ve ileti gövdesine ekli görüntülerin indirilmesini engeller. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarı Kapalı'dır"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "Uygulama Sürümü",
"dependencyName": "Bağımlılık adı",
"lastModifiedTime": "Son değiştirme zamanı",
"relationship": "İlişki",
"replaced": "Değiştirildi",
"searchPlaceholder": "Uygulama adına göre filtreleyin",
"status": "Durum ayrıntıları",
"statusDetails": "Durum",
"supersedenceName": "Yerine geçme adı"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Alt bağımlılık",
"indirectSupersedence": "Doğrudan ilgili değil",
"supersedenceAncestors": "Yenisiyle değiştiriliyor",
"supersedenceDescendants": "Yenisiyle değiştirilmiş"
},
"ConfigureEmail": {
"title": "E-posta hesabı ayarlarını yapılandır"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Varsayılan uygulama imzası, uygulamanın ileti oluşturma sırasında varsayılan imza olarak \"Android için Outlook'u edinin\" imzasını kullanıp kullanmayacağını belirtir. Ayar Kapalı olarak yapılandırıldıysa varsayılan imza kullanılmaz, ancak kullanıcılar kendi imzalarını ekleyebilir.\r\n\r\nYapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarıık olarak ayarlanır.",
"iOS": "Varsayılan uygulama imzası, uygulamanın ileti oluşturma sırasında varsayılan imza olarak \"iOS için Outlook'u edinin\" imzasını kullanıp kullanmayacağını belirtir. Ayar Kapalı olarak yapılandırıldıysa varsayılan imza kullanılmaz, ancak kullanıcılar kendi imzalarını ekleyebilir.\r\n\r\nYapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarıık olarak ayarlanır."
},
"title": "Varsayılan uygulama imzası"
},
"OfficeFeedReplies": {
"title": "Keşif Akışı",
"tooltip": "Keşif Akışı, en sık erişilen Office dosyalarınızı öne çıkarır. Kullanıcı için Delve etkinleştirildiğinde, bu akış da varsayılan olarak etkinleştirilir. Yapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarıık olarak belirlenir."
},
"OrganizeMailByThread": {
"title": "Postaları yazışmaya göre düzenleme",
"tooltip": "Outlook varsayılan olarak, posta konuşmalarını yazışmalardan oluşan bir görüşme görünümünde toplar. Bu ayar devre dışı bırakılırsa Outlook her bir postayı ayrı ayrı görüntüler ve bunları yazışmaya göre gruplandırmaz."
},
"PlayMyEmails": {
"title": "E-postalarımı Oynat",
"tooltip": "E-postalarımı Oynat özelliği uygulamada varsayılan olarak etkin değildir ancak uygun kullanıcıların gelen kutusunda bir başlık olarak öne çıkarılır. Kapalı olarak ayarlandığında, bu özellik uygulamada uygun kullanıcılar için öne çıkarılmaz. Bu özellik Kapalı olarak ayarlansa bile kullanıcılar, E-postalarımı Oynat özelliğini uygulamadan el ile etkinleştirmeyi seçebilir. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarıık olur ve özellik uygun kullanıcılar için öne çıkarılır."
},
"SuggestedReplies": {
"title": "Önerilen yanıtlar",
"tooltip": "Bir iletiyi açtığınızda Outlook, iletinin altında yanıtlar önerebilir. Önerilen bir yanıtı seçerseniz göndermeden önce bunu düzenleyebilirsiniz."
},
"SyncCalendars": {
"title": "Takvimleri Eşitle",
"tooltip": "Kullanıcıların Outlook takvimini yerel takvim uygulamasıyla ve veritabanıyla eşitleyip eşitleyemeyeceğini yapılandırın."
},
"TextPredictions": {
"title": "Metin Tahminleri",
"tooltip": "Outlook, siz ileti oluştururken sözcük ve tümceler önerebilir. Outlook öneri sunduğunda öneriyi kabul etmek için kaydırın. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarıık olarak ayarlanır."
"SupersededReplaced": {
"no": "Hayır",
"yes": "Evet"
},
"ThemesEnabled": {
"title": "Etkin temalar",
"tooltip": "Kullanıcının özel görsel tema kullanmasına izin verilip verilmeyeceğini belirtin."
}
},
"Tabs": {
"chart": "Grafik",
"dependency": "Bağımlılık",
"label": "Görünüm: ",
"supersedence": "Yerine geçme",
"table": "Tablo"
},
"dependencyGraphAriaLabel": "Uygulama bağımlılık grafiği",
"supersedenceGraphAriaLabel": "Uygulama yerine geçme grafiği"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Lütfen bir bulma betiği seçin",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "PowerShell betiğini ekle",
"customAttributeObjectName": "Özel öznitelik",
"editPowershellScriptFlowSectionName": "PowerShell betiğini düzenle",
"enforceSignatureCheckInfoBalloonContent": "Komut dosyası güvenilir bir yayımcı tarafından imzalanmış olmalıdır. Varsayılan olarak, hiçbir uyarı veya istem gösterilmez ve komut dosyası engellenmeden çalışır.",
"enforceSignatureCheckInfoBalloonContent": "Betiğin güvenilir bir yayımcı tarafından imzalanmış olması gerekir. Bu varsayılandır.",
"enforceSignatureCheckLabel": "Betik imzası denetimini zorla",
"executionFrequencyLabel": "Yürütme Frekansı",
"failedToSavePolicy": "{0} kaydedilemedi",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "Gözden geçir + ekle ",
"runAs64BitInfoBalloonContent": "Betik, 64 bit istemci mimarisi için 64 bit PowerShell Ana Bilgisayarında çalışır. Varsayılan olarak betik, 32 bit PowerShell Ana Bilgisayarında çalışır.",
"runAs64BitLabel": "Betiği 64 bit PowerShell Ana Bilgisayarında çalıştır",
"scriptContextInfoBalloonContent": "Komut dosyası, istemci bilgisayarda kullanıcının kimlik bilgileriyle çalışır. Varsayılan olarak, komut dosyası sistem bağlamında çalışır.",
"scriptContextInfoBalloonContent": "Betik, istemci bilgisayarda kullanıcının kimlik bilgileriyle çalışır. Varsayılan olarak, betik kullanıcı bağlamında çalışır.",
"scriptContextLabel": "Bu betiği oturum açmış olan kullanıcının kimlik bilgilerini kullanarak çalıştır",
"scriptsettingsTabHeader": "Betik ayarları",
"settingsHeader": "Yapılandırmak üzere bir betik seçin",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Her zaman açık VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Temel bütünlüğü ve cihaz bütünlüğünü denetle",
"androidPlayIntegrityVerdictBasicIntegrity": "Temel bütünlüğü denetle",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Güvenilen sertifikalar, artık Android 11 veya üzeri bir sürümü çalıştıran cihazlara (Samsung Knox cihazları hariç) yüklenemez. SCEP sertifika profillerini kullanıyorsanız güvenilen bir sertifika profili oluşturup dağıtmaya devam etmeniz ve bu profili SCEP sertifika profiliyle ilişkilendirmeniz gerekir ancak güvenilen kök sertifikayı bu cihazlara kendiniz sağlamalısınız.",
"androidTenAndAbovePasswordHeader": "Android 10 ve üzeri sürümler",
"androidTenAndAbovePasswordHeaderDescription": "Bu ayarlar Android 10 veya üzeri sürümleri çalıştıran cihazlar için geçerlidir.",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Cihazın, güvenlik düzeltmeleri ve iyileştirmelerini yüklemek için otomatik güncelleştirme yapmasını sağlayın.",
"complianceUpdatesRequireAutomaticUpdatesName": "Microsoft'tan otomatik güncelleştirmeleri isteme",
"complianceWin10RequiredPasswordTypeDescription": "Bu ayar, gereken Parola/PIN türünü belirler.<br>\r\nCihaz Varsayılanı (Parola, Sayısal PIN veya Alfasayısal PIN gerekiyor)<br>\r\nAlfasayısal (Parola veya Alfasayısal PIN gerekiyor)<br>\r\nSayısal (Parola veya Sayısal PIN gerekiyor)<br>\r\nÖneriler: Gerekli parola türü: Alfasayısal, Parola karmaşıklığı: Rakam ve küçük harf gerektir",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 veya 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 ve 11",
"complianceWindows11DeviceHealthAttestationHeader": "Yalnızca Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Microsoft Defender en düşük sürümü (ör. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Microsoft Defender Kötü Amaçlı Yazılımdan Koruma Yazılımı en düşük sürümü",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Kanıtlama Hizmeti değerlendirme kuralları<br><br>Bir cihazda önyükleme sırasında koruyucu önlemlerin etkinleştirildiğinden emin olmak için bu kuralları kullanın.. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Bu kurallar hakkında daha fazla bilgi edinin</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Kanıtlama Hizmeti değerlendirme ayarları<br><br>Bir cihazda önyükleme sırasında koruyucu önlemlerin etkinleştirildiğinden emin olmak için bu ayarları kullanın. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Bu ayarlar hakkında daha fazla bilgi edinin</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Bir mobil cihazın çalıştırabileceği en yeni işletim sistemi sürümünü seçin. İşlem sistemi sürümü major.minor.build.revision olarak tanımlanır.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Bir mobil cihazın çalıştırabileceği en eski işletim sistemi sürümünü seçin. İşlem sistemi sürümü major.minor.build.revision olarak tanımlanır.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "İşletim sistemi sürümü major.minor.build.revision olarak tanımlanır. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95. yüzdebirlik koruması",
"basicDataProtectionGuidedString": "Temel veri koruması Kullanıcıların iş veya okul hesabı verilerine erişmek için PIN veya biyometri kullanmasını sağlar, iş veya okul hesabı verilerini şifreler ve gerektiğinde yöneticilerin seçili verileri silmesine olanak tanır. Android cihazlar için temel veri koruması, cihazın Google hizmetleriyle uyumlu olmasını sağlar ve Google'ın Verify Apps taramasını etkinleştirir.",
"basicIntegrity": "Temel bütünlük",
"basicIntegrityAndCertifiedDevices": "Temel bütünlük ve sertifikalı cihazlar",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Boş durma zaman aşımı",
"bioPinInactiveTimeoutTooltip": "(dakika) sonra biyometrik yerine PIN ile geçersiz kıl",
"block": "Engelle",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Herhangi bir uygulama için kesme ve kopyalama karakter sınırı",
"camera": "Kamera",
"checkInCountColumnTitle": "KONTROL İLETİŞİMİ SAYISI",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Giriş yaptı",
"checkedInAppNameColumnTitle": "UYGULAMA",
"checkedInButNotSynced": "İade edildi. Uygulama, sonraki eşitlemede şu ilkeyi alacak: {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">İhtiyacım olan uygulamayı bulamıyorum</a></p><p><a data-bind=\"fxclick: onClickLob\">Kendi iş kolu uygulamamı eklemem gerekiyor</a></p>",
"guidedTemplate2": "Kullanıcılarınıza dağıtmak istediğiniz koruma düzeyi size sorulacaktır. Daha fazla bilgi için uygulama koruma ilkeleriyle <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Data Protection Framework'a bakın. </a>",
"guidediOSLabel": "iOS uygulama koruması",
"hardwareBackedKey": "Donanım tarafından desteklenen anahtar",
"healthCheck": "Sistem Durumu Denetimleri",
"helpAndSupport": "Yardım ve destek",
"hideOverrides": "Geçersiz Kılmaları Gizle",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Platform",
"platformDropDownLabel": "Platform",
"platformVersion": "Platform sürümü",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Lütfen aşağıdaki bölümlerde bulunan hataları düzeltin!",
"pleaseSelectAtLeastOneFileError": "Lütfen devam etmeden önce en az bir dosya seçin",
"policies": "İlkeler",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Cihaz kilidi gerektir",
"requireThreatScanOnApps": "Uygulamalarda tehdit taraması iste",
"requiredField": "Bu alan boş olamaz",
"requiredSafetyNetEvaluationType": "Gerekli SafetyNet değerlendirme türü",
"requiredSettings": "Gerekli ayarlar",
"resetPin": "PIN'i Sıfırlama",
"resourceManagement": "Kaynak yönetimi",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Herhangi bir uygulama",
"restrictWebContentOption2": "{0}: Herhangi bir uygulama web bağlantılara izin ver",
"rootCertificate": "Kök Sertifika",
"safetyNetDeviceAttestation": "SafetyNet cihaz kanıtı",
"samsungKnoxAttestationRequired": "Samsung Knox cihaz doğrulaması",
"saveAppsNotificationText": "Seçilen uygulamalar kaydediliyor",
"saveChangesCommandText": "Kaydet",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Filtre modu",
"assignmentToast": "Son kullanıcı bildirimleri",
"assignmentTypeTableHeader": "ATAMA TÜRÜ",
"autoUpdate": "Otomatik güncelleştirme",
"deadlineTimeColumnLabel": "Yükleme son tarihi",
"deliveryOptimizationPriorityHeader": "Teslim iyileştirme önceliği",
"groupTableHeader": "Grup",
@@ -8514,6 +8496,10 @@
"showAll": "Tüm bildirimleri göster",
"showReboot": "Bilgisayar yeniden başlatma işlemleri için bildirim göster"
},
"AutoUpdateSupersededApps": {
"enabled": "Etkin",
"notConfigured": "Yapılandırılmadı"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Arka Plan",
"displayText": "{0} içinde içerik indirme",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "\"Her seferinde oturum açma sıklığı\" oturum denetimi için \"tüm bulut uygulamaları\" veya özellikle desteklenen uygulamalar seçilmelidir",
"allDayCheckboxLabel": "Tüm gün",
"allDevicePlatforms": "Herhangi bir aygıt",
"allGuestUserInfoContent": "Azure AD B2B konuklarını içerir, SharePoint B2B konuklarını içermez",
"allGuestUserInfoContent": "Microsoft Entra B2B konuklarını içerir, SharePoint B2B konuklarını içermez",
"allGuestUserLabel": "Tüm konuk ve dış kullanıcılar",
"allRiskLevelsOption": "Tüm risk düzeyleri",
"allTrustedLocationLabel": "Tüm güvenilen konumlar",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Uyumlu cihazlar gerektirme hakkında daha fazla bilgi edinin.",
"controlsDeviceComplianceInfoBubble": "Cihaz, Intune ile uyumlu olmalıdır. Cihaz uyumlu değilse, kullanıcıdan cihazı uyumlu hale getirmesi istenir.",
"controlsDomainJoinedAriaLabel": "Hibrit Azure AD ile katılan cihazlar gerektirme hakkında daha fazla bilgi edinin.",
"controlsDomainJoinedInfoBubble": "Cihazlar Hibrit Azure AD ile katılan cihazlar olmalıdır.",
"controlsDomainJoinedAriaLabel": "Microsoft Entra hibrit ile katılan cihazlar gerektirme hakkında daha fazla bilgi edinin.",
"controlsDomainJoinedInfoBubble": "Cihazların Microsoft Entra hibrite katılmış olması gerekir.",
"controlsMamAriaLabel": "Onaylı istemci uygulamaları gerektirme hakkında daha fazla bilgi edinin.",
"controlsMamInfoBubble": "Cihaz bu onaylı istemci uygulamalarını kullanmalıdır.",
"controlsMfaInfoBubble": "Kullanıcının, telefon görüşmeleri ve kısa mesaj gibi ek güvenlik gereksinimleri tamamlaması gerekir",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Cihaz uyumlu olarak işaretli",
"deviceStateCompliantInfoContent": "Intune ile uyumlu cihazlar bu ilkenin değerlendirilmesinden dışlanır; örneğin ilke erişimi engellerse, Intune ile uyumlu cihazlar dışındaki tüm cihazları engeller.",
"deviceStateConditionConfigureInfoContent": "Cihaz durumuna göre ilkeyi yapılandırma",
"deviceStateConditionSelectorInfoContent": "Kullanıcının oturum açmak için kullandığı cihazın 'Hibrit Azure AD ile katılan' veya 'uyumlu olarak işaretli' olup olmadığını belirtir.\n Bu kullanımdan kaldırıldı. Bunun yerine '{1}' kullanın.",
"deviceStateConditionSelectorInfoContent": "Kullanıcının oturum açmak için kullandığı cihazın 'Microsoft Entra hibrit ile katılan' veya 'uyumlu olarak işaretli' olup olmadığını belirtir.\n Bu kullanımdan kaldırıldı. Bunun yerine '{1}' kullanın.",
"deviceStateConditionSelectorLabel": "Cihaz durumu (kullanım dışı)",
"deviceStateDomainJoined": "Cihaz Hibrit Azure AD ile katıldı",
"deviceStateDomainJoinedInfoContent": "Hibrit Azure AD ile katılan cihazlar bu ilkenin değerlendirilmesinden dışlanır; örneğin ilke erişimi engellerse, Hibrit Azure AD'ye katılmış cihazlar dışındaki tüm cihazları engeller.",
"deviceStateDomainJoined": "Cihaz, Microsoft Entra hibrite katılmış",
"deviceStateDomainJoinedInfoContent": "Microsoft Entra hibrit ile katılan cihazlar bu ilkenin değerlendirilmesinden dışlanır; örneğin ilke erişimi engellerse, Microsoft Entra hibrite katılmış cihazlar dışındaki tüm cihazları engeller.",
"deviceStateDomainJoinedInfoLinkText": "Daha fazla bilgi edinin.",
"deviceStateExcludeDescription": "Cihazları ilkeden dışlamak için kullanılan cihaz durumu koşulunu seçin.",
"deviceStateIncludeAndExcludeOneLabel": "{0} ve şunu dışla: {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Yalnızca desteklenen platformlarla Exchange ActiveSync",
"excludeAllTrustedLocationSelectorText": "tüm güvenilen konumları hariç tut",
"featureRequiresP2": "Bu özellik Azure AD Premium 2 lisansı gerektirir.",
"featureRequiresP2": "Bu özellik, Microsoft Entra P2 lisansı gerektirir.",
"friday": "Cuma",
"grantControls": "İzin verme denetimleri",
"gridNetworkTrusted": "Güvenilir",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Seçili Özel Bağlantılar",
"lowRisk": "Düşük",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "Kuruluşunuzun Koşullu Erişim ilkelerini yönetebilmesi için Azure AD Premium P1 veya P2 gerekiyor.",
"managePoliciesLicenseText": "Kurumunuzun Koşullu Erişim ilkelerini yönetebilmesi için Microsoft Entra Kimlik P1 veya P2 gerekiyor.",
"manageSecurityDefaultsAriaLabel": "Güvenlik varsayılanları ayarlarını yönetin.",
"markAsTrustedCheckboxInfoBalloonContent": "Güvenilen bir konumdan oturum açmak, kullanıcının oturum açma riskini azaltır. Bu konumu yalnızca, girilen IP aralıkları şirketiniz tarafından tanınıyor ve bu IP aralıklarına güveniliyorsa güvenilen olarak işaretleyin.",
"markAsTrustedCheckboxLabel": "Güvenilen konum olarak işaretle",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Ülkeler/Bölgeler",
"namedLocationTypeLabel": "Konumu şunu kullanarak tanımla:",
"namedLocationUpsellBanner": "Bu görünüm kullanımdan kaldırıldı. Yeni ve iyileştirilmiş Adlandırılmış konumlar görünümüne gidin.",
"namedLocationsHelpDescription": "Adlandırılmış konumlar, Azure AD güvenlik raporları tarafından hatalı pozitif sonuçları ve Azure AD Koşullu Erişim ilkelerini azaltmak için kullanılır.\n[Daha fazla bilgi][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Adlandırılmış konumlar, Microsoft Entra Kimlik güvenlik raporları tarafından, hatalı pozitif sonuçları ve Microsoft Entra Koşullu Erişim ilkelerini azaltmak için kullanılır.\n[Daha fazla bilgi][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Yeni bir IP aralığı ekleyin (ör: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "En az bir ülke/bölge seçmeniz gerekiyor",
"namedNetworkDeleteCommand": "Sil",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "Adlandırılmış yeni konum",
"namedNetworksConditionHelpDescription": "Kullanıcı erişimini kullanıcıların fiziksel konumlarına göre denetleyin.\n[Daha fazla bilgi][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} ve {1} dışlandı",
"namedNetworksHelpDescription": "Adlandırılmış konumlar, Azure AD güvenlik raporları tarafından, hatalı pozitif sonuçları ve Azure AD Koşullu Erişim ilkelerini azaltmak için kullanılır.\n[Daha fazla bilgi][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Adlandırılmış konumlar, Microsoft Entra Kimliği güvenlik raporları tarafından, hatalı pozitif sonuçları ve Microsoft Entra Koşullu Erişim ilkelerini azaltmak için kullanılır.\n[Daha fazla bilgi][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} eklendi",
"namedNetworksNone": "Adlandırılmış konum bulunamadı.",
"namedNetworksTitle": "Konumları yapılandırın",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Bu ilkeyi yalnızca genel yöneticiler kaydedebilir.",
"or": "{0} VEYA {1} ",
"pickerDoneCommand": "Bitti",
"policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium ile kendi ilkelerinize ek olarak Bulut uygulamaları, Oturum açma riski, Cihaz platformları gibi hedefe yönelik koşullar oluşturun",
"policiesBladeAdPremiumUpsellBannerText": "Microsoft Entra Kimlik Premium ile Bulut uygulamaları, Oturum açma riski ve Cihaz platformları gibi konularla ilgili kendi ilkelerinizi ve hedefe yönelik koşullar oluşturun",
"policiesBladeTitle": "İlkeler",
"policiesBladeTitleWithAppName": "İlkeler: {0}",
"policiesDisabledBannerText": "Bağlı oturum açma özniteliğine sahip uygulamalarda ilke oluşturma ve düzenleme özelliği yasaklanmış.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Kullanıcının oturum açtığı konum (IP adresi aralığı kullanılarak belirlenir)",
"policyConditionLocationPreview": "Konumlar (Önizleme)",
"policyConditionSigninRisk": "Oturum açma riski",
"policyConditionSigninRiskDescription": "Oturum açma eyleminin, hesabın kullanıcısı dışındaki biri tarafından gerçekleştirilme olasılığı. Risk düzeyi yüksek, orta veya düşük olabilir. Azure AD Premium 2 lisansı gerektirir.",
"policyConditionSigninRiskDescription": "Oturum açma eyleminin, hesabın kullanıcısı dışındaki biri tarafından gerçekleştirilme olasılığı. Risk düzeyi yüksek, orta veya düşük olabilir. Microsoft Entra Kimlik P2 lisansı gerektirir.",
"policyConditionUserRisk": "Kullanıcı riski",
"policyConditionUserRiskDescription": "İlkenin zorlanması için gereken kullanıcı risk düzeylerini yapılandırın",
"policyConditioniClientApp": "İstemci uygulamaları",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Erişimi engelleyin veya erişim izni vermek için karşılanması gereken ek gereksinimleri seçin",
"policyControlMfaChallengeDisplayedName": "Çok faktörlü kimlik doğrulaması gerektir",
"policyControlRequireCompliantAppDisplayedName": "Uygulama koruma ilkesi iste",
"policyControlRequireDomainJoinedDisplayedName": "Hibrit Azure AD ile katılmayı zorunlu kılın",
"policyControlRequireDomainJoinedDisplayedName": "Microsoft Entra hibrite katılmış cihaz gerektir",
"policyControlRequireMamDisplayedName": "Onaylı istemci uygulaması gerektir",
"policyControlRequiredPasswordChangeDisplayedName": "Parola değişikliği iste",
"policyControlSelectAuthStrength": "Kimlik doğrulaması gücü gerektir",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "{0} başarıyla güncelleştirildi. \"İlkeyi etkinleştir\" seçeneğini \"Açık\" olarak ayarladıysanız ilke birkaç dakika içinde etkinleştirilecektir.",
"policyUpdateSuccessTitle": "{0} başarıyla güncelleştirildi",
"primaryCol": "Birincil",
"privateLinkLabel": "Azure AD Özel Bağlantı",
"privateLinkLabel": "Microsoft Entra Kimliği Özel Bağlantı",
"reportOnlyInfoBox": "Yalnızca rapor modu: İlkeler oturum açma sırasında değerlendirilir ve kaydedilir ancak kullanıcıları etkilemez.",
"requireAllControlsText": "Seçilen tüm denetimleri gerekli kıl",
"requireCompliantDevice": "Uyumlu cihaz gerektir",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Hassas uygulamalar için her zaman veya yalnızca şirket ağının dışından erişim sağlandığı durumlarda çok faktörlü kimlik doğrulaması gerektirin.",
"upsellAppsTitle": "Uygulamaları güvenli hale getirin",
"upsellBannerText": "Bu özelliği kullanmak için ücretsiz bir Premium deneme sürümü edinin",
"upsellDataDescription": "Şirket kaynaklarına erişim izni vermek için, cihazın uyumlu olarak işaretlenmesini veya Hibrit Azure AD ile katılmayı zorunlu kılın.",
"upsellDataDescription": "Şirket kaynaklarına erişim izni vermek için, cihazın uyumlu olarak işaretlenmesini veya Microsoft Entra hibrite katılmayı zorunlu kılın.",
"upsellDataTitle": "Verileri güvenli hale getirin",
"upsellDescription": "Koşullu Erişim sayesinde, kullanıcılarınıza tüm cihazlardan en iyi şekilde çalışma olanağı sağlarken aynı zamanda kurumsal verilerinizi güvende tutmanız için gereken denetim ve korumaya sahip olursunuz. Örneğin, şirket ağı dışından gerçekleştirilen ya da uyumluluk ilkelerini karşılayan cihazlara yönelik erişimi engelleyebilirsiniz.",
"upsellRiskDescription": "Microsoftun makine öğrenmesi sistemi tarafından algılanan risk olayları için çok faktörlü kimlik doğrulaması gerektirin.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "{0} başarıyla güncelleştirildi.",
"vpnCertUpdateSuccessTitle": "{0} başarıyla güncelleştirildi",
"vpnFeatureInfo": "VPN bağlantısı ve Koşullu Erişim hakkında daha fazla bilgi için buraya tıklayın.",
"vpnFeatureWarning": "Azure portalında bir VPN sertifikası oluşturulduğunda Azure AD, VPN istemcisine kısa süreli sertifikalar vermek için bunu hemen kullanmaya başlar. VPN istemcisinin kimlik doğrulamasıyla ilgili sorunları önlemek için VPN sertifikasının VPN sunucusuna hızla dağıtılması önemlidir.",
"vpnFeatureWarning": "Portalda bir VPN sertifikası oluşturulduğunda Microsoft Entra Kimlik, VPN istemcisine kısa süreli sertifikalar vermek için bunu hemen kullanmaya başlar. VPN istemcisinin kimlik doğrulamasıyla ilgili sorunları önlemek için VPN sertifikasının VPN sunucusuna hızla dağıtılması önemlidir.",
"vpnMenuText": "VPN bağlantısı",
"vpncertDropdownDefaultOption": "Süre",
"vpncertDropdownInfoBalloonContent": "Oluşturmak istediğiniz sertifikanın süresini seçin",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Özel Intune rolü",
"customRole": "Özel Rol"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} bir veya daha fazla ilke kümesine eklenmiş. {0} öğesini silerseniz, bu öğeyi artık bu ilke kümeleri aracılığıyla atayamazsınız. Yine de silinsin mi?",
"contentWithError": "{0} bir veya daha fazla ilke kümesine eklenmiş olabilir. {0} öğesini silerseniz, bu öğeyi artık bu ilke kümeleri aracılığıyla atayamazsınız. Yine de silinsin mi?",
"header": "Bu kısıtlamayı silmek istediğinizden emin misiniz?"
},
"DeviceLimit": {
"description": "Bir kullanıcının kaydedebileceği en fazla cihaz sayısını belirtin.",
"header": "Cihaz sınırı kısıtlamaları",
"info": "Her kullanıcının kaç cihaz kaydedebileceğini tanımlayın."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "1.0 veya üzeri olmalıdır.",
"android": "Geçerli bir sürüm numarası girin. Örnekler: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Geçerli bir sürüm numarası girin. Örnekler: 5.0, 5.1.1",
"iOS": "Geçerli bir sürüm numarası girin. Örnekler: 9.0, 10.0, 9.0.2",
"mac": "Geçerli bir sürüm numarası girin. Örnekler: 10, 10.10, 10.10.1",
"min": "En düşük değer {0} değerinden düşük olamaz",
"minMax": "En düşük sürüm, en yüksek sürümden büyük olamaz.",
"windows": "10.0 veya üzeri olmalıdır. 8.1 cihazlara izin vermek için boş bırakın",
"windowsMobile": "10.0 veya üzeri olmalıdır. 8.1 cihazlara izin vermek için boş bırakın"
},
"allPlatformsBlocked": "Tüm cihaz platformları engellendi. Platform yapılandırmasını etkinleştirmek için platform kaydına izin verin.",
"blockManufacturerPlaceHolder": "Üretici adı",
"blockManufacturersHeader": "Engellenen üreticiler",
"cannotRestrict": "Kısıtlama desteklenmiyor",
"configurationDescription": "Bir cihazın kaydedilmesi için karşılanması gereken platform yapılandırma kısıtlamalarını belirtin. Kayıt sonrasında cihazları kısıtlamak için uyumluluk ilkelerini kullanın. ana.ikincil.derleme gibi sürümler tanımlayın. Sürüm kısıtlamaları yalnızca Şirket Portalı ile kaydedilen cihazlara uygulanır. Intune, cihazları varsayılan olarak kişiye ait olarak sınıflandırır. Cihazların şirkete ait olarak sınıflandırılması için ek eylem gerekir.",
"configurationDescriptionLabel": "Kayıt kısıtlamalarını ayarlama hakkında daha fazla bilgi edinin",
"configurations": "Platformları yapılandırma",
"deviceManufacturer": "Cihaz üreticisi",
"header": "Cihaz türü kısıtlamaları",
"info": "Hangi platformların, sürümlerin ve yönetim türlerinin kayıt olabileceğini tanımlayın.",
"manufacturer": "Üretici",
"max": "En Fazla",
"maxVersion": "En yüksek sürüm",
"min": "En Küçük",
"minVersion": "En düşük sürüm",
"newPlatforms": "Yeni platformlara izin verdiniz. Platform Yapılandırmalarını güncelleştirmeniz önerilir.",
"personal": "Kişiye ait",
"platform": "Platform",
"platformDescription": "Aşağıdaki platformların kaydedilmesine izin verebilirsiniz. Yalnızca desteklemediğiniz platformları engelleyin. İzin verilen platformlar ek kayıt kısıtlamalarıyla yapılandırılabilir.",
"platformSettings": "Platform ayarları",
"platforms": "Platform seçin",
"platformsSelected": "{0} platform seçildi",
"type": "Tür",
"versions": "sürümler",
"versionsRange": "En düşük/en yüksek aralığına izin ver:",
"windowsTooltip": "Mobil Cihaz Yönetimi aracılığıyla kaydı kısıtlar. PC aracısının yüklenmesini kısıtlamaz. Yalnızca Windows 10 ve Windows 11 sürümleri desteklenir. Windows 8.1'e izin vermek için sürümleri boş bırakın."
},
"Priority": {
"saved": "Kısıtlama Öncelikleri başarıyla kaydedildi."
},
"Row": {
"announce": "Öncelik: {0}, Ad: {1}, Atanan: {2}"
},
"Table": {
"deployed": "Dağıtıldı",
"name": "Ad",
"priority": "Öncelik"
},
"Type": {
"limit": "Cihaz sınırı kısıtlaması",
"type": "Cihaz türü kısıtlaması"
},
"allUsers": "Tüm Kullanıcılar",
"androidRestrictions": "Android kısıtlamaları",
"create": "Kısıtlama oluştur",
"defaultLimitDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan Cihaz Sınırı Kısıtlamasıdır.",
"defaultTypeDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan Cihaz Türü Kısıtlamasıdır.",
"defaultWhfbDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan İş İçin Windows Hello yapılandırmasıdır.",
"deleteMessage": "Etkilenen kullanıcılara, atanan bir sonraki en yüksek öncelik kısıtlaması veya başka bir kısıtlama atanmamışsa varsayılan kısıtlama uygulanacaktır.",
"deleteTitle": "{0} kısıtlamasını silmek istediğinizden emin misiniz?",
"descriptionHint": "Kısıtlama ayarları tarafından belirlenen iş kullanımını veya kısıtlama düzeyini açıklayan kısa bir paragraf.",
"edit": "Kısıtlamayı düzenle",
"info": "Bir cihaz, kullanıcısına atanan en yüksek öncelikli kayıt kısıtlamalarıyla uyumlu olmalıdır. Bir cihaz kısıtlamasını sürükleyerek önceliğini değiştirebilirsiniz. Varsayılan kısıtlamalar tüm kullanıcılar için en düşük önceliktedir ve kullanıcısız kayıtları yönetir. Varsayılan kısıtlamalar düzenlenebilir, ancak silinemez.",
"iosRestrictions": "iOS kısıtlamaları",
"mDM": "MDM",
"macRestrictions": "macOS kısıtlamaları",
"maxVersion": "En Yüksek Sürüm",
"minVersion": "En Düşük Sürüm",
"nameHint": "Bu, kısıtlama kümesini tanımlamak üzere görünür olan birincil öznitelik olacaktır.",
"noAssignmentsStatusBar": "Kısıtlamayı en az bir gruba atayın. Özellikler'e tıklayın.",
"notFound": "Kısıtlama bulunamadı. Silinmiş olabilir.",
"personallyOwned": "Kişilere ait cihazlar",
"restriction": "Kısıtlama",
"restrictionLowerCase": "kısıtlama",
"restrictionType": "Kısıtlama türü",
"selectType": "Kısıtlama türünü seçin",
"selectValidation": "Lütfen bir platform seçin",
"typeHint": "Cihaz özelliklerini kısıtlamak için Cihaz Türü Kısıtlamasını seçin. Kullanıcı başına cihaz sayısını kısıtlamak için Cihaz Sınırı Kısıtlamasını seçin.",
"typeRequired": "Kısıtlama türü gereklidir.",
"winPhoneRestrictions": "Windows Phone kısıtlamaları",
"windowsECv1Info": "Eski kayıt kısıtlamaları düzenlenemez veya yeniden önceliklendirilemez, yalnızca silinebilir.",
"windowsECv2Info": "Kayıt kısıtlamalarını sürükleyip bırakarak önceliklerini belirtebilirsiniz. Varsayılan ve önceden yapılandırılmış kısıtlamaları aşağıda görüntüleyin. Tüm yeni kayıt kısıtlamaları, varsayılan ve önceden yapılandırılmış kısıtlamalardan daha yüksek önceliğe sahip olacaktır.",
"windowsRestrictions": "Windows kısıtlamaları",
"windowsRestrictionsPreview": "Filtre tabanlı Windows kısıtlamaları (önizleme)"
},
"InstallContextType": {
"device": "Cihaz",
"deviceContext": "Cihaz bağlamı",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Kural söz dizimi",
"filters": "Filtreler"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} bir veya daha fazla ilke kümesine eklenmiş. {0} öğesini silerseniz, bu öğeyi artık bu ilke kümeleri aracılığıyla atayamazsınız. Yine de silinsin mi?",
"contentWithError": "{0} bir veya daha fazla ilke kümesine eklenmiş olabilir. {0} öğesini silerseniz, bu öğeyi artık bu ilke kümeleri aracılığıyla atayamazsınız. Yine de silinsin mi?",
"header": "Bu kısıtlamayı silmek istediğinizden emin misiniz?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Kullanıcının ayar değiştirmesine izin ver",
"tooltip": "Kullanıcının ayarı değiştirmesine izin verilip verilmediğini belirtin."
},
"AllowWorkAccounts": {
"title": "Yalnızca iş veya okul hesaplarına izin ver",
"tooltip": " Bu ayar etkinleştirildiğinde kullanıcılar Outlook'a kişisel e-posta ve depolama hesapları ekleyemez. Kullanıcı Outlook'a kişisel hesap eklemişse kişisel hesabı kaldırması istenir. Kullanıcı bu hesabı kaldırmazsa iş veya okul hesabı eklenemez."
},
"BlockExternalImages": {
"title": "Harici görüntüleri engelle",
"tooltip": "Harici görüntüleri engelleme özelliği etkinleştirildiğinde uygulama İnternet'te barındırılan ve ileti gövdesine ekli görüntülerin indirilmesini engeller. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarı Kapalı'dır"
},
"ConfigureEmail": {
"title": "E-posta hesabı ayarlarını yapılandır"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Varsayılan uygulama imzası, uygulamanın ileti oluşturma sırasında varsayılan imza olarak \"Android için Outlook'u edinin\" imzasını kullanıp kullanmayacağını belirtir. Ayar Kapalı olarak yapılandırıldıysa varsayılan imza kullanılmaz, ancak kullanıcılar kendi imzalarını ekleyebilir.\r\n\r\nYapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarıık olarak ayarlanır.",
"iOS": "Varsayılan uygulama imzası, uygulamanın ileti oluşturma sırasında varsayılan imza olarak \"iOS için Outlook'u edinin\" imzasını kullanıp kullanmayacağını belirtir. Ayar Kapalı olarak yapılandırıldıysa varsayılan imza kullanılmaz, ancak kullanıcılar kendi imzalarını ekleyebilir.\r\n\r\nYapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarıık olarak ayarlanır."
},
"title": "Varsayılan uygulama imzası"
},
"OfficeFeedReplies": {
"title": "Keşif Akışı",
"tooltip": "Keşif Akışı, en sık erişilen Office dosyalarınızı öne çıkarır. Kullanıcı için Delve etkinleştirildiğinde, bu akış da varsayılan olarak etkinleştirilir. Yapılandırılmadı olarak ayarlandığında, varsayılan uygulama ayarıık olarak belirlenir."
},
"OrganizeMailByThread": {
"title": "Postaları yazışmaya göre düzenleme",
"tooltip": "Outlook varsayılan olarak, posta konuşmalarını yazışmalardan oluşan bir görüşme görünümünde toplar. Bu ayar devre dışı bırakılırsa Outlook her bir postayı ayrı ayrı görüntüler ve bunları yazışmaya göre gruplandırmaz."
},
"PlayMyEmails": {
"title": "E-postalarımı Oynat",
"tooltip": "E-postalarımı Oynat özelliği uygulamada varsayılan olarak etkin değildir ancak uygun kullanıcıların gelen kutusunda bir başlık olarak öne çıkarılır. Kapalı olarak ayarlandığında, bu özellik uygulamada uygun kullanıcılar için öne çıkarılmaz. Bu özellik Kapalı olarak ayarlansa bile kullanıcılar, E-postalarımı Oynat özelliğini uygulamadan el ile etkinleştirmeyi seçebilir. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarıık olur ve özellik uygun kullanıcılar için öne çıkarılır."
},
"SuggestedReplies": {
"title": "Önerilen yanıtlar",
"tooltip": "Bir iletiyi açtığınızda Outlook, iletinin altında yanıtlar önerebilir. Önerilen bir yanıtı seçerseniz göndermeden önce bunu düzenleyebilirsiniz."
},
"SyncCalendars": {
"title": "Takvimleri Eşitle",
"tooltip": "Kullanıcıların Outlook takvimini yerel takvim uygulamasıyla ve veritabanıyla eşitleyip eşitleyemeyeceğini yapılandırın."
},
"TextPredictions": {
"title": "Metin Tahminleri",
"tooltip": "Outlook, siz ileti oluştururken sözcük ve tümceler önerebilir. Outlook öneri sunduğunda öneriyi kabul etmek için kaydırın. Yapılandırılmadı olarak ayarlandığında varsayılan uygulama ayarıık olarak ayarlanır."
},
"DeviceLimit": {
"description": "Bir kullanıcının kaydedebileceği en fazla cihaz sayısını belirtin.",
"header": "Cihaz sınırı kısıtlamaları",
"info": "Her kullanıcının kaç cihaz kaydedebileceğini tanımlayın."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "1.0 veya üzeri olmalıdır.",
"android": "Geçerli bir sürüm numarası girin. Örnekler: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Geçerli bir sürüm numarası girin. Örnekler: 5.0, 5.1.1",
"iOS": "Geçerli bir sürüm numarası girin. Örnekler: 9.0, 10.0, 9.0.2",
"mac": "Geçerli bir sürüm numarası girin. Örnekler: 10, 10.10, 10.10.1",
"min": "En düşük değer {0} değerinden düşük olamaz",
"minMax": "En düşük sürüm, en yüksek sürümden büyük olamaz.",
"windows": "10.0 veya üzeri olmalıdır. 8.1 cihazlara izin vermek için boş bırakın",
"windowsMobile": "10.0 veya üzeri olmalıdır. 8.1 cihazlara izin vermek için boş bırakın"
},
"allPlatformsBlocked": "Tüm cihaz platformları engellendi. Platform yapılandırmasını etkinleştirmek için platform kaydına izin verin.",
"blockManufacturerPlaceHolder": "Üretici adı",
"blockManufacturersHeader": "Engellenen üreticiler",
"cannotRestrict": "Kısıtlama desteklenmiyor",
"configurationDescription": "Bir cihazın kaydedilmesi için karşılanması gereken platform yapılandırma kısıtlamalarını belirtin. Kayıt sonrasında cihazları kısıtlamak için uyumluluk ilkelerini kullanın. ana.ikincil.derleme gibi sürümler tanımlayın. Sürüm kısıtlamaları yalnızca Şirket Portalı ile kaydedilen cihazlara uygulanır. Intune, cihazları varsayılan olarak kişiye ait olarak sınıflandırır. Cihazların şirkete ait olarak sınıflandırılması için ek eylem gerekir.",
"configurationDescriptionLabel": "Kayıt kısıtlamalarını ayarlama hakkında daha fazla bilgi edinin",
"configurations": "Platformları yapılandırma",
"deviceManufacturer": "Cihaz üreticisi",
"header": "Cihaz türü kısıtlamaları",
"info": "Hangi platformların, sürümlerin ve yönetim türlerinin kayıt olabileceğini tanımlayın.",
"manufacturer": "Üretici",
"max": "En Fazla",
"maxVersion": "En yüksek sürüm",
"min": "En Küçük",
"minVersion": "En düşük sürüm",
"newPlatforms": "Yeni platformlara izin verdiniz. Platform Yapılandırmalarını güncelleştirmeniz önerilir.",
"personal": "Kişiye ait",
"platform": "Platform",
"platformDescription": "Aşağıdaki platformların kaydedilmesine izin verebilirsiniz. Yalnızca desteklemediğiniz platformları engelleyin. İzin verilen platformlar ek kayıt kısıtlamalarıyla yapılandırılabilir.",
"platformSettings": "Platform ayarları",
"platforms": "Platform seçin",
"platformsSelected": "{0} platform seçildi",
"type": "Tür",
"versions": "sürümler",
"versionsRange": "En düşük/en yüksek aralığına izin ver:",
"windowsTooltip": "Mobil Cihaz Yönetimi aracılığıyla kaydı kısıtlar. PC aracısının yüklenmesini kısıtlamaz. Yalnızca Windows 10 ve Windows 11 sürümleri desteklenir. Windows 8.1'e izin vermek için sürümleri boş bırakın."
},
"Priority": {
"saved": "Kısıtlama Öncelikleri başarıyla kaydedildi."
},
"Row": {
"announce": "Öncelik: {0}, Ad: {1}, Atanan: {2}"
},
"Table": {
"deployed": "Dağıtıldı",
"name": "Ad",
"priority": "Öncelik"
},
"Type": {
"limit": "Cihaz sınırı kısıtlaması",
"type": "Cihaz türü kısıtlaması"
},
"allUsers": "Tüm Kullanıcılar",
"androidRestrictions": "Android kısıtlamaları",
"create": "Kısıtlama oluştur",
"defaultLimitDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan Cihaz Sınırı Kısıtlamasıdır.",
"defaultTypeDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan Cihaz Türü Kısıtlamasıdır.",
"defaultWhfbDescription": "Bu, grup üyeliğinden bağımsız olarak tüm kullanıcılara en düşük öncelikte uygulanan varsayılan İş İçin Windows Hello yapılandırmasıdır.",
"deleteMessage": "Etkilenen kullanıcılara, atanan bir sonraki en yüksek öncelik kısıtlaması veya başka bir kısıtlama atanmamışsa varsayılan kısıtlama uygulanacaktır.",
"deleteTitle": "{0} kısıtlamasını silmek istediğinizden emin misiniz?",
"descriptionHint": "Kısıtlama ayarları tarafından belirlenen iş kullanımını veya kısıtlama düzeyini açıklayan kısa bir paragraf.",
"edit": "Kısıtlamayı düzenle",
"info": "Bir cihaz, kullanıcısına atanan en yüksek öncelikli kayıt kısıtlamalarıyla uyumlu olmalıdır. Bir cihaz kısıtlamasını sürükleyerek önceliğini değiştirebilirsiniz. Varsayılan kısıtlamalar tüm kullanıcılar için en düşük önceliktedir ve kullanıcısız kayıtları yönetir. Varsayılan kısıtlamalar düzenlenebilir, ancak silinemez.",
"iosRestrictions": "iOS kısıtlamaları",
"mDM": "MDM",
"macRestrictions": "macOS kısıtlamaları",
"maxVersion": "En Yüksek Sürüm",
"minVersion": "En Düşük Sürüm",
"nameHint": "Bu, kısıtlama kümesini tanımlamak üzere görünür olan birincil öznitelik olacaktır.",
"noAssignmentsStatusBar": "Kısıtlamayı en az bir gruba atayın. Özellikler'e tıklayın.",
"notFound": "Kısıtlama bulunamadı. Silinmiş olabilir.",
"personallyOwned": "Kişilere ait cihazlar",
"restriction": "Kısıtlama",
"restrictionLowerCase": "kısıtlama",
"restrictionType": "Kısıtlama türü",
"selectType": "Kısıtlama türünü seçin",
"selectValidation": "Lütfen bir platform seçin",
"typeHint": "Cihaz özelliklerini kısıtlamak için Cihaz Türü Kısıtlamasını seçin. Kullanıcı başına cihaz sayısını kısıtlamak için Cihaz Sınırı Kısıtlamasını seçin.",
"typeRequired": "Kısıtlama türü gereklidir.",
"winPhoneRestrictions": "Windows Phone kısıtlamaları",
"windowsRestrictions": "Windows kısıtlamaları"
},
"ThemesEnabled": {
"title": "Etkin temalar",
"tooltip": "Kullanıcının özel görsel tema kullanmasına izin verilip verilmeyeceğini belirtin."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS cihazları (önizleme)"
@@ -12507,6 +12558,7 @@
"user": "Kullanıcı",
"userExecutionStatus": "Kullanıcı durumu",
"wdacSupplementalPolicies": "S modu ek ilkeleri",
"win32CatalogUpdateApp": "Windows (Win32) katalog uygulamaları için güncelleştirmeler",
"windows10DriverUpdate": "Windows 10 ve üzeri için sürücü 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",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Windows 365 iş ortağı bağlayıcıları",
"windowsDiagnosticData": "Windows verileri",
"windowsEnterpriseCertificate": "Windows Enterprise sertifikası",
"windowsManagement": "PowerShell betikleri",
"windowsManagement": "Betikler",
"windowsSideLoadingKeys": "Windows dışarıdan yükleme anahtarları",
"windowsSymantecCertificate": "Windows DigiCert sertifikası",
"windowsThreatReport": "Tehdit aracı durumu"
@@ -12551,6 +12603,10 @@
"postponed": "Ertelendi",
"priority": "Yüksek Öncelik"
},
"AutoUpdateSupersededApps": {
"label": "Otomatik güncelleştirme",
"sublabel": "Bu uygulamanın yenilenen tüm sürümlerini otomatik olarak yükselt"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Arka Plan",
"displayText": "{0} içinde içerik indirme",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Allow user to change setting",
"tooltip": "Specify if the user is allowed to change the setting."
},
"AllowWorkAccounts": {
"title": "Allow only work or school accounts",
"tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
},
"BlockExternalImages": {
"title": "Block external images",
"tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "App Version",
"dependencyName": "Dependency name",
"lastModifiedTime": "Last modified time",
"relationship": "Relationship",
"replaced": "Replaced",
"searchPlaceholder": "Filter by app name",
"status": "Status details",
"statusDetails": "Status",
"supersedenceName": "Supersedence name"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Child dependency",
"indirectSupersedence": "Not directly related",
"supersedenceAncestors": "Superseding",
"supersedenceDescendants": "Superseded"
},
"ConfigureEmail": {
"title": "Configure email account settings"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
"iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
},
"title": "Default app signature"
},
"OfficeFeedReplies": {
"title": "Discover Feed",
"tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
},
"OrganizeMailByThread": {
"title": "Organize mail by thread",
"tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
},
"PlayMyEmails": {
"title": "Play My Emails",
"tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
},
"SuggestedReplies": {
"title": "Suggested replies",
"tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
},
"SyncCalendars": {
"title": "Sync Calendars",
"tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
},
"TextPredictions": {
"title": "Text Predictions",
"tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
"SupersededReplaced": {
"no": "No",
"yes": "Yes"
},
"ThemesEnabled": {
"title": "Themes enabled",
"tooltip": "Specify if the user is allowed to use a custom visual theme."
}
},
"Tabs": {
"chart": "Chart",
"dependency": "Dependency",
"label": "View: ",
"supersedence": "Supersedence",
"table": "Table"
},
"dependencyGraphAriaLabel": "App dependency chart",
"supersedenceGraphAriaLabel": "App supersedence chart"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Please select a discovery script",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Always-on VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Check basic integrity & device integrity",
"androidPlayIntegrityVerdictBasicIntegrity": "Check basic integrity",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Trusted certificates can no longer install on devices that run Android 11 or later, except for Samsung Knox devices. If you use SCEP certificate profiles, you must continue to create and deploy a trusted certificate profile and associate it with the SCEP certificate profile, but you must manually deliver the trusted root certificate to those devices.",
"androidTenAndAbovePasswordHeader": "Android 10 and later",
"androidTenAndAbovePasswordHeaderDescription": "These settings work for devices running Android 10 or later.",
@@ -2769,8 +2750,8 @@
"blockTouchIDAndFaceIDUnlockName": "Block Touch ID and Face ID unlock",
"blockUSBConnectionDescription": "Specifies whether the USB connection on the device is enabled. USB charging will not be affected by this setting. This setting isn't supported on Windows desktop platforms.",
"blockUSBConnectionName": "USB connection",
"blockUnifiedPasswordForWorkProfileDescription": "Block using one lock if you want users to use two different passwords for their lock screen and work profile. Using one screen lock is convenient to the user, but makes the work profile accessible to anyone who can unlock the device. Applies to devices running Android 9.0 Pie and later.",
"blockUnifiedPasswordForWorkProfileName": "One lock for work profile and device",
"blockUnifiedPasswordForWorkProfileDescription": "Block if you want users to use two different passwords for their lock screen and work profile. Applies to devices running Android 9.0 Pie and later.",
"blockUnifiedPasswordForWorkProfileName": "One lock for device and work profile",
"blockUnmanagedDocumentsInManagedAppsName": "Block viewing non-corporate documents in corporate apps",
"blockUntrustedTLSCertificatesDescription": "Block untrusted Transport Layer Security (TLS) certificates.",
"blockUntrustedTLSCertificatesName": "Block untrusted TLS certificates",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Force the device to automatically update for security patches and improvements.",
"complianceUpdatesRequireAutomaticUpdatesName": "Require automatic updates from Microsoft",
"complianceWin10RequiredPasswordTypeDescription": "This setting determines the type of Password/PIN required.<br>\nDevice Default (Password, Numeric PIN, or Alphanumeric PIN required)<br>\nAlphanumeric (Password or Alphanumberic PIN required)<br>\nNumeric (Password or Numeric PIN required)<br>\nRecommendations: Required password type: Alphanumeric, Password complexity: Require digits and lowercase letters",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 or 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 and 11",
"complianceWindows11DeviceHealthAttestationHeader": "Windows 11 only",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Minimum version of Microsoft Defender (e.g. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Microsoft Defender Antimalware minimum version",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service evaluation rules<br><br>Use these rules to confirm that a device has protective measures enabled at boot time. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Learn more about these rules</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service evaluation settings<br><br>Use these settings to confirm that a device has protective measures enabled at boot time. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Learn more</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have. The operating system version is defined as major.minor.build.revision.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have. The operating system version is defined as major.minor.build.revision.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "The operating system version is defined as major.minor.build.revision. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95th percentile protection",
"basicDataProtectionGuidedString": "Basic data protection ensure users are required to utilize PIN or biometrics to access work or school account data, encrypts work or school account data, and enables administrators to perform selective data wipes, if necessary. For Android devices, basic data protection also ensures the compatibility of the device with Google's services and enables Google's Verify Apps scan.",
"basicIntegrity": "Basic integrity",
"basicIntegrityAndCertifiedDevices": "Basic integrity and certified devices",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Inactivity timeout",
"bioPinInactiveTimeoutTooltip": "Override with PIN instead of biometric after (minutes)",
"block": "Block",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Cut and copy character limit for any app",
"camera": "Camera",
"checkInCountColumnTitle": "CHECK-IN COUNT",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Checked in",
"checkedInAppNameColumnTitle": "APP",
"checkedInButNotSynced": "Checked in. On next sync, this app will receive {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">I can't find the app I need</a></p><p><a data-bind=\"fxclick: onClickLob\">I need to add my own line-of-business app</a></p>",
"guidedTemplate2": "Well ask you which protection level you would like to deploy to your users. For more information, see <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Data protection framework with app protection policies. </a>",
"guidediOSLabel": "iOS app protection",
"hardwareBackedKey": "Hardware-backed key",
"healthCheck": "Health Checks",
"helpAndSupport": "Help and support",
"hideOverrides": "Hide Overrides",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Platform",
"platformDropDownLabel": "Platform",
"platformVersion": "Platform version",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Please fix the errors in the sections below!",
"pleaseSelectAtLeastOneFileError": "Please select at least one file before continuing",
"policies": "Policies",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Require device lock",
"requireThreatScanOnApps": "Require threat scan on apps",
"requiredField": "This field can't be empty",
"requiredSafetyNetEvaluationType": "Required SafetyNet evaluation type",
"requiredSettings": "Required settings",
"resetPin": "Reset PIN",
"resourceManagement": "Resource management",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Any app",
"restrictWebContentOption2": "{0}: Allow web links in any app",
"rootCertificate": "Root Certificate",
"safetyNetDeviceAttestation": "SafetyNet device attestation",
"samsungKnoxAttestationRequired": "Samsung Knox device attestation",
"saveAppsNotificationText": "Saving selected apps",
"saveChangesCommandText": "Save",
@@ -8346,7 +8327,7 @@
"administrativeTemplates": "Administrative Templates",
"androidCompliancePolicy": "Android compliance policy",
"aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
"applicationControl": "Application Control",
"applicationControl": "App Control for Business",
"attackSurfaceReductionRules": "Attack Surface Reduction Rules",
"bitlocker": "BitLocker",
"custom": "Custom",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Filter mode",
"assignmentToast": "End user notifications",
"assignmentTypeTableHeader": "ASSIGNMENT TYPE",
"autoUpdate": "Auto update",
"deadlineTimeColumnLabel": "Installation deadline",
"deliveryOptimizationPriorityHeader": "Delivery optimization priority",
"groupTableHeader": "Group",
@@ -8514,6 +8496,10 @@
"showAll": "Show all toast notifications",
"showReboot": "Show toast notifications for computer restarts"
},
"AutoUpdateSupersededApps": {
"enabled": "Enabled",
"notConfigured": "Not configured"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Content download in {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allRiskLevelsOption": "All risk levels",
"allTrustedLocationLabel": "All trusted locations",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra ID security reports to reduce false positives and Microsoft Entra Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country/region",
"namedNetworkDeleteCommand": "Delete",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "New named location",
"namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Named locations are used by Microsoft Entra ID security reports to reduce false positives and Microsoft Entra Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
"or": "{0} OR {1} ",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
"policyConditionLocationPreview": "Locations (Preview)",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataDescription": "Require device to be marked as compliant or Microsoft Entra hybrid joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Custom Intune role",
"customRole": "Custom Role"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"header": "Are you sure you want to delete this restriction?"
},
"DeviceLimit": {
"description": "Specify the maximum number of devices a user can enroll.",
"header": "Device limit restrictions",
"info": "Define how many devices each user can enroll."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Must be 1.0 or greater.",
"android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
"iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
"mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
"min": "Minimum cannot be lower than {0}",
"minMax": "Minimum version cannot be greater than maximum version.",
"windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
"windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
},
"allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
"blockManufacturerPlaceHolder": "Manufacturer name",
"blockManufacturersHeader": "Blocked manufacturers",
"cannotRestrict": "Restriction not supported",
"configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
"configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
"configurations": "Configure platforms",
"deviceManufacturer": "Device manufacturer",
"header": "Device type restrictions",
"info": "Define which platforms, versions, and management types can enroll.",
"manufacturer": "Manufacturer",
"max": "Max",
"maxVersion": "Maximum version",
"min": "Min",
"minVersion": "Minimum version",
"newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
"personal": "Personally owned",
"platform": "Platform",
"platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
"platformSettings": "Platform settings",
"platforms": "Select platforms",
"platformsSelected": "{0} platforms selected",
"type": "Type",
"versions": "versions",
"versionsRange": "Allow min/max range:",
"windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
},
"Priority": {
"saved": "Restriction Priorities were successfully saved."
},
"Row": {
"announce": "Priority: {0}, Name: {1}, Assigned: {2}"
},
"Table": {
"deployed": "Deployed",
"name": "Name",
"priority": "Priority"
},
"Type": {
"limit": "Device limit restriction",
"type": "Device type restriction"
},
"allUsers": "All Users",
"androidRestrictions": "Android restrictions",
"create": "Create restriction",
"defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
"defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
"defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
"deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
"deleteTitle": "Are you sure you want to delete {0} restriction?",
"descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
"edit": "Edit restriction",
"info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
"iosRestrictions": "iOS restrictions",
"mDM": "MDM",
"macRestrictions": "macOS restrictions",
"maxVersion": "Max Version",
"minVersion": "Min Version",
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
"notFound": "Restriction not found. It may have already been deleted.",
"personallyOwned": "Personally owned devices",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction type",
"selectType": "Select restriction type",
"selectValidation": "Please select a platform",
"typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
"typeRequired": "Restriction type is required.",
"winPhoneRestrictions": "Windows Phone restrictions",
"windowsECv1Info": "Older enrollment restrictions cant be edited or reprioritized, only deleted.",
"windowsECv2Info": "You can prioritize enrollment restrictions by dragging and dropping them. View default and preconfigured restrictions below. All new enrollment restrictions will have a higher priority than default and preconfigured restrictions.",
"windowsRestrictions": "Windows restrictions",
"windowsRestrictionsPreview": "Filter-based Windows restrictions (preview)"
},
"InstallContextType": {
"device": "Device",
"deviceContext": "Device context",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Rule syntax",
"filters": "Filters"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"header": "Are you sure you want to delete this restriction?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Allow user to change setting",
"tooltip": "Specify if the user is allowed to change the setting."
},
"AllowWorkAccounts": {
"title": "Allow only work or school accounts",
"tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
},
"BlockExternalImages": {
"title": "Block external images",
"tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
},
"ConfigureEmail": {
"title": "Configure email account settings"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
"iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
},
"title": "Default app signature"
},
"OfficeFeedReplies": {
"title": "Discover Feed",
"tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
},
"OrganizeMailByThread": {
"title": "Organize mail by thread",
"tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
},
"PlayMyEmails": {
"title": "Play My Emails",
"tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
},
"SuggestedReplies": {
"title": "Suggested replies",
"tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
},
"SyncCalendars": {
"title": "Sync Calendars",
"tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
},
"TextPredictions": {
"title": "Text Predictions",
"tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
},
"DeviceLimit": {
"description": "Specify the maximum number of devices a user can enroll.",
"header": "Device limit restrictions",
"info": "Define how many devices each user can enroll."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Must be 1.0 or greater.",
"android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
"iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
"mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
"min": "Minimum cannot be lower than {0}",
"minMax": "Minimum version cannot be greater than maximum version.",
"windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
"windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
},
"allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
"blockManufacturerPlaceHolder": "Manufacturer name",
"blockManufacturersHeader": "Blocked manufacturers",
"cannotRestrict": "Restriction not supported",
"configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
"configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
"configurations": "Configure platforms",
"deviceManufacturer": "Device manufacturer",
"header": "Device type restrictions",
"info": "Define which platforms, versions, and management types can enroll.",
"manufacturer": "Manufacturer",
"max": "Max",
"maxVersion": "Maximum version",
"min": "Min",
"minVersion": "Minimum version",
"newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
"personal": "Personally owned",
"platform": "Platform",
"platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
"platformSettings": "Platform settings",
"platforms": "Select platforms",
"platformsSelected": "{0} platforms selected",
"type": "Type",
"versions": "versions",
"versionsRange": "Allow min/max range:",
"windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
},
"Priority": {
"saved": "Restriction Priorities were successfully saved."
},
"Row": {
"announce": "Priority: {0}, Name: {1}, Assigned: {2}"
},
"Table": {
"deployed": "Deployed",
"name": "Name",
"priority": "Priority"
},
"Type": {
"limit": "Device limit restriction",
"type": "Device type restriction"
},
"allUsers": "All Users",
"androidRestrictions": "Android restrictions",
"create": "Create restriction",
"defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
"defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
"defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
"deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
"deleteTitle": "Are you sure you want to delete {0} restriction?",
"descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
"edit": "Edit restriction",
"info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
"iosRestrictions": "iOS restrictions",
"mDM": "MDM",
"macRestrictions": "MacOS restrictions",
"maxVersion": "Max Version",
"minVersion": "Min Version",
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
"notFound": "Restriction not found. It may have already been deleted.",
"personallyOwned": "Personally owned devices",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction type",
"selectType": "Select restriction type",
"selectValidation": "Please select a platform",
"typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
"typeRequired": "Restriction type is required.",
"winPhoneRestrictions": "Windows Phone restrictions",
"windowsRestrictions": "Windows restrictions"
},
"ThemesEnabled": {
"title": "Themes enabled",
"tooltip": "Specify if the user is allowed to use a custom visual theme."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS devices (preview)"
@@ -12392,7 +12443,7 @@
"advancedThreatProtection": "Microsoft Defender for Endpoint",
"allApps": "All apps",
"allDevices": "All devices",
"androidFotaDeployments": "Android FOTA deployments (preview)",
"androidFotaDeployments": "Android FOTA deployments",
"appBundles": "App Bundles",
"appCategories": "App categories",
"appConfigPolicies": "App configuration policies",
@@ -12453,7 +12504,7 @@
"featureFlighting": "Feature flighting",
"featureUpdateDeployments": "Feature updates for Windows 10 and later",
"flighting": "Flighting",
"fotaUpdate": "Firmware over-the-air update (preview)",
"fotaUpdate": "Firmware over-the-air update",
"groupPolicy": "Administrative Templates",
"groupPolicyAnalytics": "Group policy analytics",
"helpSupport": "Help and support",
@@ -12507,6 +12558,7 @@
"user": "User",
"userExecutionStatus": "User status",
"wdacSupplementalPolicies": "S mode supplemental policies",
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
"windows10UpdateRings": "Update rings for Windows 10 and later",
@@ -12551,6 +12603,10 @@
"postponed": "Postponed",
"priority": "High Priority"
},
"AutoUpdateSupersededApps": {
"label": "Auto update",
"sublabel": "Automatically upgrade any superseded versions of this application"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Content download in {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Allow user to change setting",
"tooltip": "Specify if the user is allowed to change the setting."
},
"AllowWorkAccounts": {
"title": "Allow only work or school accounts",
"tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
},
"BlockExternalImages": {
"title": "Block external images",
"tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "App Version",
"dependencyName": "Dependency name",
"lastModifiedTime": "Last modified time",
"relationship": "Relationship",
"replaced": "Replaced",
"searchPlaceholder": "Filter by app name",
"status": "Status details",
"statusDetails": "Status",
"supersedenceName": "Supersedence name"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Child dependency",
"indirectSupersedence": "Not directly related",
"supersedenceAncestors": "Superseding",
"supersedenceDescendants": "Superseded"
},
"ConfigureEmail": {
"title": "Configure email account settings"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
"iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
},
"title": "Default app signature"
},
"OfficeFeedReplies": {
"title": "Discover Feed",
"tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
},
"OrganizeMailByThread": {
"title": "Organize mail by thread",
"tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
},
"PlayMyEmails": {
"title": "Play My Emails",
"tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
},
"SuggestedReplies": {
"title": "Suggested replies",
"tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
},
"SyncCalendars": {
"title": "Sync Calendars",
"tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
},
"TextPredictions": {
"title": "Text Predictions",
"tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
"SupersededReplaced": {
"no": "No",
"yes": "Yes"
},
"ThemesEnabled": {
"title": "Themes enabled",
"tooltip": "Specify if the user is allowed to use a custom visual theme."
}
},
"Tabs": {
"chart": "Chart",
"dependency": "Dependency",
"label": "View: ",
"supersedence": "Supersedence",
"table": "Table"
},
"dependencyGraphAriaLabel": "App dependency chart",
"supersedenceGraphAriaLabel": "App supersedence chart"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Please select a discovery script",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Always-on VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Check basic integrity & device integrity",
"androidPlayIntegrityVerdictBasicIntegrity": "Check basic integrity",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Trusted certificates can no longer install on devices that run Android 11 or later, except for Samsung Knox devices. If you use SCEP certificate profiles, you must continue to create and deploy a trusted certificate profile and associate it with the SCEP certificate profile, but you must manually deliver the trusted root certificate to those devices.",
"androidTenAndAbovePasswordHeader": "Android 10 and later",
"androidTenAndAbovePasswordHeaderDescription": "These settings work for devices running Android 10 or later.",
@@ -2769,8 +2750,8 @@
"blockTouchIDAndFaceIDUnlockName": "Block Touch ID and Face ID unlock",
"blockUSBConnectionDescription": "Specifies whether the USB connection on the device is enabled. USB charging will not be affected by this setting. This setting isn't supported on Windows desktop platforms.",
"blockUSBConnectionName": "USB connection",
"blockUnifiedPasswordForWorkProfileDescription": "Block using one lock if you want users to use two different passwords for their lock screen and work profile. Using one screen lock is convenient to the user, but makes the work profile accessible to anyone who can unlock the device. Applies to devices running Android 9.0 Pie and later.",
"blockUnifiedPasswordForWorkProfileName": "One lock for work profile and device",
"blockUnifiedPasswordForWorkProfileDescription": "Block if you want users to use two different passwords for their lock screen and work profile. Applies to devices running Android 9.0 Pie and later.",
"blockUnifiedPasswordForWorkProfileName": "One lock for device and work profile",
"blockUnmanagedDocumentsInManagedAppsName": "Block viewing non-corporate documents in corporate apps",
"blockUntrustedTLSCertificatesDescription": "Block untrusted Transport Layer Security (TLS) certificates.",
"blockUntrustedTLSCertificatesName": "Block untrusted TLS certificates",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Force the device to automatically update for security patches and improvements.",
"complianceUpdatesRequireAutomaticUpdatesName": "Require automatic updates from Microsoft",
"complianceWin10RequiredPasswordTypeDescription": "This setting determines the type of Password/PIN required.<br>\nDevice Default (Password, Numeric PIN, or Alphanumeric PIN required)<br>\nAlphanumeric (Password or Alphanumberic PIN required)<br>\nNumeric (Password or Numeric PIN required)<br>\nRecommendations: Required password type: Alphanumeric, Password complexity: Require digits and lowercase letters",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 or 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 and 11",
"complianceWindows11DeviceHealthAttestationHeader": "Windows 11 only",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Minimum version of Microsoft Defender (e.g. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Microsoft Defender Antimalware minimum version",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service evaluation rules<br><br>Use these rules to confirm that a device has protective measures enabled at boot time. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Learn more about these rules</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service evaluation settings<br><br>Use these settings to confirm that a device has protective measures enabled at boot time. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Learn more</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have. The operating system version is defined as major.minor.build.revision.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have. The operating system version is defined as major.minor.build.revision.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "The operating system version is defined as major.minor.build.revision. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95th percentile protection",
"basicDataProtectionGuidedString": "Basic data protection ensure users are required to utilize PIN or biometrics to access work or school account data, encrypts work or school account data, and enables administrators to perform selective data wipes, if necessary. For Android devices, basic data protection also ensures the compatibility of the device with Google's services and enables Google's Verify Apps scan.",
"basicIntegrity": "Basic integrity",
"basicIntegrityAndCertifiedDevices": "Basic integrity and certified devices",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Inactivity timeout",
"bioPinInactiveTimeoutTooltip": "Override with PIN instead of biometric after (minutes)",
"block": "Block",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Cut and copy character limit for any app",
"camera": "Camera",
"checkInCountColumnTitle": "CHECK-IN COUNT",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Checked in",
"checkedInAppNameColumnTitle": "APP",
"checkedInButNotSynced": "Checked in. On next sync, this app will receive {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">I can't find the app I need</a></p><p><a data-bind=\"fxclick: onClickLob\">I need to add my own line-of-business app</a></p>",
"guidedTemplate2": "Well ask you which protection level you would like to deploy to your users. For more information, see <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Data protection framework with app protection policies. </a>",
"guidediOSLabel": "iOS app protection",
"hardwareBackedKey": "Hardware-backed key",
"healthCheck": "Health Checks",
"helpAndSupport": "Help and support",
"hideOverrides": "Hide Overrides",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Platform",
"platformDropDownLabel": "Platform",
"platformVersion": "Platform version",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Please fix the errors in the sections below!",
"pleaseSelectAtLeastOneFileError": "Please select at least one file before continuing",
"policies": "Policies",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Require device lock",
"requireThreatScanOnApps": "Require threat scan on apps",
"requiredField": "This field can't be empty",
"requiredSafetyNetEvaluationType": "Required SafetyNet evaluation type",
"requiredSettings": "Required settings",
"resetPin": "Reset PIN",
"resourceManagement": "Resource management",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Any app",
"restrictWebContentOption2": "{0}: Allow web links in any app",
"rootCertificate": "Root Certificate",
"safetyNetDeviceAttestation": "SafetyNet device attestation",
"samsungKnoxAttestationRequired": "Samsung Knox device attestation",
"saveAppsNotificationText": "Saving selected apps",
"saveChangesCommandText": "Save",
@@ -8346,7 +8327,7 @@
"administrativeTemplates": "Administrative Templates",
"androidCompliancePolicy": "Android compliance policy",
"aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
"applicationControl": "Application Control",
"applicationControl": "App Control for Business",
"attackSurfaceReductionRules": "Attack Surface Reduction Rules",
"bitlocker": "BitLocker",
"custom": "Custom",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Filter mode",
"assignmentToast": "End user notifications",
"assignmentTypeTableHeader": "ASSIGNMENT TYPE",
"autoUpdate": "Auto update",
"deadlineTimeColumnLabel": "Installation deadline",
"deliveryOptimizationPriorityHeader": "Delivery optimization priority",
"groupTableHeader": "Group",
@@ -8514,6 +8496,10 @@
"showAll": "Show all toast notifications",
"showReboot": "Show toast notifications for computer restarts"
},
"AutoUpdateSupersededApps": {
"enabled": "Enabled",
"notConfigured": "Not configured"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Content download in {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allRiskLevelsOption": "All risk levels",
"allTrustedLocationLabel": "All trusted locations",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra ID security reports to reduce false positives and Microsoft Entra Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country/region",
"namedNetworkDeleteCommand": "Delete",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "New named location",
"namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Named locations are used by Microsoft Entra ID security reports to reduce false positives and Microsoft Entra Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
"or": "{0} OR {1} ",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
"policyConditionLocationPreview": "Locations (Preview)",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataDescription": "Require device to be marked as compliant or Microsoft Entra hybrid joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Custom Intune role",
"customRole": "Custom Role"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"header": "Are you sure you want to delete this restriction?"
},
"DeviceLimit": {
"description": "Specify the maximum number of devices a user can enroll.",
"header": "Device limit restrictions",
"info": "Define how many devices each user can enroll."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Must be 1.0 or greater.",
"android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
"iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
"mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
"min": "Minimum cannot be lower than {0}",
"minMax": "Minimum version cannot be greater than maximum version.",
"windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
"windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
},
"allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
"blockManufacturerPlaceHolder": "Manufacturer name",
"blockManufacturersHeader": "Blocked manufacturers",
"cannotRestrict": "Restriction not supported",
"configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
"configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
"configurations": "Configure platforms",
"deviceManufacturer": "Device manufacturer",
"header": "Device type restrictions",
"info": "Define which platforms, versions, and management types can enroll.",
"manufacturer": "Manufacturer",
"max": "Max",
"maxVersion": "Maximum version",
"min": "Min",
"minVersion": "Minimum version",
"newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
"personal": "Personally owned",
"platform": "Platform",
"platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
"platformSettings": "Platform settings",
"platforms": "Select platforms",
"platformsSelected": "{0} platforms selected",
"type": "Type",
"versions": "versions",
"versionsRange": "Allow min/max range:",
"windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
},
"Priority": {
"saved": "Restriction Priorities were successfully saved."
},
"Row": {
"announce": "Priority: {0}, Name: {1}, Assigned: {2}"
},
"Table": {
"deployed": "Deployed",
"name": "Name",
"priority": "Priority"
},
"Type": {
"limit": "Device limit restriction",
"type": "Device type restriction"
},
"allUsers": "All Users",
"androidRestrictions": "Android restrictions",
"create": "Create restriction",
"defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
"defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
"defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
"deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
"deleteTitle": "Are you sure you want to delete {0} restriction?",
"descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
"edit": "Edit restriction",
"info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
"iosRestrictions": "iOS restrictions",
"mDM": "MDM",
"macRestrictions": "macOS restrictions",
"maxVersion": "Max Version",
"minVersion": "Min Version",
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
"notFound": "Restriction not found. It may have already been deleted.",
"personallyOwned": "Personally owned devices",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction type",
"selectType": "Select restriction type",
"selectValidation": "Please select a platform",
"typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
"typeRequired": "Restriction type is required.",
"winPhoneRestrictions": "Windows Phone restrictions",
"windowsECv1Info": "Older enrollment restrictions cant be edited or reprioritized, only deleted.",
"windowsECv2Info": "You can prioritize enrollment restrictions by dragging and dropping them. View default and preconfigured restrictions below. All new enrollment restrictions will have a higher priority than default and preconfigured restrictions.",
"windowsRestrictions": "Windows restrictions",
"windowsRestrictionsPreview": "Filter-based Windows restrictions (preview)"
},
"InstallContextType": {
"device": "Device",
"deviceContext": "Device context",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Rule syntax",
"filters": "Filters"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"header": "Are you sure you want to delete this restriction?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Allow user to change setting",
"tooltip": "Specify if the user is allowed to change the setting."
},
"AllowWorkAccounts": {
"title": "Allow only work or school accounts",
"tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
},
"BlockExternalImages": {
"title": "Block external images",
"tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
},
"ConfigureEmail": {
"title": "Configure email account settings"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
"iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
},
"title": "Default app signature"
},
"OfficeFeedReplies": {
"title": "Discover Feed",
"tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
},
"OrganizeMailByThread": {
"title": "Organize mail by thread",
"tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
},
"PlayMyEmails": {
"title": "Play My Emails",
"tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
},
"SuggestedReplies": {
"title": "Suggested replies",
"tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
},
"SyncCalendars": {
"title": "Sync Calendars",
"tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
},
"TextPredictions": {
"title": "Text Predictions",
"tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
},
"DeviceLimit": {
"description": "Specify the maximum number of devices a user can enroll.",
"header": "Device limit restrictions",
"info": "Define how many devices each user can enroll."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Must be 1.0 or greater.",
"android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
"iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
"mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
"min": "Minimum cannot be lower than {0}",
"minMax": "Minimum version cannot be greater than maximum version.",
"windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
"windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
},
"allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
"blockManufacturerPlaceHolder": "Manufacturer name",
"blockManufacturersHeader": "Blocked manufacturers",
"cannotRestrict": "Restriction not supported",
"configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
"configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
"configurations": "Configure platforms",
"deviceManufacturer": "Device manufacturer",
"header": "Device type restrictions",
"info": "Define which platforms, versions, and management types can enroll.",
"manufacturer": "Manufacturer",
"max": "Max",
"maxVersion": "Maximum version",
"min": "Min",
"minVersion": "Minimum version",
"newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
"personal": "Personally owned",
"platform": "Platform",
"platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
"platformSettings": "Platform settings",
"platforms": "Select platforms",
"platformsSelected": "{0} platforms selected",
"type": "Type",
"versions": "versions",
"versionsRange": "Allow min/max range:",
"windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
},
"Priority": {
"saved": "Restriction Priorities were successfully saved."
},
"Row": {
"announce": "Priority: {0}, Name: {1}, Assigned: {2}"
},
"Table": {
"deployed": "Deployed",
"name": "Name",
"priority": "Priority"
},
"Type": {
"limit": "Device limit restriction",
"type": "Device type restriction"
},
"allUsers": "All Users",
"androidRestrictions": "Android restrictions",
"create": "Create restriction",
"defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
"defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
"defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
"deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
"deleteTitle": "Are you sure you want to delete {0} restriction?",
"descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
"edit": "Edit restriction",
"info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
"iosRestrictions": "iOS restrictions",
"mDM": "MDM",
"macRestrictions": "MacOS restrictions",
"maxVersion": "Max Version",
"minVersion": "Min Version",
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
"notFound": "Restriction not found. It may have already been deleted.",
"personallyOwned": "Personally owned devices",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction type",
"selectType": "Select restriction type",
"selectValidation": "Please select a platform",
"typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
"typeRequired": "Restriction type is required.",
"winPhoneRestrictions": "Windows Phone restrictions",
"windowsRestrictions": "Windows restrictions"
},
"ThemesEnabled": {
"title": "Themes enabled",
"tooltip": "Specify if the user is allowed to use a custom visual theme."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS devices (preview)"
@@ -12392,7 +12443,7 @@
"advancedThreatProtection": "Microsoft Defender for Endpoint",
"allApps": "All apps",
"allDevices": "All devices",
"androidFotaDeployments": "Android FOTA deployments (preview)",
"androidFotaDeployments": "Android FOTA deployments",
"appBundles": "App Bundles",
"appCategories": "App categories",
"appConfigPolicies": "App configuration policies",
@@ -12453,7 +12504,7 @@
"featureFlighting": "Feature flighting",
"featureUpdateDeployments": "Feature updates for Windows 10 and later",
"flighting": "Flighting",
"fotaUpdate": "Firmware over-the-air update (preview)",
"fotaUpdate": "Firmware over-the-air update",
"groupPolicy": "Administrative Templates",
"groupPolicyAnalytics": "Group policy analytics",
"helpSupport": "Help and support",
@@ -12507,6 +12558,7 @@
"user": "User",
"userExecutionStatus": "User status",
"wdacSupplementalPolicies": "S mode supplemental policies",
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
"windows10UpdateRings": "Update rings for Windows 10 and later",
@@ -12551,6 +12603,10 @@
"postponed": "Postponed",
"priority": "High Priority"
},
"AutoUpdateSupersededApps": {
"label": "Auto update",
"sublabel": "Automatically upgrade any superseded versions of this application"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Content download in {0}",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "要求在 PIN 中使用至少一个大写字母"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "允许用户更改设置",
"tooltip": "指定是否允许用户更改设置。"
},
"AllowWorkAccounts": {
"title": "仅允许工作或学校帐户",
"tooltip": " 启用此设置,用户将无法在 Outlook 中添加个人电子邮件和存储帐户。如果用户已将个人帐户添加到 Outlook则会提示其删除个人帐户。如果用户不删除个人帐户则无法添加工作或学校帐户。"
},
"BlockExternalImages": {
"title": "阻止外部图像",
"tooltip": "启用阻止外部图像后,应用将阻止下载通过 Internet(嵌入在邮件正文中)托管的图像。如果设置为“未配置”,则默认应用设置设为“关”"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "应用版本",
"dependencyName": "依赖项名称",
"lastModifiedTime": "上次修改时间",
"relationship": "关系",
"replaced": "已替换",
"searchPlaceholder": "按应用名筛选",
"status": "状态详细信息",
"statusDetails": "状态",
"supersedenceName": "取代名称"
},
"RelatedAppRelationship": {
"dependencyDescendants": "子依赖项",
"indirectSupersedence": "不直接相关",
"supersedenceAncestors": "正在取代",
"supersedenceDescendants": "被取代"
},
"ConfigureEmail": {
"title": "配置电子邮件帐户设置"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "默认应用签名指示应用是否要在消息撰写期间将“获取 Outlook for Android”用作默认签名。如果此设置配置为“关”则不使用默认签名但是用户可添加自己的签名。\r\n\r\n当设置为“未配置”时默认应用设置设为“开”。",
"iOS": "默认应用签名指示应用是否要在消息撰写期间将“获取 Outlook for iOS”用作默认签名。如果此设置配置为“关”则不使用默认签名但是用户可添加自己的签名。\r\n\r\n当设置为“未配置”时默认应用设置设为“开”。"
},
"title": "默认应用签名"
},
"OfficeFeedReplies": {
"title": "发现源",
"tooltip": "通过发现源,可查看最常访问的 Office 文件。默认情况下,在为用户启用 Delve 时启用此源。在设置为“未配置”时,默认应用设置设为“开”。"
},
"OrganizeMailByThread": {
"title": "按线程组织邮件",
"tooltip": "Outlook 中的默认行为是将邮件对话捆绑到链式对话视图中。如果禁用此设置Outlook 将单独显示每个邮件,不会按线程对其进行分组。"
},
"PlayMyEmails": {
"title": "播放我的电子邮件",
"tooltip": "默认情况下,应用中不会启用“播放我的电子邮件”功能,但会通过收件箱中的横幅将此功能提升为符合条件的用户。如果设置为“关闭”,则不会在应用中将此功能提升为符合条件的用户。用户可以在应用中选择手动启用“播放我的电子邮件”,即使此功能设置为“关闭”也是如此。如果设置为“未配置”,则默认应用设置是“打开”,且功能将提升为符合条件的用户。"
},
"SuggestedReplies": {
"title": "建议的答复",
"tooltip": "打开邮件时Outlook 可能会在邮件下建议答复。如果选择所建议的答复,可在发送答复前对其进行编辑。"
},
"SyncCalendars": {
"title": "同步日历",
"tooltip": "配置用户是否可将其 Outlook 日历同步到本机日历应用和数据库。"
},
"TextPredictions": {
"title": "文本预测",
"tooltip": "Outlook 可在你撰写邮件时提供词语和短语建议。当 Outlook 提供建议时,可通过轻扫接受建议。如果设置为“未配置”,应用设置默认设置为“开”。"
"SupersededReplaced": {
"no": "否",
"yes": "是"
},
"ThemesEnabled": {
"title": "已启用主题",
"tooltip": "指定是否允许用户使用自定义视觉主题。"
}
},
"Tabs": {
"chart": "图表",
"dependency": "依赖项",
"label": "视图: ",
"supersedence": "取代",
"table": "表"
},
"dependencyGraphAriaLabel": "应用依赖关系图",
"supersedenceGraphAriaLabel": "应用取代图表"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "请选择发现脚本",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "添加 PowerShell 脚本",
"customAttributeObjectName": "自定义属性",
"editPowershellScriptFlowSectionName": "编辑 PowerShell 脚本",
"enforceSignatureCheckInfoBalloonContent": "脚本必须由受信任的发布服务器签名。默认情况下,不会显示警告或提示,且脚本将不受阻止地运行。",
"enforceSignatureCheckInfoBalloonContent": "脚本必须由受信任的发布者签名。这是默认设置。",
"enforceSignatureCheckLabel": "强制执行脚本签名检查",
"executionFrequencyLabel": "执行频率",
"failedToSavePolicy": "无法保存 {0}",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "查看 + 添加",
"runAs64BitInfoBalloonContent": "脚本将在用于 64 位客户端体系结构的 64 位 PowerShell 主机中运行。默认情况下,脚本将在 32 位 PowerShell 主机中运行。",
"runAs64BitLabel": "在 64 位 PowerShell 主机中运行脚本",
"scriptContextInfoBalloonContent": "脚本通过用户的凭据在客户端计算机上运行。默认情况下,脚本运行于系统上下文中。",
"scriptContextInfoBalloonContent": "脚本通过用户的凭据在客户端计算机上运行。默认情况下,脚本运行于用户上下文中。",
"scriptContextLabel": "使用已登录的凭据运行此脚本",
"scriptsettingsTabHeader": "脚本设置",
"settingsHeader": "选择要配置的脚本",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "始终可用 VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "检查基本完整性和设备完整性",
"androidPlayIntegrityVerdictBasicIntegrity": "检查基本的完整性",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "在运行 Android 11 或更高版本(Samsung Knox 设备除外)的设备上无法再安装受信任的证书。如果使用 SCEP 证书配置文件,则必须继续创建并部署受信任的证书配置文件,并将其与 SCEP 证书配置文件关联,但必须将受信任的根证书手动传递到这些设备。",
"androidTenAndAbovePasswordHeader": "Android 10 及更高版本",
"androidTenAndAbovePasswordHeaderDescription": "这些设置适用于运行 Android 10 或更高版本的设备。",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "强制设备自动更新安全修补程序和改进。",
"complianceUpdatesRequireAutomaticUpdatesName": "需要从 Microsoft 自动更新",
"complianceWin10RequiredPasswordTypeDescription": "此设置决定了所需的密码/PIN 类型。<br>\r\n设备默认值(需要密码、数字形式的 PIN 或字母数字形式的 PIN)<br>\r\n字母数字(需要密码或字母数字形式的 PIN)<br>\r\n数字(需要密码或数字形式的 PIN)<br>\r\n建议: 必需的密码类型 - 字母数字,密码复杂性 - 需使用数字和小写字母",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 11",
"complianceWindows11DeviceHealthAttestationHeader": "仅 Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Microsoft Defender 的最低版本(如 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Microsoft Defender 反恶意软件的最低版本",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft 证明服务评估规则<br><br>使用这些规则确认设备在启动时启用了保护性措施。 <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">详细了解这些规则</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft 证明服务评估设置<br><br>使用这些设置确认设备在启动时启用了保护性措施。<a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">了解详细信息</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "选择移动设备可以具有的最新 OS 版本。以 major.minor.build.revision 形式定义操作系统版本。",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "选择移动设备可以具有的最早 OS 版本。以 major.minor.build.revision 形式定义操作系统版本。",
"complianceWindowsOsVersionRestrictionHeaderDescription": "以 major.minor.build.revision 形式定义操作系统版本。",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95% 的保护",
"basicDataProtectionGuidedString": "基本数据保护 - 确保要求用户使用 PIN 或生物特征识别来访问工作或学校帐户数据、加密工作或学校帐户数据,并使管理员在必要时能够执行选择性数据擦除操作。对于 Android 设备,基本数据保护还可确保设备与 Google 服务的兼容性,并启用 Google 的验证应用扫描。",
"basicIntegrity": "基本的完整性",
"basicIntegrityAndCertifiedDevices": "基本的完整性和认证设备",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "非活动状态超时",
"bioPinInactiveTimeoutTooltip": "使用 PIN 替代而不是稍后使用生物识别(分钟)",
"block": "阻止",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "任何应用的剪切和复制字符限制",
"camera": "照相机",
"checkInCountColumnTitle": "签入计数",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "已签入",
"checkedInAppNameColumnTitle": "应用",
"checkedInButNotSynced": "已签入。下次同步时,此应用将接收 {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">我找不到所需的应用</a></p><p><a data-bind=\"fxclick: onClickLob\">我需要添加自己的业务线应用</a></p>",
"guidedTemplate2": "我们将询问你要向用户部署的保护级别。有关详细信息,请参阅<a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">包含应用保护策略的数据保护框架。</a>",
"guidediOSLabel": "iOS 应用保护",
"hardwareBackedKey": "硬件支持的密钥",
"healthCheck": "运行状况检查",
"helpAndSupport": "帮助和支持",
"hideOverrides": "隐藏覆盖",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "平台",
"platformDropDownLabel": "平台",
"platformVersion": "平台版本",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "请修复以下各节中的错误!",
"pleaseSelectAtLeastOneFileError": "继续操作之前,请选择至少一个文件",
"policies": "策略",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "需要设备锁",
"requireThreatScanOnApps": "要求对应用进行威胁扫描",
"requiredField": "此字段不能为空",
"requiredSafetyNetEvaluationType": "所需的 SafetyNet 计算类型",
"requiredSettings": "所需设置",
"resetPin": "重置 PIN",
"resourceManagement": "资源管理",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "任何应用",
"restrictWebContentOption2": "{0}: 允许任何应用中的 Web 链接",
"rootCertificate": "根证书",
"safetyNetDeviceAttestation": "SafetyNet 设备证明",
"samsungKnoxAttestationRequired": "Samsung Knox 设备证明",
"saveAppsNotificationText": "正在保存所选的应用",
"saveChangesCommandText": "保存",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "筛选器模式",
"assignmentToast": "最终用户通知",
"assignmentTypeTableHeader": "分配类型",
"autoUpdate": "自动更新",
"deadlineTimeColumnLabel": "安装截止时间",
"deliveryOptimizationPriorityHeader": "传递优化优先级",
"groupTableHeader": "组",
@@ -8514,6 +8496,10 @@
"showAll": "显示所有 Toast 通知",
"showReboot": "显示计算机重启的 Toast 通知"
},
"AutoUpdateSupersededApps": {
"enabled": "已启用",
"notConfigured": "未配置"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "背景",
"displayText": "{0} 中的内容下载",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "“每次登录评率”会话控制要求选择“所有云应用”或专门支持的应用。",
"allDayCheckboxLabel": "全天",
"allDevicePlatforms": "任何设备",
"allGuestUserInfoContent": "包括 Azure AD B2B 来宾,但不包括 SharePoint B2B 来宾",
"allGuestUserInfoContent": "包括 Microsoft Entra B2B 来宾,但不包括 SharePoint B2B 来宾",
"allGuestUserLabel": "所有来宾和外部用户",
"allRiskLevelsOption": "所有风险级别",
"allTrustedLocationLabel": "所有受信任位置",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "详细了解如何要求符合要求的设备。",
"controlsDeviceComplianceInfoBubble": "设备必须符合 Intune。如果设备不合规系统将提示用户使设备合规。",
"controlsDomainJoinedAriaLabel": "详细了解如何要求混合 Azure AD 联接设备。",
"controlsDomainJoinedInfoBubble": "设备必须已建立混合 Azure AD 联接。",
"controlsDomainJoinedAriaLabel": "详细了解如何要求已建立 Microsoft Entra 混合联接设备。",
"controlsDomainJoinedInfoBubble": "设备必须已建立 Microsoft Entra 混合联接。",
"controlsMamAriaLabel": "详细了解如何要求批准的客户端应用程序。",
"controlsMamInfoBubble": "设备必须使用这些核准的客户端应用程序。",
"controlsMfaInfoBubble": "用户必须完成其他安全性要求,如电话联络和短信",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "标记为“符合”的设备",
"deviceStateCompliantInfoContent": "将从此策略的评估中排除符合 Intune 的设备;例如,如果策略阻止访问,它将阻止所有设备(符合 Intune 的设备除外)。",
"deviceStateConditionConfigureInfoContent": "基于设备状态配置策略",
"deviceStateConditionSelectorInfoContent": "用户从中登录的设备是“已建立混合 Azure AD 联接”还是“标记为合规”的设备。\n 此项已弃用。请改用“{1}”。",
"deviceStateConditionSelectorInfoContent": "用户发起登录的设备是“已建立 Microsoft Entra 混合联接”还是“标记为合规”的设备。\n 此项已弃用。请改用“{1}”。",
"deviceStateConditionSelectorLabel": "设备状态(已弃用)",
"deviceStateDomainJoined": "设备已建立混合 Azure AD 联接",
"deviceStateDomainJoinedInfoContent": "将从此策略的评估中排除已建立混合 Azure AD 联接的设备例如,如果策略阻止访问,它将阻止所有设备(已建立混合 Azure AD 联接的设备除外)。",
"deviceStateDomainJoined": "已建立 Microsoft Entra 混合联接的设备",
"deviceStateDomainJoinedInfoContent": "将从此策略的评估中排除已建立 Microsoft Entra 混合联接的设备例如,如果策略阻止访问,它将阻止所有设备,但已建立 Microsoft Entra 混合联接的设备除外。",
"deviceStateDomainJoinedInfoLinkText": "了解详细信息。",
"deviceStateExcludeDescription": "选择用于从策略中排除设备的设备状态条件。",
"deviceStateIncludeAndExcludeOneLabel": "{0} 并排除 {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync ",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "仅 Exchange ActiveSync 和受支持的平台",
"excludeAllTrustedLocationSelectorText": "所有可信位置",
"featureRequiresP2": "此功能需要 Azure AD Premium 2 许可证。",
"featureRequiresP2": "此功能需要 Microsoft Entra ID P2 许可证。",
"friday": "星期五",
"grantControls": "授权控件",
"gridNetworkTrusted": "受信任",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "所选专用链接",
"lowRisk": "低",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "要管理条件访问策略,组织需要 Azure AD Premium P1 或 P2。",
"managePoliciesLicenseText": "要管理条件访问策略,组织需要 Microsoft Entra ID P1 或 P2。",
"manageSecurityDefaultsAriaLabel": "管理安全默认值设置。",
"markAsTrustedCheckboxInfoBalloonContent": "从可信位置登录可降低用户的登录风险。如果知道输入的 IP 范围已建立且在组织中可信,则仅将此位置标记为可信位置。",
"markAsTrustedCheckboxLabel": "标记为可信位置",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "国家/地区",
"namedLocationTypeLabel": "使用以下内容定义位置:",
"namedLocationUpsellBanner": "此视图已弃用。转到新的和改进的“已命名位置”视图。",
"namedLocationsHelpDescription": "Azure AD 安全报告使用命名位置来减少误报和 Azure AD 条件访问策略。\n[了解更多][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Microsoft Entra ID 安全报告使用命名位置来减少误报和 Microsoft Entra 条件访问策略。\n[了解更多][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "添加新的 IP 范围(示例: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "必须至少选择一个国家/地区",
"namedNetworkDeleteCommand": "删除",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "新命名位置",
"namedNetworksConditionHelpDescription": "根据用户的实际位置控制用户访问。\n[了解更多][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0},排除 {1} 项",
"namedNetworksHelpDescription": "Azure AD 安全报告使用命名位置来减少误报和 Azure AD 条件访问策略。\n[了解更多][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Microsoft Entra 安全报告使用命名位置来减少误报和 Microsoft Entra 条件访问策略。\n[了解更多][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} 已包含",
"namedNetworksNone": "找不到命名位置。",
"namedNetworksTitle": "配置位置",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "仅全局管理员可保存此策略。",
"or": "{0} 或 {1}",
"pickerDoneCommand": "完成",
"policiesBladeAdPremiumUpsellBannerText": "借助 Azure AD Premium 创建自己的策略,并面向云应用、登录风险和设备平台等特定条件",
"policiesBladeAdPremiumUpsellBannerText": "使用 Microsoft Entra ID Premium 创建自己的策略和目标特定条件,如云应用、登录风险和设备平台",
"policiesBladeTitle": "策略",
"policiesBladeTitleWithAppName": "策略: {0}",
"policiesDisabledBannerText": "禁止对具有链接登录属性的应用程序创建和编辑策略。",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "用户从其登录的位置(使用 IP 地址范围确定)",
"policyConditionLocationPreview": "位置(预览)",
"policyConditionSigninRisk": "登录风险",
"policyConditionSigninRiskDescription": "除用户本人之外的其他人登录的可能性。风险级别可为高、中或低。需要 Azure AD Premium 2 许可证。",
"policyConditionSigninRiskDescription": "除用户本人之外的其他人登录的可能性。风险级别可为高、中或低。需要 Microsoft Entra ID P2 许可证。",
"policyConditionUserRisk": "用户风险",
"policyConditionUserRiskDescription": "配置强制执行策略所需的用户风险级别",
"policyConditioniClientApp": "客户端应用",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "阻止访问或选择允许访问需要满足的其他要求",
"policyControlMfaChallengeDisplayedName": "需要多重身份验证",
"policyControlRequireCompliantAppDisplayedName": "需要应用保护策略",
"policyControlRequireDomainJoinedDisplayedName": "需要已建立混合 Azure AD 联接的设备",
"policyControlRequireDomainJoinedDisplayedName": "需要已建立 Microsoft Entra 混合联接的设备",
"policyControlRequireMamDisplayedName": "需要核准的客户端应用",
"policyControlRequiredPasswordChangeDisplayedName": "需要密码更改",
"policyControlSelectAuthStrength": "需要身份验证强度",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "已成功更新 {0}。如果将“启用策略”设置为“开启”,策略将在几分钟后启用。",
"policyUpdateSuccessTitle": "已成功更新 {0}",
"primaryCol": "主",
"privateLinkLabel": "Azure AD 专用链接",
"privateLinkLabel": "Microsoft Entra ID 专用链接",
"reportOnlyInfoBox": "仅报告模式:在登录时评估和记录策略,但不会影响用户。",
"requireAllControlsText": "需要所有已选控件",
"requireCompliantDevice": "需要兼容设备",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "始终需要对敏感应用程序进行多重身份验证,或者仅从公司网络外部使用时才需要。",
"upsellAppsTitle": "安全应用程序",
"upsellBannerText": "获取免费的 Premium 试用版以使用此功能",
"upsellDataDescription": "设备需要标记为符合或已建立混合 Azure AD 联接才能访问公司资源。",
"upsellDataDescription": "设备需要标记为符合或已建立 Microsoft Entra 混合联接才能访问公司资源。",
"upsellDataTitle": "安全数据",
"upsellDescription": "条件访问提供了保护公司数据安全所需的控制和保护,同时允许员工从任何设备最有效地完成工作。例如,可以限制公司网络之外的访问,或限制访问符合合规性策略的设备。",
"upsellRiskDescription": "需要对 Microsoft 机器学习系统检测到的风险事件进行多重身份验证。",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "已成功更新 {0}。",
"vpnCertUpdateSuccessTitle": "已成功更新 {0}",
"vpnFeatureInfo": "有关 VPN 连接和条件访问的详细信息,请单击此处。",
"vpnFeatureWarning": "在 Azure 门户中创建 VPN 证书后,Azure AD 将立即开始使用它来向 VPN 客户端颁发短生存期的证书。请务必将 VPN 证书立即部署到 VPN 服务器,以避免任何与 VPN 客户端凭据验证有关的问题,这一点非常重要。",
"vpnFeatureWarning": "在门户中创建 VPN 证书后,Microsoft Entra ID 将立即开始使用它来向 VPN 客户端颁发短生存期的证书。请务必将 VPN 证书立即部署到 VPN 服务器,以避免任何与 VPN 客户端凭据验证有关的问题,这一点非常重要。",
"vpnMenuText": "VPN 连接",
"vpncertDropdownDefaultOption": "持续时间",
"vpncertDropdownInfoBalloonContent": "为要创建的证书选择持续时间",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "自定义 Intune 角色",
"customRole": "自定义角色"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} 包含在一个或多个策略集中。如果删除 {0},将无法再通过这些策略集分配它。是否仍要删除?",
"contentWithError": "{0} 可能包含在一个或多个策略集中。如果删除 {0},将无法再通过这些策略集分配它。是否仍要删除?",
"header": "确定要删除此限制吗?"
},
"DeviceLimit": {
"description": "指定用户可以注册的最大设备数。",
"header": "设备极限限制",
"info": "定义每个用户可以注册的设备数量。"
},
"DeviceType": {
"VersionValidation": {
"aOSP": "必须为 1.0 或更高版本。",
"android": "请输入有效的版本号。示例: 5.0、5.5.1、6.0.0.1",
"androidForWork": "请输入有效的版本号。示例: 5.0、5.1.1",
"iOS": "请输入有效的版本号。示例: 9.0、10.0、9.0.2",
"mac": "请输入一个有效的版本号。例如: 10, 10.10, 10.10.1",
"min": "最小值不能低于 {0}",
"minMax": "最低版本不能高于最高版本。",
"windows": "必须为 10.0 或更高版本。保留为空以允许 8.1 设备",
"windowsMobile": "必须为 10.0 或更高版本。保留为空以允许 8.1 设备"
},
"allPlatformsBlocked": "所有设备平台均已锁定。允许平台注册以启用平台配置。",
"blockManufacturerPlaceHolder": "制造商名称",
"blockManufacturersHeader": "被阻止的制造商",
"cannotRestrict": "不支持限制",
"configurationDescription": "指定要注册设备而必须满足的平台配置限制。注册后使用符合性策略限制设备。将版本定义为 major.minor.build。版本限制仅适用于注册了公司门户的设备。默认情况下Intune 将设备分类为个人拥有。需要执行额外操作才能将设备分类为公司拥有。",
"configurationDescriptionLabel": "了解有关设置注册限制的详细信息",
"configurations": "配置平台",
"deviceManufacturer": "设备制造商",
"header": "设备类型限制",
"info": "定义可以注册的平台、版本和管理类型。",
"manufacturer": "制造商",
"max": "最大值",
"maxVersion": "最高版本",
"min": "最小值",
"minVersion": "最小版本",
"newPlatforms": "已允许新平台。请考虑更新平台配置。",
"personal": "个人拥有",
"platform": "平台",
"platformDescription": "可允许注册下列平台。仅阻止你不支持的平台。可使用其他注册限制配置已允许的平台。",
"platformSettings": "平台设置",
"platforms": "选择平台",
"platformsSelected": "已选择 {0} 个平台",
"type": "类型",
"versions": "版本",
"versionsRange": "允许的最小/最大范围:",
"windowsTooltip": "通过移动设备管理限制注册。不限制电脑代理安装。仅支持 Windows 10 和 Windows 11 版本。保留版本为空以允许 Windows 8.1。"
},
"Priority": {
"saved": "已成功保存限制优先级。"
},
"Row": {
"announce": "优先级: {0},名称: {1},已分配: {2}"
},
"Table": {
"deployed": "已部署",
"name": "名称",
"priority": "优先级"
},
"Type": {
"limit": "设备限制",
"type": "设备类型限制"
},
"allUsers": "所有用户",
"androidRestrictions": "Android 限制",
"create": "创建限制",
"defaultLimitDescription": "这是应用于所有用户的优先级最低的默认设备限制,但不考虑组成员身份。",
"defaultTypeDescription": "这是应用于所有用户的优先级最低的默认设备类型限制,但不考虑组成员身份。",
"defaultWhfbDescription": "这是应用于所有用户的优先级最低的默认 Windows Hello 企业版,但不考虑组成员身份。",
"deleteMessage": "如果未分配其他限制,则将按分配的下一个拥有最高优先级的限制或默认限制对受影响的用户进行限制。",
"deleteTitle": "确定要删除 {0} 限制吗?",
"descriptionHint": "描述由限制设置表征的业务用途或限制级别的简短段落。",
"edit": "编辑限制",
"info": "设备必须遵循分配给其用户的最高优先级注册限制。可拖动设备限制以更改其优先级。所有用户的默认限制都是最低优先级,且它们控制无用户参与的注册。可编辑(但不可删除)默认限制。",
"iosRestrictions": "iOS 限制",
"mDM": "MDM",
"macRestrictions": "macOS 限制",
"maxVersion": "最高版本",
"minVersion": "最低版本",
"nameHint": "这将是显示标识限制集时可见的主属性。",
"noAssignmentsStatusBar": "至少将限制分配给一个组。请单击“属性”。",
"notFound": "找不到限制。它可能已删除。",
"personallyOwned": "个人拥有的设备",
"restriction": "限制",
"restrictionLowerCase": "限制",
"restrictionType": "Restriction type",
"selectType": "选择限制类型",
"selectValidation": "请选择平台",
"typeHint": "选择“设备类型限制”可限制设备属性。选择“设备限制”可限制每个用户的设备数。",
"typeRequired": "必须提供限制类型。",
"winPhoneRestrictions": "Windows Phone 限制",
"windowsECv1Info": "无法编辑较旧的注册限制,也无法重新设置其优先级,只能删除它们。",
"windowsECv2Info": "可通过拖放注册限制来确定这些限制的优先级。请查看下面的默认限制和预配置的限制。所有新的注册限制的优先级都将高于默认限制和预配置的限制。",
"windowsRestrictions": "Windows 限制",
"windowsRestrictionsPreview": "基于筛选器的 Windows 限制(预览版)"
},
"InstallContextType": {
"device": "设备",
"deviceContext": "设备上下文",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "规则语法",
"filters": "筛选器"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} 包含在一个或多个策略集中。如果删除 {0},将无法再通过这些策略集分配它。是否仍要删除?",
"contentWithError": "{0} 可能包含在一个或多个策略集中。如果删除 {0},将无法再通过这些策略集分配它。是否仍要删除?",
"header": "确定要删除此限制吗?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "允许用户更改设置",
"tooltip": "指定是否允许用户更改设置。"
},
"AllowWorkAccounts": {
"title": "仅允许工作或学校帐户",
"tooltip": " 启用此设置,用户将无法在 Outlook 中添加个人电子邮件和存储帐户。如果用户已将个人帐户添加到 Outlook则会提示其删除个人帐户。如果用户不删除个人帐户则无法添加工作或学校帐户。"
},
"BlockExternalImages": {
"title": "阻止外部图像",
"tooltip": "启用阻止外部图像后,应用将阻止下载通过 Internet(嵌入在邮件正文中)托管的图像。如果设置为“未配置”,则默认应用设置设为“关”"
},
"ConfigureEmail": {
"title": "配置电子邮件帐户设置"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "默认应用签名指示应用是否要在消息撰写期间将“获取 Outlook for Android”用作默认签名。如果此设置配置为“关”则不使用默认签名但是用户可添加自己的签名。\r\n\r\n当设置为“未配置”时默认应用设置设为“开”。",
"iOS": "默认应用签名指示应用是否要在消息撰写期间将“获取 Outlook for iOS”用作默认签名。如果此设置配置为“关”则不使用默认签名但是用户可添加自己的签名。\r\n\r\n当设置为“未配置”时默认应用设置设为“开”。"
},
"title": "默认应用签名"
},
"OfficeFeedReplies": {
"title": "发现源",
"tooltip": "通过发现源,可查看最常访问的 Office 文件。默认情况下,在为用户启用 Delve 时启用此源。在设置为“未配置”时,默认应用设置设为“开”。"
},
"OrganizeMailByThread": {
"title": "按线程组织邮件",
"tooltip": "Outlook 中的默认行为是将邮件对话捆绑到链式对话视图中。如果禁用此设置Outlook 将单独显示每个邮件,不会按线程对其进行分组。"
},
"PlayMyEmails": {
"title": "播放我的电子邮件",
"tooltip": "默认情况下,应用中不会启用“播放我的电子邮件”功能,但会通过收件箱中的横幅将此功能提升为符合条件的用户。如果设置为“关闭”,则不会在应用中将此功能提升为符合条件的用户。用户可以在应用中选择手动启用“播放我的电子邮件”,即使此功能设置为“关闭”也是如此。如果设置为“未配置”,则默认应用设置是“打开”,且功能将提升为符合条件的用户。"
},
"SuggestedReplies": {
"title": "建议的答复",
"tooltip": "打开邮件时Outlook 可能会在邮件下建议答复。如果选择所建议的答复,可在发送答复前对其进行编辑。"
},
"SyncCalendars": {
"title": "同步日历",
"tooltip": "配置用户是否可将其 Outlook 日历同步到本机日历应用和数据库。"
},
"TextPredictions": {
"title": "文本预测",
"tooltip": "Outlook 可在你撰写邮件时提供词语和短语建议。当 Outlook 提供建议时,可通过轻扫接受建议。如果设置为“未配置”,应用设置默认设置为“开”。"
},
"DeviceLimit": {
"description": "指定用户可以注册的最大设备数。",
"header": "设备极限限制",
"info": "定义每个用户可以注册的设备数量。"
},
"DeviceType": {
"VersionValidation": {
"aOSP": "必须为 1.0 或更高版本。",
"android": "请输入有效的版本号。示例: 5.0、5.5.1、6.0.0.1",
"androidForWork": "请输入有效的版本号。示例: 5.0、5.1.1",
"iOS": "请输入有效的版本号。示例: 9.0、10.0、9.0.2",
"mac": "请输入一个有效的版本号。例如: 10, 10.10, 10.10.1",
"min": "最小值不能低于 {0}",
"minMax": "最低版本不能高于最高版本。",
"windows": "必须为 10.0 或更高版本。保留为空以允许 8.1 设备",
"windowsMobile": "必须为 10.0 或更高版本。保留为空以允许 8.1 设备"
},
"allPlatformsBlocked": "所有设备平台均已锁定。允许平台注册以启用平台配置。",
"blockManufacturerPlaceHolder": "制造商名称",
"blockManufacturersHeader": "被阻止的制造商",
"cannotRestrict": "不支持限制",
"configurationDescription": "指定要注册设备而必须满足的平台配置限制。注册后使用符合性策略限制设备。将版本定义为 major.minor.build。版本限制仅适用于注册了公司门户的设备。默认情况下Intune 将设备分类为个人拥有。需要执行额外操作才能将设备分类为公司拥有。",
"configurationDescriptionLabel": "了解有关设置注册限制的详细信息",
"configurations": "配置平台",
"deviceManufacturer": "设备制造商",
"header": "设备类型限制",
"info": "定义可以注册的平台、版本和管理类型。",
"manufacturer": "制造商",
"max": "最大值",
"maxVersion": "最高版本",
"min": "最小值",
"minVersion": "最小版本",
"newPlatforms": "已允许新平台。请考虑更新平台配置。",
"personal": "个人拥有",
"platform": "平台",
"platformDescription": "可允许注册下列平台。仅阻止你不支持的平台。可使用其他注册限制配置已允许的平台。",
"platformSettings": "平台设置",
"platforms": "选择平台",
"platformsSelected": "已选择 {0} 个平台",
"type": "类型",
"versions": "版本",
"versionsRange": "允许的最小/最大范围:",
"windowsTooltip": "通过移动设备管理限制注册。不限制电脑代理安装。仅支持 Windows 10 和 Windows 11 版本。保留版本为空以允许 Windows 8.1。"
},
"Priority": {
"saved": "已成功保存限制优先级。"
},
"Row": {
"announce": "优先级: {0},名称: {1},已分配: {2}"
},
"Table": {
"deployed": "已部署",
"name": "名称",
"priority": "优先级"
},
"Type": {
"limit": "设备限制",
"type": "设备类型限制"
},
"allUsers": "所有用户",
"androidRestrictions": "Android 限制",
"create": "创建限制",
"defaultLimitDescription": "这是应用于所有用户的优先级最低的默认设备限制,但不考虑组成员身份。",
"defaultTypeDescription": "这是应用于所有用户的优先级最低的默认设备类型限制,但不考虑组成员身份。",
"defaultWhfbDescription": "这是应用于所有用户的优先级最低的默认 Windows Hello 企业版,但不考虑组成员身份。",
"deleteMessage": "如果未分配其他限制,则将按分配的下一个拥有最高优先级的限制或默认限制对受影响的用户进行限制。",
"deleteTitle": "确定要删除 {0} 限制吗?",
"descriptionHint": "描述由限制设置表征的业务用途或限制级别的简短段落。",
"edit": "编辑限制",
"info": "设备必须遵循分配给其用户的最高优先级注册限制。可拖动设备限制以更改其优先级。所有用户的默认限制都是最低优先级,且它们控制无用户参与的注册。可编辑(但不可删除)默认限制。",
"iosRestrictions": "iOS 限制",
"mDM": "MDM",
"macRestrictions": "MacOS 限制",
"maxVersion": "最高版本",
"minVersion": "最低版本",
"nameHint": "这将是显示标识限制集时可见的主属性。",
"noAssignmentsStatusBar": "至少将限制分配给一个组。请单击“属性”。",
"notFound": "找不到限制。它可能已删除。",
"personallyOwned": "个人拥有的设备",
"restriction": "限制",
"restrictionLowerCase": "限制",
"restrictionType": "Restriction type",
"selectType": "选择限制类型",
"selectValidation": "请选择平台",
"typeHint": "选择“设备类型限制”可限制设备属性。选择“设备限制”可限制每个用户的设备数。",
"typeRequired": "必须提供限制类型。",
"winPhoneRestrictions": "Windows Phone 限制",
"windowsRestrictions": "Windows 限制"
},
"ThemesEnabled": {
"title": "已启用主题",
"tooltip": "指定是否允许用户使用自定义视觉主题。"
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS 设备(预览版)"
@@ -12507,6 +12558,7 @@
"user": "用户",
"userExecutionStatus": "用户状态",
"wdacSupplementalPolicies": "S 模式补充策略",
"win32CatalogUpdateApp": "用于 Windows (Win32) 目录应用的更新",
"windows10DriverUpdate": "Windows 10 及更高版本的驱动程序更新",
"windows10QualityUpdate": "Windows 10 及更高版本的质量更新",
"windows10UpdateRings": "Windows 10 及更高版本的更新通道",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Windows 365 合作伙伴连接器",
"windowsDiagnosticData": "Windows 数据",
"windowsEnterpriseCertificate": "Windows Enterprise 证书",
"windowsManagement": "PowerShell 脚本",
"windowsManagement": "脚本",
"windowsSideLoadingKeys": "Windows 边载密钥",
"windowsSymantecCertificate": "Windows DigiCert 证书",
"windowsThreatReport": "威胁代理状态"
@@ -12551,6 +12603,10 @@
"postponed": "推迟",
"priority": "高优先级"
},
"AutoUpdateSupersededApps": {
"label": "自动更新",
"sublabel": "自动升级此应用程序的任何取代版本"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "背景",
"displayText": "{0} 中的内容下载",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "要求在 PIN 中至少使用一個大寫字母"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "允許使用者變更設定",
"tooltip": "指定是否允許使用者變更設定。"
},
"AllowWorkAccounts": {
"title": "只允許公司或學校帳戶",
"tooltip": " 若啟用此設定,使用者將無法在 Outlook 內新增個人電子郵件及儲存體帳戶。若使用者將個人帳戶新增至 Outlook系統會提示使用者移除該個人帳戶。若使用者不移除個人帳戶就無法新增公司或學校帳戶。"
},
"BlockExternalImages": {
"title": "封鎖外部影像",
"tooltip": "啟用封鎖外部影像時,應用程式會禁止下載裝載於網際網路且內嵌在郵件內文中的影像。若設為未設定,預設應用程式設定會設為 [關閉]"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "應用程式版本",
"dependencyName": "相依性名稱",
"lastModifiedTime": "上次修改時間",
"relationship": "關聯性",
"replaced": "已被取代",
"searchPlaceholder": "依應用程式名稱篩選",
"status": "狀態詳細資料",
"statusDetails": "狀態",
"supersedenceName": "取代名稱"
},
"RelatedAppRelationship": {
"dependencyDescendants": "子相依性",
"indirectSupersedence": "沒有直接關聯",
"supersedenceAncestors": "即將取代",
"supersedenceDescendants": "已取代"
},
"ConfigureEmail": {
"title": "進行電子郵件帳戶設定"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "預設應用程式簽章指出應用程式在撰寫訊息時,是否要使用「取得 Android 版 Outlook」作為預設簽章。若將此設定設為 [關閉],將不會使用此預設簽章; 但使用者可以新增自己的簽章。\r\n\r\n若將此設定設為 [未設定],預設應用程式設定將設為 [開啟]。",
"iOS": "預設應用程式簽章指出應用程式在撰寫訊息時,是否要使用「取得 iOS 版 Outlook」作為預設簽章。若將此設定設為 [關閉],將不會使用此預設簽章; 但使用者可以新增自己的簽章。\r\n\r\n若將此設定設為 [未設定],預設應用程式設定將設為 [開啟]。"
},
"title": "預設應用程式簽章"
},
"OfficeFeedReplies": {
"title": "探索摘要",
"tooltip": "探索摘要會顯示您最常存取的 Office 檔案。根據預設,當使用者的 Delve 啟用時,此摘要會啟用。當設定為未設定時,預設應用程式設定會設為 [開啟]。"
},
"OrganizeMailByThread": {
"title": "依執行緒整理郵件",
"tooltip": "Outlook 中的預設行為是將郵件交談組合為執行緒交談檢視。如果停用此設定Outlook 會分別顯示每個郵件,而且不會依執行緒將其分組。"
},
"PlayMyEmails": {
"title": "播放我的電子郵件",
"tooltip": "根據預設,應用程式不會啟用 [播放我的電子郵件] 功能,但會透過收件匣中的橫幅,向符合資格的使用者推廣此功能。當設定為 [關閉] 時,應用程式中將不會對符合資格的使用者推廣此功能。即便此功能的設定為 [關閉],使用者仍可選擇從應用程式中手動啟用 [播放我的電子郵件]。當設定為 [未設定] 時,預設的應用程式設定為 [開啟],將會向符合資格的使用者推廣此功能。"
},
"SuggestedReplies": {
"title": "建議的回覆",
"tooltip": "當您開啟訊息時Outlook 可能會在訊息下方建議回覆。如果您選取建議的回覆,可以在傳送前編輯回覆。"
},
"SyncCalendars": {
"title": "同步行事曆",
"tooltip": "設定使用者是否可將 Outlook 行事曆同步到原生行事曆應用程式與資料庫。"
},
"TextPredictions": {
"title": "文字預測",
"tooltip": "當您撰寫訊息時Outlook 可以建議字詞與片語。當 Outlook 提供建議時,撥動即可接受。當未設定時,預設應用程式設定將設為 [開啟]。"
"SupersededReplaced": {
"no": "否",
"yes": "是"
},
"ThemesEnabled": {
"title": "佈景主題已啟用",
"tooltip": "指定使用者能否使用自訂視覺效果的佈景主題。"
}
},
"Tabs": {
"chart": "圖表​​",
"dependency": "相依性",
"label": "檢視: ",
"supersedence": "取代",
"table": "資料表"
},
"dependencyGraphAriaLabel": "應用程式相依性圖表",
"supersedenceGraphAriaLabel": "應用程式取代圖表"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "請選取探索指令碼",
@@ -1835,7 +1815,7 @@
"createPowershellScriptFlowSectionName": "新增 PowerShell 指令碼",
"customAttributeObjectName": "自訂屬性",
"editPowershellScriptFlowSectionName": "編輯 PowerShell 指令碼",
"enforceSignatureCheckInfoBalloonContent": "指令碼必須由信任的發行者簽署。根據預設,不顯示警告或提示而且指令碼會在解除封鎖的狀態下執行。",
"enforceSignatureCheckInfoBalloonContent": "指令碼必須由信任的發行者簽署。此為預設值。",
"enforceSignatureCheckLabel": "強制執行指令碼簽章檢查",
"executionFrequencyLabel": "執行頻率",
"failedToSavePolicy": "無法儲存 {0}",
@@ -1846,7 +1826,7 @@
"reviewButtonText": "檢閱 + 新增 ",
"runAs64BitInfoBalloonContent": "此指令碼會在 64 位元用戶端架構的 64 位元 PowerShell 主機中執行。根據預設,該指令碼會在 32 位元 PowerShell 主機中執行。",
"runAs64BitLabel": "在 64 位元的 PowerShell 主機中執行指令碼",
"scriptContextInfoBalloonContent": "指令碼會在用戶端電腦上以使用者的認證執行。根據預設,指令碼會在系統內容中執行。",
"scriptContextInfoBalloonContent": "指令碼會在用戶端電腦上以使用者的認證執行。根據預設,指令碼會在使用者內容中執行。",
"scriptContextLabel": "使用登入認證執行此指令碼",
"scriptsettingsTabHeader": "指令碼設定",
"settingsHeader": "選取要設定的指令碼",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Always-On VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "檢查基本完整性與裝置完整性",
"androidPlayIntegrityVerdictBasicIntegrity": "檢查基本完整性",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "除了 Samsung Knox 裝置之外,執行 Android 11 或更新版本的裝置,已無法再安裝信任的憑證。若是使用 SCEP 憑證設定檔,必須繼續建立及部署信任的憑證設定檔,並將其關聯到 SCEP 憑證設定檔,但必須手動將信任的根憑證傳遞到這些裝置。",
"androidTenAndAbovePasswordHeader": "Windows 10 及更新版本",
"androidTenAndAbovePasswordHeaderDescription": "這些設定適用於執行 Android 10 或更新版本的裝置。",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "強制裝置自動更新安全性修補程式和功能改進。",
"complianceUpdatesRequireAutomaticUpdatesName": "需要來自 Microsoft 的自動更新",
"complianceWin10RequiredPasswordTypeDescription": "這個設定會定義需要的密碼/PIN 類型。<br>\r\n裝置預設 (需要密碼、數字 PIN 或英數字元 PIN)<br>\r\n英數字元 (需要密碼或英數字元 PIN)<br>\r\n數字 (需要密碼或數字 PIN)<br>\r\n建議: 需要密碼類型: 英數字元,密碼複雜性: 需要數字和小寫字母",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 11",
"complianceWindows11DeviceHealthAttestationHeader": "僅限 Windows 11",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Microsoft Defender 的最低版本 (例如 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Microsoft Defender 反惡意程式碼軟體最低版本",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft 證明服務評估規則<br><br>使用這些規則來確認裝置已在開機時啟用防護措施。<a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">深入了解這些規則</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft 證明服務評估設定<br><br>使用這些設定來確認裝置已在開機時啟用防護措施。<a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">深入了解</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "請選取行動裝置可以安裝的最新 OS 版本。作業系統版本會定義為 major.minor.build。",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "請選取行動裝置可以安裝的最舊 OS 版本。作業系統版本會定義為 major.minor.build。",
"complianceWindowsOsVersionRestrictionHeaderDescription": "作業系統版本會定義為 major.minor.build.revision。",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "第 95 個百分位數保護",
"basicDataProtectionGuidedString": "基本資料保護 - 確保使用者必須利用 PIN 或生物特徵辨識,才可存取公司或學校帳戶資料、加密公司或學校帳戶資料,以及能讓系統管理員於必要情況下,執行選擇性的資料抹除。若是 Android 裝置,基本資料保護也可確保裝置與 Google 服務之間的相容性,以及啟用 Google 的驗證應用程式掃描。",
"basicIntegrity": "基本完整性",
"basicIntegrityAndCertifiedDevices": "基本完整性和經認證的裝置",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "閒置逾時",
"bioPinInactiveTimeoutTooltip": "使用 PIN 來覆寫生物特徵辨識之前的等待時間 (分鐘)",
"block": "封鎖",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "所有應用程式的剪下及複製字元限制",
"camera": "相機",
"checkInCountColumnTitle": "簽入計數",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "已簽入",
"checkedInAppNameColumnTitle": "應用程式",
"checkedInButNotSynced": "已簽入。此應用程式會在下一次同步時接收 {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">我找不到需要的應用程式</a></p><p><a data-bind=\"fxclick: onClickLob\">我需要新增自己的企業營運應用程式</a></p>",
"guidedTemplate2": "我們將會詢問您,要為使用者部署哪個保護層級。如需詳細資訊,請參閱<a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">應用程式保護原則的資料保護架構。</a>",
"guidediOSLabel": "iOS 應用程式防護",
"hardwareBackedKey": "硬體備份金鑰",
"healthCheck": "健康情況檢查",
"helpAndSupport": "說明及支援",
"hideOverrides": "隱藏覆寫",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "平台",
"platformDropDownLabel": "平台",
"platformVersion": "平台版本",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "請修正下列區段中的錯誤!",
"pleaseSelectAtLeastOneFileError": "請在繼續前選取至少一個檔案",
"policies": "原則",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "需要裝置鎖定",
"requireThreatScanOnApps": "需要對應用程式進行威脅掃描",
"requiredField": "此欄位不能是空的",
"requiredSafetyNetEvaluationType": "需要的 SafetyNet 評估類型",
"requiredSettings": "必要設定",
"resetPin": "重設 PIN",
"resourceManagement": "資源管理",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "任一 App",
"restrictWebContentOption2": "{0}: 允許任何應用程式中的 Web 連結",
"rootCertificate": "根憑證",
"safetyNetDeviceAttestation": "SafetyNet 裝置證明",
"samsungKnoxAttestationRequired": "Samsung Knox 裝置證明",
"saveAppsNotificationText": "正在儲存選取的應用程式",
"saveChangesCommandText": "儲存",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "篩選模式",
"assignmentToast": "終端使用者通知",
"assignmentTypeTableHeader": "指派類型",
"autoUpdate": "自動更新",
"deadlineTimeColumnLabel": "安裝期限",
"deliveryOptimizationPriorityHeader": "傳遞最佳化優先順序",
"groupTableHeader": "群組",
@@ -8514,6 +8496,10 @@
"showAll": "顯示所有快顯通知",
"showReboot": "顯示電腦重新開機的快顯通知"
},
"AutoUpdateSupersededApps": {
"enabled": "已啟用",
"notConfigured": "未設定"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "背景",
"displayText": "{0} 中的內容下載",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "「每次登入頻率」工作階段控制項需要選取「所有雲端應用程式」或特別支援的應用程式",
"allDayCheckboxLabel": "全天",
"allDevicePlatforms": "任何裝置",
"allGuestUserInfoContent": "包括 Azure AD B2B 來賓,但不包 SharePoint B2B 來賓",
"allGuestUserInfoContent": "包含 Microsoft Entra B2B 來賓,但不包 SharePoint B2B 來賓",
"allGuestUserLabel": "所有來賓與外部使用者",
"allRiskLevelsOption": "所有風險等級",
"allTrustedLocationLabel": "所有信任的位置",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "深入了解相容裝置的要求。",
"controlsDeviceComplianceInfoBubble": "裝置必須符合 Intune 規範。如果裝置不符合規範,則會提示使用者使裝置符合規範。",
"controlsDomainJoinedAriaLabel": "深入了解已使用混合式 Azure AD 而聯結的裝置要求。",
"controlsDomainJoinedInfoBubble": "必須已使用混合式 Azure AD 而聯結的裝置。",
"controlsDomainJoinedAriaLabel": "深入了解已使用 Microsoft Entra 混合式而聯結的裝置要求。",
"controlsDomainJoinedInfoBubble": "裝置必須已使用 Microsoft Entra 混合式而聯結的。",
"controlsMamAriaLabel": "深入了解核准用戶端應用程式的要求。",
"controlsMamInfoBubble": "裝置必須使用這些經過核准的用戶端應用程式。",
"controlsMfaInfoBubble": "使用者必須完成通話和簡訊等其他安全性需求",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "標示為符合規範的裝置",
"deviceStateCompliantInfoContent": "此原則的評估會排除符合 Intune 規範的裝置,因此,假如原則封鎖了存取權,系統即會封鎖所有裝置,但符合 Intune 規範的裝置除外。",
"deviceStateConditionConfigureInfoContent": "依裝置狀態設定原則",
"deviceStateConditionSelectorInfoContent": "使用者用來登入的裝置是否為「已使用混合式 Azure AD 而聯結的」或「標示為合規」。\n 這已被淘汰。請改用 '{1}'。",
"deviceStateConditionSelectorInfoContent": "使用者用來登入的裝置是否為「已使用 Microsoft Entra 混合式而聯結的」或「標示為合規」。\n 這已被淘汰。請改用 '{1}'。",
"deviceStateConditionSelectorLabel": "裝置狀態 (已棄用)",
"deviceStateDomainJoined": "已使用混合式 Azure AD 而聯結的裝置",
"deviceStateDomainJoinedInfoContent": "此原則的評估會排除已使用混合式 Azure AD 而聯結的裝置,因此,如原則封鎖存取權,系統即會封鎖所有裝置,但已使用混合式 Azure AD 而聯結的裝置除外。",
"deviceStateDomainJoined": "已使用 Microsoft Entra 混合式而聯結的裝置",
"deviceStateDomainJoinedInfoContent": "此原則的評估會排除已使用 Microsoft Entra 混合式而聯結的裝置,因此,如原則封鎖存取即會封鎖所有裝置,但已使用 Microsoft Entra 混合式而聯結的裝置除外。",
"deviceStateDomainJoinedInfoLinkText": "深入了解。",
"deviceStateExcludeDescription": "選取用以將裝置排除在原則之外的裝置狀態。",
"deviceStateIncludeAndExcludeOneLabel": "{0} 及排除 {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync 僅搭配受支援的平台",
"excludeAllTrustedLocationSelectorText": "所有信任位置",
"featureRequiresP2": "此功能需要 Azure AD Premium 2 授權。",
"featureRequiresP2": "此功能需要 Microsoft Entra ID P2 授權。",
"friday": "星期五",
"grantControls": "授與控制權",
"gridNetworkTrusted": "信任",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "選取的私人連結",
"lowRisk": "低",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "若要管理條件式存取原則,您的組織需要 Azure AD Premium P1 或 P2。",
"managePoliciesLicenseText": "若要管理條件式存取原則,您的組織需要 Microsoft Entra ID P1 或 P2。",
"manageSecurityDefaultsAriaLabel": "管理安全性預設值設定。",
"markAsTrustedCheckboxInfoBalloonContent": "從信任位置登入可降低使用者登入風險。只有在您知道輸入的 IP 範圍已在組織中建立且可靠時,才會將此位置標示為信任。",
"markAsTrustedCheckboxLabel": "標示為信任位置",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "國家/地區",
"namedLocationTypeLabel": "定義位置的方式:",
"namedLocationUpsellBanner": "此檢視已被取代。前往改良的新「具名位置」檢視。",
"namedLocationsHelpDescription": "Azure AD 安全性報告與 Azure AD 條件式存取原則皆會使用具名位置,前者用此減少誤判。\n[深入了解][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "具名位置會由 Microsoft Entra ID 安全性報告用來減少誤判和 Microsoft Entra 條件式存取原則。\n[深入了解][1]\n[1]: https://aka.ms/namedlocationupdate (部分機器翻譯)",
"namedNetworkAddIpRanges": "新增 IP 範圍 (例如: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "您至少需要選取一個國家/地區",
"namedNetworkDeleteCommand": "刪除",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "新增具名位置",
"namedNetworksConditionHelpDescription": "根據其實際位置控制使用者存取。\n[深入了解][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "已排除 {0} 與 {1}",
"namedNetworksHelpDescription": "Azure AD 安全性報告與 Azure AD 條件式存取原則皆會使用具名位置,前者用此減少誤判。\n[深入了解][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "具名位置會由 Microsoft Entra ID 安全性報告用來減少誤判和 Microsoft Entra 條件式存取原則。\n[深入了解][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "已包含 {0} 個",
"namedNetworksNone": "找不到任何具名位置。",
"namedNetworksTitle": "設定位置",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "只有全域管理員能夠儲存此原則。",
"or": "{0} 或 {1}",
"pickerDoneCommand": "完成",
"policiesBladeAdPremiumUpsellBannerText": "Azure AD Premium 建立自己的原則與目標特定條件,例如雲端應用程式、登入風險及裝置平台",
"policiesBladeAdPremiumUpsellBannerText": "使Microsoft Entra ID 進階版建立自己的原則並鎖定特定條件,例如雲端應用程式、登入風險及裝置平台",
"policiesBladeTitle": "原則",
"policiesBladeTitleWithAppName": "原則: {0}",
"policiesDisabledBannerText": "不允許為具有連結登入屬性的應用程式建立及編輯原則。",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "使用者的登入來源位置 (使用 IP 位址範圍判定)",
"policyConditionLocationPreview": "位置 (預覽)",
"policyConditionSigninRisk": "登入風險",
"policyConditionSigninRiskDescription": "登入者為其他人而非使用者的可能性。風險等級可能是高、中或低。必須要有 Azure AD Premium 2 授權。",
"policyConditionSigninRiskDescription": "登入者為其他人而非使用者的可能性。風險等級可能是高、中或低。需要 Microsoft Entra ID P2 授權。",
"policyConditionUserRisk": "使用者風險",
"policyConditionUserRiskDescription": "設定實施原則所需的使用者風險層級",
"policyConditioniClientApp": "用戶端應用程式",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "封鎖存取,或選取如需允許存取所需滿足的其他需求",
"policyControlMfaChallengeDisplayedName": "需要多重要素驗證",
"policyControlRequireCompliantAppDisplayedName": "需要應用程式保護原則",
"policyControlRequireDomainJoinedDisplayedName": "需要已使用混合式 Azure AD 而聯結的裝置",
"policyControlRequireDomainJoinedDisplayedName": "需要已使用 Microsoft Entra 混合式而聯結的",
"policyControlRequireMamDisplayedName": "需要經過核准的用戶端應用程式",
"policyControlRequiredPasswordChangeDisplayedName": "需要變更密碼",
"policyControlSelectAuthStrength": "需要驗證強度",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "已成功更新 {0}。若您將 [啟用原則] 設為 [開啟],原則會在幾分鐘後啟用。",
"policyUpdateSuccessTitle": "已成功更新 {0}",
"primaryCol": "主要",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "報告專用模式: 原則會在登入時經過評估及記錄,但不會影響使用者。",
"requireAllControlsText": "需要所有選取的控制項",
"requireCompliantDevice": "需要符合規範裝置",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "敏感性應用程式隨時都需要多重要素驗證,或僅在來自公司網路外部時需要。",
"upsellAppsTitle": "保護應用程式",
"upsellBannerText": "取得免費 Premium 試用版即可使用此功能",
"upsellDataDescription": "必須標記為符合規範或已使用混合式 Azure AD 而聯結的裝置,才允許該裝置存取公司資源。",
"upsellDataDescription": "需要標記為符合規範或已使用 Microsoft Entra 混合式而聯結的裝置,才允許存取公司資源。",
"upsellDataTitle": "保護資料",
"upsellDescription": "條件式存取可提供保護公司資料安全所需的控制及保護,同時可讓您的員工透過任一種裝置交出最好的工作表現。例如,您可以限制來自公司網路外部的存取,或僅限對符合合規性原則的裝置進行存取。",
"upsellRiskDescription": "Microsoft 的機器學習系統所偵測到的風險事件需要多重要素驗證。",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "已成功更新 {0}。",
"vpnCertUpdateSuccessTitle": "已成功更新 {0}",
"vpnFeatureInfo": "如需 VPN 連線能力與條件式存取的其他資訊,請按一下這裡。",
"vpnFeatureWarning": "在 Azure 入口網站開啟 VPN 憑證後,Azure AD 就會立即開始利用其來對 VPN 用戶端發短期憑證。立即將 VPN 憑證部署至 VPN 伺服器相當重要,可避免 VPN 用戶端的認證驗證發生任何問題。",
"vpnFeatureWarning": "在入口網站建立 VPN 憑證後,Microsoft Entra ID 就會立即開始利用其來對 VPN 用戶端發短期憑證。立即將 VPN 憑證部署至 VPN 伺服器相當重要,可避免 VPN 用戶端的認證驗證發生任何問題。",
"vpnMenuText": "VPN 連線能力",
"vpncertDropdownDefaultOption": "持續時間",
"vpncertDropdownInfoBalloonContent": "為您要建立的憑證選取期限",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "自訂 Intune 角色",
"customRole": "自訂角色"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} 包含在一或多個原則集中。如果刪除 {0},您將無法再透過這些原則集加以指派。仍要刪除嗎?",
"contentWithError": "{0} 可能包含在一或多個原則集中。如果刪除 {0},您將無法再透過這些原則集加以指派。仍要刪除嗎?",
"header": "確定要刪除此限制嗎?"
},
"DeviceLimit": {
"description": "指定使用者可註冊的裝置上限數。",
"header": "裝置限制",
"info": "定義每個使用者可註冊的裝置數。"
},
"DeviceType": {
"VersionValidation": {
"aOSP": "必須為 1.0 或更高版本。",
"android": "請輸入有效的版本號碼。範例: 5.0、5.5.1、6.0.0.1",
"androidForWork": "請輸入有效的版本號碼。範例: 5.0、5.1.1",
"iOS": "請輸入有效的版本號碼。範例: 9.0、10.0、9.0.2",
"mac": "輸入有效的版本號碼。範例: 10, 10.10, 10.10.1",
"min": "最小值不能低於 {0}",
"minMax": "最小版本不可大於最大版本。",
"windows": "必須是 10.0 或更高版本。若要允許 8.1 裝置,請保留空白",
"windowsMobile": "必須是 10.0 或更高版本。若要允許 8.1 裝置,請保留空白"
},
"allPlatformsBlocked": "所有裝置平台皆已封鎖。請允許平台註冊,以啟用平台設定。",
"blockManufacturerPlaceHolder": "製造商名稱",
"blockManufacturersHeader": "封鎖的製造商",
"cannotRestrict": "不支援限制",
"configurationDescription": "指定裝置註冊時必須符合的平台設定限制。您可以使用合規性政策限制註冊後的裝置。將版本定義為 major.minor.build。只有在公司入口網站註冊的裝置才會套用版本限制。根據預設Intune 會將裝置分類為個人擁有。若要將裝置分類為公司擁有,需要執行其他動作。",
"configurationDescriptionLabel": "深入了解如何設定註冊限制",
"configurations": "設定平台",
"deviceManufacturer": "裝置製造商",
"header": "裝置類型限制",
"info": "定義可註冊哪些平台、版本及管理類型。",
"manufacturer": "製造商",
"max": "最大值",
"maxVersion": "版本上限",
"min": "最小值",
"minVersion": "最小版本",
"newPlatforms": "您允許了新平台。請考慮更新平台設定。",
"personal": "個人所擁有",
"platform": "平台",
"platformDescription": "您可以允許註冊下列平台。僅封鎖不受支援的平台。可以使用其他註冊限制來設定允許的平台。",
"platformSettings": "平台設定",
"platforms": "選取平台",
"platformsSelected": "選取了 {0} 個平台",
"type": "類型",
"versions": "版本",
"versionsRange": "允許最小/最大範圍:",
"windowsTooltip": "透過行動裝置管理來限制註冊。不限制 PC 代理程式的安裝。只支援 Windows 10 和 Windows 11 版本。將版本保留空白即可允許 Windows 8.1。"
},
"Priority": {
"saved": "已成功儲存限制的優先順序。"
},
"Row": {
"announce": "優先順序: {0},名稱: {1},已指派: {2}"
},
"Table": {
"deployed": "已部署",
"name": "名稱",
"priority": "優先順序"
},
"Type": {
"limit": "裝置限制的限制",
"type": "裝置類型的限制"
},
"allUsers": "所有使用者",
"androidRestrictions": "Android 限制",
"create": "建立限制",
"defaultLimitDescription": "這項預設裝置上限會以最低優先順序套用至所有使用者,而不論群組成員資格。",
"defaultTypeDescription": "這項預設裝置類型限制會以最低優先順序套用至所有使用者,而不論群組成員資格。",
"defaultWhfbDescription": "這是預設 Windows Hello 企業版設定,會以最低優先順序套用至所有使用者,而不論群組成員資格。",
"deleteMessage": "受影響的使用者會受到指派的次一優先順序限制的限制,若未指派任何其他限制,則會是預設的限制。",
"deleteTitle": "確定要刪除 {0} 限制嗎?",
"descriptionHint": "短文,描述以限制的設定作為特性的商務用途或限制等級。",
"edit": "編輯限制",
"info": "裝置必須符合指派到其使用者的最高優先順序註冊限制。您可以拖曳裝置限制來變更其優先順序。預設限制對所有使用者而言都是最低優先順序,並且會治理使用者未參與的註冊。預設限制可以編輯但無法刪除。",
"iosRestrictions": "iOS 限制",
"mDM": "MDM",
"macRestrictions": "macOS 限制",
"maxVersion": "最大版本",
"minVersion": "最小版本",
"nameHint": "這將是可見的主要屬性,用以識別所設定的限制。",
"noAssignmentsStatusBar": "將限制指派到至少一個群組。按一下 [屬性]。",
"notFound": "找不到限制。可能已將其刪除。",
"personallyOwned": "個人擁有的裝置",
"restriction": "限制",
"restrictionLowerCase": "限制",
"restrictionType": "Restriction Type",
"selectType": "選取限制類型",
"selectValidation": "請選取平台",
"typeHint": "選擇裝置類型限制可限制裝置的屬性。選擇裝置限制的限制,則可限制每位使用者的裝置數目。",
"typeRequired": "需要限制類型。",
"winPhoneRestrictions": "Windows Phone 限制",
"windowsECv1Info": "無法編輯或重新排序較舊的註冊限制,只能刪除。",
"windowsECv2Info": "您可以拖放註冊限制,以設定其優先順序。檢視下方的預設和預先設定的限制。對於所有新的註冊限制,優先順序都會高於預設和預先設定的限制。",
"windowsRestrictions": "Windows 限制",
"windowsRestrictionsPreview": "以篩選為基礎的 Windows 限制 (預覽)"
},
"InstallContextType": {
"device": "裝置",
"deviceContext": "裝置內容",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "規則語法",
"filters": "篩選"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} 包含在一或多個原則集中。如果刪除 {0},您將無法再透過這些原則集加以指派。仍要刪除嗎?",
"contentWithError": "{0} 可能包含在一或多個原則集中。如果刪除 {0},您將無法再透過這些原則集加以指派。仍要刪除嗎?",
"header": "確定要刪除此限制嗎?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "允許使用者變更設定",
"tooltip": "指定是否允許使用者變更設定。"
},
"AllowWorkAccounts": {
"title": "只允許公司或學校帳戶",
"tooltip": " 若啟用此設定,使用者將無法在 Outlook 內新增個人電子郵件及儲存體帳戶。若使用者將個人帳戶新增至 Outlook系統會提示使用者移除該個人帳戶。若使用者不移除個人帳戶就無法新增公司或學校帳戶。"
},
"BlockExternalImages": {
"title": "封鎖外部影像",
"tooltip": "啟用封鎖外部影像時,應用程式會禁止下載裝載於網際網路且內嵌在郵件內文中的影像。若設為未設定,預設應用程式設定會設為 [關閉]"
},
"ConfigureEmail": {
"title": "進行電子郵件帳戶設定"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "預設應用程式簽章指出應用程式在撰寫訊息時,是否要使用「取得 Android 版 Outlook」作為預設簽章。若將此設定設為 [關閉],將不會使用此預設簽章; 但使用者可以新增自己的簽章。\r\n\r\n若將此設定設為 [未設定],預設應用程式設定將設為 [開啟]。",
"iOS": "預設應用程式簽章指出應用程式在撰寫訊息時,是否要使用「取得 iOS 版 Outlook」作為預設簽章。若將此設定設為 [關閉],將不會使用此預設簽章; 但使用者可以新增自己的簽章。\r\n\r\n若將此設定設為 [未設定],預設應用程式設定將設為 [開啟]。"
},
"title": "預設應用程式簽章"
},
"OfficeFeedReplies": {
"title": "探索摘要",
"tooltip": "探索摘要會顯示您最常存取的 Office 檔案。根據預設,當使用者的 Delve 啟用時,此摘要會啟用。當設定為未設定時,預設應用程式設定會設為 [開啟]。"
},
"OrganizeMailByThread": {
"title": "依執行緒整理郵件",
"tooltip": "Outlook 中的預設行為是將郵件交談組合為執行緒交談檢視。如果停用此設定Outlook 會分別顯示每個郵件,而且不會依執行緒將其分組。"
},
"PlayMyEmails": {
"title": "播放我的電子郵件",
"tooltip": "根據預設,應用程式不會啟用 [播放我的電子郵件] 功能,但會透過收件匣中的橫幅,向符合資格的使用者推廣此功能。當設定為 [關閉] 時,應用程式中將不會對符合資格的使用者推廣此功能。即便此功能的設定為 [關閉],使用者仍可選擇從應用程式中手動啟用 [播放我的電子郵件]。當設定為 [未設定] 時,預設的應用程式設定為 [開啟],將會向符合資格的使用者推廣此功能。"
},
"SuggestedReplies": {
"title": "建議的回覆",
"tooltip": "當您開啟訊息時Outlook 可能會在訊息下方建議回覆。如果您選取建議的回覆,可以在傳送前編輯回覆。"
},
"SyncCalendars": {
"title": "同步行事曆",
"tooltip": "設定使用者是否可將 Outlook 行事曆同步到原生行事曆應用程式與資料庫。"
},
"TextPredictions": {
"title": "文字預測",
"tooltip": "當您撰寫訊息時Outlook 可以建議字詞與片語。當 Outlook 提供建議時,撥動即可接受。當未設定時,預設應用程式設定將設為 [開啟]。"
},
"DeviceLimit": {
"description": "指定使用者可註冊的裝置上限數。",
"header": "裝置限制",
"info": "定義每個使用者可註冊的裝置數。"
},
"DeviceType": {
"VersionValidation": {
"aOSP": "必須為 1.0 或更高版本。",
"android": "請輸入有效的版本號碼。範例: 5.0、5.5.1、6.0.0.1",
"androidForWork": "請輸入有效的版本號碼。範例: 5.0、5.1.1",
"iOS": "請輸入有效的版本號碼。範例: 9.0、10.0、9.0.2",
"mac": "輸入有效的版本號碼。範例: 10, 10.10, 10.10.1",
"min": "最小值不能低於 {0}",
"minMax": "最小版本不可大於最大版本。",
"windows": "必須是 10.0 或更高版本。若要允許 8.1 裝置,請保留空白",
"windowsMobile": "必須是 10.0 或更高版本。若要允許 8.1 裝置,請保留空白"
},
"allPlatformsBlocked": "所有裝置平台皆已封鎖。請允許平台註冊,以啟用平台設定。",
"blockManufacturerPlaceHolder": "製造商名稱",
"blockManufacturersHeader": "封鎖的製造商",
"cannotRestrict": "不支援限制",
"configurationDescription": "指定裝置註冊時必須符合的平台設定限制。您可以使用合規性政策限制註冊後的裝置。將版本定義為 major.minor.build。只有在公司入口網站註冊的裝置才會套用版本限制。根據預設Intune 會將裝置分類為個人擁有。若要將裝置分類為公司擁有,需要執行其他動作。",
"configurationDescriptionLabel": "深入了解如何設定註冊限制",
"configurations": "設定平台",
"deviceManufacturer": "裝置製造商",
"header": "裝置類型限制",
"info": "定義可註冊哪些平台、版本及管理類型。",
"manufacturer": "製造商",
"max": "最大值",
"maxVersion": "版本上限",
"min": "最小值",
"minVersion": "最小版本",
"newPlatforms": "您允許了新平台。請考慮更新平台設定。",
"personal": "個人所擁有",
"platform": "平台",
"platformDescription": "您可以允許註冊下列平台。僅封鎖不受支援的平台。可以使用其他註冊限制來設定允許的平台。",
"platformSettings": "平台設定",
"platforms": "選取平台",
"platformsSelected": "選取了 {0} 個平台",
"type": "類型",
"versions": "版本",
"versionsRange": "允許最小/最大範圍:",
"windowsTooltip": "透過行動裝置管理來限制註冊。不限制 PC 代理程式的安裝。只支援 Windows 10 和 Windows 11 版本。將版本保留空白即可允許 Windows 8.1。"
},
"Priority": {
"saved": "已成功儲存限制的優先順序。"
},
"Row": {
"announce": "優先順序: {0},名稱: {1},已指派: {2}"
},
"Table": {
"deployed": "已部署",
"name": "名稱",
"priority": "優先順序"
},
"Type": {
"limit": "裝置限制的限制",
"type": "裝置類型的限制"
},
"allUsers": "所有使用者",
"androidRestrictions": "Android 限制",
"create": "建立限制",
"defaultLimitDescription": "這項預設裝置上限會以最低優先順序套用至所有使用者,而不論群組成員資格。",
"defaultTypeDescription": "這項預設裝置類型限制會以最低優先順序套用至所有使用者,而不論群組成員資格。",
"defaultWhfbDescription": "這是預設 Windows Hello 企業版設定,會以最低優先順序套用至所有使用者,而不論群組成員資格。",
"deleteMessage": "受影響的使用者會受到指派的次一優先順序限制的限制,若未指派任何其他限制,則會是預設的限制。",
"deleteTitle": "確定要刪除 {0} 限制嗎?",
"descriptionHint": "短文,描述以限制的設定作為特性的商務用途或限制等級。",
"edit": "編輯限制",
"info": "裝置必須符合指派到其使用者的最高優先順序註冊限制。您可以拖曳裝置限制來變更其優先順序。預設限制對所有使用者而言都是最低優先順序,並且會治理使用者未參與的註冊。預設限制可以編輯但無法刪除。",
"iosRestrictions": "iOS 限制",
"mDM": "MDM",
"macRestrictions": "MacOS 限制",
"maxVersion": "最大版本",
"minVersion": "最小版本",
"nameHint": "這將是可見的主要屬性,用以識別所設定的限制。",
"noAssignmentsStatusBar": "將限制指派到至少一個群組。按一下 [屬性]。",
"notFound": "找不到限制。可能已將其刪除。",
"personallyOwned": "個人擁有的裝置",
"restriction": "限制",
"restrictionLowerCase": "限制",
"restrictionType": "Restriction Type",
"selectType": "選取限制類型",
"selectValidation": "請選取平台",
"typeHint": "選擇裝置類型限制可限制裝置的屬性。選擇裝置限制的限制,則可限制每位使用者的裝置數目。",
"typeRequired": "需要限制類型。",
"winPhoneRestrictions": "Windows Phone 限制",
"windowsRestrictions": "Windows 限制"
},
"ThemesEnabled": {
"title": "佈景主題已啟用",
"tooltip": "指定使用者能否使用自訂視覺效果的佈景主題。"
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS 裝置 (預覽)"
@@ -12507,6 +12558,7 @@
"user": "使用者",
"userExecutionStatus": "使用者狀態",
"wdacSupplementalPolicies": "S 模式補充原則",
"win32CatalogUpdateApp": "Windows (Win32) 目錄應用程式的更新",
"windows10DriverUpdate": "Windows 10 和更新版本的驅動程式更新",
"windows10QualityUpdate": "Windows 10 和更新版本的品質更新",
"windows10UpdateRings": "Windows 10 及更新版本的更新通道",
@@ -12515,7 +12567,7 @@
"windows365PartnerConnector": "Windows 365 合作夥伴連接器",
"windowsDiagnosticData": "Windows 資料",
"windowsEnterpriseCertificate": "Windows Enterprise 憑證",
"windowsManagement": "PowerShell 指令碼",
"windowsManagement": "指令碼",
"windowsSideLoadingKeys": "Windows 側載金鑰",
"windowsSymantecCertificate": "Windows DigiCert 憑證",
"windowsThreatReport": "威脅代理程式狀態"
@@ -12551,6 +12603,10 @@
"postponed": "已延後",
"priority": "高優先順序"
},
"AutoUpdateSupersededApps": {
"label": "自動更新",
"sublabel": "自動升級此應用程式的任何已取代版本"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "背景",
"displayText": "{0} 中的內容下載",

View File

@@ -536,58 +536,38 @@
"requireAtLeastOne": "Require the use of at least one uppercase letter in PIN"
}
},
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Allow user to change setting",
"tooltip": "Specify if the user is allowed to change the setting."
},
"AllowWorkAccounts": {
"title": "Allow only work or school accounts",
"tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
},
"BlockExternalImages": {
"title": "Block external images",
"tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
"AppRelationshipStatus": {
"Grid": {
"appVersion": "App Version",
"dependencyName": "Dependency name",
"lastModifiedTime": "Last modified time",
"relationship": "Relationship",
"replaced": "Replaced",
"searchPlaceholder": "Filter by app name",
"status": "Status details",
"statusDetails": "Status",
"supersedenceName": "Supersedence name"
},
"RelatedAppRelationship": {
"dependencyDescendants": "Child dependency",
"indirectSupersedence": "Not directly related",
"supersedenceAncestors": "Superseding",
"supersedenceDescendants": "Superseded"
},
"ConfigureEmail": {
"title": "Configure email account settings"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
"iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
},
"title": "Default app signature"
},
"OfficeFeedReplies": {
"title": "Discover Feed",
"tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
},
"OrganizeMailByThread": {
"title": "Organize mail by thread",
"tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
},
"PlayMyEmails": {
"title": "Play My Emails",
"tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
},
"SuggestedReplies": {
"title": "Suggested replies",
"tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
},
"SyncCalendars": {
"title": "Sync Calendars",
"tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
},
"TextPredictions": {
"title": "Text Predictions",
"tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
"SupersededReplaced": {
"no": "No",
"yes": "Yes"
},
"ThemesEnabled": {
"title": "Themes enabled",
"tooltip": "Specify if the user is allowed to use a custom visual theme."
}
},
"Tabs": {
"chart": "Chart",
"dependency": "Dependency",
"label": "View: ",
"supersedence": "Supersedence",
"table": "Table"
},
"dependencyGraphAriaLabel": "App dependency chart",
"supersedenceGraphAriaLabel": "App supersedence chart"
},
"CustomCompliance": {
"FilePicker": {
"noScriptSelectedError": "Please select a discovery script",
@@ -2083,6 +2063,7 @@
"androidPersonalWorkProfileAlwaysOnVpnEnabledName": "Always-on VPN",
"androidPlayIntegrityVerdictBasicAndDeviceIntegrity": "Check basic integrity & device integrity",
"androidPlayIntegrityVerdictBasicIntegrity": "Check basic integrity",
"androidRestrictedKiosk": "These settings apply to Samsung KNOX Standard devices running Android 10 or earlier only.",
"androidTRDeprecation": "Trusted certificates can no longer install on devices that run Android 11 or later, except for Samsung Knox devices. If you use SCEP certificate profiles, you must continue to create and deploy a trusted certificate profile and associate it with the SCEP certificate profile, but you must manually deliver the trusted root certificate to those devices.",
"androidTenAndAbovePasswordHeader": "Android 10 and later",
"androidTenAndAbovePasswordHeaderDescription": "These settings work for devices running Android 10 or later.",
@@ -2769,8 +2750,8 @@
"blockTouchIDAndFaceIDUnlockName": "Block Touch ID and Face ID unlock",
"blockUSBConnectionDescription": "Specifies whether the USB connection on the device is enabled. USB charging will not be affected by this setting. This setting isn't supported on Windows desktop platforms.",
"blockUSBConnectionName": "USB connection",
"blockUnifiedPasswordForWorkProfileDescription": "Block using one lock if you want users to use two different passwords for their lock screen and work profile. Using one screen lock is convenient to the user, but makes the work profile accessible to anyone who can unlock the device. Applies to devices running Android 9.0 Pie and later.",
"blockUnifiedPasswordForWorkProfileName": "One lock for work profile and device",
"blockUnifiedPasswordForWorkProfileDescription": "Block if you want users to use two different passwords for their lock screen and work profile. Applies to devices running Android 9.0 Pie and later.",
"blockUnifiedPasswordForWorkProfileName": "One lock for device and work profile",
"blockUnmanagedDocumentsInManagedAppsName": "Block viewing non-corporate documents in corporate apps",
"blockUntrustedTLSCertificatesDescription": "Block untrusted Transport Layer Security (TLS) certificates.",
"blockUntrustedTLSCertificatesName": "Block untrusted TLS certificates",
@@ -3052,12 +3033,12 @@
"complianceUpdatesRequireAutomaticUpdatesDescription": "Force the device to automatically update for security patches and improvements.",
"complianceUpdatesRequireAutomaticUpdatesName": "Require automatic updates from Microsoft",
"complianceWin10RequiredPasswordTypeDescription": "This setting determines the type of Password/PIN required.<br>\nDevice Default (Password, Numeric PIN, or Alphanumeric PIN required)<br>\nAlphanumeric (Password or Alphanumberic PIN required)<br>\nNumeric (Password or Numeric PIN required)<br>\nRecommendations: Required password type: Alphanumeric, Password complexity: Require digits and lowercase letters",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 or 11",
"complianceWindows10DeviceHealthAttestationHeader": "Windows 10 and 11",
"complianceWindows11DeviceHealthAttestationHeader": "Windows 11 only",
"complianceWindowsDefenderHeader": "Defender",
"complianceWindowsDefenderMinimumVersionDescription": "Minimum version of Microsoft Defender (e.g. 4.11.0.0)",
"complianceWindowsDefenderMinimumVersionName": "Microsoft Defender Antimalware minimum version",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service evaluation rules<br><br>Use these rules to confirm that a device has protective measures enabled at boot time. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Learn more about these rules</a>",
"complianceWindowsDeviceHealthAttestationHeader": "Microsoft Attestation Service evaluation settings<br><br>Use these settings to confirm that a device has protective measures enabled at boot time. <a href=\"https://learn.microsoft.com/en-us/mem/intune/protect/compliance-policy-create-windows#device-health\" target=\"_blank\">Learn more</a>",
"complianceWindowsMobileOsVersionRestrictionMaximumDescription": "Select the newest OS version a mobile device can have. The operating system version is defined as major.minor.build.revision.",
"complianceWindowsMobileOsVersionRestrictionMinimumDescription": "Select the oldest OS version a mobile device can have. The operating system version is defined as major.minor.build.revision.",
"complianceWindowsOsVersionRestrictionHeaderDescription": "The operating system version is defined as major.minor.build.revision. ",
@@ -7490,7 +7471,7 @@
"baselineProtectionLevel": "95th percentile protection",
"basicDataProtectionGuidedString": "Basic data protection ensure users are required to utilize PIN or biometrics to access work or school account data, encrypts work or school account data, and enables administrators to perform selective data wipes, if necessary. For Android devices, basic data protection also ensures the compatibility of the device with Google's services and enables Google's Verify Apps scan.",
"basicIntegrity": "Basic integrity",
"basicIntegrityAndCertifiedDevices": "Basic integrity and certified devices",
"basicIntegrityAndDeviceIntegrity": "Basic integrity and device integrity",
"bioPinInactiveTimeout": "Inactivity timeout",
"bioPinInactiveTimeoutTooltip": "Override with PIN instead of biometric after (minutes)",
"block": "Block",
@@ -7505,6 +7486,7 @@
"cCPExceptionLabel": "Cut and copy character limit for any app",
"camera": "Camera",
"checkInCountColumnTitle": "CHECK-IN COUNT",
"checkStrongIntegrity": "Check strong integrity",
"checkedIn": "Checked in",
"checkedInAppNameColumnTitle": "APP",
"checkedInButNotSynced": "Checked in. On next sync, this app will receive {0}",
@@ -7704,7 +7686,6 @@
"guidedTemplate1": "<p><a data-bind=\"fxclick: onClickFindApp\">I can't find the app I need</a></p><p><a data-bind=\"fxclick: onClickLob\">I need to add my own line-of-business app</a></p>",
"guidedTemplate2": "Well ask you which protection level you would like to deploy to your users. For more information, see <a href = \"https://go.microsoft.com/fwlink/?linkid=2131582 \">Data protection framework with app protection policies. </a>",
"guidediOSLabel": "iOS app protection",
"hardwareBackedKey": "Hardware-backed key",
"healthCheck": "Health Checks",
"helpAndSupport": "Help and support",
"hideOverrides": "Hide Overrides",
@@ -7833,6 +7814,8 @@
"platformColumnLabel": "Platform",
"platformDropDownLabel": "Platform",
"platformVersion": "Platform version",
"playIntegrityVerdict": "Play integrity verdict",
"playIntegrityVerdictEvaluationType": "Play Integrity verdict evaluation type",
"pleaseFixErrors": "Please fix the errors in the sections below!",
"pleaseSelectAtLeastOneFileError": "Please select at least one file before continuing",
"policies": "Policies",
@@ -7901,7 +7884,6 @@
"requireDeviceLockComplexityOnApps": "Require device lock",
"requireThreatScanOnApps": "Require threat scan on apps",
"requiredField": "This field can't be empty",
"requiredSafetyNetEvaluationType": "Required SafetyNet evaluation type",
"requiredSettings": "Required settings",
"resetPin": "Reset PIN",
"resourceManagement": "Resource management",
@@ -7910,7 +7892,6 @@
"restrictWebContentNo": "Any app",
"restrictWebContentOption2": "{0}: Allow web links in any app",
"rootCertificate": "Root Certificate",
"safetyNetDeviceAttestation": "SafetyNet device attestation",
"samsungKnoxAttestationRequired": "Samsung Knox device attestation",
"saveAppsNotificationText": "Saving selected apps",
"saveChangesCommandText": "Save",
@@ -8346,7 +8327,7 @@
"administrativeTemplates": "Administrative Templates",
"androidCompliancePolicy": "Android compliance policy",
"aospDeviceOwnerCompliancePolicy": "Android (AOSP) compliance policy",
"applicationControl": "Application Control",
"applicationControl": "App Control for Business",
"attackSurfaceReductionRules": "Attack Surface Reduction Rules",
"bitlocker": "BitLocker",
"custom": "Custom",
@@ -8427,6 +8408,7 @@
"assignmentFilterTypeColumnHeader": "Filter mode",
"assignmentToast": "End user notifications",
"assignmentTypeTableHeader": "ASSIGNMENT TYPE",
"autoUpdate": "Auto update",
"deadlineTimeColumnLabel": "Installation deadline",
"deliveryOptimizationPriorityHeader": "Delivery optimization priority",
"groupTableHeader": "Group",
@@ -8514,6 +8496,10 @@
"showAll": "Show all toast notifications",
"showReboot": "Show toast notifications for computer restarts"
},
"AutoUpdateSupersededApps": {
"enabled": "Enabled",
"notConfigured": "Not configured"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Content download in {0}",
@@ -8931,7 +8917,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allRiskLevelsOption": "All risk levels",
"allTrustedLocationLabel": "All trusted locations",
@@ -9161,8 +9147,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -9192,10 +9178,10 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -9217,7 +9203,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -9271,7 +9257,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -9292,7 +9278,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra ID security reports to reduce false positives and Microsoft Entra Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/namedlocationupdate",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country/region",
"namedNetworkDeleteCommand": "Delete",
@@ -9340,7 +9326,7 @@
"namedNetworksAdd": "New named location",
"namedNetworksConditionHelpDescription": "Control user access based on their physical location.\n[Learn more][1]\n[1]: http://aka.ms/ux_ca_locationcondition",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksHelpDescription": "Named locations are used by Microsoft Entra ID security reports to reduce false positives and Microsoft Entra Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -9362,7 +9348,7 @@
"onlyGlobalAdminsCanSaveThisPolicyConfig": "Only global administrators can save this policy.",
"or": "{0} OR {1} ",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like Cloud apps, Sign-in risk, and Device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked sign-on attribute.",
@@ -9379,7 +9365,7 @@
"policyConditionLocationDescription": "Location (determined using IP address range) the user is signing in from",
"policyConditionLocationPreview": "Locations (Preview)",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -9392,7 +9378,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -9442,7 +9428,7 @@
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra ID Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -9526,7 +9512,7 @@
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataDescription": "Require device to be marked as compliant or Microsoft Entra hybrid joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
@@ -9585,7 +9571,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -9797,7 +9783,7 @@
"addNewAuthContext": "New authentication context",
"authContextForWorkloadIdentitiesPrivatePreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in private preview.",
"authContextForWorkloadIdentitiesPublicPreviewMessage": "Applying 'Authentication context' to 'Workload identities' is in public preview.",
"bannerText": "Create your own authentication context values and Conditional Access policies with Azure AD Premium",
"bannerText": "Create your own authentication context values and Conditional Access policies with Microsoft Entra ID Premium",
"checkBoxInfo": "Select the authentication contexts this policy will apply to",
"configure": "Configure authentication contexts",
"createCA": "Assign Conditional Access policies to the authentication context",
@@ -9807,7 +9793,7 @@
"documentation": "Documentation",
"getStarted": "Get started",
"label": "Authentication context",
"menuLabel": "Authentication context",
"menuLabel": "Authentication contexts",
"name": "Name",
"noAuthContextConfigured": "No authentication contexts have been configured.",
"noAuthContextSet": "There are no authentication contexts",
@@ -9863,7 +9849,7 @@
"failed": "With \"Selected locations\" you must choose at least one location.",
"selector": "Choose at least one location"
},
"privateLinksInfo": "Private Link for Azure AD 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": {
"ControlsList": {
@@ -9941,7 +9927,7 @@
"DeviceState": {
"LearnMore": {
"ariaLabel": "Learn more about device state (deprecated) in Conditional Access conditions.",
"message": "Control user access when the device the user is signing-in from is not \"Hybrid Azure AD joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
"message": "Control user access when the device the user is signing-in from is not \"Microsoft Entra hybrid joined\" or \"marked as compliant\".\n This has been deprecated. Use '{1}' instead."
}
},
"Errors": {
@@ -9949,13 +9935,15 @@
"notFoundDetailed": "The policy \"{0}\" no longer exists. It may have been deleted."
},
"GuestsOrExternalUsers": {
"allExternalTenantsAriaLabel": "All external Microsoft Entra organizations",
"allExternalTenantsLabel": "All",
"b2bCollaborationGuestLabel": "B2B collaboration guest users",
"b2bCollaborationMemberLabel": "B2B collaboration member users",
"b2bDirectConnectUserLabel": "B2B direct connect users",
"enumeratedExternalTenantsAriaLabel": "Select external Microsoft Entra organizations",
"enumeratedExternalTenantsError": "Please select at least one external tenant",
"enumeratedExternalTenantsLabel": "Select",
"externalTenantsLabel": "Specify external Azure AD organizations",
"externalTenantsLabel": "Specify external Microsoft Entra organizations",
"externalUserDropdownLabel": "Choose guest or external user types",
"externalUsersError": "Select at least one external guest or user type",
"externalUsersIncompatibleWithInsiderRiskError": "Insider risk condition is not valid for B2B direct connect users, service provider users and other external users.",
@@ -10000,6 +9988,9 @@
"enter": "Enter a new IPv4 or IPv6 range",
"example": "ex: 40.77.182.32/27 or 2a01:111::/32"
},
"Grid": {
"aria": "List of countries"
},
"IpRanges": {
"addIpRangeButtonAriaLabel": "Add IP range",
"deleteButtonAriaLabel": "Delete {0} IP range.",
@@ -10064,7 +10055,7 @@
}
},
"PrivateLink": {
"headerDescription": "Create a new named location containing Private Links for Azure AD.",
"headerDescription": "Create a new named location containing Private Links for Microsoft Entra ID.",
"headerLearnMoreAriaLabel": "Learn more about Private Link named locations."
},
"PrivateLinks": {
@@ -10087,7 +10078,7 @@
"iPRangeOctetError": "IP network must not start with 0 or 255.",
"iPRangePrefixError": "IP network prefix must be from /{0} to /{1}.",
"iPRangePrivateError": "IP network detected as a private address.",
"iPv6Announcement": "Azure Active Directory now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"iPv6Announcement": "Microsoft Entra ID now supports IPv6! Update your IP ranges locations today with IPv6 ranges. ",
"reactNamedLocationsAnnouncement": "Try out the new named locations list experience improvements. Click here or use Preview features to enable the enhanced named locations list experience and refresh the tab. \n"
},
"NamedNetwork": {
@@ -10142,6 +10133,9 @@
"countTextSingular": "{0} out of 1 policy found",
"search": "Search policies"
},
"PoliciesList": {
"reactPoliciesAnnouncement": "Try out the new policies list experience improvements. Click here or use Preview features to enable the enhanced policies list experience and refresh the tab."
},
"Policy": {
"Condition": {
"ServicePrincipalRisk": {
@@ -10159,6 +10153,15 @@
}
},
"Conditions": {
"AuthenticationFlows": {
"Selector": {
"authenticationTransfer": "Authentication transfer",
"deviceCodeFlow": "Device code flow",
"infoBalloon": "How your organization uses certain authentication and authorization protocols and grants",
"label": "Authentication flows",
"multiple": "\"{0}\" and \"{1}\""
}
},
"DeviceAttributes": {
"AssignmentFilter": {
"Rules": {
@@ -10222,9 +10225,9 @@
},
"Metadata": {
"TrustType": {
"adRegistered": "Azure AD registered",
"azureAd": "Azure AD joined",
"hybridAd": "Hybrid Azure AD joined"
"adRegistered": "Microsoft Entra registered",
"azureAd": "Microsoft Entra joined",
"hybridAd": "Microsoft Entra hybrid joined"
}
},
"Parser": {
@@ -10311,18 +10314,19 @@
"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."
},
"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"
},
"Selector": {
"LearnMore": {
"label": "Adaptive Protection risk level that's assigned to the user. Risk levels define how riskly a user's activity is and can be based on criteria like how many potential data theft activities they performed."
"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."
}
},
"descriptor": "Insider activity risk",
"descriptor": "Adaptive Protection risk level a Microsoft Purview Insider Risk Management feature.",
"label": "Insider risk (Preview)"
},
"SignInRisk": {
"descriptor": "Risk of sign-in compromise"
"descriptor": "Sign-in risk level is the likelihood that the sign-in session is compromised."
},
"SignInRiskDetections": {
"ApplyCondition": {
@@ -10339,7 +10343,7 @@
"title": "Sign-in risk detections"
},
"UserRisk": {
"descriptor": "Risk of user compromise"
"descriptor": "User risk level is the likelihood that the user account is compromised."
}
},
"PolicyControlAuthStrength": {
@@ -10389,8 +10393,8 @@
"enable": "Enable preview"
},
"StrictLocationEnforcement": {
"infoContent1": "Different IPs can be seen by Azure AD and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Azure AD and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Azure AD and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"infoContent1": "Different IPs can be seen by Microsoft Entra ID and Resource Provider from the same client device due to network partition or IPv4/IPv6 mismatch. Strict Location Enforcement will enforce the Conditional Access policy based on both IP addresses seen by Microsoft Entra ID and Resource Provider.",
"infoContent2": "To ensure maximum security, it is recommended to include all IPs that can be seen by both Microsoft Entra ID and Resource Provider in your Named Location policy and turn on \"Strict Location Enforcement\" mode.",
"label": "Strict Location Enforcement",
"title": "Additional enforcement modes"
},
@@ -10399,7 +10403,7 @@
"migrateLabel": "Migrate",
"migrationError": "Migration failed due to the following error: {0}",
"migrationInfo": "CAE setting has been moved under Conditional Access UX, please migrate with the \"Migrate\" button above and configure it with Conditional Access policy going forward. Click here to learn more.",
"noLicenseMessage": "Manage smart session management settings with Azure AD Premium",
"noLicenseMessage": "Manage smart session management settings with Microsoft Entra ID Premium",
"optionsPickerTitle": "Enable/Disable Continuous access evaluation",
"upsellInfo": "You cannot change your settings on this page anymore and any settings here should be disregarded. Your previous setting will be honored. You can configure your CAE settings under Conditional Access going forward. Click here to learn more."
},
@@ -10419,10 +10423,10 @@
},
"addTenantLabel": "Add tenant to selected",
"customOrganizationDescription": "Add an organization with this tenant ID",
"description": "Add an Azure AD organization by typing one of its domain names.",
"description": "Add a Microsoft Entra organization by typing one of its domain names.",
"notFoundResult": "Not found",
"searchBoxPlaceholder": "Tenant ID or domain name",
"subTitle": "Azure AD organization",
"subTitle": "Microsoft Entra organization",
"tenantAdded": "This tenant ID has already been added.",
"tenantIdNotFound": "Tenant ID not found"
},
@@ -10431,8 +10435,8 @@
"aria": "Organization ID: {0}"
},
"DisplayText": {
"multiple": "{0} Azure AD organizations selected",
"single": "1 Azure AD organization selected"
"multiple": "{0} Microsoft Entra organizations selected",
"single": "1 Microsoft Entra organization selected"
},
"gridAria": "List of selected organizations"
}
@@ -10472,8 +10476,8 @@
},
"ResiliencyDefaults": {
"checkboxLabel": "Disable resilience defaults",
"infoBallonText": "During an outage, Azure AD will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Azure AD, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
"infoBallonText": "During an outage, Microsoft Entra ID will extend access to existing sessions while enforcing Conditional Access policies. If a policy cannot be evaluated, access is determined by resilience settings. If resilience defaults are disabled, access is denied once existing sessions expire.",
"infoBoxLabel": "To improve the resilience of Microsoft Entra ID, we are announcing Conditional Access resilience defaults. Learn more about managing this new setting for your policies."
},
"SecureApp": {
"checkboxLabel": "Require token protection for app sessions (Preview)"
@@ -10481,7 +10485,7 @@
"SecureSignIn": {
"checkboxLabel": "Require token protection for sign-in sessions (Preview)",
"error": "Policies enforcing Token Protection for Sign In Sessions must be scoped to supported platforms. {0}Learn more about token protection.{1}",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Azure AD session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"infoBallonText": "A secure sign-in session requires all long-lived tokens (the Microsoft Entra session cookie and refresh token) to be bound to the device using software key binding or hardware security module binding where available.",
"warningInfoBoxText": "The control \"Require token protection for sign-in sessions\" only works with supported devices and applications (Exchange Online and SharePoint). Unsupported devices and client applications will be blocked."
},
"SignInFrequency": {
@@ -10648,11 +10652,11 @@
"WarningsInfo": {
"Controls": {
"AuthStrengthXtap": {
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Azure AD tenants for external users."
"allUsers": "To enable all authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users. Authentication strengths will only configure second factor authentication for external users.",
"externalUsers": "To enable all built-in authentication strengths, configure cross-tenant access settings to accept claims coming from Microsoft Entra tenants for external users."
},
"compliantDeviceEnabled": "Don't lock yourself out! Make sure that your device is compliant.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Hybrid Azure AD Joined.",
"domainJoinedDeviceEnabled": "Don't lock yourself out! Make sure that your device is Microsoft Entra hybrid joined.",
"notAvailableForSP": "Some controls are not available due to '{0}' selection in policy assignment",
"requireApprovedClientAppEnabled": "You should no longer use \"Require approved client app\", as we will soon stop updating it.",
"requireAuthOrMfa": "\"{0}\" cannot be used with \"{1}\".",
@@ -10710,7 +10714,7 @@
},
"DeviceState": {
"compliant": "Device marked as compliant",
"hybrid": "Device Hybrid AD Joined",
"hybrid": "Device Microsoft Entra hybrid joined",
"selectDeviceState": "Select device state..."
},
"Filters": {
@@ -10740,7 +10744,7 @@
"allCloudOrSpecificApps": "The \"sign-in frequency every time\" session control requires \"all cloud apps\" or specifically-supported apps to be selected",
"allDayCheckboxLabel": "All day",
"allDevicePlatforms": "Any device",
"allGuestUserInfoContent": "Includes Azure AD B2B guests, but not SharePoint B2B guests",
"allGuestUserInfoContent": "Includes Microsoft Entra B2B guests, but not SharePoint B2B guests",
"allGuestUserLabel": "All guest and external users",
"allNetworkAccessLocationsLabel": "All Compliant Network locations (Preview)",
"allRiskLevelsOption": "All risk levels",
@@ -10984,8 +10988,8 @@
"controlsBlockAccessInfoBubble": "ControlsBlockAccessInfoBubble",
"controlsDeviceComplianceAriaLabel": "Learn more about requiring compliant devices.",
"controlsDeviceComplianceInfoBubble": "Device must be Intune compliant. If the device is non-compliant, the user will be prompted to bring the device under compliance.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring hybrid Azure AD joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Hybrid Azure AD joined.",
"controlsDomainJoinedAriaLabel": "Learn more about requiring Microsoft Entra hybrid joined devices.",
"controlsDomainJoinedInfoBubble": "Devices must be Microsoft Entra hybrid joined.",
"controlsMamAriaLabel": "Learn more about requiring approved client applications.",
"controlsMamInfoBubble": "Device must use these approved client applications.",
"controlsMfaInfoBubble": "User must complete additional security requirements like phone call, text",
@@ -11021,11 +11025,11 @@
"deviceStateCompliant": "Device marked as compliant",
"deviceStateCompliantInfoContent": "Devices that are Intune compliant will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Intune compliant.",
"deviceStateConditionConfigureInfoContent": "Configure policy based on device state",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Hybrid Azure AD joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorInfoContent": "Whether the device the user is signing in from is 'Microsoft Entra hybrid joined' or 'marked as compliant'.\n This has been deprecated. Use '{1}' instead.",
"deviceStateConditionSelectorLabel": "Device state (deprecated)",
"deviceStateDeprecatedTextMessage": "'{0}' has been deprecated. Use '{1}' instead.",
"deviceStateDomainJoined": "Device Hybrid Azure AD joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Hybrid Azure AD joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Hybrid Azure AD joined.",
"deviceStateDomainJoined": "Device Microsoft Entra hybrid joined",
"deviceStateDomainJoinedInfoContent": "Devices that are Microsoft Entra hybrid joined will be excluded from the evaluation of this policy, so for example if the policy blocks access it will block all devices except devices that are Microsoft Entra hybrid joined.",
"deviceStateDomainJoinedInfoLinkText": "Learn more.",
"deviceStateExcludeDescription": "Select the device state condition used to exclude devices from policy.",
"deviceStateIncludeAndExcludeOneLabel": "{0} and exclude {1}",
@@ -11048,7 +11052,7 @@
"exchangeActiveSyncSelectedLabel": "Exchange ActiveSync",
"exchangeActiveSyncSupportedPlatformOnlySelectedLabel": "Exchange ActiveSync with supported platforms only",
"excludeAllTrustedLocationSelectorText": "all trusted locations",
"featureRequiresP2": "This feature requires Azure AD Premium 2 license.",
"featureRequiresP2": "This feature requires Microsoft Entra ID P2 license.",
"friday": "Friday",
"grantControls": "Grant controls",
"gridNetworkTrusted": "Trusted",
@@ -11102,7 +11106,7 @@
"locationsSelectedPrivateLinksLabel": "Selected Private Links",
"lowRisk": "Low",
"macOsDisplayName": "macOS",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Azure AD Premium P1 or P2.",
"managePoliciesLicenseText": "To manage Conditional Access policies, your organization needs Microsoft Entra ID P1 or P2.",
"manageSecurityDefaultsAriaLabel": "Manage security defaults settings.",
"markAsTrustedCheckboxInfoBalloonContent": "Signing in from a trusted location lowers a user's sign-in risk. Only mark this location as trusted if you know the IP ranges entered are established and credible in your organization.",
"markAsTrustedCheckboxLabel": "Mark as trusted location",
@@ -11118,7 +11122,6 @@
"menuItemTermsOfUse": "Terms of use",
"microsoftAdminPortals": "Microsoft Admin Portals",
"microsoftAdminPortalsInfoBox": "The admin portals include Microsoft 365 admin center, Exchange admin center, Azure portal, Microsoft Entra admin center, and others.",
"microsoftAdminPortalsPreview": "Microsoft Admin Portals (Preview)",
"minorRisk": "Minor",
"moderateRisk": "Moderate",
"modifiedTimeLabel": "Modified time",
@@ -11128,7 +11131,7 @@
"namedLocationTypeCountry": "Countries/Regions",
"namedLocationTypeLabel": "Define the location using:",
"namedLocationUpsellBanner": "This view has been deprecated. Go to the new and improved 'Named locations' view.",
"namedLocationsHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.",
"namedLocationsHelpDescription": "Named locations are used by Microsoft Entra security reports to reduce false positives and Microsoft Entra Conditional Access policies.",
"namedLocationsLearnMoreAriaLabel": "Learn more about named locations.",
"namedNetworkAddIpRanges": "Add a new IP range (ex: 40.77.182.32/27)",
"namedNetworkCountryNeeded": "You need to select at least one country",
@@ -11176,7 +11179,6 @@
"namedNetworkUploadSuccessTitle": "Finished parsing '{0}'",
"namedNetworksAdd": "New named location",
"namedNetworksExcludeLabel": "{0} and {1} excluded",
"namedNetworksHelpDescription": "Named locations are used by Azure AD security reports to reduce false positives and Azure AD Conditional Access policies.\n[Learn more][1]\n[1]: https://aka.ms/ux_ca_namedlocations",
"namedNetworksIncludeLabel": "{0} included",
"namedNetworksNone": "No named locations found.",
"namedNetworksTitle": "Configure locations",
@@ -11201,7 +11203,7 @@
"or": "{0} OR {1} ",
"passwordChangeRequireEmptyExclude": "Cannot exclude apps when \"Require password change\" grant is selected.",
"pickerDoneCommand": "Done",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Azure AD Premium",
"policiesBladeAdPremiumUpsellBannerText": "Create your own policies and target specific conditions like cloud apps, sign-in risk, and device platforms with Microsoft Entra ID Premium",
"policiesBladeTitle": "Policies",
"policiesBladeTitleWithAppName": "Policies: {0}",
"policiesDisabledBannerText": "Creating and editing policies is prohibited for applications with a linked single-sign-on attribute.",
@@ -11221,7 +11223,7 @@
"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.",
"policyConditionSigninRisk": "Sign-in risk",
"policyConditionSigninRiskDescription": "Likelihood that the sign-in is coming from someone other than the user. Risk level can be high, medium or low. Requires Azure AD Premium 2 license.",
"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.",
"policyConditionUserRisk": "User risk",
"policyConditionUserRiskDescription": "Configure user risk levels needed for policy to be enforced",
"policyConditioniClientApp": "Client apps",
@@ -11235,7 +11237,7 @@
"policyControlInfoBallonText": "Block access or select additional requirements which need to be satisfied to allow access",
"policyControlMfaChallengeDisplayedName": "Require multifactor authentication",
"policyControlRequireCompliantAppDisplayedName": "Require app protection policy",
"policyControlRequireDomainJoinedDisplayedName": "Require Hybrid Azure AD joined device",
"policyControlRequireDomainJoinedDisplayedName": "Require Microsoft Entra hybrid joined device",
"policyControlRequireMamDisplayedName": "Require approved client app",
"policyControlRequiredPasswordChangeDisplayedName": "Require password change",
"policyControlSelectAuthStrength": "Require authentication strength",
@@ -11246,7 +11248,7 @@
"policyCreateFailedMessage": "Error: {0}",
"policyCreateFailedTitle": "Failed to create '{0}'",
"policyCreateInProgressTitle": "Creating '{0}'",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyCreateSuccessMessage": "Successfully created '{0}'. Policy will be enabled in a few minutes.",
"policyCreateSuccessTitle": "Successfully created '{0}'",
"policyDeleteConfirmation": "Are you sure you want to delete '{0}'? This action cannot be undone.",
"policyDeleteFailTitle": "Failed to delete '{0}'",
@@ -11285,10 +11287,10 @@
"policyUpdateFailedMessage": "Error: {0}",
"policyUpdateFailedTitle": "Failed to update {0}",
"policyUpdateInProgressTitle": "Updating {0}",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes if you have \"Enable policy\" set to \"On\".",
"policyUpdateSuccessMessage": "Successfully updated {0}. Policy will be enabled in a few minutes.",
"policyUpdateSuccessTitle": "Successfully updated {0}",
"primaryCol": "Primary",
"privateLinkLabel": "Azure AD Private Link",
"privateLinkLabel": "Microsoft Entra Private Link",
"reportOnlyInfoBox": "Report-only mode: Policies are evaluated and logged at sign-in but do not impact users.",
"requireAllControlsText": "Require all the selected controls",
"requireCompliantDevice": "Require compliant device",
@@ -11371,16 +11373,6 @@
"trustedLocationStatusIconEnabled": "Trusted status icon",
"tuesday": "Tuesday",
"uploadInBadState": "Unable to upload the specified file.",
"upsellAppsDescription": "Require multifactor authentication for sensitive applications all the time or only from outside the company network.",
"upsellAppsTitle": "Secure applications",
"upsellBannerText": "Get a free Premium trial to use this feature",
"upsellDataDescription": "Require device to be marked as compliant or Hybrid Azure AD joined to allow access to company resources.",
"upsellDataTitle": "Secure data",
"upsellDescription": "Conditional Access provides the control and protection you need to keep your corporate data secure, while giving your people an experience that allows them to do their best work from any device. For instance, you can restrict access from outside the company network or restrict access to devices which meet the compliance policies.",
"upsellRiskDescription": "Require multifactor authentication for risk events detected by Microsoft's machine learning system.",
"upsellRiskTitle": "Protect against risk",
"upsellTitle": "Conditional Access",
"upsellWhyTitle": "Why use Conditional Access?",
"userAppNoneOption": "None",
"userNamePlaceholderText": "Enter User Name",
"userNotSetSeletorLabel": "0 users and groups selected",
@@ -11433,7 +11425,7 @@
"vpnCertUpdateSuccessMessage": "Successfully updated {0}.",
"vpnCertUpdateSuccessTitle": "Successfully updated {0}",
"vpnFeatureInfo": "For more information on VPN connectivity and Conditional Access, click here.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Azure AD will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnFeatureWarning": "Once a VPN certificate is created in the Azure portal, Microsoft Entra ID will start using it immediately to issue short lived certificates to the VPN client. It is critical that the VPN certificate be deployed immediately to the VPN server to avoid any issues with credential validation of the VPN client.",
"vpnMenuText": "VPN connectivity",
"vpncertDropdownDefaultOption": "Duration",
"vpncertDropdownInfoBalloonContent": "Select the duration for the cert you want to create",
@@ -11464,6 +11456,8 @@
"whatIfEvaResultPolicyNotEnabled": "Policy not enabled",
"whatIfEvaResultSignInRisk": "Sign-in risk",
"whatIfEvaResultUsers": "Users and groups",
"whatIfInsiderRisk": "Insider risk (Preview)",
"whatIfInsiderRiskInfo": "Adaptive Protection risk level that's assigned to the user. (Preview)",
"whatIfIpAddress": "IP address",
"whatIfIpAddressInfo": "IP address the user is signing in from.",
"whatIfIpCountryInfoBoxText": "If using an IP address or Country, both fields will be required and should correctly map together.",
@@ -11472,9 +11466,11 @@
"whatIfPolicyDoesNotApplyTab": "Policies that will not apply",
"whatIfPolicyDoesNotApplyTabWithCount": "Inapplicable policies ({0})",
"whatIfReasons": "Reasons why this policy will not apply",
"whatIfSelectAuthenticationFlow": "Select authentication flow...",
"whatIfSelectClientApp": "Select a client app...",
"whatIfSelectCountry": "Select country...",
"whatIfSelectDevicePlatform": "Select device platform...",
"whatIfSelectInsiderRisk": "Select Insider risk...",
"whatIfSelectPrivateLink": "Select private link...",
"whatIfSelectServicePrincipalRisk": "Select service principal risk...",
"whatIfSelectSignInRisk": "Select sign-in risk...",
@@ -11774,6 +11770,104 @@
"customIntuneRole": "Custom Intune role",
"customRole": "Custom Role"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"header": "Are you sure you want to delete this restriction?"
},
"DeviceLimit": {
"description": "Specify the maximum number of devices a user can enroll.",
"header": "Device limit restrictions",
"info": "Define how many devices each user can enroll."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Must be 1.0 or greater.",
"android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
"iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
"mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
"min": "Minimum cannot be lower than {0}",
"minMax": "Minimum version cannot be greater than maximum version.",
"windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
"windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
},
"allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
"blockManufacturerPlaceHolder": "Manufacturer name",
"blockManufacturersHeader": "Blocked manufacturers",
"cannotRestrict": "Restriction not supported",
"configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
"configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
"configurations": "Configure platforms",
"deviceManufacturer": "Device manufacturer",
"header": "Device type restrictions",
"info": "Define which platforms, versions, and management types can enroll.",
"manufacturer": "Manufacturer",
"max": "Max",
"maxVersion": "Maximum version",
"min": "Min",
"minVersion": "Minimum version",
"newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
"personal": "Personally owned",
"platform": "Platform",
"platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
"platformSettings": "Platform settings",
"platforms": "Select platforms",
"platformsSelected": "{0} platforms selected",
"type": "Type",
"versions": "versions",
"versionsRange": "Allow min/max range:",
"windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
},
"Priority": {
"saved": "Restriction Priorities were successfully saved."
},
"Row": {
"announce": "Priority: {0}, Name: {1}, Assigned: {2}"
},
"Table": {
"deployed": "Deployed",
"name": "Name",
"priority": "Priority"
},
"Type": {
"limit": "Device limit restriction",
"type": "Device type restriction"
},
"allUsers": "All Users",
"androidRestrictions": "Android restrictions",
"create": "Create restriction",
"defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
"defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
"defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
"deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
"deleteTitle": "Are you sure you want to delete {0} restriction?",
"descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
"edit": "Edit restriction",
"info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
"iosRestrictions": "iOS restrictions",
"mDM": "MDM",
"macRestrictions": "macOS restrictions",
"maxVersion": "Max Version",
"minVersion": "Min Version",
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
"notFound": "Restriction not found. It may have already been deleted.",
"personallyOwned": "Personally owned devices",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction type",
"selectType": "Select restriction type",
"selectValidation": "Please select a platform",
"typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
"typeRequired": "Restriction type is required.",
"winPhoneRestrictions": "Windows Phone restrictions",
"windowsECv1Info": "Older enrollment restrictions cant be edited or reprioritized, only deleted.",
"windowsECv2Info": "You can prioritize enrollment restrictions by dragging and dropping them. View default and preconfigured restrictions below. All new enrollment restrictions will have a higher priority than default and preconfigured restrictions.",
"windowsRestrictions": "Windows restrictions",
"windowsRestrictionsPreview": "Filter-based Windows restrictions (preview)"
},
"InstallContextType": {
"device": "Device",
"deviceContext": "Device context",
@@ -12271,101 +12365,58 @@
"ruleSyntax": "Rule syntax",
"filters": "Filters"
},
"EnrollmentRestrictions": {
"DeletePayloadLink": {
"content": "{0} is included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"contentWithError": "{0} might be included in one or more policy sets. If you delete {0}, you'll no longer be able to assign it via these policy sets. Delete anyway?",
"header": "Are you sure you want to delete this restriction?"
"OutlookAppConfigSettings": {
"AllowUserToChangeSetting": {
"title": "Allow user to change setting",
"tooltip": "Specify if the user is allowed to change the setting."
},
"AllowWorkAccounts": {
"title": "Allow only work or school accounts",
"tooltip": " By enabling this setting, users will be unable to add personal email and storage accounts within Outlook. If the user has a personal account added to Outlook, the user is prompted to remove the personal account. If the user does not remove the personal account, the work or school account cannot be added."
},
"BlockExternalImages": {
"title": "Block external images",
"tooltip": "When block external images is enabled, the app will prevent the download of images hosted on the Internet that are embedded in the message body. When set as not configured, the default app setting is set to Off"
},
"ConfigureEmail": {
"title": "Configure email account settings"
},
"DefaultAppSignatureSetting": {
"Tooltip": {
"android": "Default app signature indicates whether the app will use “Get Outlook for Android” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On.",
"iOS": "Default app signature indicates whether the app will use “Get Outlook for iOS” as the default signature during message composition. If the setting is configured as Off, the default signature will not be used; however, users can add their own signature.\n\nWhen set as Not Configured, the default app setting is set to On."
},
"title": "Default app signature"
},
"OfficeFeedReplies": {
"title": "Discover Feed",
"tooltip": "Discover Feed surfaces your most frequently accessed Office files. By default, this feed is enabled when Delve is enabled for the user. When set as not configured, the default app setting is set to On."
},
"OrganizeMailByThread": {
"title": "Organize mail by thread",
"tooltip": "The default behavior in Outlook is to bundle mail conversations into a threaded conversation view. If this setting is disabled Outlook will display each mail individually and will not group them by thread."
},
"PlayMyEmails": {
"title": "Play My Emails",
"tooltip": "The Play My Emails feature is not enabled by default in the app, but it is promoted to eligible users via a banner in the inbox. When set to Off, this feature will not be promoted to eligible users in the app. Users can choose to manually enable Play My Emails from within the app, even when this feature is set to Off. When set as Not configured, the default app setting is On and the feature will be promoted to eligible users."
},
"SuggestedReplies": {
"title": "Suggested replies",
"tooltip": "When you open a message, Outlook might suggest replies below the message. If you select a suggested reply, you can edit the reply before sending it."
},
"SyncCalendars": {
"title": "Sync Calendars",
"tooltip": "Configure whether users can sync their Outlook calendar to the native calendar app and database."
},
"TextPredictions": {
"title": "Text Predictions",
"tooltip": "Outlook can suggest words and phrases as you compose messages. When Outlook offers a suggestion, swipe to accept it. When set as not configured, the default app setting is set to On."
},
"DeviceLimit": {
"description": "Specify the maximum number of devices a user can enroll.",
"header": "Device limit restrictions",
"info": "Define how many devices each user can enroll."
},
"DeviceType": {
"VersionValidation": {
"aOSP": "Must be 1.0 or greater.",
"android": "Enter a valid version number. Examples: 5.0, 5.5.1, 6.0.0.1",
"androidForWork": "Enter a valid version number. Examples: 5.0, 5.1.1",
"iOS": "Enter a valid version number. Examples: 9.0, 10.0, 9.0.2",
"mac": "Enter a valid version number. Examples: 10, 10.10, 10.10.1",
"min": "Minimum cannot be lower than {0}",
"minMax": "Minimum version cannot be greater than maximum version.",
"windows": "Must be 10.0 or greater. Leave blank to allow 8.1 devices",
"windowsMobile": "Must be 10.0 or greater. Leave blank to allow 8.1 devices"
},
"allPlatformsBlocked": "All device platforms are blocked. Allow platform enrollment to enable platform configuration.",
"blockManufacturerPlaceHolder": "Manufacturer name",
"blockManufacturersHeader": "Blocked manufacturers",
"cannotRestrict": "Restriction not supported",
"configurationDescription": "Specify the platform configuration restrictions that must be met for a device to enroll. Use compliance policies to restrict devices after enrollment. Define versions as major.minor.build. Version restrictions only apply to devices enrolled with the Company Portal. Intune classifies devices as personally-owned by default. Additional action is required to classify devices as corporate-owned.",
"configurationDescriptionLabel": "Learn more about setting enrollment restrictions",
"configurations": "Configure platforms",
"deviceManufacturer": "Device manufacturer",
"header": "Device type restrictions",
"info": "Define which platforms, versions, and management types can enroll.",
"manufacturer": "Manufacturer",
"max": "Max",
"maxVersion": "Maximum version",
"min": "Min",
"minVersion": "Minimum version",
"newPlatforms": "You have allowed new platforms. Consider updating Platform Configurations.",
"personal": "Personally owned",
"platform": "Platform",
"platformDescription": "You can allow enrollment of the following platforms. Only block platforms you will not support. Allowed platforms can be configured with additional enrollment restrictions.",
"platformSettings": "Platform settings",
"platforms": "Select platforms",
"platformsSelected": "{0} platforms selected",
"type": "Type",
"versions": "versions",
"versionsRange": "Allow min/max range:",
"windowsTooltip": "Restricts enrollment through Mobile Device Management. Does not restrict PC agent installation. Only Windows 10 and Windows 11 versions are supported. Leave versions blank to allow Windows 8.1."
},
"Priority": {
"saved": "Restriction Priorities were successfully saved."
},
"Row": {
"announce": "Priority: {0}, Name: {1}, Assigned: {2}"
},
"Table": {
"deployed": "Deployed",
"name": "Name",
"priority": "Priority"
},
"Type": {
"limit": "Device limit restriction",
"type": "Device type restriction"
},
"allUsers": "All Users",
"androidRestrictions": "Android restrictions",
"create": "Create restriction",
"defaultLimitDescription": "This is the default Device Limit Restriction applied with lowest priority to all users regardless of group membership.",
"defaultTypeDescription": "This is the default Device Type Restriction applied with lowest priority to all users regardless of group membership.",
"defaultWhfbDescription": "This is the default Windows Hello for Business configuration applied with the lowest priority to all users regardless of group membership.",
"deleteMessage": "Affected users will be restricted by the next highest priority restriction assigned or the default restriction if no other restriction is assigned.",
"deleteTitle": "Are you sure you want to delete {0} restriction?",
"descriptionHint": "Short paragraph describing the business use or restriction level characterized by the restriction's settings.",
"edit": "Edit restriction",
"info": "A device must comply with the highest priority enrollment restrictions assigned to its user. You can drag a device restriction to change its priority. Default restrictions are lowest priority for all users and govern userless enrollments. Default restrictions may be edited, but not deleted.",
"iosRestrictions": "iOS restrictions",
"mDM": "MDM",
"macRestrictions": "MacOS restrictions",
"maxVersion": "Max Version",
"minVersion": "Min Version",
"nameHint": "This will be the primary attribute visible for identifying the restriction set.",
"noAssignmentsStatusBar": "Assign restriction to at least one group. Click Properties.",
"notFound": "Restriction not found. It may have already been deleted.",
"personallyOwned": "Personally owned devices",
"restriction": "Restriction",
"restrictionLowerCase": "restriction",
"restrictionType": "Restriction type",
"selectType": "Select restriction type",
"selectValidation": "Please select a platform",
"typeHint": "Choose Device Type Restriction to restrict device properties. Choose Device Limit Restriction to restrict number of devices per-user.",
"typeRequired": "Restriction type is required.",
"winPhoneRestrictions": "Windows Phone restrictions",
"windowsRestrictions": "Windows restrictions"
},
"ThemesEnabled": {
"title": "Themes enabled",
"tooltip": "Specify if the user is allowed to use a custom visual theme."
}
},
"Titles": {
"ChromeOs": {
"devices": "Chrome OS devices (preview)"
@@ -12392,7 +12443,7 @@
"advancedThreatProtection": "Microsoft Defender for Endpoint",
"allApps": "All apps",
"allDevices": "All devices",
"androidFotaDeployments": "Android FOTA deployments (preview)",
"androidFotaDeployments": "Android FOTA deployments",
"appBundles": "App Bundles",
"appCategories": "App categories",
"appConfigPolicies": "App configuration policies",
@@ -12453,7 +12504,7 @@
"featureFlighting": "Feature flighting",
"featureUpdateDeployments": "Feature updates for Windows 10 and later",
"flighting": "Flighting",
"fotaUpdate": "Firmware over-the-air update (preview)",
"fotaUpdate": "Firmware over-the-air update",
"groupPolicy": "Administrative Templates",
"groupPolicyAnalytics": "Group policy analytics",
"helpSupport": "Help and support",
@@ -12507,6 +12558,7 @@
"user": "User",
"userExecutionStatus": "User status",
"wdacSupplementalPolicies": "S mode supplemental policies",
"win32CatalogUpdateApp": "Updates for Windows (Win32) catalog apps",
"windows10DriverUpdate": "Driver updates for Windows 10 and later",
"windows10QualityUpdate": "Quality updates for Windows 10 and later",
"windows10UpdateRings": "Update rings for Windows 10 and later",
@@ -12551,6 +12603,10 @@
"postponed": "Postponed",
"priority": "High Priority"
},
"AutoUpdateSupersededApps": {
"label": "Auto update",
"sublabel": "Automatically upgrade any superseded versions of this application"
},
"DeliveryOptimizationPriority": {
"backgroundNormal": "Background",
"displayText": "Content download in {0}",

View File

@@ -10,7 +10,7 @@ This module will also document some objects based on PowerShell functions
function Get-ModuleVersion
{
'1.6.1'
'1.6.2'
}
function Invoke-InitializeModule
@@ -2744,6 +2744,28 @@ function Invoke-CDDocumentConditionalAccess
EntityKey = "excludeDevices"
})
}
if($obj.conditions.devices.deviceFilter)
{
if($obj.conditions.devices.deviceFilter.mode -eq "include")
{
$filterMode = "included"
}
else
{
$filterMode = "included"
}
#AzureCA.PolicyBlade.Conditions.DeviceAttributes.AssignmentFilter.Blade
#AzureCA.PolicyBlade.Conditions.DeviceAttributes.Blade.title
Add-CustomSettingObject ([PSCustomObject]@{
Name = Get-LanguageString "AzureCA.PolicyBlade.Conditions.DeviceAttributes.Blade.AppliesTo.$filterMode"
Value = $obj.conditions.devices.deviceFilter.rule
Category = $category
SubCategory = Get-LanguageString "AzureCA.PolicyBlade.Conditions.DeviceAttributes.Blade.title"
EntityKey = "includeDevices"
})
}
###################################################
# Grant

View File

@@ -10,7 +10,7 @@ This module is for the Endpoint Manager/Intune View. It manages Export/Import/Co
#>
function Get-ModuleVersion
{
'3.9.1'
'3.9.2'
}
function Invoke-InitializeModule
@@ -73,6 +73,21 @@ function Invoke-InitializeModule
SubPath = "EndpointManager"
}) "EndpointManager"
Add-SettingsObject (New-Object PSObject -Property @{
Title = "Save Encryption File"
Key = "EMSaveEncryptionFile"
Type = "Boolean"
Description = "Save encryption file when uploading an app. This can then be used to when downloading the app file."
SubPath = "EndpointManager"
}) "EndpointManager"
Add-SettingsObject (New-Object PSObject -Property @{
Title = "App download folder"
Key = "EMIntuneAppDownloadFolder"
Type = "Folder"
Description = "Folder where app packages will be downloaded and where encryption files will be saved"
SubPath = "EndpointManager"
}) "EndpointManager"
$viewPanel = Get-XamlObject ($global:AppRootFolder + "\Xaml\EndpointManagerPanel.xaml") -AddVariables
@@ -314,7 +329,7 @@ function Invoke-InitializeModule
PostFileImportCommand = { Start-PostFileImportAdministrativeTemplate @args }
PreImportCommand = { Start-PreImportAdministrativeTemplate @args }
LoadObject = { Start-LoadAdministrativeTemplate @args }
PropertiesToRemove = @("definitionValues")
PropertiesToRemove = @("definitionValues","policyConfigurationIngestionType")
Permissons=@("DeviceManagementConfiguration.ReadWrite.All")
Icon="DeviceConfiguration"
GroupId = "DeviceConfiguration"
@@ -454,8 +469,10 @@ function Invoke-InitializeModule
PreDeleteCommand = { Start-PreDeleteApplications @args }
PostExportCommand = { Start-PostExportApplications @args }
PostListCommand = { Start-PostListApplications @args }
ExportExtension = { Add-ScriptExportExtensions @args }
ExportExtension = { Add-ScriptExportApplications @args }
PostGetCommand = { Start-PostGetApplications @args }
PostImportCommand = { Start-PostImportApplications @args }
PostFilesImportCommand = { Start-PostFilesImportApplications @args }
GroupId = "Apps"
ScopeTagsReturnedInList = $false
})
@@ -1985,24 +2002,41 @@ function local:Start-ImportApp
if($appType -eq "microsoft.graph.win32LobApp")
{
Copy-Win32LOBPackage $packageFile $obj
$fileEncryptionInfo = Copy-Win32LOBPackage $packageFile $obj
}
elseif($appType -eq "microsoft.graph.windowsMobileMSI")
{
Copy-MSILOB $packageFile $obj
$fileEncryptionInfo = Copy-MSILOB $packageFile $obj
}
elseif($appType -eq "microsoft.graph.iosLOBApp")
{
Copy-iOSLOB $packageFile $obj
$fileEncryptionInfo = Copy-iOSLOB $packageFile $obj
}
elseif($appType -eq "microsoft.graph.androidLOBApp")
{
Copy-AndroidLOB $packageFile $obj
$fileEncryptionInfo = Copy-AndroidLOB $packageFile $obj
}
else
{
Write-Log "Unsupported application type $appType. File will not be uploaded" 2
}
if((Get-SettingValue "EMSaveEncryptionFile") -eq $true)
{
#$fileEncryptionInfo = $fileEncryptionInfo | where { $null -ne $_.fileEncryptionInfo }
if($fileEncryptionInfo)
{
$jsonEncryptionInfo = $fileEncryptionInfo.fileEncryptionInfo | ConvertTo-Json -Depth 10
$pkgPath = Get-SettingValue "EMIntuneAppDownloadFolder" (Get-SettingValue "EMIntuneAppPackages")
if($pkgPath -and [IO.Directory]::Exists($pkgPath))
{
$obj = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$($obj.id)" -ODataMetadata "Minimal"
$fullPath = $pkgPath + "\$($obj.displayName)_$($obj.id)_$($obj.committedContentVersion).json"
$jsonEncryptionInfo | Out-File -FilePath $fullPath -Force -Encoding utf8
}
}
}
}
function Start-PreUpdateApplication
@@ -2092,6 +2126,69 @@ function Add-DetailExtensionApplications
$tmp.Children.Insert($index, $btnUpload)
}
$btnDownload = New-Object System.Windows.Controls.Button
$btnDownload.Content = 'Download'
$btnDownload.Name = 'btnDownloadAppfile'
$btnDownload.Margin = "0,0,5,0"
$btnDownload.Width = "100"
$btnDownload.Add_Click({
Write-Status "Download file"
$obj = $global:dgObjects.SelectedItem.Object
#$obj = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$($obj.id)"
$pkgPath = Get-SettingValue "EMIntuneAppDownloadFolder" (Get-SettingValue "EMIntuneAppPackages")
$dlgSave = [System.Windows.Forms.SaveFileDialog]::new()
$dlgSave.InitialDirectory = $pkgPath
$dlgSave.FileName = ($obj.FileName + ".encrypted")
if($dlgSave.ShowDialog() -eq [System.Windows.Forms.DialogResult]::OK -and $dlgSave.Filename)
{
Start-DownloadAppContent $obj $dlgSave.FileName
if([IO.File]::Exists($dlgSave.FileName))
{
$fullPath = $pkgPath + "\$($obj.displayName)_$($obj.id)_$($obj.committedContentVersion).json"
if([IO.File]::Exists($fullPath) -eq $false)
{
if(([System.Windows.MessageBox]::Show("Could not find decryption file for $($obj.displayName)`nApp Id: $($obj.id)`nContent version $($obj.committedContentVersion)`n`nDo you want to browse for the file?", "Encryption file not found", "YesNo", "Warning")) -eq "Yes")
{
$of = [System.Windows.Forms.OpenFileDialog]::new()
$of.InitialDirectory = $pkgPath
$of.DefaultExt = "*.json"
$of.Filter = "Json (*.json)|*.*"
$of.Multiselect = $false
if($of.ShowDialog() -eq "OK")
{
$fullPath = $of.FileName
}
}
}
if([IO.File]::Exists($fullPath))
{
Write-Status "Decrypting file"
$encryptionInfo = ConvertFrom-Json (Get-Content -Path $fullPath -Raw)
$destination = $pkgPath + "\$($obj.FileName)"
Start-DecryptFile $dlgSave.Filename $destination $encryptionInfo.encryptionKey $encryptionInfo.initializationVector
}
else
{
Write-Log "Decryption file for $($obj.displayName) not found. Skipping decryption" 2
}
}
}
Write-Status ""
})
$tmp = $form.FindName($buttonPanel)
if($tmp)
{
$tmp.Children.Insert($index, $btnDownload)
}
}
function Start-PreImportAssignmentsApplications
@@ -2177,6 +2274,42 @@ function Start-PostExportApplications
Write-LogError "Failed to export scripts" $_.Exception
}
}
Save-Setting "Intune" "ExportAppFile" $global:chkExportApplicationFile.IsChecked
if($global:chkExportApplicationFile.IsChecked)
{
$encryptioSource = Get-SettingValue "EMIntuneAppDownloadFolder" (Get-SettingValue "EMIntuneAppPackages")
$pkgPath = $path
if($pkgPath)
{
Write-Status "Download file"
$exportFile = $pkgPath + "\$($obj.FileName).encrypted"
$encryptionFile = $encryptioSource + "\$($obj.displayName)_$($obj.id)_$($obj.committedContentVersion).json"
if($encryptionFile -and [IO.File]::Exists($encryptionFile))
{
Start-DownloadAppContent $obj $exportFile
if([IO.File]::Exists($exportFile))
{
Write-Status "Decrypting file"
$encryptionInfo = ConvertFrom-Json (Get-Content -Path $encryptionFile -Raw)
$destination = $pkgPath + "\$($obj.FileName)"
Start-DecryptFile $exportFile $destination $encryptionInfo.encryptionKey $encryptionInfo.initializationVector
}
try { [IO.File]::Delete($exportFile) }
catch {
Write-LogError "Filed to delete exported encrypted file" $_.Exception
}
}
else
{
Write-Log "Cound not file encryption file `"$($obj.displayName)_$($obj.id)_$($obj.committedContentVersion).json`""
}
}
}
}
function Start-PostListApplications
@@ -2204,26 +2337,174 @@ function Start-PostListApplications
$objList
}
function Add-ScriptExportApplications
{
param($form, $buttonPanel, $index = 0)
Add-ScriptExportExtensions $form $buttonPanel $index
$ctrl = $form.FindName("chkExportApplicationFile")
if(-not $ctrl)
{
$xaml = @"
<StackPanel $($global:wpfNS) Orientation="Horizontal" Margin="0,0,5,0">
<Label Content="Export application file" />
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Export the application file. Note: Application file will only be exported if ecryption file is found." />
</StackPanel>
"@
$label = [Windows.Markup.XamlReader]::Parse($xaml)
$global:chkExportApplicationFile = [System.Windows.Controls.CheckBox]::new()
$global:chkExportApplicationFile.IsChecked = ((Get-Setting "Intune" "ExportAppFile" "false") -eq "true")
$global:chkExportApplicationFile.VerticalAlignment = "Center"
$global:chkExportApplicationFile.Name = "chkExportApplicationFile"
@($label, $global:chkExportApplicationFile)
}
}
function Start-PostGetApplications {
param($obj, $objectType)
$relationships = (Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$($obj.Id)/relationships?`$filter=targetType%20eq%20microsoft.graph.mobileAppRelationshipType%27child%27").value
$dependencyApps = @()
$supersededApps = @()
foreach ($rel in $relationships) {
if ($rel."@odata.type" -eq "#microsoft.graph.mobileAppDependency") {
$dependencyApps += "$($rel.targetDisplayName)|!|$($rel.targetDisplayVersion)|!|$($rel.targetId)|!|$($rel.dependencyType)"
if($obj.Object.dependentAppCount -is [Int] -and ($obj.Object.dependentAppCount -gt 0 -or $obj.Object.supersededAppCount -gt 0)) {
$relationships = (Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$($obj.Id)/relationships?`$filter=targetType%20eq%20microsoft.graph.mobileAppRelationshipType%27child%27").value
$dependencyApps = @()
$supersededApps = @()
foreach ($rel in $relationships) {
if ($rel."@odata.type" -eq "#microsoft.graph.mobileAppDependency") {
$dependencyApps += "$($rel.targetDisplayName)|!|$($rel.targetDisplayVersion)|!|$($rel.targetId)|!|$($rel.dependencyType)"
}
elseif ($rel."@odata.type" -eq "#microsoft.graph.mobileAppSupersedence") {
$supersededApps += "$($rel.targetDisplayName)|!|$($rel.targetDisplayVersion)|!|$($rel.targetId)|!|$($rel.supersedenceType)"
}
}
elseif ($rel."@odata.type" -eq "#microsoft.graph.mobileAppSupersedence") {
$supersededApps += "$($rel.targetDisplayName)|!|$($rel.targetDisplayVersion)|!|$($rel.targetId)|!|$($rel.supersedenceType)"
if ($dependencyApps.Count -gt 0) {
$obj.Object | Add-Member -MemberType NoteProperty -Name "#CustomRefDependency" -Value ($dependencyApps -join "|*|")
}
if ($supersededApps.Count -gt 0) {
$obj.Object | Add-Member -MemberType NoteProperty -Name "#CustomRefSupersedence" -Value ($supersededApps -join "|*|")
}
}
if ($dependencyApps.Count -gt 0) {
$obj.Object | Add-Member -MemberType NoteProperty -Name "#CustomRefDependency" -Value ($dependencyApps -join "|*|")
}
}
function Start-PostImportApplications
{
param($obj, $objectType, $file)
#$tmpObj = Get-GraphObjectFromFile $file
}
function Start-PostFilesImportApplications
{
param($objType, $importedObjects, $importedFiles)
$refObjects = $importedFiles | Where { $null -ne $_.Object."#CustomRefDependency" -or $null -ne $_.Object."#CustomRefSupersedence" }
if ($supersededApps.Count -gt 0) {
$obj.Object | Add-Member -MemberType NoteProperty -Name "#CustomRefSupersedence" -Value ($supersededApps -join "|*|")
if(($refObjects | measure).Count -gt 0)
{
Write-Log "Applicetions with Depnedency or Supersedence detected"
foreach($file in $refObjects)
{
Add-ApplicationReferences $file.ImportedObject $file.Object
}
}
}
function local:Add-ApplicationReferences
{
param($obj, $fileObj)
if($fileObj."#CustomRefDependency" -or $fileObj."#CustomRefSupersedence")
{
Write-Log "Adding app references for $($obj.displayName)"
$depAppsInfo = $fileObj."#CustomRefDependency"
$supAppsInfo = $fileObj."#CustomRefSupersedence"
$releationShips = [PSCustomObject]@{
relationships = @()
}
if($depAppsInfo)
{
foreach($depApp in ($depAppsInfo -split "[|][*][|]"))
{
$appName, $appVer, $appId, $appType = $depApp -split "[|][!][|]"
if(-not $appName -or -not $appVer)
{
Write-Log "Could not get Name and Version from string: $appApp" 2
continue
}
$tmpApps = (Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps?`$filter=displayName eq '$appName'").value
if(-not $tmpApps)
{
Write-Log "No application found with name $appName" 2
continue
}
$tmpApp = $tmpApps | Where displayVersion -eq $appVer
if(-not $tmpApp)
{
Write-Log "No $appName application found with version $appVer" 2
continue
}
elseif(-not ($tmpApp | measure).Count -gt 1)
{
Write-Log "Multiple $appName application found with version $appVer" 2
continue
}
Write-Log "Add $appName ($appVer) to Dependency list"
$releationShips.relationships += [PSCustomObject]@{
"@odata.type" = "#microsoft.graph.mobileAppDependency"
targetId = $tmpApp.Id
dependencyType = $appType
}
}
}
if($supAppsInfo)
{
foreach($suppApp in ($supAppsInfo -split "[|][*][|]"))
{
$appName, $appVer, $appId, $appType = $suppApp -split "[|][!][|]"
if(-not $appName -or -not $appVer)
{
Write-Log "Could not get Name and Version from string: $appApp" 2
continue
}
$tmpApps = (Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps?`$filter=displayName eq '$appName'").value
if(-not $tmpApps)
{
Write-Log "No application found with name $appName" 2
continue
}
$tmpApp = $tmpApps | Where displayVersion -eq $appVer
if(-not $tmpApp)
{
Write-Log "No $appName application found with version $appVer" 2
continue
}
elseif(-not ($tmpApp | measure).Count -gt 1)
{
Write-Log "Multiple $appName application found with version $appVer" 2
continue
}
Write-Log "Add $appName ($appVer) to Supersedence list"
$releationShips.relationships += [PSCustomObject]@{
"@odata.type" = "#microsoft.graph.mobileAppSupersedence"
targetId = $tmpApp.Id
supersedenceType = $appType
}
}
}
if($releationShips.relationships.Count -gt 0)
{
$json = Update-JsonForEnvironment (ConvertTo-Json $releationShips -Depth 20)
Write-Log "Update app references"
Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$($obj.Id)/updateRelationships" -Method "POST" -Body $json
}
}
}
@@ -3515,10 +3796,13 @@ function Start-PreImportADMXFiles
return
}
$bytes = [IO.File]::ReadAllBytes($admxFile)
#$bytes = [IO.File]::ReadAllBytes($admxFile)
$bytes = Get-ASCIIBytes ([IO.File]::ReadAllText($admxFile))
$obj.content = [Convert]::ToBase64String($bytes)
$bytes = [IO.File]::ReadAllBytes($admlFile)
#$bytes = [IO.File]::ReadAllBytes($admlFile)
$bytes = Get-ASCIIBytes ([IO.File]::ReadAllText($admlFile))
$obj.groupPolicyUploadedLanguageFiles += [PSCustomObject]@{
fileName = [io.path]::GetFileName($admlFile)
content = [Convert]::ToBase64String($bytes)

View File

@@ -10,7 +10,7 @@ This module manages Application objects in Intune e.g. uploading application fil
#>
function Get-ModuleVersion
{
'3.9.1'
'3.9.2'
}
#########################################################################################
@@ -94,26 +94,33 @@ function Copy-MSILOB
$tmpFile = [IO.Path]::GetTempFileName()
$msiInfo = Get-MSIFileInformation $msiFile @("ProductName", "ProductCode", "ProductVersion", "ProductLanguage")
$msiInfo = Get-MSIFileInformation $msiFile @("ProductName", "ProductCode", "ProductVersion", "ProductLanguage", "UpgradeCode", "ALLUSERS")
if(-not $msiInfo) { return }
$fileEncryptionInfo = New-IntuneEncryptedFile $msiFile $tmpFile
[xml]$manifestXML = '<MobileMsiData MsiExecutionContext="Any" MsiRequiresReboot="false" MsiUpgradeCode="" MsiIsMachineInstall="true" MsiIsUserInstall="false" MsiIncludesServices="false" MsiContainsSystemRegistryKeys="false" MsiContainsSystemFolders="false"></MobileMsiData>'
$manifestXML.MobileMsiData.MsiUpgradeCode = $msiInfo["ProductCode"]
$manifestXML.MobileMsiData.MsiUpgradeCode = $msiInfo["UpgradeCode"]
if($msiInfo["ALLUSERS"] -eq 1)
{
$manifestXML.MobileMsiData.MsiExecutionContext = "System"
}
$appFileBody = @{
"@odata.type" = "#microsoft.graph.mobileAppContentFile"
name = [IO.Path]::GetFileName($msiFile)
size = (Get-Item $msiFile).Length
sizeEncrypted = (Get-Item $tmpFile).Length
manifest = [Convert]::ToBase64String([System.Text.Encoding]::ASCII.GetBytes($manifestXML.OuterXml))
isDependency = $false
}
Add-FileToIntuneApp $appId $appType $tmpFile $appFileBody
Remove-Item $tmpFile -Force
$fileEncryptionInfo
}
function Copy-iOSLOB
@@ -149,6 +156,8 @@ function Copy-iOSLOB
Add-FileToIntuneApp $appId $appType $tmpFile $appFileBody
Remove-Item $tmpFile -Force
$fileEncryptionInfo
}
function Copy-AndroidLOB
@@ -185,6 +194,8 @@ function Copy-AndroidLOB
Add-FileToIntuneApp $appId $appType $tmpFile $appFileBody
Remove-Item $tmpFile -Force
$fileEncryptionInfo
}
function Copy-Win32LOBPackage
@@ -235,7 +246,7 @@ function Copy-Win32LOBPackage
$fileBody = @{
"@odata.type" = "#microsoft.graph.mobileAppContentFile"
name = $DetectionXML.ApplicationInfo.FileName
name = "IntunePackage.intunewin"
size = [int64]$DetectionXML.ApplicationInfo.UnencryptedContentSize
sizeEncrypted = (Get-Item $tmpIntunewinFile).Length
manifest = $null
@@ -245,46 +256,59 @@ function Copy-Win32LOBPackage
Add-FileToIntuneApp $appId $appType $tmpIntunewinFile $fileBody
# Remove extracted inintunewin file
Remove-Item $tmpIntunewinPath -Force -Recurse
Remove-Item $tmpIntunewinPath -Force -Recurse
$fileEncryptionInfo
}
function Add-FileToIntuneApp
{
param($appId, $appType, $appFile, $fileBody)
$contentVersion = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions" -HttpMethod POST -Content "{}"
$contentVersion = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions" -HttpMethod POST -Content "{}" -ODataMetadata "Minimal"
$contentVersionId = $contentVersion.id
$fileObj = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files" -HttpMethod POST -Content (ConvertTo-Json $fileBody -Depth 5)
$fileObj = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files" -HttpMethod POST -Content (ConvertTo-Json $fileBody -Depth 5) -ODataMetadata "Minimal"
if(-not $fileObj)
{
return
}
Write-Log "File object created. ID: $($fileObj.id)"
# Wait for Azure storage URI
$fileObj = Wait-IntuneFileState "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files/$($fileObj.Id)" "AzureStorageUriRequest"
if(-not $fileObj)
{
Write-Log "No File Object returned from commit. Upload failed" 3
return
}
# Upload file
Send-IntuneFileToAzureStorage $fileObj.azureStorageUri $appFile "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files/$($fileObj.Id)"
Send-IntuneFileToAzureStorage $fileObj.azureStorageUri $appFile "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files/$($fileObj.Id)" | Out-Null
# Commit the file
$reponse = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files/$($fileObj.Id)/commit" -HttpMethod POST -Content (ConvertTo-Json $fileEncryptionInfo -Depth 5)
Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files/$($fileObj.Id)/commit" -HttpMethod POST -Content (ConvertTo-Json $fileEncryptionInfo -Depth 5) | Out-Null
Wait-IntuneFileState "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files/$($fileObj.Id)" "CommitFile"
Wait-IntuneFileState "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVersionId/files/$($fileObj.Id)" "CommitFile" | Out-Null
$fiUpload = [IO.FileInfo]$appFile
# Commit the content version
$commitAppBody = @{
"@odata.type" = "#$appType"
committedContentVersion = $contentVersionId
fileName = $fiUpload.Name
}
$reponse = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId" -HttpMethod PATCH -Content (ConvertTo-Json $commitAppBody -Depth 5)
# if($fileBody.Name) {
# $fileUploadName = $fileBody.Name
# }
# else {
$fiUpload = [IO.FileInfo]$appFile
$fileUploadName = $fiUpload.Name
# }
$commitAppBody.Add("fileName",$fileUploadName)
Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId" -HttpMethod PATCH -Content (ConvertTo-Json $commitAppBody -Depth 5) | Out-Null
Write-Log "Upload finished for file $fileUploadName version $contentVersionId"
}
function Wait-IntuneFileState
@@ -318,7 +342,7 @@ function Wait-IntuneFileState
return
}
Start-Sleep -s 5
Start-Sleep -Seconds 1
}
if($succes -eq $false)
@@ -635,4 +659,102 @@ function New-IntuneEncryptedFile
$fileEncryptionInfo.fileEncryptionInfo = $encryptionInfo
$fileEncryptionInfo
}
function Start-DecryptFile
{
param($sourceFile, $targetFile, $encryptionKey, $initializationVector)
if([IO.File]::Exists($targetFile))
{
$fi = [IO.FileInfo]$targetFile
$newName = $fi.Name + "_$((Get-Date).ToString("yyyyMMdd_HHmm"))" + $fi.Extension
$targetFile = $fi.DirectoryName + "\$newName"
Write-Log "Target file exists. Changing target file to $targetFile" 2
}
$bufferBlockSize = 1024 * 4
try
{
$aes = [System.Security.Cryptography.Aes]::Create()
$buffer = New-Object byte[] $bufferBlockSize
$bytesRead = 0
$targetStream = [System.IO.File]::Open($targetFile, [System.IO.FileMode]::Create, [System.IO.FileAccess]::ReadWrite, [System.IO.FileShare]::None)
try
{
$sourceStream = [System.IO.File]::Open($sourceFile, [System.IO.FileMode]::Open, [System.IO.FileAccess]::Read, [System.IO.FileShare]::None)
$decryptor = $aes.CreateDecryptor([Convert]::FromBase64String($encryptionKey), [Convert]::FromBase64String($initializationVector))
$decryptoStream = New-Object System.Security.Cryptography.CryptoStream -ArgumentList @($targetStream, $decryptor, [System.Security.Cryptography.CryptoStreamMode]::Write)
$sourceStream.Seek(48L, [System.IO.SeekOrigin]::Begin)
while (($bytesRead = $sourceStream.Read($buffer, 0, $bufferBlockSize)) -gt 0)
{
$decryptoStream.Write($buffer, 0, $bytesRead)
$decryptoStream.Flush()
}
$decryptoStream.FlushFinalBlock()
}
finally
{
if ($null -ne $decryptoStream) { $decryptoStream.Dispose() }
if ($null -ne $targetStream) { $targetStream.Dispose() }
if ($null -ne $decryptor) { $decryptor.Dispose() }
if ($null -ne $sourceStream) { $sourceStream.Dispose() }
}
}
finally
{
if ($null -ne $sourceStream) { $sourceStream.Dispose() }
if ($null -ne $aes) { $aes.Dispose() }
}
}
function Start-DownloadAppContent
{
param($obj, $destinationFile)
# Not use but kept for reference. File can be download but it will be encrypted
if([IO.File]::Exists($destinationFile))
{
try { [IO.File]::Delete($encryptionFile) }
catch {}
}
$appId = $obj.Id
$appInfo = Invoke-GraphRequest -Url "$($global:graphURL)/deviceAppManagement/mobileApps/$appId"
$appType = $appInfo.'@odata.type'.Trim('#')
#$contentVersions = Invoke-GraphRequest -Url "$($global:graphURL)/deviceAppManagement/mobileApps/$appId/$appType/contentVersions"
#$contentVerId = $contentVersions.Value[0].id
$contentVerId = $appInfo.committedContentVersion
$contentFiles = Invoke-GraphRequest "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVerId/files"
$contentFile = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVerId/files/$($contentFiles.value[-1].Id)" -NoError
if(-not $contentFile)
{
foreach($file in $contentFiles.value)
{
if($contentFiles.value[-1].Id -eq $file.id) { continune }
# NOT happy about this. file objects are not always returned in the order of upload.
$contentFile = Invoke-GraphRequest -Url "/deviceAppManagement/mobileApps/$appId/$appType/contentVersions/$contentVerId/files/$($file.Id)" -NoError
if($contentFile)
{
break
}
}
}
Start-DownloadFile $contentFile.azureStorageUri $destinationFile
}

View File

@@ -10,7 +10,7 @@ This module manages Authentication for the application with MSAL. It is also res
#>
function Get-ModuleVersion
{
'3.9.1'
'3.9.2'
}
$global:msalAuthenticator = $null
@@ -158,6 +158,10 @@ function Clear-MSALCurentUserVaiables
{
$global:MSALTenantId = $null
$global:MSALGraphEnvironment = $null
$script:jwtAccessToken = $null
$script:jwtIdToken = $null
}
function Get-MSALCurrentApp
@@ -223,14 +227,23 @@ function Get-MSALUserInfo
if($global:MSALToken)
{
Write-Log "Get current user"
$tmpMe = MSGraph\Invoke-GraphRequest -Url "ME" -SkipAuthentication -ODataMetadata "Skip"
if($null -ne $tmpMe -and $tmpMe.creationType -ne "Invitation")
if($script:jwtAccessToken.Payload.idtyp -ne "app")
{
### Only get user info from home tenant
$global:Me = $tmpMe
Write-Log "Get profile picture"
$global:profilePhoto = "$($env:LOCALAPPDATA)\CloudAPIPowerShellManagement\$($global:Me.Id).jpeg"
MSGraph\Invoke-GraphRequest "me/photos/48x48/`$value" -OutFile $global:profilePhoto -SkipAuthentication -NoError | Out-Null
$tmpMe = MSGraph\Invoke-GraphRequest -Url "ME" -SkipAuthentication -ODataMetadata "Skip"
if($null -ne $tmpMe -and $tmpMe.creationType -ne "Invitation")
{
### Only get user info from home tenant
$global:Me = $tmpMe
Write-Log "Get profile picture"
$global:profilePhoto = "$($env:LOCALAPPDATA)\CloudAPIPowerShellManagement\$($global:Me.Id).jpeg"
MSGraph\Invoke-GraphRequest "me/photos/48x48/`$value" -OutFile $global:profilePhoto -SkipAuthentication -NoError | Out-Null
}
}
else
{
$global:profilePhoto = $null
$global:me = $script:jwtAccessToken.Payload.app_displayname
}
Write-Log "Get organization info"
@@ -834,6 +847,42 @@ function Connect-MSALUser
Write-LogDebug "Authenticate"
if($global:MainAppStarted -eq $false)
{
$script:AppLogin = (Get-SettingValue "GraphAzureAppLogin") -or ($global:TenantId -and $global:AzureAppId -and ($global:ClientSecret -or $global:ClientCert))
}
if($script:AppLogin)
{
if($global:MSALToken -and $global:MSALToken.ExpiresOn.LocalDateTime.Ticks -gt ((Get-Date).AddMinutes(-5)).Ticks)
{
return
}
# Get login info for silent job from settings
if(-not $global:AzureAppId) { $global:AzureAppId = Get-SettingValue "GraphAzureAppId" -TenantID $global:TenantId }
if(-not $global:ClientSecret -and -not $global:ClientCert) { $global:ClientSecret = Get-SettingValue "GraphAzureAppSecret" -TenantID $global:TenantId }
if(-not $global:ClientSecret -and -not $global:ClientCert) { $global:ClientCert = Get-SettingValue "GraphAzureAppCert" -TenantID $global:TenantId }
if($global:AzureAppId -and $global:ClientSecret -and $global:TenantId)
{
Connect-MSALClientApp $global:AzureAppId $global:TenantId -secret $global:ClientSecret
}
elseif($global:AzureAppId -and $global:ClientCert -and $global:TenantId)
{
Connect-MSALClientApp $global:AzureAppId $global:TenantId -certificate $global:ClientCert
}
else
{
Write-Log "Azure AppId, Tenant Id and Sercret/Cert must be specified for App logins" 3
}
Invoke-MSALAuthenticationUpdated $global:MSALToken
return
}
if($ShowMenu -eq $true -and ((Get-SettingValue "AzureADLoginMenu") -eq $true))
{
if((Show-MSALLoginMenu) -eq $false) { return }
@@ -1167,7 +1216,8 @@ function Connect-MSALUser
Save-Setting "" "LastLoggedOnUser" $authResult.Account.UserName
Save-Setting "" "LastLoggedOnUserId" $authResult.Account.HomeAccountId.ObjectId
}
Invoke-MSALAuthenticationUpdated $authResult
<#
Write-LogDebug "User, tenant or app has changed"
Get-MSALUserInfo
if($authResult)
@@ -1175,9 +1225,26 @@ function Connect-MSALUser
Invoke-MSALCheckObjectViewAccess $authResult
}
Invoke-ModuleFunction "Invoke-GraphAuthenticationUpdated"
#>
}
}
function local:Invoke-MSALAuthenticationUpdated
{
param($authResult)
Write-LogDebug "User, tenant or app has changed"
$script:jwtAccessToken = Get-JWTtoken $global:MSALToken.AccessToken
$script:jwtIdToken = Get-JWTtoken $global:MSALToken.IdToken
Get-MSALUserInfo
if($authResult)
{
Invoke-MSALCheckObjectViewAccess $authResult
}
Invoke-ModuleFunction "Invoke-GraphAuthenticationUpdated"
}
function Start-MSALConsentPrompt
{
param([switch]$PassThru, $authToken)
@@ -1254,6 +1321,22 @@ function Invoke-MSALCheckObjectViewAccess
Set-XamlProperty $script:userEllipsGrid "lnkRequestConsent" "Visibility" "Visible"
}
$accessToken = $null
if($authToken)
{
$accessToken = Get-JWTtoken $authToken.AccessToken
}
$curPermissions = $null
if($accessToken.Payload.idtyp -eq "app")
{
$curPermissions = $accessToken.Payload.roles
}
elseif($accessToken.Payload.scp)
{
$curPermissions = $accessToken.Payload.scp.Split(" ")
}
foreach($viewObjInfo in ($global:viewObjects | Where { $_.ViewInfo.AuthenticationID -eq "MSAL" }))
{
$viewObjInfo = $global:viewObjects | Where { $_.ViewInfo.Id -eq $global:EMViewObject.Id }
@@ -1262,10 +1345,8 @@ function Invoke-MSALCheckObjectViewAccess
{
if($authToken)
{
$accessToken = Get-JWTtoken $authToken.AccessToken
if($accessToken.Payload.scp)
if($curPermissions)
{
$curPermissions = $accessToken.Payload.scp.Split(" ")
foreach($viewItem in $viewObjInfo.ViewItems)
{
$full = 0
@@ -1400,7 +1481,7 @@ function Disconnect-MSALUser
$logout = $true
if(-not $global:MSALToken.Account) { return }
$user = $global:MSALToken.Account # Logout current user
$global:MSALToken = $null
$global:MSALToken = $null
Clear-MSALCurentUserVaiables # Only clear variables for current user
$msg = "Do you want to remove the token from the cache?"
$title = "Remove token?"
@@ -1563,6 +1644,10 @@ function Get-MSALProfileEllipse
{
$initials = "$($global:me.userPrincipalName[0])".ToUpper()
}
elseif($script:jwtAccessToken.Payload.idtyp -eq "app")
{
$initials = "APP"
}
$grd = Get-MSALUserPhotoEllips -size $size -fontSize $fontSize -Color $Color
@@ -1586,8 +1671,15 @@ function Get-MSALProfileEllipse
$global:grdProfileInfo.Tag = $grd
$grd.Tag = $global:grdProfileInfo
Set-XamlProperty $global:grdProfileInfo "txtOrganization" "Text" $global:Organization.displayName
Set-XamlProperty $global:grdProfileInfo "txtUsername" "Text" $global:me.displayName
Set-XamlProperty $global:grdProfileInfo "txtLogonName" "Text" $global:me.userPrincipalName
if($script:jwtAccessToken.Payload.idtyp -eq "app")
{
Set-XamlProperty $global:grdProfileInfo "txtUsername" "Text" "App Login"
}
else
{
Set-XamlProperty $global:grdProfileInfo "txtUsername" "Text" $global:me.displayName
Set-XamlProperty $global:grdProfileInfo "txtLogonName" "Text" $global:me.userPrincipalName
}
$global:tokenInfo = Get-JWTtoken $global:MSALToken.AccessToken
if($global:tokenInfo)
@@ -1606,11 +1698,16 @@ function Get-MSALProfileEllipse
$tmpObj.SetValue([System.Windows.Controls.Grid]::RowProperty,1)
$tmpObj.SetValue([System.Windows.Controls.Grid]::RowSpanProperty,2)
}
if($tmpObj)
{
$profileGrid.Children.Add($tmpObj) | Out-Null
}
if($script:jwtAccessToken.Payload.idtyp -eq "app")
{
$tmpObj.Visibility = "Collapsed"
}
$global:grdProfileInfo.Add_Loaded({param($obj, $e)
$point = $obj.Tag.TransformToAncestor($window).Transform([System.Windows.Point]::new(0,0));
@@ -1618,134 +1715,137 @@ function Get-MSALProfileEllipse
[System.Windows.Controls.Canvas]::SetTop($obj,($point.Y + $obj.Tag.ActualHeight))
})
#########################################################################################################
### Show / Hide consent button
#########################################################################################################
$script:userEllipsGrid = $tmpObj
if(($script:missingPermissions | measure).Count -eq 0)
if($script:jwtAccessToken.Payload.idtyp -ne "app")
{
Set-XamlProperty $script:userEllipsGrid "lnkRequestConsent" "Visibility" "Collapsed"
}
Add-XamlEvent $script:userEllipsGrid "lnkRequestConsent" "add_Click" {
Start-MSALConsentPrompt
}
$otherLogins = $global:grdProfileInfo.FindName("grdCachedAccounts")
#########################################################################################################
### Add cached users
#########################################################################################################
if((Get-SettingValue "SortAccountList") -eq $true)
{
$accounts = $global:MSALAccounts | Sort -Property Username
}
else
{
$accounts = $global:MSALAccounts
}
foreach($account in $accounts)
{
# Skip current logged on user
if($global:MSALToken.Account.Username -eq $Account.Username -or
$global:MSALToken.Account.HomeAccountId.ObjectId -eq $Account.HomeAccountId.ObjectId) { continue }
Add-CachedUser $account $otherLogins
}
#########################################################################################################
### Add login with another user
#########################################################################################################
$grdAccount = [System.Windows.Controls.Grid]::new()
$cd = [System.Windows.Controls.ColumnDefinition]::new()
$grdAccount.ColumnDefinitions.Add($cd)
$cd = [System.Windows.Controls.ColumnDefinition]::new()
$cd.Width = [double]::NaN
$grdAccount.ColumnDefinitions.Add($cd)
$icon = Get-XamlObject ($global:AppRootFolder + "\Xaml\Icons\Logon.xaml")
$icon.Width = 24
$icon.Height = 24
$icon.Margin = "0,0,5,0"
$grdAccount.Children.Add($icon) | Out-Null
$lbObj = [Windows.Markup.XamlReader]::Parse("<TextBlock $wpfNS>Sign in with a different account</TextBlock>")
$lbObj.SetValue([System.Windows.Controls.Grid]::ColumnProperty,1)
#$lbObj.Style = $window.TryFindResource("HoverUnderlineStyle")
$grdAccount.Children.Add($lbObj) | Out-Null
$lnkButton = [System.Windows.Controls.Button]::new()
$lnkButton.Content = $grdAccount
$lnkButton.Style = $window.TryFindResource("LinkButton")
$lnkButton.Margin = "0,5,0,0"
$lnkButton.Cursor = "Hand"
$lnkButton.Tag = $account
$lnkButton.add_Click({
Write-Status "Logging in..."
Hide-Popup
Connect-MSALUser -Interactive -ShowMenu
if($global:curObjectType)
#########################################################################################################
### Show / Hide consent button
#########################################################################################################
$script:userEllipsGrid = $tmpObj
if(($script:missingPermissions | measure).Count -eq 0)
{
Show-GraphObjects
Set-XamlProperty $script:userEllipsGrid "lnkRequestConsent" "Visibility" "Collapsed"
}
Write-Status ""
})
Add-XamlEvent $script:userEllipsGrid "lnkRequestConsent" "add_Click" {
Start-MSALConsentPrompt
}
$otherLogins = $global:grdProfileInfo.FindName("grdCachedAccounts")
$otherLogins = $global:grdProfileInfo.FindName("grdLoginAccount")
Add-GridObject $otherLogins $lnkButton
$otherLogins = $global:grdProfileInfo.FindName("grdTenantAccounts")
if(($script:AccessableTenants | measure).Count -gt 1)
{
#########################################################################################################
### Add switch to another tenant
### Add cached users
#########################################################################################################
$lbObj = [Windows.Markup.XamlReader]::Parse("<TextBlock $wpfNS><Bold>Tenants:</Bold></TextBlock>")
$lbObj.Margin = "0,5,0,0"
Add-GridObject $otherLogins $lbObj
foreach($tenant in $script:AccessableTenants)
if((Get-SettingValue "SortAccountList") -eq $true)
{
try
$accounts = $global:MSALAccounts | Sort -Property Username
}
else
{
$accounts = $global:MSALAccounts
}
foreach($account in $accounts)
{
# Skip current logged on user
if($global:MSALToken.Account.Username -eq $Account.Username -or
$global:MSALToken.Account.HomeAccountId.ObjectId -eq $Account.HomeAccountId.ObjectId) { continue }
Add-CachedUser $account $otherLogins
}
#########################################################################################################
### Add login with another user
#########################################################################################################
$grdAccount = [System.Windows.Controls.Grid]::new()
$cd = [System.Windows.Controls.ColumnDefinition]::new()
$grdAccount.ColumnDefinitions.Add($cd)
$cd = [System.Windows.Controls.ColumnDefinition]::new()
$cd.Width = [double]::NaN
$grdAccount.ColumnDefinitions.Add($cd)
$icon = Get-XamlObject ($global:AppRootFolder + "\Xaml\Icons\Logon.xaml")
$icon.Width = 24
$icon.Height = 24
$icon.Margin = "0,0,5,0"
$grdAccount.Children.Add($icon) | Out-Null
$lbObj = [Windows.Markup.XamlReader]::Parse("<TextBlock $wpfNS>Sign in with a different account</TextBlock>")
$lbObj.SetValue([System.Windows.Controls.Grid]::ColumnProperty,1)
#$lbObj.Style = $window.TryFindResource("HoverUnderlineStyle")
$grdAccount.Children.Add($lbObj) | Out-Null
$lnkButton = [System.Windows.Controls.Button]::new()
$lnkButton.Content = $grdAccount
$lnkButton.Style = $window.TryFindResource("LinkButton")
$lnkButton.Margin = "0,5,0,0"
$lnkButton.Cursor = "Hand"
$lnkButton.Tag = $account
$lnkButton.add_Click({
Write-Status "Logging in..."
Hide-Popup
Connect-MSALUser -Interactive -ShowMenu
if($global:curObjectType)
{
$lbObj = [Windows.Markup.XamlReader]::Parse("<TextBlock $wpfNS HorizontalAlignment=`"Stretch`"><Bold>$($tenant.DisplayName)</Bold><LineBreak/>$($tenant.defaultDomain)<LineBreak/>$($tenant.tenantId)</TextBlock>")
if($tenant.tenantId -ne $global:MSALToken.TenantId)
{
$lbObj.Style = $window.TryFindResource("HoverUnderlineStyleWithBackground")
$lbObj.HorizontalAlignment = "Stretch"
$lnkButton = [System.Windows.Controls.Button]::new()
$lnkButton.Content = $lbObj
$lnkButton.HorizontalAlignment = "Stretch"
$lnkButton.Style = $window.TryFindResource("ContentButton")
$lnkButton.Margin = "0,5,0,0"
$lnkButton.Cursor = "Hand"
$lnkButton.Tag = $tenant
$lnkButton.add_Click({
Write-Status "Logging in to $($this.Tag.DisplayName)"
# Set authority to selected tenant
$global:MSALTenantId = $this.Tag.tenantId
Hide-Popup
Connect-MSALUser -Account ($global:MSALAccounts | Where UserName -eq $global:MSALToken.Account.Username)
if($global:curObjectType)
{
Show-GraphObjects
}
Write-Status ""
})
Add-GridObject $otherLogins $lnkButton
}
else
{
$lbObj.Background = $window.TryFindResource("SelectedRowBackgroundColor")
$lbObj.Margin = "0,5,0,0"
Add-GridObject $otherLogins $lbObj
}
Show-GraphObjects
}
Write-Status ""
})
$otherLogins = $global:grdProfileInfo.FindName("grdLoginAccount")
Add-GridObject $otherLogins $lnkButton
$otherLogins = $global:grdProfileInfo.FindName("grdTenantAccounts")
if(($script:AccessableTenants | measure).Count -gt 1)
{
#########################################################################################################
### Add switch to another tenant
#########################################################################################################
$lbObj = [Windows.Markup.XamlReader]::Parse("<TextBlock $wpfNS><Bold>Tenants:</Bold></TextBlock>")
$lbObj.Margin = "0,5,0,0"
Add-GridObject $otherLogins $lbObj
foreach($tenant in $script:AccessableTenants)
{
try
{
$lbObj = [Windows.Markup.XamlReader]::Parse("<TextBlock $wpfNS HorizontalAlignment=`"Stretch`"><Bold>$($tenant.DisplayName)</Bold><LineBreak/>$($tenant.defaultDomain)<LineBreak/>$($tenant.tenantId)</TextBlock>")
if($tenant.tenantId -ne $global:MSALToken.TenantId)
{
$lbObj.Style = $window.TryFindResource("HoverUnderlineStyleWithBackground")
$lbObj.HorizontalAlignment = "Stretch"
$lnkButton = [System.Windows.Controls.Button]::new()
$lnkButton.Content = $lbObj
$lnkButton.HorizontalAlignment = "Stretch"
$lnkButton.Style = $window.TryFindResource("ContentButton")
$lnkButton.Margin = "0,5,0,0"
$lnkButton.Cursor = "Hand"
$lnkButton.Tag = $tenant
$lnkButton.add_Click({
Write-Status "Logging in to $($this.Tag.DisplayName)"
# Set authority to selected tenant
$global:MSALTenantId = $this.Tag.tenantId
Hide-Popup
Connect-MSALUser -Account ($global:MSALAccounts | Where UserName -eq $global:MSALToken.Account.Username)
if($global:curObjectType)
{
Show-GraphObjects
}
Write-Status ""
})
Add-GridObject $otherLogins $lnkButton
}
else
{
$lbObj.Background = $window.TryFindResource("SelectedRowBackgroundColor")
$lbObj.Margin = "0,5,0,0"
Add-GridObject $otherLogins $lbObj
}
}
catch {}
}
catch {}
}
}
@@ -1807,7 +1907,12 @@ function Get-MSALProfileEllipse
{
Show-GraphObjects
}
}
}
if($script:jwtAccessToken.Payload.idtyp -eq "app")
{
Set-XamlProperty $tmpObj "lnkLogout" "Visibility" "Collapsed"
}
}
catch {
Write-LogError "Failed to create profile information object. Error: " $_.Exception
@@ -1983,12 +2088,21 @@ function Get-MSALMissingScopes
$script:missingPermissions = @()
if($script:jwtAccessToken.Payload.idtyp -eq "app")
{
$curScopes = $script:jwtAccessToken.Payload.roles
}
else
{
$curScopes = $authToken.Scopes
}
foreach($scope in $reqScopes)
{
$tmpScope = $scope.Split('/')[-1]
if($tmpScope -eq ".default") { continue }
if($authToken.Scopes -contains $tmpScope) { continue }
if(($authToken.Scopes -like "*/$tmpScope")) { continue }
if($curScopes -contains $tmpScope) { continue }
if(($curScopes -like "*/$tmpScope")) { continue }
$arrTemp = $tmpScope.Split(".")
if($arrTemp[1] -eq "Read")
{
@@ -2012,6 +2126,9 @@ function Show-MSALDecodedToken {
$tokenData,
$title
)
if(-not $tokenData.Header) { return }
$tokenArr = @()
foreach($prop in ($tokenData.Header | GM | Where MemberType -eq NoteProperty))
{

View File

@@ -10,7 +10,7 @@ This module manages Microsoft Grap fuctions like calling APIs, managing graph ob
#>
function Get-ModuleVersion
{
'3.9.1'
'3.9.2'
}
$global:MSGraphGlobalApps = @(
@@ -183,6 +183,14 @@ function Invoke-InitializeModule
Description = "Certificate for Azure App"
}) "GraphSilent"
Add-SettingsObject (New-Object PSObject -Property @{
Title = "Login with App in UI (Preview)"
Key = "GraphAzureAppLogin"
Type = "Boolean"
DefaultValue = $false
Description = "Login with specified app in the UI. Note: Change will require app restart"
}) "GraphSilent"
Add-SettingsObject (New-Object PSObject -Property @{
Title = "Refresh Objects after copy"
Key = "RefreshObjectsAfterCopy"
@@ -214,6 +222,15 @@ function Invoke-InitializeModule
DefaultValue = $false
Description = "Expand assignments when listing objects. This can be used in custom columns based on assignment info"
}) "GraphGeneral"
Add-SettingsObject (New-Object PSObject -Property @{
Title = "Use Graph 1.0 (Not Recommended)"
Key = "UseGraphV1"
Type = "Boolean"
DefaultValue = $false
Description = "This will use production verionof graph, v1.0. Note: Thot officially supported since this can have unpredicted results. Some parts will require Beta version of Graph."
}) "GraphGeneral"
}
function Get-GraphAppInfo
@@ -270,7 +287,7 @@ function Invoke-SettingsUpdated
function Initialize-GraphSettings
{
$script:defaultVersion = ""
}
function Invoke-GraphRequest
@@ -297,7 +314,7 @@ function Invoke-GraphRequest
$ODataMetadata = "full", # full, minimal, none or skip
[ValidateSet("beta","v1.0")]
$GraphVersion = "beta",
$GraphVersion = "",
[switch]
$AllPages,
@@ -317,6 +334,22 @@ function Invoke-GraphRequest
Connect-MSALUser
}
if(-not $GraphVersion)
{
if(-not $script:defaultVersion)
{
if((Get-SettingValue "UseGraphV1") -eq $true)
{
$script:defaultVersion = "v1.0"
}
else
{
$script:defaultVersion = "beta"
}
}
$GraphVersion = $script:defaultVersion
}
$params = @{}
$requestId = [Guid]::NewGuid().guid
@@ -1684,6 +1717,7 @@ function Show-GraphImportForm
$importedObjectsCurType = 0
$navigationPropObjects = @()
$arrImportedObjects = @()
foreach ($fileObj in $filesToImport)
{
if($allowUpdate -and $global:cbImportType.SelectedValue -ne "alwaysImport" -and (Reset-GraphObject $fileObj $global:dgObjects.ItemsSource))
@@ -1699,9 +1733,15 @@ function Show-GraphImportForm
ImportedObject = $importedObj
}
}
$arrImportedObjects += $importedObj
$importedObjectsCurType++
}
if($global:curObjectType.PostFilesImportCommand)
{
& $global:curObjectType.PostFilesImportCommand $global:curObjectType $arrImportedObjects $filesToImport
}
if($importedObjectsCurType -gt 0 -and $global:LoadedDependencyObjects -is [HashTable] -and $global:LoadedDependencyObjects.ContainsKey($global:curObjectType.Id))
{
Write-Log "Remove $($global:curObjectType.Title) from dependency cache"
@@ -1870,7 +1910,6 @@ function Show-GraphBulkImportForm
function Start-GraphObjectImport
{
Write-Status "Import objects" -Block
Write-Log "****************************************************************"
Write-Log "Start bulk import"
@@ -1920,6 +1959,8 @@ function Start-GraphObjectImport
$importedObjectsCurType = 0
$arrImportedObjects = @()
foreach ($fileObj in @($filesToImport))
{
$objName = Get-GraphObjectName $fileObj.Object $item.ObjectType
@@ -1943,11 +1984,17 @@ function Start-GraphObjectImport
ImportedObject = $importedObj
}
}
$arrImportedObjects = $importedObj
$importedObjects++
$importedObjectsCurType++
}
if($item.ObjectType.PostFilesImportCommand)
{
& $item.ObjectType.PostFilesImportCommand $item.ObjectType $arrImportedObjects $filesToImport
}
if($importedObjectsCurType -gt 0 -and $global:LoadedDependencyObjects -is [HashTable] -and $global:LoadedDependencyObjects.ContainsKey($item.ObjectType.Id))
{
Write-Log "Remove $($item.ObjectType.Title) from dependency cache"
@@ -2243,6 +2290,11 @@ function Import-GraphFile
Import-GraphObjectAssignment $newObj $file.ObjectType $objClone.Assignments $file.FileInfo.FullName | Out-Null
}
if($newObj)
{
$file | Add-Member -NotePropertyName "ImportedObject" -NotePropertyValue $newObj
}
if($PassThru -eq $true -and $newObj)
{
$newObj

View File

@@ -1,4 +1,60 @@
# Release Notes
## 3.9.2 - 2023-10-17
**New features**
- **Application Content Export - Experimental**<br />
- Added support for Exporting Appliction with decrypted content<br />
App file can be downloaded during export or from the detail view of the Application<br />
Enable "Save Encryption File" and specify "App download folder" in Settings<br />
"App download folder" is used for encryption file and manual download<br />
File content will be downloaded to the export foler during export<br />
Files will be downloaded with .encrypted extension and then decrypted to original file name<br />
Please report any issue or any suggestions<br />
**NOTE:** This will ONLY work if the encryption file is exported and available<br />
- **Authentication**<br />
- Login with application<br />
This will login with specified Azure App ID and Secret/Certificate that is used for Batch processes<br />
NOTE: This will require a restart of the app<br />
Start with app **must** use -TenantID on command line. AppID and Secret/Certificate can be specified in Settings or command line<br />
Example: Start-IntuneManagement.ps1 -tenantId \"&lt;TenantID&gt;\" -appid \"&lt;AppID&gt;\" -secret \"&lt;Secret&gt;\"<br />
See *Start-WithApp.cmd* for samle file<br />
Based on [Issue 122](https://github.com/Micke-K/IntuneManagement/issues/122) and [Issue 134](https://github.com/Micke-K/IntuneManagement/issues/134)<br />
- **Support for new Settings**<br />
- Save encryption file - Saves a json file with encryption data when an application file is uploaded eg created or uploaded in details view<br />
- App download folder - Folder where application files should be downloaded and decrypted<br />
- Login with App in UI (Preview) - Use app batch login in UI<br />
- Use Graph 1.0 (Not Recommended) - Use Graph v1.0 instead of Beta. **Note:** Some features will NOT work in v1.0<br />
Based on [Issue 170](https://github.com/Micke-K/IntuneManagement/issues/170)<br />
**Fixes**
- **Documentation**<br />
- Language files re-generated eg Supersedence (preview) -> Supersedence<br />
- Added support for documenting "Filter for devices" info for Conditional Access policies<br />
Based on [Issue 168](https://github.com/Micke-K/IntuneManagement/issues/168)<br />
- **Custom ADMX Files**<br />
- Fixed issues with migrating custom policies between environments (3rd time)<br />
Based on [Issue 124](https://github.com/Micke-K/IntuneManagement/issues/124)<br />
- Fixed issue when importing ADMX files - Encoding issue eg ADMX/ADML file was UTF8<br />
Based on [Issue 169](https://github.com/Micke-K/IntuneManagement/issues/169)<br />
- **Importing Windows LoB Apps**<br />
- Fixed issue when importing LoB Apps that was only targeted to System context<br />
Available Assignment option was missing after import<br />
Based on [Discussion 164](https://github.com/Micke-K/IntuneManagement/discussions/164)<br />
- Added support for Depnedency and Supersedence reations at import<br />
Application will need to be re-exported since additinal data is added to the export file<br />
Based on [Discussion 159](https://github.com/Micke-K/IntuneManagement/discussions/159)<br />
- **Generic**<br />
- Fixed issue when compiling Procxy CS file<br />
- Tls 1.2 is now enforced.<br />
Based on [Discussion 166](https://github.com/Micke-K/IntuneManagement/discussions/166)<br />
<br />
## 3.9.1 - 2023-08-30
**New features**

1
Start-WithApp.cmd Normal file
View File

@@ -0,0 +1 @@
cmd /c powershell -version 5 -ex bypass -File "%~DP0Start-IntuneManagement.ps1" -tenantId "<TenantID>" -appid "<AppID>" -secret "<Secret>"

View File

@@ -135,7 +135,7 @@
<Label Content="Current settings:" />
<Rectangle Style="{DynamicResource InfoIcon}" ToolTip="Current property settings. Only updated when saved" />
</StackPanel>
<Label Name="lblObjectColumnsConfig" Content="" Margin="0,0,5,0" Grid.Row="3" />
<Label Name="lblObjectColumnsConfig" Content="" Margin="0,0,5,0" Grid.Row="3" Grid.ColumnSpan="2" />
<StackPanel Orientation="Horizontal" Grid.Column="1" Margin="5,5,5,0" Grid.Row="4" Grid.ColumnSpan="2" HorizontalAlignment="Right">
<Button Name="btnObjectColumnsReset" Content="Reset" Margin="0,0,5,0" Width="100" ToolTip="Revert all changes" />