Browse Source

05.03.2021 v5.7

pull/149/head
Dmitry Nefedov 4 years ago
committed by GitHub
parent
commit
e281a753d1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 54
      Sophia/PowerShell 5.1/Sophia.ps1
  2. BIN
      Sophia/PowerShell 5.1/Sophia.psd1
  3. 231
      Sophia/PowerShell 5.1/Sophia.psm1
  4. 191
      Sophia/PowerShell 5.1/cn-CN/Sophia.psd1
  5. 191
      Sophia/PowerShell 5.1/de-DE/Sophia.psd1
  6. 191
      Sophia/PowerShell 5.1/en-US/Sophia.psd1
  7. 191
      Sophia/PowerShell 5.1/es-ES/Sophia.psd1
  8. 191
      Sophia/PowerShell 5.1/fr-FR/Sophia.psd1
  9. 191
      Sophia/PowerShell 5.1/it-IT/Sophia.psd1
  10. 191
      Sophia/PowerShell 5.1/ru-RU/Sophia.psd1
  11. 193
      Sophia/PowerShell 5.1/tr-TR/Sophia.psd1
  12. 193
      Sophia/PowerShell 5.1/uk-UA/Sophia.psd1

54
Sophia/PowerShell 5.1/Sophia.ps1

@ -2,8 +2,8 @@
.SYNOPSIS
Default preset file for "Windows 10 Sophia Script"
Version: v5.6
Date: 02.03.2021
Version: v5.7
Date: 05.03.2021
Copyright (c) 20152021 farag & oZ-Zo
https://github.com/farag2
@ -57,7 +57,7 @@ param
Clear-Host
$Host.UI.RawUI.WindowTitle = "Windows 10 Sophia Script v5.6 | $([char]0x00A9) farag & oz-zo, 2015–2021"
$Host.UI.RawUI.WindowTitle = "Windows 10 Sophia Script v5.7 | $([char]0x00A9) farag & oz-zo, 2015–2021"
Remove-Module -Name Sophia -Force -ErrorAction Ignore
Import-Module -Name $PSScriptRoot\Sophia.psd1 -PassThru -Force
@ -348,11 +348,11 @@ FileTransferDialog -Detailed
# FileTransferDialog -Compact
# Expand the File Explorer ribbon
# Развернуть ленут проводника
# Развернуть ленту проводника
FileExplorerRibbon -Expanded
# Minimize the File Explorer ribbon (default value)
# Свернуть ленут проводника (значение по умолчанию)
# Свернуть ленту проводника (значение по умолчанию)
# FileExplorerRibbon -Minimized
# Display the recycle bin files delete confirmation
@ -415,6 +415,14 @@ TrayIcons -Show
# Не отображать все значки в области уведомлений (значение по умолчанию)
# TrayIcons -Hide
# Hide the Meet Now icon in the notification area
# Скрыть иконку "Провести собрание" в трее
MeetNow -Hide
# Show the Meet Now icon in the notification area
# Отобразить иконку "Провести собрание" в трее
# MeetNow -Show
# Unpin "Microsoft Edge" and "Microsoft Store" from the taskbar
# Открепить Microsoft Edge и Microsoft Store от панели задач
UnpinTaskbarEdgeStore
@ -1014,44 +1022,44 @@ GPUScheduling -Enable
#region Scheduled tasks
<#
Create the "Windows Cleanup" scheduled task for cleaning up unused files and Windows updates
A minute before the task starts, a warning in the Windows action center will appear
The task runs every 90 days
Create the "Windows Cleanup" scheduled task for cleaning up Windows unused files and updates
A native interactive toast notification pops up every 30 days
The task runs every 30 days
Создать задачу "Windows Cleanup" по очистке неиспользуемых файлов и обновлений Windows в Планировщике задач
За минуту до выполнения задачи в Центре уведомлений Windows появится предупреждение
Задача выполняется каждые 90 дней
Создать задачу "Windows Cleanup" по очистке неиспользуемых файлов и обновлений Windows в Планировщике заданий
Нативный интерактивный тост всплывает каждые 30 дней
Задача выполняется каждые 30 дней
#>
CleanUpTask -Register
CleanupTask -Register
# Delete the "Windows Cleanup" scheduled task for cleaning up unused files and Windows updates
# Удалить задачу "Windows Cleanup" по очистке неиспользуемых файлов и обновлений Windows из Планировщика задач
# CleanUpTask -Delete
# Delete the "Windows Cleanup" and "Windows Cleanup Notification" scheduled tasks for cleaning up Windows unused files and updates
# Удалить задачу "Windows Cleanup" и "Windows Cleanup Notification" по очистке неиспользуемых файлов и обновлений Windows из Планировщика заданий
# CleanupTask -Delete
<#
Create the "SoftwareDistribution" scheduled task for cleaning up the %SystemRoot%\SoftwareDistribution\Download folder
The task runs on Thursdays every 4 weeks
The task runs every 90 days
Создать задачу "SoftwareDistribution" по очистке папки %SystemRoot%\SoftwareDistribution\Download в Планировщике задач
Задача выполняется по четвергам каждую 4 неделю
Создать задачу "SoftwareDistribution" по очистке папки %SystemRoot%\SoftwareDistribution\Download в Планировщике заданий
Задача выполняется каждые 90 дней
#>
SoftwareDistributionTask -Register
# Delete the "SoftwareDistribution" scheduled task for cleaning up the %SystemRoot%\SoftwareDistribution\Download folder
# Удалить задачу "SoftwareDistributionp" по очистке папки %SystemRoot%\SoftwareDistribution\Download из Планировщика задач
# Удалить задачу "SoftwareDistribution" по очистке папки %SystemRoot%\SoftwareDistribution\Download из Планировщика заданий
# SoftwareDistributionTask -Delete
<#
Create the "Temp" scheduled task for cleaning up the %TEMP% folder
The task runs every 62 days
The task runs every 60 days
Создать задачу "Temp" в Планировщике задач по очистке папки %TEMP%
Задача выполняется каждые 62 дня
Создать задачу "Temp" в Планировщике заданий по очистке папки %TEMP%
Задача выполняется каждые 60 дней
#>
TempTask -Register
# Delete the "Temp" scheduled task for cleaning up the %TEMP% folder
# Удалить задачу "Temp" по очистке папки %TEMP% из Планировщика задач
# Удалить задачу "Temp" по очистке папки %TEMP% из Планировщика заданий
# TempTask -Delete
#endregion Scheduled tasks

BIN
Sophia/PowerShell 5.1/Sophia.psd1

Binary file not shown.

231
Sophia/PowerShell 5.1/Sophia.psm1

@ -2,8 +2,8 @@
.SYNOPSIS
"Windows 10 Sophia Script" is a PowerShell module for Windows 10 fine-tuning and automating the routine tasks
Version: v5.6
Date: 02.03.2021
Version: v5.7
Date: 05.03.2021
Copyright (c) 20152021 farag & oZ-Zo
https://github.com/farag2
@ -96,6 +96,7 @@ function Checkings
"1"
{
Write-Warning -Message $Localization.ControlledFolderAccessDisabled
$Script:ControlledFolderAccess = $true
Set-MpPreference -EnableControlledFolderAccess Disabled
@ -2414,6 +2415,77 @@ function TrayIcons
}
}
<#
.SYNOPSIS
Configure the Meet Now icon in the notification area
.PARAMETER Hide
Hide the Meet Now icon in the notification area
.PARAMETER Show
Show the Meet Now icon in the notification area
.EXAMPLE
MeetNow -Hide
.EXAMPLE
MeetNow -Show
.NOTES
Current user only
#>
function MeetNow
{
param
(
[Parameter(
Mandatory = $true,
ParameterSetName = "Show"
)]
[switch]
$Show,
[Parameter(
Mandatory = $true,
ParameterSetName = "Hide"
)]
[switch]
$Hide
)
switch ($PSCmdlet.ParameterSetName)
{
"Show"
{
$Settings = Get-ItemPropertyValue -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3 -Name Settings -ErrorAction Ignore
$Settings[9] = 0
New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3 -Name Settings -PropertyType Binary -Value $Settings -Force
}
"Hide"
{
$Settings = Get-ItemPropertyValue -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3 -Name Settings -ErrorAction Ignore
$Settings[9] = 128
New-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects3 -Name Settings -PropertyType Binary -Value $Settings -Force
}
}
# Save all opened folders in order to restore them after File Explorer restart
Clear-Variable -Name OpenedFolders -Force -ErrorAction Ignore
$OpenedFolders = {(New-Object -ComObject Shell.Application).Windows() | ForEach-Object -Process {$_.Document.Folder.Self.Path}}.Invoke()
# In order for the changes to take effect the File Explorer process has to be restarted
Stop-Process -Name explorer -Force
# Restoring closed folders
foreach ($OpenedFolder in $OpenedFolders)
{
if (Test-Path -Path $OpenedFolder)
{
Invoke-Item -Path $OpenedFolder
}
}
}
<#
.SYNOPSIS
Unpin "Microsoft Edge" and "Microsoft Store" from the taskbar
@ -5466,7 +5538,6 @@ public extern static int SHSetKnownFolderPath(ref Guid folderId, uint flags, Int
}
# Pictures
Write-Verbose -Message $Localization.PicturesDriveSelect -Verbose
Write-Warning -Message $Localization.FilesWontBeMoved
@ -7187,6 +7258,7 @@ function EnableWSL2
Invoke-WebRequest @Parameters
Write-Verbose -Message $Localization.WSLUpdateInstalling -Verbose
Start-Process -FilePath "$DownloadsFolder\wsl_update_x64.msi" -ArgumentList "/passive" -Wait
Remove-Item -Path "$DownloadsFolder\wsl_update_x64.msi" -Force
@ -7633,6 +7705,12 @@ public static string GetString(uint strId)
Start-Sleep -Seconds 3
# Open the Start menu to load the new layout
$wshell = New-Object -ComObject WScript.Shell
$wshell.SendKeys("^{ESC}")
Start-Sleep -Seconds 3
# Enable changing the Start menu layout
Remove-ItemProperty -Path HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer -Name LockedStartLayout -Force -ErrorAction Ignore
Remove-ItemProperty -Path HKCU:\SOFTWARE\Policies\Microsoft\Windows\Explorer -Name StartLayoutFile -Force -ErrorAction Ignore
@ -7642,6 +7720,10 @@ public static string GetString(uint strId)
Stop-Process -Name StartMenuExperienceHost -Force -ErrorAction Ignore
Start-Sleep -Seconds 3
# Open the Start menu to load the new layout
$wshell = New-Object -ComObject WScript.Shell
$wshell.SendKeys("^{ESC}")
}
}
#endregion Start menu
@ -8389,26 +8471,26 @@ function GPUScheduling
#region Scheduled tasks
<#
.SYNOPSIS
The "Windows Cleanup" scheduled task for cleaning up unused files and Windows updates
The "Windows Cleanup" scheduled task for cleaning up Windows unused files and updates
.PARAMETER Register
Create the "Windows Cleanup" scheduled task for cleaning up unused files and Windows updates
Create the "Windows Cleanup" scheduled task for cleaning up Windows unused files and updates
.PARAMETER Delete
Delete the "Windows Cleanup" scheduled task for cleaning up unused files and Windows updates
Delete the "Windows Cleanup" and "Windows Cleanup Notification" scheduled tasks for cleaning up Windows unused files and updates
.EXAMPLE
CleanUpTask -Register
CleanupTask -Register
.EXAMPLE
CleanUpTask -Delete
CleanupTask -Delete
.NOTES
A minute before the task starts, a warning in the Windows action center will appear
A native interactive toast notification pops up every 30 days
The task runs every 30 days
Current user
The task runs every 90 days
#>
function CleanUpTask
function CleanupTask
{
param
(
@ -8468,23 +8550,9 @@ function CleanUpTask
New-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\VolumeCaches\$VolumeCache" -Name StateFlags1337 -PropertyType DWord -Value 2 -Force
}
$TaskScript = @"
`$cleanmgr = """{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}\cleanmgr.exe"""
[Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime]
`$Template = [Windows.UI.Notifications.ToastNotificationManager]::GetTemplateContent([Windows.UI.Notifications.ToastTemplateType]::ToastText01)
`$ToastXML = [xml]`$Template.GetXml()
`$ToastXML.GetElementsByTagName("""text""").AppendChild(`$ToastXML.CreateTextNode("""$($Localization.CleanUpTaskToast)"""))
`$XML = New-Object -TypeName Windows.Data.Xml.Dom.XmlDocument
`$XML.LoadXml(`$ToastXML.OuterXml)
[Windows.UI.Notifications.ToastNotificationManager]::CreateToastNotifier(`$cleanmgr).Show(`$XML)
$CleanupTask = @"
Get-Process -Name cleanmgr | Stop-Process -Force
Start-Sleep -Seconds 60
`$ProcessInfo = New-Object -TypeName System.Diagnostics.ProcessStartInfo
`$ProcessInfo.FileName = """$env:SystemRoot\system32\cleanmgr.exe"""
`$ProcessInfo.Arguments = """/sagerun:1337"""
@ -8547,17 +8615,95 @@ while (`$true)
`$Process.Start() | Out-Null
"@
$Action = New-ScheduledTaskAction -Execute powershell.exe -Argument "-WindowStyle Hidden -Command $TaskScript"
$Trigger = New-ScheduledTaskTrigger -Daily -DaysInterval 90 -At 9am
# Create the "Windows Cleanup" task
$Action = New-ScheduledTaskAction -Execute powershell.exe -Argument "-WindowStyle Hidden -Command $CleanupTask"
$Settings = New-ScheduledTaskSettingsSet -Compatibility Win8 -StartWhenAvailable
$Principal = New-ScheduledTaskPrincipal -UserId $env:USERNAME -RunLevel Highest
$Description = $Localization.CleanUpTaskDescription
$Parameters = @{
"TaskName" = "Windows Cleanup"
"TaskPath" = "Sophia Script"
"Principal" = $Principal
"Action" = $Action
"Description" = $Description
"Description" = $Localization.CleanupTaskDescription
"Settings" = $Settings
}
Register-ScheduledTask @Parameters -Force
# Persist the Settings notifications to prevent to immediately disappear from Action Center
if (-not (Test-Path -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\windows.immersivecontrolpanel_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel"))
{
New-Item -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\windows.immersivecontrolpanel_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel" -Force
}
New-ItemProperty -Path "HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Notifications\Settings\windows.immersivecontrolpanel_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel" -Name ShowInActionCenter -PropertyType DWORD -Value 1 -Force
# Register the "WindowsCleanup" protocol to be able to run the scheduled task upon clicking on the "Run" button
if (-not (Test-Path -Path Registry::HKEY_CLASSES_ROOT\WindowsCleanup))
{
New-Item -Path Registry::HKEY_CLASSES_ROOT\WindowsCleanup -Force
}
New-itemproperty -Path Registry::HKEY_CLASSES_ROOT\WindowsCleanup -Name "(Default)" -PropertyType String -Value "url:WindowsCleanup" -Force
New-itemproperty -Path Registry::HKEY_CLASSES_ROOT\WindowsCleanup -Name "URL Protocol" -Value "" -Force
New-itemproperty -Path Registry::HKEY_CLASSES_ROOT\WindowsCleanup -Name EditFlags -PropertyType DWord -Value 2162688 -Force
if (-not (Test-Path -Path Registry::HKEY_CLASSES_ROOT\Shell\Open\command))
{
New-item -Path Registry::HKEY_CLASSES_ROOT\WindowsCleanup\Shell\Open\command -Force
}
# If "Run" clicked run the "Windows Cleanup" task
New-itemproperty -Path Registry::HKEY_CLASSES_ROOT\WindowsCleanup\Shell\Open\command -Name "(Default)" -PropertyType String -Value 'powershell.exe -Command "& {Start-ScheduledTask -TaskPath ''\Sophia Script\'' -TaskName ''Windows Cleanup''}"' -Force
$ToastNotification = @"
[Windows.UI.Notifications.ToastNotificationManager, Windows.UI.Notifications, ContentType = WindowsRuntime]
[Windows.Data.Xml.Dom.XmlDocument, Windows.Data.Xml.Dom.XmlDocument, ContentType = WindowsRuntime]
[xml]`$ToastTemplate = @"""
<toast duration="""Long""" scenario="""reminder""">
<visual>
<binding template="""ToastGeneric""">
<text>$($Localization.CleanupTaskNotificationTitle)</text>
<group>
<subgroup>
<text hint-style="""title""" hint-wrap="""true""">$($Localization.CleanupTaskNotificationEventTitle)</text>
</subgroup>
</group>
<group>
<subgroup>
<text hint-style="""body""" hint-wrap="""true""">$($Localization.CleanupTaskNotificationEvent)</text>
</subgroup>
</group>
</binding>
</visual>
<audio src="""ms-winsoundevent:notification.default""" />
<actions>
<input id="""SnoozeTimer""" type="""selection""" title="""$($Localization.CleanupTaskNotificationSnoozeInterval)""" defaultInput="""1""">
<selection id="""1""" content="""$($Localization.Minute)""" />
<selection id="""30""" content="""$($Localization.HalfHour)""" />
<selection id="""240""" content="""$($Localization.FourHours)""" />
</input>
<action activationType="""system""" arguments="""snooze""" hint-inputId="""SnoozeTimer""" content="""$($Localization.Snooze)""" id="""test-snooze"""/>
<action arguments="""WindowsCleanup:""" content="""$($Localization.Run)""" activationType="""protocol"""/>
<action arguments="""dismiss""" content="""$($Localization.Dismiss)""" activationType="""system"""/>
</actions>
</toast>
"""@
$`ToastXml = [Windows.Data.Xml.Dom.XmlDocument]::New()
$`ToastXml.LoadXml($`ToastTemplate.OuterXml)
$`ToastMessage = [Windows.UI.Notifications.ToastNotification]::New($`ToastXML)
[Windows.UI.Notifications.ToastNotificationManager]::CreateToastNotifier("""windows.immersivecontrolpanel_cw5n1h2txyewy!microsoft.windows.immersivecontrolpanel""").Show($`ToastMessage)
"@
# Create the "Windows Cleanup Notification" task
$Action = New-ScheduledTaskAction -Execute powershell.exe -Argument "-WindowStyle Hidden -Command $ToastNotification"
$Settings = New-ScheduledTaskSettingsSet -Compatibility Win8 -StartWhenAvailable
$Principal = New-ScheduledTaskPrincipal -UserId $env:USERNAME -RunLevel Highest
$Trigger = New-ScheduledTaskTrigger -Daily -DaysInterval 30 -At 9pm
$Parameters = @{
"TaskName" = "Windows Cleanup Notification"
"TaskPath" = "Sophia Script"
"Principal" = $Principal
"Action" = $Action
"Description" = $Localization.CleanupNotificationTaskDescription
"Settings" = $Settings
"Trigger" = $Trigger
}
@ -8566,6 +8712,7 @@ while (`$true)
"Delete"
{
Unregister-ScheduledTask -TaskName "Windows Cleanup" -Confirm:$false
Unregister-ScheduledTask -TaskName "Windows Cleanup Notification" -Confirm:$false
}
}
}
@ -8587,7 +8734,7 @@ while (`$true)
SoftwareDistributionTask -Delete
.NOTES
The task runs on Thursdays every 4 weeks
The task runs every 90 days
Current user
#>
function SoftwareDistributionTask
@ -8618,7 +8765,7 @@ function SoftwareDistributionTask
Get-ChildItem -Path $env:SystemRoot\SoftwareDistribution\Download -Recurse -Force | Remove-Item -Recurse -Force
"@
$Action = New-ScheduledTaskAction -Execute powershell.exe -Argument $Argument
$Trigger = New-JobTrigger -Weekly -WeeksInterval 4 -DaysOfWeek Thursday -At 9am
$Trigger = New-ScheduledTaskTrigger -Daily -DaysInterval 90 -At 9pm
$Settings = New-ScheduledTaskSettingsSet -Compatibility Win8 -StartWhenAvailable
$Principal = New-ScheduledTaskPrincipal -UserId "NT AUTHORITY\SYSTEM" -RunLevel Highest
$Description = $Localization.FolderTaskDescription -f "$env:SystemRoot\SoftwareDistribution\Download"
@ -8657,7 +8804,7 @@ Get-ChildItem -Path $env:SystemRoot\SoftwareDistribution\Download -Recurse -Forc
TempTask -Delete
.NOTES
The task runs every 62 days
The task runs every 60 days
Current user
#>
function TempTask
@ -8685,18 +8832,18 @@ function TempTask
{
$Argument = "Get-ChildItem -Path $env:TEMP -Force -Recurse | Remove-Item -Recurse -Force"
$Action = New-ScheduledTaskAction -Execute powershell.exe -Argument $Argument
$Trigger = New-ScheduledTaskTrigger -Daily -DaysInterval 62 -At 9am
$Trigger = New-ScheduledTaskTrigger -Daily -DaysInterval 60 -At 9pm
$Settings = New-ScheduledTaskSettingsSet -Compatibility Win8 -StartWhenAvailable
$Principal = New-ScheduledTaskPrincipal -UserId "NT AUTHORITY\SYSTEM" -RunLevel Highest
$Description = $Localization.FolderTaskDescription
$Parameters = @{
"TaskName" = "Temp"
"TaskPath" = "Sophia Script"
"Principal" = $Principal
"Action" = $Action
"Description" = $Description
"Settings" = $Settings
"Trigger" = $Trigger
"TaskName" = "Temp"
"TaskPath" = "Sophia Script"
"Principal" = $Principal
"Action" = $Action
"Description" = $Description
"Settings" = $Settings
"Trigger" = $Trigger
}
Register-ScheduledTask @Parameters -Force
}
@ -8818,7 +8965,7 @@ function RemoveAllowedAppsControlledFolder
# Add a folder to the exclusion from Microsoft Defender scanning
function AddDefenderExclusionFolder
{
$Title = $Localization.DefenderTitle
$Title = "Microsoft Defender"
$Message = $Localization.DefenderExclusionFolderRequest
$Add = $Localization.Add
$Skip = $Localization.Skip

191
Sophia/PowerShell 5.1/cn-CN/Sophia.psd1

@ -1,93 +1,102 @@
ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = 该脚本仅支持Windows 10 x64
UnsupportedOSBuild = 该脚本支持Windows 10版本2004 / 20H1和更高版本
UnsupportedRelease = 找到新版本
ControlledFolderAccessDisabled = 受控文件夹访问禁用
ScheduledTasks = 计划任务
OneDriveUninstalling = 卸载OneDrive
OneDriveNotEmptyFolder = "{0}"文件夹不为空手动将其删除
OneDriveFileSyncShell64dllBlocked = "{0}"被阻止手动将其删除
OneDriveInstalling = OneDrive正在安装...
OneDriveDownloading = 正在下载OneDrive ... ~33 MB
ClearFolder = 删除"{0}"文件夹中的所有文件?
FilesBlocked = 以下文件被第三方应用程序阻止手动删除它们并继续
TempNotEmpty = "{0}"文件夹不为空 手动清除
WindowsFeaturesTitle = Windows功能
OptionalFeaturesTitle = 可选功能
EnableHardwareVT = UEFI中开启虚拟化
UserShellFolderNotEmpty = 一些文件留在了"{0}"文件夹.请手动将它们移到一个新位置
RetrievingDrivesList = 取得驱动器列表
NewUserShellFolderLocation = 新位置"{0}"
DesktopDriveSelect = 请选择一个驱动器,桌面文件夹将创建在其根目录
DocumentsDriveSelect = 请选择一个驱动器,文档文件夹将创建在其根目录
DownloadsDriveSelect = 请选择一个驱动器,下载文件夹将创建在其根目录
MusicDriveSelect = 请选择一个驱动器,音乐文件夹将创建在其根目录
PicturesDriveSelect = 请选择一个驱动器,图片文件夹将创建在其根目录
VideosDriveSelect = 请选择一个驱动器,视频文件夹将创建在其根目录
DesktopRequest = 是否要更改桌面文件夹位置?
DocumentsRequest = 是否要更改文档文件夹位置?
DownloadsRequest = 是否要更改下载文件夹位置?
MusicRequest = 是否要更改音乐文件夹位置?
PicturesRequest = 是否要更改图片文件夹位置?
VideosRequest = 是否要更改视频文件夹位置?
DesktopFolderSelect = 桌面文件夹选择一个文件夹
DocumentsFolderSelect = 文档文件夹选择一个文件夹
DownloadsFolderSelect = 下载文件夹选择一个文件夹
MusicFolderSelect = 音乐文件夹选择一个文件夹
PicturesFolderSelect = 图片文件夹选择一个文件夹
VideosFolderSelect = 视频文件夹选择一个文件夹
DesktopDefaultFolder = 是否要将桌面文件夹位置改为默认值?
DocumentsDefaultFolder = 是否要将文档文件夹位置改为默认值?
DownloadsDefaultFolder = 是否要将下载文件夹位置改为默认值?
MusicDefaultFolder = 是否要将音乐文件夹位置改为默认值?
PicturesDefaultFolder = 是否要将图片文件夹位置改为默认值?
VideosDefaultFolder = 是否要将视频文件夹位置改为默认值?
ReservedStorageIsInUse = 保留存储空间正在使用时不支持此操作. 请等待所有服务操作完成后再重试
ShortcutPinning = "{0}"快捷方式将被固定到开始菜单
UninstallUWPForAll = 对于所有用户
UninstallUWPTitle = UWP应用
WSLUpdateDownloading = Linux内核更新包下载中 ~14 MB
WSLUpdateInstalling = 安装Linux内核更新包
HEVCDownloading = Downloading 来自设备制造商的 HEVC 视频扩展... ~2,8 MB
GraphicsPerformanceTitle = 图形性能偏好
GraphicsPerformanceRequest = 是否将所选应用程序的图形性能设置设为"高性能"?
CleanUpTaskToast = 将在一分钟内清理未使用的Windows文件和更新
CleanUpTaskDescription = 使用内置磁盘清理工具清理未使用的Windows文件和更新
FolderTaskDescription = 定时清理"{0}"
ControlledFolderAccess = 受控文件夹访问
ProtectedFoldersRequest = 是否启用受控文件夹访问权限并指定文件夹,由微软Defender保护其免受恶意应用程序威胁?
ProtectedFoldersListRemoved = 已被移除的文件夹
AppControlledFolderRequest = 是否指定应用获取受控文件夹访问权限?
AllowedControlledFolderAppsRemoved = 删除了允许的应用
DefenderTitle = Microsoft Defender
DefenderExclusionFolderRequest = 是否要添加指定文件夹到微软Defender的恶意软件扫描白名单?
DefenderExclusionFoldersListRemoved = 排除的文件夹已删除
AddDefenderExclusionFileRequest = 是否要添加指定文件到微软Defender的恶意软件扫描白名单?
DefenderExclusionFilesRemoved = 排除文件已删除
EventViewerCustomViewName = 进程创建
EventViewerCustomViewDescription = 进程创建和命令行审核事件
RestartWarning = 确保重启电脑
ErrorsLine =
ErrorsFile = 文件
ErrorsMessage = 错误/警告
Add = 添加
AllFilesFilter = 所有文件 (*.*)|*.*
Change = 更改
Continue = 接续
DialogBoxOpening = 显示对话窗口
Disable = 禁用
Enable = 启用
EXEFilesFilter = *.exe|*.exe|所有文件 (*.*)|*.*
FolderSelect = 选择一个文件夹
FilesWontBeMoved = 文件将不会被移动
NoData = 无数据
NoInternetConnection = 无网络连接
NoResponse = 无法建立https://store.rg-adguard.net连接
Patient = 请等待
Select = 选择
Skip = 跳过
Skipped = 已跳过
SymbolicSkipped = 跳过创建符号链接
Uninstall = 卸载
Install = 安装
UnsupportedOSBitness = 该脚本仅支持Windows 10 x64
UnsupportedOSBuild = 该脚本支持Windows 10版本2004/20H1和更高版本
UnsupportedRelease = 找到新版本
ControlledFolderAccessDisabled = 受控文件夹访问禁用
ScheduledTasks = 计划任务
OneDriveUninstalling = 卸载OneDrive
OneDriveNotEmptyFolder = "{0}"文件夹不为空手动将其删除
OneDriveFileSyncShell64dllBlocked = "{0}"被阻止手动将其删除
OneDriveInstalling = OneDrive正在安装......
OneDriveDownloading = 正在下载OneDrive...... ~33 MB
ClearFolder = 删除"{0}"文件夹中的所有文件
FilesBlocked = 以下文件被第三方应用程序阻止手动删除它们并继续
TempNotEmpty = "{0}"文件夹不为空 手动清除
WindowsFeaturesTitle = Windows功能
OptionalFeaturesTitle = 可选功能
EnableHardwareVT = UEFI中开启虚拟化
UserShellFolderNotEmpty = 一些文件留在了"{0}"文件夹请手动将它们移到一个新位置
RetrievingDrivesList = 取得驱动器列表
NewUserShellFolderLocation = 新位置"{0}"
DesktopDriveSelect = 请选择一个驱动器,桌面文件夹将创建在其根目录
DocumentsDriveSelect = 请选择一个驱动器,文档文件夹将创建在其根目录
DownloadsDriveSelect = 请选择一个驱动器,下载文件夹将创建在其根目录
MusicDriveSelect = 请选择一个驱动器,音乐文件夹将创建在其根目录
PicturesDriveSelect = 请选择一个驱动器,图片文件夹将创建在其根目录
VideosDriveSelect = 请选择一个驱动器,视频文件夹将创建在其根目录
DesktopRequest = 是否要更改桌面文件夹位置
DocumentsRequest = 是否要更改文档文件夹位置
DownloadsRequest = 是否要更改下载文件夹位置
MusicRequest = 是否要更改音乐文件夹位置
PicturesRequest = 是否要更改图片文件夹位置
VideosRequest = 是否要更改视频文件夹位置
DesktopFolderSelect = 桌面文件夹选择一个文件夹
DocumentsFolderSelect = 文档文件夹选择一个文件夹
DownloadsFolderSelect = 下载文件夹选择一个文件夹
MusicFolderSelect = 音乐文件夹选择一个文件夹
PicturesFolderSelect = 图片文件夹选择一个文件夹
VideosFolderSelect = 视频文件夹选择一个文件夹
DesktopDefaultFolder = 是否要将桌面文件夹位置改为默认值
DocumentsDefaultFolder = 是否要将文档文件夹位置改为默认值
DownloadsDefaultFolder = 是否要将下载文件夹位置改为默认值
MusicDefaultFolder = 是否要将音乐文件夹位置改为默认值
PicturesDefaultFolder = 是否要将图片文件夹位置改为默认值
VideosDefaultFolder = 是否要将视频文件夹位置改为默认值
ReservedStorageIsInUse = 保留存储空间正在使用时不支持此操作请等待所有服务操作完成后再重试
ShortcutPinning = "{0}"快捷方式将被固定到开始菜单
UninstallUWPForAll = 对于所有用户
UninstallUWPTitle = UWP应用
WSLUpdateDownloading = Linux内核更新包下载中 ~14 MB
WSLUpdateInstalling = 安装Linux内核更新包
HEVCDownloading = Downloading 来自设备制造商的 HEVC 视频扩展... ~2,8 MB
GraphicsPerformanceTitle = 图形性能偏好
GraphicsPerformanceRequest = 是否将所选应用程序的图形性能设置设为"高性能"
CleanupTaskDescription = 使用内置磁盘清理工具清理未使用的Windows文件和更新
CleanupTaskNotificationTitle = 重要信息
CleanupTaskNotificationEventTitle = 运行任务以清理Windows未使用的文件和更新
CleanupTaskNotificationEvent = Windows清理不会花很长时间下次通知将在30天内显示
CleanupTaskNotificationSnoozeInterval = 选择提醒间隔
CleanupNotificationTaskDescription = 关于清理Windows未使用的文件和更新的弹出通知提醒
FolderTaskDescription = 定时清理"{0}"
ControlledFolderAccess = 受控文件夹访问
ProtectedFoldersRequest = 是否启用受控文件夹访问权限并指定文件夹,由微软Defender保护其免受恶意应用程序威胁
ProtectedFoldersListRemoved = 已被移除的文件夹
AppControlledFolderRequest = 是否指定应用获取受控文件夹访问权限
AllowedControlledFolderAppsRemoved = 删除了允许的应用
DefenderExclusionFolderRequest = 是否要添加指定文件夹到微软Defender的恶意软件扫描白名单
DefenderExclusionFoldersListRemoved = 排除的文件夹已删除
AddDefenderExclusionFileRequest = 是否要添加指定文件到微软Defender的恶意软件扫描白名单
DefenderExclusionFilesRemoved = 排除文件已删除
EventViewerCustomViewName = 进程创建
EventViewerCustomViewDescription = 进程创建和命令行审核事件
RestartWarning = 确保重启电脑
ErrorsLine =
ErrorsFile = 文件
ErrorsMessage = 错误/警告
Add = 添加
AllFilesFilter = 所有文件 (*.*)|*.*
Change = 更改
Continue = 接续
DialogBoxOpening = 显示对话窗口
Disable = 禁用
Dismiss = 解雇
Enable = 启用
EXEFilesFilter = *.exe|*.exe|所有文件 (*.*)|*.*
FolderSelect = 选择一个文件夹
FilesWontBeMoved = 文件将不会被移动
Minute = 1分钟
NoData = 无数据
NoInternetConnection = 无网络连接
NoResponse = 无法建立https://store.rg-adguard.net连接
Patient = 请等待
Run = 运行
Select = 选择
Skip = 跳过
Skipped = 已跳过
Snooze = 推迟
SymbolicSkipped = 跳过创建符号链接
Uninstall = 卸载
Install = 安装
HalfHour = 30分钟
FourHours = 4个小时
'@

191
Sophia/PowerShell 5.1/de-DE/Sophia.psd1

@ -1,93 +1,102 @@
ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Das Skript unterstützt nur Windows 10 x64
UnsupportedOSBuild = Das Skript unterstützt Windows 10 2004 / 20H1-Versionen und höher
UnsupportedRelease = Neue Version gefunden
ControlledFolderAccessDisabled = Kontrollierter Ordnerzugriff deaktiviert
ScheduledTasks = Geplante Aufgaben
OneDriveUninstalling = Deinstalliere OneDrive...
OneDriveNotEmptyFolder = Der Ordner "{0}" ist nicht leer. Löschen Sie es manuell
OneDriveFileSyncShell64dllBlocked = "{0}" ist blockiert. Löschen Sie es manuell
OneDriveInstalling = OneDrive wird installiert...
OneDriveDownloading = OneDrive herunterladen... ~33 MB
ClearFolder = Löscht alle Dateien im Ordner "{0}"?
FilesBlocked = Die folgenden Dateien werden von Apps von Drittanbietern blockiert. 'nEntfernen Sie sie manuell und fahren Sie fort
TempNotEmpty = Der Ordner "{0}" ist nicht leer. Löschen Sie ihn manuell
WindowsFeaturesTitle = Windows Eigenschaften
OptionalFeaturesTitle = Optionale Eigenschaften
EnableHardwareVT = Virtualisierung in UEFI aktivieren
UserShellFolderNotEmpty = Einige im Ordner "{0}" verbliebene Dateien `nVerschieben Sie sie manuell an einen neuen Ort
RetrievingDrivesList = Abrufen der Laufwerksliste...
NewUserShellFolderLocation = Neuer Standort: "{0}"
DesktopDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Desktop-Ordner erstellt werden soll
DocumentsDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner "Dokumente" erstellt werden soll
DownloadsDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner Downloads erstellt wird
MusicDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner "Musik" erstellt wird
PicturesDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner "Bilder" erstellt werden soll
VideosDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner Videos erstellt wird
DesktopRequest = Möchten Sie den Speicherort des Desktop-Ordners ändern?
DocumentsRequest = Möchten Sie den Speicherort des Ordners Dokumente ändern?
DownloadsRequest = Möchten Sie den Speicherort des Ordners Downloads ändern?
MusicRequest = Möchten Sie den Speicherort des Ordners Musik ändern?
PicturesRequest = Möchten Sie den Speicherort des Ordners Bilder ändern?
VideosRequest = Möchten Sie den Speicherort des Ordners Videos ändern?
DesktopFolderSelect = Wählen Sie einen Ordner für den Ordner Desktop
DocumentsFolderSelect = Wählen Sie einen Ordner für den Ordner Dokumente
DownloadsFolderSelect = Wählen Sie einen Ordner für den Ordner Downloads
MusicFolderSelect = Wählen Sie einen Ordner für den Ordner Musik
PicturesFolderSelect = Wählen Sie einen Ordner für den Ordner Bilder aus
VideosFolderSelect = Wählen Sie einen Ordner für den Ordner Videos
DesktopDefaultFolder = Möchten Sie den Speicherort des Desktop-Ordners auf den Standardwert ändern?
DocumentsDefaultFolder = Möchten Sie den Speicherort des Ordners Dokumente auf den Standardwert ändern?
DownloadsDefaultFolder = Möchten Sie den Speicherort des Ordners Downloads auf den Standardwert ändern?
MusicDefaultFolder = Möchten Sie den Speicherort des Ordners Musik auf den Standardwert ändern?
PicturesDefaultFolder = Möchten Sie den Speicherort des Ordners "Bilder" auf den Standardwert ändern?
VideosDefaultFolder = Möchten Sie den Speicherort des Ordners Videos auf den Standardwert ändern?
ReservedStorageIsInUse = Dieser Vorgang wird nicht unterstützt, wenn reservierter Speicher verwendet wird `nBitte warten Sie, bis alle Wartungsvorgänge abgeschlossen sind, und versuchen Sie es dann später erneut
ShortcutPinning = Die Verknüpfung "{0}" wird an Start angeheftet
UninstallUWPForAll = Für alle Benutzer
UninstallUWPTitle = UWP-Pakete
WSLUpdateDownloading = Herunterladen des Update-Pakets für den Linux-Kernel... ~14 MB
WSLUpdateInstalling = Installation des Aktualisierungspakets für den Linux-Kernel...
HEVCDownloading = Herunterladen von HEVC-Videoerweiterungen vom Gerätehersteller... ~2,8 MB
GraphicsPerformanceTitle = Bevorzugte Grafikleistung
GraphicsPerformanceRequest = Möchten Sie die Einstellung der Grafikleistung einer App Ihrer Wahl auf "Hohe Leistung" setzen?
CleanUpTaskToast = Das Bereinigen ungenutzter Windows-Dateien und Updates beginnt in einer Minute
CleanUpTaskDescription = Bereinigung ungenutzter Windows-Dateien und -Updates mit der integrierten Festplatten-Bereinigungsanwendung
FolderTaskDescription = Die "{0}"-Ordnerbereinigung
ControlledFolderAccess = Kontrollierter Ordner-Zugriff
ProtectedFoldersRequest = Möchten Sie den kontrollierten Ordnerzugriff aktivieren und den Ordner angeben, den Microsoft Defender vor bösartigen Anwendungen und Bedrohungen schützen soll?
ProtectedFoldersListRemoved = Gelöschte Ordner
AppControlledFolderRequest = Möchten Sie eine Anwendung angeben, die über den Zugriff auf Kontrollierte Ordner erlaubt ist?
AllowedControlledFolderAppsRemoved = Erlaubte Anwendungen entfernt
DefenderTitle = Microsoft Defender
DefenderExclusionFolderRequest = Möchten Sie einen Ordner angeben, der von den Malware-Scans von Microsoft Defender ausgeschlossen werden soll?
DefenderExclusionFoldersListRemoved = Ausgeschlossene Ordner entfernt
AddDefenderExclusionFileRequest = Möchten Sie eine Datei angeben, die von den Malware-Scans von Microsoft Defender ausgeschlossen werden soll?
DefenderExclusionFilesRemoved = Ausgeschlossene Dateien entfernt
EventViewerCustomViewName = Prozess-Erstellung
EventViewerCustomViewDescription = Ereignisse zur Prozesserstellung und Befehlszeilen-Auditierung
RestartWarning = Achten Sie darauf, Ihren PC neu zu starten
ErrorsLine = Zeile
ErrorsFile = Datei
ErrorsMessage = Fehler/Warnungen
Add = Hinzufügen
AllFilesFilter = Alle Dateien (*.*)|*.*
Change = Ändern
Continue = Fortfahren
DialogBoxOpening = Anzeigen des Dialogfensters...
Disable = Deaktivieren
Enable = Aktivieren
EXEFilesFilter = *.exe|*.exe|Alle Dateien (*.*)|*.*
FolderSelect = Wählen Sie einen Ordner aus
FilesWontBeMoved = Dateien werden nicht verschoben
NoData = Nichts anzuzeigen
NoInternetConnection = Keine Internetverbindung
NoResponse = Eine Verbindung mit https://store.rg-adguard.net konnte nicht hergestellt werden
Patient = Bitte Warten...
Select = Wählen Sie
Skip = Überspringen
Skipped = Übersprungen
SymbolicSkipped = Das Erstellen eines symbolischen Links wurde übersprungen
Uninstall = Deinstallieren
Install = Installieren
UnsupportedOSBitness = Das Skript unterstützt nur Windows 10 x64
UnsupportedOSBuild = Das Skript unterstützt Windows 10 2004 / 20H1-Versionen und höher
UnsupportedRelease = Neue Version gefunden
ControlledFolderAccessDisabled = Kontrollierter Ordnerzugriff deaktiviert
ScheduledTasks = Geplante Aufgaben
OneDriveUninstalling = Deinstalliere OneDrive...
OneDriveNotEmptyFolder = Der Ordner "{0}" ist nicht leer. Löschen Sie es manuell
OneDriveFileSyncShell64dllBlocked = "{0}" ist blockiert. Löschen Sie es manuell
OneDriveInstalling = OneDrive wird installiert...
OneDriveDownloading = OneDrive herunterladen... ~33 MB
ClearFolder = Löscht alle Dateien im Ordner "{0}"?
FilesBlocked = Die folgenden Dateien werden von Apps von Drittanbietern blockiert. 'nEntfernen Sie sie manuell und fahren Sie fort
TempNotEmpty = Der Ordner "{0}" ist nicht leer. Löschen Sie ihn manuell
WindowsFeaturesTitle = Windows Eigenschaften
OptionalFeaturesTitle = Optionale Eigenschaften
EnableHardwareVT = Virtualisierung in UEFI aktivieren
UserShellFolderNotEmpty = Einige im Ordner "{0}" verbliebene Dateien \nVerschieben Sie sie manuell an einen neuen Ort
RetrievingDrivesList = Abrufen der Laufwerksliste...
NewUserShellFolderLocation = Neuer Standort: "{0}"
DesktopDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Desktop-Ordner erstellt werden soll
DocumentsDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner "Dokumente" erstellt werden soll
DownloadsDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner Downloads erstellt wird
MusicDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner "Musik" erstellt wird
PicturesDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner "Bilder" erstellt werden soll
VideosDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner Videos erstellt wird
DesktopRequest = Möchten Sie den Speicherort des Desktop-Ordners ändern?
DocumentsRequest = Möchten Sie den Speicherort des Ordners Dokumente ändern?
DownloadsRequest = Möchten Sie den Speicherort des Ordners Downloads ändern?
MusicRequest = Möchten Sie den Speicherort des Ordners Musik ändern?
PicturesRequest = Möchten Sie den Speicherort des Ordners Bilder ändern?
VideosRequest = Möchten Sie den Speicherort des Ordners Videos ändern?
DesktopFolderSelect = Wählen Sie einen Ordner für den Ordner Desktop
DocumentsFolderSelect = Wählen Sie einen Ordner für den Ordner Dokumente
DownloadsFolderSelect = Wählen Sie einen Ordner für den Ordner Downloads
MusicFolderSelect = Wählen Sie einen Ordner für den Ordner Musik
PicturesFolderSelect = Wählen Sie einen Ordner für den Ordner Bilder aus
VideosFolderSelect = Wählen Sie einen Ordner für den Ordner Videos
DesktopDefaultFolder = Möchten Sie den Speicherort des Desktop-Ordners auf den Standardwert ändern?
DocumentsDefaultFolder = Möchten Sie den Speicherort des Ordners Dokumente auf den Standardwert ändern?
DownloadsDefaultFolder = Möchten Sie den Speicherort des Ordners Downloads auf den Standardwert ändern?
MusicDefaultFolder = Möchten Sie den Speicherort des Ordners Musik auf den Standardwert ändern?
PicturesDefaultFolder = Möchten Sie den Speicherort des Ordners "Bilder" auf den Standardwert ändern?
VideosDefaultFolder = Möchten Sie den Speicherort des Ordners Videos auf den Standardwert ändern?
ReservedStorageIsInUse = Dieser Vorgang wird nicht unterstützt, wenn reservierter Speicher verwendet wird \nBitte warten Sie, bis alle Wartungsvorgänge abgeschlossen sind, und versuchen Sie es dann später erneut
ShortcutPinning = Die Verknüpfung "{0}" wird an Start angeheftet
UninstallUWPForAll = Für alle Benutzer
UninstallUWPTitle = UWP-Pakete
WSLUpdateDownloading = Herunterladen des Update-Pakets für den Linux-Kernel... ~14 MB
WSLUpdateInstalling = Installation des Aktualisierungspakets für den Linux-Kernel...
HEVCDownloading = Herunterladen von HEVC-Videoerweiterungen vom Gerätehersteller... ~2,8 MB
GraphicsPerformanceTitle = Bevorzugte Grafikleistung
GraphicsPerformanceRequest = Möchten Sie die Einstellung der Grafikleistung einer App Ihrer Wahl auf "Hohe Leistung" setzen?
CleanupTaskDescription = Bereinigung ungenutzter Windows-Dateien und -Updates mit der integrierten Festplatten-Bereinigungsanwendung
CleanupTaskNotificationTitle = Wichtige informationen
CleanupTaskNotificationEventTitle = Aufgabe ausführen, um nicht verwendete Windows-Dateien und -Updates zu bereinigen?
CleanupTaskNotificationEvent = Die Windows-Bereinigung dauert nicht lange. Das nächste Mal wird die Benachrichtigung in 30 Tagen angezeigt
CleanupTaskNotificationSnoozeInterval = Wählen Sie ein Erinnerungsintervall
CleanupNotificationTaskDescription = Bereinigung ungenutzter Windows-Dateien und -Updates mit der integrierten Festplatten-Bereinigungsanwendung
FolderTaskDescription = Die "{0}"-Ordnerbereinigung
ControlledFolderAccess = Kontrollierter Ordner-Zugriff
ProtectedFoldersRequest = Möchten Sie den kontrollierten Ordnerzugriff aktivieren und den Ordner angeben, den Microsoft Defender vor bösartigen Anwendungen und Bedrohungen schützen soll?
ProtectedFoldersListRemoved = Gelöschte Ordner
AppControlledFolderRequest = Möchten Sie eine Anwendung angeben, die über den Zugriff auf Kontrollierte Ordner erlaubt ist?
AllowedControlledFolderAppsRemoved = Erlaubte Anwendungen entfernt
DefenderExclusionFolderRequest = Möchten Sie einen Ordner angeben, der von den Malware-Scans von Microsoft Defender ausgeschlossen werden soll?
DefenderExclusionFoldersListRemoved = Ausgeschlossene Ordner entfernt
AddDefenderExclusionFileRequest = Möchten Sie eine Datei angeben, die von den Malware-Scans von Microsoft Defender ausgeschlossen werden soll?
DefenderExclusionFilesRemoved = Ausgeschlossene Dateien entfernt
EventViewerCustomViewName = Prozess-Erstellung
EventViewerCustomViewDescription = Ereignisse zur Prozesserstellung und Befehlszeilen-Auditierung
RestartWarning = Achten Sie darauf, Ihren PC neu zu starten
ErrorsLine = Zeile
ErrorsFile = Datei
ErrorsMessage = Fehler/Warnungen
Add = Hinzufügen
AllFilesFilter = Alle Dateien (*.*)|*.*
Change = Ändern
Continue = Fortfahren
DialogBoxOpening = Anzeigen des Dialogfensters...
Disable = Deaktivieren
Dismiss = Stornieren
Enable = Aktivieren
EXEFilesFilter = *.exe|*.exe|Alle Dateien (*.*)|*.*
FolderSelect = Wählen Sie einen Ordner aus
FilesWontBeMoved = Dateien werden nicht verschoben
Minute = 1 Minute
NoData = Nichts anzuzeigen
NoInternetConnection = Keine Internetverbindung
NoResponse = Eine Verbindung mit https://store.rg-adguard.net konnte nicht hergestellt werden
Patient = Bitte Warten...
Run = Starten
Select = Wählen Sie
Skip = Überspringen
Skipped = Übersprungen
Snooze = Verschieben
SymbolicSkipped = Das Erstellen eines symbolischen Links wurde übersprungen
Uninstall = Deinstallieren
Install = Installieren
HalfHour = 30 Minuten
FourHours = 4 Stunden
'@

191
Sophia/PowerShell 5.1/en-US/Sophia.psd1

@ -1,93 +1,102 @@
ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = The script supports Windows 10 x64 only
UnsupportedOSBuild = The script supports Windows 10 2004/20H1 versions and higher
UnsupportedRelease = New version found
ControlledFolderAccessDisabled = Controlled folder access disabled
ScheduledTasks = Scheduled tasks
OneDriveUninstalling = Uninstalling OneDrive...
OneDriveNotEmptyFolder = The "{0}" folder is not empty. Delete it manually
OneDriveFileSyncShell64dllBlocked = "{0}" is blocked. Delete it manually
OneDriveInstalling = OneDrive is installing...
OneDriveDownloading = Downloading OneDrive... ~33 MB
ClearFolder = Delete all files in the "{0}" folder?
FilesBlocked = The following files are being blocked by third-party party apps. Remove them manually and continue
TempNotEmpty = The "{0}" folder is not empty. Clear it manually
WindowsFeaturesTitle = Windows features
OptionalFeaturesTitle = Optional features
EnableHardwareVT = Enable Virtualization in UEFI
UserShellFolderNotEmpty = Some files left in the "{0}" folder. Move them manually to a new location
RetrievingDrivesList = Retrieving drives list...
NewUserShellFolderLocation = New location: "{0}"
DesktopDriveSelect = Select the drive within the root of which the Desktop folder will be created
DocumentsDriveSelect = Select the drive within the root of which the Documents folder will be created
DownloadsDriveSelect = Select the drive within the root of which the Downloads folder will be created
MusicDriveSelect = Select the drive within the root of which the Music folder will be created
PicturesDriveSelect = Select the drive within the root of which the Pictures folder will be created
VideosDriveSelect = Select the drive within the root of which the Videos folder will be created
DesktopRequest = Would you like to change the location of the Desktop folder?
DocumentsRequest = Would you like to change the location of the Documents folder?
DownloadsRequest = Would you like to change the location of the Downloads folder?
MusicRequest = Would you like to change the location of the Music folder?
PicturesRequest = Would you like to change the location of the Pictures folder?
VideosRequest = Would you like to change the location of the Videos folder?
DesktopFolderSelect = Select a folder for the Desktop folder
DocumentsFolderSelect = Select a folder for the Documents folder
DownloadsFolderSelect = Select a folder for the Downloads folder
MusicFolderSelect = Select a folder for the Music folder
PicturesFolderSelect = Select a folder for the Pictures folder
VideosFolderSelect = Select a folder for the Videos folder
DesktopDefaultFolder = Would you like to change the location of the Desktop folder to the default value?
DocumentsDefaultFolder = Would you like to change the location of the Documents folder to the default value?
DownloadsDefaultFolder = Would you like to change the location of the Downloads folder to the default value?
MusicDefaultFolder = Would you like to change the location of the Music folder to the default value?
PicturesDefaultFolder = Would you like to change the location of the Pictures folder to the default value?
VideosDefaultFolder = Would you like to change the location of the Videos folder to the default value?
ReservedStorageIsInUse = This operation is not supported when reserved storage is in use\nPlease wait for any servicing operations to complete and then try again later
ShortcutPinning = The "{0}" shortcut is being pinned to Start
UninstallUWPForAll = For All Users
UninstallUWPTitle = UWP Apps
WSLUpdateDownloading = Downloading the Linux kernel update package... ~14 MB
WSLUpdateInstalling = Installing the Linux kernel update package...
HEVCDownloading = Downloading HEVC Video Extensions from Device Manufacturer... ~2,8 MB
GraphicsPerformanceTitle = Graphics performance preference
GraphicsPerformanceRequest = Would you like to set the graphics performance setting of an app of your choice to "High performance"?
CleanUpTaskToast = Cleaning up unused Windows files and updates starts in a minute
CleanUpTaskDescription = Cleaning up unused Windows files and updates using built-in Disk cleanup app
FolderTaskDescription = The "{0}" folder cleaning
ControlledFolderAccess = Controlled folder access
ProtectedFoldersRequest = Would you like to enable Controlled folder access and specify the folder that Microsoft Defender will protect from malicious apps and threats?
ProtectedFoldersListRemoved = Removed folders
AppControlledFolderRequest = Would you like to specify an app that is allowed through Controlled Folder access?
AllowedControlledFolderAppsRemoved = Removed allowed apps
DefenderTitle = Microsoft Defender
DefenderExclusionFolderRequest = Would you like to specify a folder to be excluded from Microsoft Defender malware scans?
DefenderExclusionFoldersListRemoved = Excluded folders removed
AddDefenderExclusionFileRequest = Would you like to specify a file to be excluded from Microsoft Defender malware scans?
DefenderExclusionFilesRemoved = Excluded files removed
EventViewerCustomViewName = Process Creation
EventViewerCustomViewDescription = Process creation and command-line auditing events
RestartWarning = Make sure to restart your PC
ErrorsLine = Line
ErrorsFile = File
ErrorsMessage = Errors/Warnings
Add = Add
AllFilesFilter = All Files (*.*)|*.*
Change = Change
Continue = Continue
DialogBoxOpening = Displaying the dialog box...
Disable = Disable
Enable = Enable
EXEFilesFilter = *.exe|*.exe|All Files (*.*)|*.*
FolderSelect = Select a folder
FilesWontBeMoved = Files will not be moved
NoData = Nothing to display
NoInternetConnection = No Internet connection
NoResponse = A connection could not be established with https://store.rg-adguard.net
Patient = Please wait...
Select = Select
Skip = Skip
Skipped = Skipped
SymbolicSkipped = Skipped creating a symbolic link
Uninstall = Uninstall
Install = Install
UnsupportedOSBitness = The script supports Windows 10 x64 only
UnsupportedOSBuild = The script supports Windows 10 2004/20H1 versions and higher
UnsupportedRelease = New version found
ControlledFolderAccessDisabled = Controlled folder access disabled
ScheduledTasks = Scheduled tasks
OneDriveUninstalling = Uninstalling OneDrive...
OneDriveNotEmptyFolder = The "{0}" folder is not empty. Delete it manually
OneDriveFileSyncShell64dllBlocked = "{0}" is blocked. Delete it manually
OneDriveInstalling = OneDrive is installing...
OneDriveDownloading = Downloading OneDrive... ~33 MB
ClearFolder = Delete all files in the "{0}" folder?
FilesBlocked = The following files are being blocked by third-party party apps. Remove them manually and continue
TempNotEmpty = The "{0}" folder is not empty. Clear it manually
WindowsFeaturesTitle = Windows features
OptionalFeaturesTitle = Optional features
EnableHardwareVT = Enable Virtualization in UEFI
UserShellFolderNotEmpty = Some files left in the "{0}" folder. Move them manually to a new location
RetrievingDrivesList = Retrieving drives list...
NewUserShellFolderLocation = New location: "{0}"
DesktopDriveSelect = Select the drive within the root of which the Desktop folder will be created
DocumentsDriveSelect = Select the drive within the root of which the Documents folder will be created
DownloadsDriveSelect = Select the drive within the root of which the Downloads folder will be created
MusicDriveSelect = Select the drive within the root of which the Music folder will be created
PicturesDriveSelect = Select the drive within the root of which the Pictures folder will be created
VideosDriveSelect = Select the drive within the root of which the Videos folder will be created
DesktopRequest = Would you like to change the location of the Desktop folder?
DocumentsRequest = Would you like to change the location of the Documents folder?
DownloadsRequest = Would you like to change the location of the Downloads folder?
MusicRequest = Would you like to change the location of the Music folder?
PicturesRequest = Would you like to change the location of the Pictures folder?
VideosRequest = Would you like to change the location of the Videos folder?
DesktopFolderSelect = Select a folder for the Desktop folder
DocumentsFolderSelect = Select a folder for the Documents folder
DownloadsFolderSelect = Select a folder for the Downloads folder
MusicFolderSelect = Select a folder for the Music folder
PicturesFolderSelect = Select a folder for the Pictures folder
VideosFolderSelect = Select a folder for the Videos folder
DesktopDefaultFolder = Would you like to change the location of the Desktop folder to the default value?
DocumentsDefaultFolder = Would you like to change the location of the Documents folder to the default value?
DownloadsDefaultFolder = Would you like to change the location of the Downloads folder to the default value?
MusicDefaultFolder = Would you like to change the location of the Music folder to the default value?
PicturesDefaultFolder = Would you like to change the location of the Pictures folder to the default value?
VideosDefaultFolder = Would you like to change the location of the Videos folder to the default value?
ReservedStorageIsInUse = This operation is not supported when reserved storage is in use\nPlease wait for any servicing operations to complete and then try again later
ShortcutPinning = The "{0}" shortcut is being pinned to Start
UninstallUWPForAll = For All Users
UninstallUWPTitle = UWP Apps
WSLUpdateDownloading = Downloading the Linux kernel update package... ~14 MB
WSLUpdateInstalling = Installing the Linux kernel update package...
HEVCDownloading = Downloading HEVC Video Extensions from Device Manufacturer... ~2,8 MB
GraphicsPerformanceTitle = Graphics performance preference
GraphicsPerformanceRequest = Would you like to set the graphics performance setting of an app of your choice to "High performance"?
CleanupTaskDescription = Cleaning up Windows unused files and updates using built-in Disk cleanup app
CleanupTaskNotificationTitle = Important Information
CleanupTaskNotificationEventTitle = Run task to clean up Windows unused files and updates?
CleanupTaskNotificationEvent = Windows cleanup won't take long. Next time this notification will appear in 30 days
CleanupTaskNotificationSnoozeInterval = Select a Reminder Interval
CleanupNotificationTaskDescription = Pop-up notification reminder about cleaning up Windows unused files and updates
FolderTaskDescription = The "{0}" folder cleaning
ControlledFolderAccess = Controlled folder access
ProtectedFoldersRequest = Would you like to enable Controlled folder access and specify the folder that Microsoft Defender will protect from malicious apps and threats?
ProtectedFoldersListRemoved = Removed folders
AppControlledFolderRequest = Would you like to specify an app that is allowed through Controlled Folder access?
AllowedControlledFolderAppsRemoved = Removed allowed apps
DefenderExclusionFolderRequest = Would you like to specify a folder to be excluded from Microsoft Defender malware scans?
DefenderExclusionFoldersListRemoved = Excluded folders removed
AddDefenderExclusionFileRequest = Would you like to specify a file to be excluded from Microsoft Defender malware scans?
DefenderExclusionFilesRemoved = Excluded files removed
EventViewerCustomViewName = Process Creation
EventViewerCustomViewDescription = Process creation and command-line auditing events
RestartWarning = Make sure to restart your PC
ErrorsLine = Line
ErrorsFile = File
ErrorsMessage = Errors/Warnings
Add = Add
AllFilesFilter = All Files (*.*)|*.*
Change = Change
Continue = Continue
DialogBoxOpening = Displaying the dialog box...
Disable = Disable
Dismiss = Dismiss
Enable = Enable
EXEFilesFilter = *.exe|*.exe|All Files (*.*)|*.*
FolderSelect = Select a folder
FilesWontBeMoved = Files will not be moved
Minute = 1 Minute
NoData = Nothing to display
NoInternetConnection = No Internet connection
NoResponse = A connection could not be established with https://store.rg-adguard.net
Patient = Please wait...
Run = Run
Select = Select
Skip = Skip
Skipped = Skipped
Snooze = Snooze
SymbolicSkipped = Skipped creating a symbolic link
Uninstall = Uninstall
Install = Install
HalfHour = 30 Minutes
FourHours = 4 Hours
'@

191
Sophia/PowerShell 5.1/es-ES/Sophia.psd1

@ -1,93 +1,102 @@
ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Este script solo soporta Windows 10 x64
UnsupportedOSBuild = Este script solo soporta Windows 10 2004/20H1 o superior
UnsupportedRelease = Nueva versión encontrada
ControlledFolderAccessDisabled = Acceso a carpetas controlado desactivado
ScheduledTasks = Tareas programadas
OneDriveUninstalling = Desinstalando OneDrive...
OneDriveNotEmptyFolder = El directorio "{0}" no está vacío. Elimínelo manualmente
OneDriveFileSyncShell64dllBlocked = "{0}" está bloqueado. Elimínelo manualmente
OneDriveInstalling = OneDrive se está instalando...
OneDriveDownloading = Descargando OneDrive... ~33 MB
ClearFolder = Elimine todos los archivos en la carpeta "{0}"?
FilesBlocked = Los siguientes archivos están siendo bloqueados por una aplicación de terceros. Elimínelos manualmente y continúe
TempNotEmpty = La carpeta "{0}" no está vacía. Límpiela manualmente
WindowsFeaturesTitle = Características de Windows
OptionalFeaturesTitle = Características opcionales
EnableHardwareVT = Activar virtualización en UEFI
UserShellFolderNotEmpty = Quedan algunos archivos en la carpeta "{0}". Muévalos manualmente a la nueva ubicación
RetrievingDrivesList = Recuperando lista de unidades de disco...
NewUserShellFolderLocation = Nueva ubicación: "{0}"
DesktopDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta del Escritorio
DocumentsDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Documentos
DownloadsDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Descargas
MusicDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Música
PicturesDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Imágenes
VideosDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Vídeos
DesktopRequest = Quieres cambiar la ubicación de la carpeta del Escritorio?
DocumentsRequest = Quieres cambiar la ubicación de la carpeta de Documentos?
DownloadsRequest = Quieres cambiar la ubicación de la carpeta de Descargas?
MusicRequest = Quieres cambiar la ubicación de la carpeta de Música?
PicturesRequest = Quieres cambiar la ubicación de la carpeta de Imágenes?
VideosRequest = Quieres cambiar la ubicación de la carpeta de Vídeos?
DesktopFolderSelect = Selecciona una carpeta para la carpeta del Escritorio
DocumentsFolderSelect = Selecciona una carpeta para la carpeta de Documentos
DownloadsFolderSelect = Selecciona una carpeta para la carpeta de Descargas
MusicFolderSelect = Selecciona una carpeta para la carpeta de Música
PicturesFolderSelect = Selecciona una carpeta para la carpeta de Imágenes
VideosFolderSelect = Selecciona una carpeta para la carpeta de Vídeos
DesktopDefaultFolder = Quieres cambiar la ubicación de la carpeta del Escritorio por la de defecto?
DocumentsDefaultFolder = Quieres cambiar la ubicación de la carpeta de Documentos por la de defecto?
DownloadsDefaultFolder = Quieres cambiar la ubicación de la carpeta de Descargas por la de defecto?
MusicDefaultFolder = Quieres cambiar la ubicación de la carpeta de Música por la de defecto?
PicturesDefaultFolder = Quieres cambiar la ubicación de la carpeta de Imágenes por la de defecto?
VideosDefaultFolder = Quieres cambiar la ubicación de la carpeta de Vídeos por la de defecto?
ReservedStorageIsInUse = Esta operación no está disponible cuando el almacenamiento reservado está en uso\nPorfavor, espere a que se complete alguna operación de algún servicio e inténtelo de nuevo más tarde
ShortcutPinning = El acceso directo "{0}" se está acoplando al inicio
UninstallUWPForAll = Para todas las usuarias
UninstallUWPTitle = Aplicaciones UWP
WSLUpdateDownloading = Descargando el paquete de actualización del kernel de Linux... ~14 MB
WSLUpdateInstalling = Instalando el paquete de actualización del kernel de Linux...
HEVCDownloading = Descargando Extensiones de vídeo HEVC del fabricante del dispositivo... ~2,8 MB
GraphicsPerformanceTitle = Preferencia de rendimiento de gráficos
GraphicsPerformanceRequest = Quieres establecer el nivel de rendimiento de gráficos a "Alto rendimiento" en alguna aplicación?
CleanUpTaskToast = Limpiando archivos no usados y actualizaciones de Windows comienza en un minuto
CleanUpTaskDescription = Limpiando archivos de Windows no usados y actualizaciones usando la aplicación de limpieza de disco incorporada
FolderTaskDescription = Limpieza de la carpeta "{0}"
ControlledFolderAccess = Acceso controlado a carpetas
ProtectedFoldersRequest = Quieres añadir control de acceso a carpeta y especificar que carpeta Microsoft Defender protegerá de aplicaciones maliciosas y amenazas?
ProtectedFoldersListRemoved = Carpetas eliminadas
AppControlledFolderRequest = Quieres especificar una aplicación para que sea permitida a través del acceso controlado de carpetas?
AllowedControlledFolderAppsRemoved = Eliminar aplicaciones permitidas
DefenderTitle = Microsoft Defender
DefenderExclusionFolderRequest = Quieres especificar una carpeta para ser excluida por Microsoft Defender?
DefenderExclusionFoldersListRemoved = Quitadas carpetas excluidas
AddDefenderExclusionFileRequest = Quieres especificar un archivo para ser excluido por Microsoft Defender?
DefenderExclusionFilesRemoved = Quitados archivos excluidos
EventViewerCustomViewName = Creación de procesos
EventViewerCustomViewDescription = Creación de procesos y eventos de auditoria de línea de comandos
RestartWarning = Asegúrese de reiniciar su PC
ErrorsLine = Línea
ErrorsFile = Archivo
ErrorsMessage = Errores/Advertencias
Add = Añadir
AllFilesFilter = Tutti i file (*.*)|*.*
Change = Cambiar
Continue = Continuar
DialogBoxOpening = Mostrando caja de diálogo...
Disable = Desactivar
Enable = Activar
EXEFilesFilter = *.exe|*.exe|Todos los Archivos (*.*)|*.*
FolderSelect = Seleccione una carpeta
FilesWontBeMoved = Los archivos no se moverán
NoData = Nada que mostrar
NoInternetConnection = No hay conexión a Internet
NoResponse = No se pudo establecer una conexión con https://store.rg-adguard.net
Patient = Por favor espere...
Select = Seleccionar
Skip = Omitir
Skipped = Omitido
SymbolicSkipped = Se omitió la creación de un enlace simbólico
Uninstall = Desinstalar
Install = Instalar
UnsupportedOSBitness = Este script solo soporta Windows 10 x64
UnsupportedOSBuild = Este script solo soporta Windows 10 2004/20H1 o superior
UnsupportedRelease = Nueva versión encontrada
ControlledFolderAccessDisabled = Acceso a carpetas controlado desactivado
ScheduledTasks = Tareas programadas
OneDriveUninstalling = Desinstalando OneDrive...
OneDriveNotEmptyFolder = El directorio "{0}" no está vacío. Elimínelo manualmente
OneDriveFileSyncShell64dllBlocked = "{0}" está bloqueado. Elimínelo manualmente
OneDriveInstalling = OneDrive se está instalando...
OneDriveDownloading = Descargando OneDrive... ~33 MB
ClearFolder = Elimine todos los archivos en la carpeta "{0}"?
FilesBlocked = Los siguientes archivos están siendo bloqueados por una aplicación de terceros. Elimínelos manualmente y continúe
TempNotEmpty = La carpeta "{0}" no está vacía. Límpiela manualmente
WindowsFeaturesTitle = Características de Windows
OptionalFeaturesTitle = Características opcionales
EnableHardwareVT = Activar virtualización en UEFI
UserShellFolderNotEmpty = Quedan algunos archivos en la carpeta "{0}". Muévalos manualmente a la nueva ubicación
RetrievingDrivesList = Recuperando lista de unidades de disco...
NewUserShellFolderLocation = Nueva ubicación: "{0}"
DesktopDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta del Escritorio
DocumentsDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Documentos
DownloadsDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Descargas
MusicDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Música
PicturesDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Imágenes
VideosDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Vídeos
DesktopRequest = ¿Quieres cambiar la ubicación de la carpeta del Escritorio?
DocumentsRequest = ¿Quieres cambiar la ubicación de la carpeta de Documentos?
DownloadsRequest = ¿Quieres cambiar la ubicación de la carpeta de Descargas?
MusicRequest = ¿Quieres cambiar la ubicación de la carpeta de Música?
PicturesRequest = ¿Quieres cambiar la ubicación de la carpeta de Imágenes?
VideosRequest = ¿Quieres cambiar la ubicación de la carpeta de Vídeos?
DesktopFolderSelect = Selecciona una carpeta para la carpeta del Escritorio
DocumentsFolderSelect = Selecciona una carpeta para la carpeta de Documentos
DownloadsFolderSelect = Selecciona una carpeta para la carpeta de Descargas
MusicFolderSelect = Selecciona una carpeta para la carpeta de Música
PicturesFolderSelect = Selecciona una carpeta para la carpeta de Imágenes
VideosFolderSelect = Selecciona una carpeta para la carpeta de Vídeos
DesktopDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta del Escritorio por la de defecto?
DocumentsDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta de Documentos por la de defecto?
DownloadsDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta de Descargas por la de defecto?
MusicDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta de Música por la de defecto?
PicturesDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta de Imágenes por la de defecto?
VideosDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta de Vídeos por la de defecto?
ReservedStorageIsInUse = Esta operación no está disponible cuando el almacenamiento reservado está en uso\nPorfavor, espere a que se complete alguna operación de algún servicio e inténtelo de nuevo más tarde
ShortcutPinning = El acceso directo "{0}" se está acoplando al inicio
UninstallUWPForAll = Para todas las usuarias
UninstallUWPTitle = Aplicaciones UWP
WSLUpdateDownloading = Descargando el paquete de actualización del kernel de Linux... ~14 MB
WSLUpdateInstalling = Instalando el paquete de actualización del kernel de Linux...
HEVCDownloading = Descargando Extensiones de vídeo HEVC del fabricante del dispositivo... ~2,8 MB
GraphicsPerformanceTitle = Preferencia de rendimiento de gráficos
GraphicsPerformanceRequest = Quieres establecer el nivel de rendimiento de gráficos a "Alto rendimiento" en alguna aplicación?
CleanupTaskDescription = Limpiando archivos de Windows no usados y actualizaciones usando la aplicación de limpieza de disco incorporada
CleanupTaskNotificationTitle = Información importante
CleanupTaskNotificationEventTitle = ¿Ejecutar la tarea para limpiar archivos y actualizaciones no utilizados de Windows?
CleanupTaskNotificationEvent = La limpieza de Windows no tardará mucho. La próxima vez, la notificación aparecerá en 30 días
CleanupTaskNotificationSnoozeInterval = Seleccione un intervalo de recordatorio
CleanupNotificationTaskDescription = Recordatorio de notificación emergente sobre la limpieza de archivos y actualizaciones no utilizados de Windows
FolderTaskDescription = Limpieza de la carpeta "{0}"
ControlledFolderAccess = Acceso controlado a carpetas
ProtectedFoldersRequest = ¿Quieres añadir control de acceso a carpeta y especificar que carpeta Microsoft Defender protegerá de aplicaciones maliciosas y amenazas?
ProtectedFoldersListRemoved = Carpetas eliminadas
AppControlledFolderRequest = Quieres especificar una aplicación para que sea permitida a través del acceso controlado de carpetas?
AllowedControlledFolderAppsRemoved = Eliminar aplicaciones permitidas
DefenderExclusionFolderRequest = ¿Quieres especificar una carpeta para ser excluida por Microsoft Defender?
DefenderExclusionFoldersListRemoved = Quitadas carpetas excluidas
AddDefenderExclusionFileRequest = ¿Quieres especificar un archivo para ser excluido por Microsoft Defender?
DefenderExclusionFilesRemoved = Quitados archivos excluidos
EventViewerCustomViewName = Creación de procesos
EventViewerCustomViewDescription = Creación de procesos y eventos de auditoria de línea de comandos
RestartWarning = Asegúrese de reiniciar su PC
ErrorsLine = Línea
ErrorsFile = Archivo
ErrorsMessage = Errores/Advertencias
Add = Añadir
AllFilesFilter = Tutti i file (*.*)|*.*
Change = Cambiar
Continue = Continuar
DialogBoxOpening = Mostrando caja de diálogo...
Disable = Desactivar
Dismiss = Despedir
Enable = Activar
EXEFilesFilter = *.exe|*.exe|Todos los Archivos (*.*)|*.*
FolderSelect = Seleccione una carpeta
FilesWontBeMoved = Los archivos no se moverán
Minute = 1 minuto
NoData = Nada que mostrar
NoInternetConnection = No hay conexión a Internet
NoResponse = No se pudo establecer una conexión con https://store.rg-adguard.net
Patient = Por favor espere...
Run = Iniciar
Select = Seleccionar
Skip = Omitir
Skipped = Omitido
Snooze = Posponer
SymbolicSkipped = Se omitió la creación de un enlace simbólico
Uninstall = Desinstalar
Install = Instalar
HalfHour = 30 minutos
FourHours = 4 horas
'@

191
Sophia/PowerShell 5.1/fr-FR/Sophia.psd1

@ -1,93 +1,102 @@
ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Le script supporte uniquement Windows 10 x64
UnsupportedOSBuild = Le script supporte les versions Windows 10 2004/20H1 et ultérieures
UnsupportedRelease = Nouvelle version trouvée
ControlledFolderAccessDisabled = Contrôle d'accès aux dossiers désactivé
ScheduledTasks = Tâches planifiées
OneDriveUninstalling = Désinstalltion de OneDrive...
OneDriveNotEmptyFolder = Le dossier "{0}" est vide. Le supprimer manuellement
OneDriveFileSyncShell64dllBlocked = "{0}" est bloqué. Le supprimer manuellement
OneDriveInstalling = OneDrive en cours d'installation...
OneDriveDownloading = Téléchargement de OneDrive... ~33 Mo
ClearFolder = Supprimer tous les fichiers dans le dossier "{0}"?
FilesBlocked = Les fichiers suivants sont bloqués par une application tierce `nRetirer les manuellement et continuer
TempNotEmpty = Le dossier "{0}" n'est pas vide. L'effacer manuellement
WindowsFeaturesTitle = Fonctionnalités
OptionalFeaturesTitle = Fonctionnalités optionnelles
EnableHardwareVT = Activer la virtualisation dans UEFI
UserShellFolderNotEmpty = Certains fichiers laissés dans le dossier "{0}" `nDéplacer les manuellement vers un nouvel emplacement
RetrievingDrivesList = Récupération de la liste des lecteurs...
NewUserShellFolderLocation = Nouvel emplacement: "{0}"
DesktopDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Bureau sera créé
DocumentsDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Documents sera créé
DownloadsDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Téléchargements sera créé
MusicDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Musique sera créé
PicturesDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Images sera créé
VideosDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Vidéos sera créé
DesktopRequest = Souhaitez-vous changer l'emplacement du dossier Bureau?
DocumentsRequest = Souhaitez-vous changer l'emplacement du dossier Documents?
DownloadsRequest = Souhaitez-vous changer l'emplacement du dossier Téléchargements?
MusicRequest = Souhaitez-vous changer l'emplacement du dossier Musique?
PicturesRequest = Souhaitez-vous changer l'emplacement du dossier Images?
VideosRequest = Souhaitez-vous changer l'emplacement du dossier Vidéos?
DesktopFolderSelect = Sélectionner un dossier pour le dossier Bureau
DocumentsFolderSelect = Sélectionner un dossier pour le dossier Documents
DownloadsFolderSelect = Sélectionner un dossier pour le dossier Téléchargements
MusicFolderSelect = Sélectionner un dossier pour le dossier Musique
PicturesFolderSelect = Sélectionner un dossier pour le dossier Images
VideosFolderSelect = Sélectionner un dossier pour le dossier Vidéos
DesktopDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Bureau à la valeur par défaut?
DocumentsDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Documents à la valeur par défaut?
DownloadsDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Téléchargements à la valeur par défaut?
MusicDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Musique à la valeur par défaut?
PicturesDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Images à la valeur par défaut?
VideosDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Vidéos à la valeur par défaut?
ReservedStorageIsInUse = Cette opération n'est pas suppportée le stockage réservé est en cours d'utilisation `nVeuillez attendre la fin des opérations de maintenance, puis réessayer plus tard
ShortcutPinning = Le raccourci "{0}" est épinglé sur Démarrer
UninstallUWPForAll = Pour tous les utilisateurs
UninstallUWPTitle = Applications UWP
WSLUpdateDownloading = Téléchargement du package de mise à jour du noyau Linux... ~14 Mo
WSLUpdateInstalling = Installation du package de mise à jour du noyau Linux...
HEVCDownloading = Téléchargement de Extensions vidéo HEVC du fabricant de l'appareil... ~2,8 MB
GraphicsPerformanceTitle = Préférence de performances graphiques
GraphicsPerformanceRequest = Souhaitez-vous définir le paramètre de performances graphiques d'une application de votre choix sur "Haute performance"?
CleanUpTaskToast = Le nettoyage des fichiers Windows inutilisés et des mises à jour débute dans une minute
CleanUpTaskDescription = Nettoyage des fichiers Windows inutilisés et des mises à jour à l'aide de l'application intégrée pour le nettoyage de disque
FolderTaskDescription = Nettoyage du dossier "{0}"
ControlledFolderAccess = Contrôle d'accès aux dossiers
ProtectedFoldersRequest = Souhaitez-vous activer le contrôle d'accès aux dossiers et spécifier le dossier que Microsoft Defender protégera contre les applications malveillantes et les menaces?
ProtectedFoldersListRemoved = Dossiers supprimés
AppControlledFolderRequest = Souhaitez-vous spécifier une application autorisée via le contrôle d'accès aux dossiers?
AllowedControlledFolderAppsRemoved = Applications autorisées supprimées
DefenderTitle = Microsoft Defender
DefenderExclusionFolderRequest = Souhaitez-vous spécifier un dossier à exclure des analyses de logiciels malveillants de Microsoft Defender?
DefenderExclusionFoldersListRemoved = Dossiers exclus supprimés
AddDefenderExclusionFileRequest = Souhaitez-vous spécifier un fichier à exclure des analyses de logiciels malveillants de Microsoft Defender?
DefenderExclusionFilesRemoved = Fichiers exclus supprimés
EventViewerCustomViewName = Création du processus
EventViewerCustomViewDescription = Audit des événements de création du processus et de ligne de commande
RestartWarning = Assurez-vous de redémarrer votre PC
ErrorsLine = Ligne
ErrorsFile = Fichier
ErrorsMessage = Erreurs/Avertissements
Add = Ajouter
AllFilesFilter = Tous les Fichiers (*.*)|*.*
Change = Changer
Continue = Continuer
DialogBoxOpening = Afficher la boîte de dialogue...
Disable = Désactiver
Enable = Activer
EXEFilesFilter = *.exe|*.exe|Tous les Fichiers (*.*)|*.*
FolderSelect = Sélectionner un dossier
FilesWontBeMoved = Les fichiers ne seront pas déplacés
NoData = Rien à afficher
NoInternetConnection = Pas de connexion Internet
NoResponse = Une connexion n'a pas pu être établie avec https://store.rg-adguard.net
Patient = Veuillez patienter...
Select = Sélectionner
Skip = Passer
Skipped = Passé
SymbolicSkipped = La création d'un lien symbolique a été ignorée
Uninstall = Désinstaller
Install = Installer
UnsupportedOSBitness = Le script supporte uniquement Windows 10 x64
UnsupportedOSBuild = Le script supporte les versions Windows 10 2004/20H1 et ultérieures
UnsupportedRelease = Nouvelle version trouvée
ControlledFolderAccessDisabled = Contrôle d'accès aux dossiers désactivé
ScheduledTasks = Tâches planifiées
OneDriveUninstalling = Désinstalltion de OneDrive...
OneDriveNotEmptyFolder = Le dossier "{0}" est vide. Le supprimer manuellement
OneDriveFileSyncShell64dllBlocked = "{0}" est bloqué. Le supprimer manuellement
OneDriveInstalling = OneDrive en cours d'installation...
OneDriveDownloading = Téléchargement de OneDrive... ~33 Mo
ClearFolder = Supprimer tous les fichiers dans le dossier "{0}"?
FilesBlocked = Les fichiers suivants sont bloqués par une application tierce \nRetirer les manuellement et continuer
TempNotEmpty = Le dossier "{0}" n'est pas vide. L'effacer manuellement
WindowsFeaturesTitle = Fonctionnalités
OptionalFeaturesTitle = Fonctionnalités optionnelles
EnableHardwareVT = Activer la virtualisation dans UEFI
UserShellFolderNotEmpty = Certains fichiers laissés dans le dossier "{0}" \nDéplacer les manuellement vers un nouvel emplacement
RetrievingDrivesList = Récupération de la liste des lecteurs...
NewUserShellFolderLocation = Nouvel emplacement: "{0}"
DesktopDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Bureau sera créé
DocumentsDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Documents sera créé
DownloadsDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Téléchargements sera créé
MusicDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Musique sera créé
PicturesDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Images sera créé
VideosDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Vidéos sera créé
DesktopRequest = Souhaitez-vous changer l'emplacement du dossier Bureau?
DocumentsRequest = Souhaitez-vous changer l'emplacement du dossier Documents?
DownloadsRequest = Souhaitez-vous changer l'emplacement du dossier Téléchargements?
MusicRequest = Souhaitez-vous changer l'emplacement du dossier Musique?
PicturesRequest = Souhaitez-vous changer l'emplacement du dossier Images?
VideosRequest = Souhaitez-vous changer l'emplacement du dossier Vidéos?
DesktopFolderSelect = Sélectionner un dossier pour le dossier Bureau
DocumentsFolderSelect = Sélectionner un dossier pour le dossier Documents
DownloadsFolderSelect = Sélectionner un dossier pour le dossier Téléchargements
MusicFolderSelect = Sélectionner un dossier pour le dossier Musique
PicturesFolderSelect = Sélectionner un dossier pour le dossier Images
VideosFolderSelect = Sélectionner un dossier pour le dossier Vidéos
DesktopDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Bureau à la valeur par défaut?
DocumentsDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Documents à la valeur par défaut?
DownloadsDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Téléchargements à la valeur par défaut?
MusicDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Musique à la valeur par défaut?
PicturesDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Images à la valeur par défaut?
VideosDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Vidéos à la valeur par défaut?
ReservedStorageIsInUse = Cette opération n'est pas suppportée le stockage réservé est en cours d'utilisation \nVeuillez attendre la fin des opérations de maintenance, puis réessayer plus tard
ShortcutPinning = Le raccourci "{0}" est épinglé sur Démarrer
UninstallUWPForAll = Pour tous les utilisateurs
UninstallUWPTitle = Applications UWP
WSLUpdateDownloading = Téléchargement du package de mise à jour du noyau Linux... ~14 Mo
WSLUpdateInstalling = Installation du package de mise à jour du noyau Linux...
HEVCDownloading = Téléchargement de Extensions vidéo HEVC du fabricant de l'appareil... ~2,8 MB
GraphicsPerformanceTitle = Préférence de performances graphiques
GraphicsPerformanceRequest = Souhaitez-vous définir le paramètre de performances graphiques d'une application de votre choix sur "Haute performance"?
CleanupTaskDescription = Nettoyage des fichiers Windows inutilisés et des mises à jour à l'aide de l'application intégrée pour le nettoyage de disque
CleanupTaskNotificationTitle = Une information important
CleanupTaskNotificationEventTitle = Exécuter la tâche pour nettoyer les fichiers et les mises à jour inutilisés de Windows?
CleanupTaskNotificationEvent = Le nettoyage de Windows ne prendra pas longtemps. La prochaine fois que la notification apparaîtra dans 30 jours
CleanupTaskNotificationSnoozeInterval = Sélectionnez un intervalle de rappel
CleanupNotificationTaskDescription = Rappel de notification contextuelle sur le nettoyage des fichiers et des mises à jour inutilisés de Windows
FolderTaskDescription = Nettoyage du dossier "{0}"
ControlledFolderAccess = Contrôle d'accès aux dossiers
ProtectedFoldersRequest = Souhaitez-vous activer le contrôle d'accès aux dossiers et spécifier le dossier que Microsoft Defender protégera contre les applications malveillantes et les menaces?
ProtectedFoldersListRemoved = Dossiers supprimés
AppControlledFolderRequest = Souhaitez-vous spécifier une application autorisée via le contrôle d'accès aux dossiers?
AllowedControlledFolderAppsRemoved = Applications autorisées supprimées
DefenderExclusionFolderRequest = Souhaitez-vous spécifier un dossier à exclure des analyses de logiciels malveillants de Microsoft Defender?
DefenderExclusionFoldersListRemoved = Dossiers exclus supprimés
AddDefenderExclusionFileRequest = Souhaitez-vous spécifier un fichier à exclure des analyses de logiciels malveillants de Microsoft Defender?
DefenderExclusionFilesRemoved = Fichiers exclus supprimés
EventViewerCustomViewName = Création du processus
EventViewerCustomViewDescription = Audit des événements de création du processus et de ligne de commande
RestartWarning = Assurez-vous de redémarrer votre PC
ErrorsLine = Ligne
ErrorsFile = Fichier
ErrorsMessage = Erreurs/Avertissements
Add = Ajouter
AllFilesFilter = Tous les Fichiers (*.*)|*.*
Change = Changer
Continue = Continuer
DialogBoxOpening = Afficher la boîte de dialogue...
Disable = Désactiver
Dismiss = Annuler
Enable = Activer
EXEFilesFilter = *.exe|*.exe|Tous les Fichiers (*.*)|*.*
FolderSelect = Sélectionner un dossier
FilesWontBeMoved = Les fichiers ne seront pas déplacés
Minute = 1 minute
NoData = Rien à afficher
NoInternetConnection = Pas de connexion Internet
NoResponse = Une connexion n'a pas pu être établie avec https://store.rg-adguard.net
Patient = Veuillez patienter...
Run = Démarrer
Select = Sélectionner
Skip = Passer
Skipped = Passé
Snooze = Reporter
SymbolicSkipped = La création d'un lien symbolique a été ignorée
Uninstall = Désinstaller
Install = Installer
HalfHour = 30 minutes
FourHours = 4 heures
'@

191
Sophia/PowerShell 5.1/it-IT/Sophia.psd1

@ -1,93 +1,102 @@
ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Questo script supporta solo Windows 10 x64
UnsupportedOSBuild = Lo script supporta le versioni di Windows 10 2004/20H1 e successive
UnsupportedRelease = Nuova versione trovata
ControlledFolderAccessDisabled = Accesso controllato alle cartelle disabilitato
ScheduledTasks = Attività pianificate
OneDriveUninstalling = Disinstalla OneDrive...
OneDriveNotEmptyFolder = La cartella "{0}" non è vuota. Eliminarla manualmente
OneDriveFileSyncShell64dllBlocked = "{0}" è bloccata. Eliminarla manualmente
OneDriveInstalling = OneDrive si sta installando ...
OneDriveDownloading = Scaricamento di OneDrive... ~33 MB
ClearFolder = Elimina tutti i file nella cartella "{0}"?
FilesBlocked = I seguenti file sono bloccati da app di terze parti. Rimuoverli manualmente e continua
TempNotEmpty = La cartella "{0}" non è vuota. Pulirla manualmente
WindowsFeaturesTitle = Funzionalità Windows
OptionalFeaturesTitle = Funzionalità facoltative
EnableHardwareVT = Attiva Virtualizzazione in UEFI
UserShellFolderNotEmpty = Sono rimasti alcuni file nella cartella "{0}". Spostarli manualmente in una nuova posizione.
RetrievingDrivesList = Recupero lista delle unità...
NewUserShellFolderLocation = Nuova posizione: "{0}"
DesktopDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Dekstop
DocumentsDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Documenti
DownloadsDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Download
MusicDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Musica
PicturesDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Immagini
VideosDriveSelect = Seleziona l'unità all'interno della radice della quale verrà creata la cartella Video
DesktopRequest = Desideri cambiare la posizione della cartella Desktop?
DocumentsRequest = Desideri cambiare la posizione della cartella Documenti?
DownloadsRequest = Desideri cambiare la posizione della cartella Download?
MusicRequest = Desideri cambiare la posizione della cartella Musica?
PicturesRequest = Desideri cambiare la posizione della cartella Immagini?
VideosRequest = Desideri cambiare la posizione della cartella Video?
DesktopFolderSelect = Seleziona una cartella per Desktop
DocumentsFolderSelect = Seleziona una cartella per Documenti
DownloadsFolderSelect = Seleziona una cartella per Download
MusicFolderSelect = Seleziona una cartella per Musica
PicturesFolderSelect = Seleziona una cartella per Immagini
VideosFolderSelect = Seleziona una cartella per Video
DesktopDefaultFolder = Desideri modificare la posizione della cartella Desktop sul valore predefinito?
DocumentsDefaultFolder = Desideri modificare la posizione della cartella Documenti sul valore predefinito?
DownloadsDefaultFolder = Desideri modificare la posizione della cartella Download sul valore predefinito?
MusicDefaultFolder = Desideri modificare la posizione della cartella Musica sul valore predefinito?
PicturesDefaultFolder = Desideri modificare la posizione della cartella Immagini sul valore predefinito?
VideosDefaultFolder = Desideri modificare la posizione della cartella Video sul valore predefinito?
ReservedStorageIsInUse = Questa operazione non è supportata quando reserved storage è in uso\nAttendere il completamento delle operazioni di manutenzione e riprovare più tardi
ShortcutPinning = Il collegamento "{0}" viene aggiunto a Start
UninstallUWPForAll = Per tutti gli utenti
UninstallUWPTitle = App UWP
WSLUpdateDownloading = Scaricamento del pacchetto aggiornato di Linux kernel... ~14 MB
WSLUpdateInstalling = Installazione del pacchetto aggiornato di Linux kernel...
HEVCDownloading = Download di Estensioni video HEVC del produttore del dispositivo in corso... ~2,8 MB
GraphicsPerformanceTitle = Preferenze prestazioni della Grafica
GraphicsPerformanceRequest = Desideri impostare le prestazioni grafiche di un app di tua scelta su "Prestazioni elevate"?
CleanUpTaskToast = La pulizia dei file e degli aggiornamenti di Windows inutilizzati inizia in un minuto
CleanUpTaskDescription = Pulizia di file e aggiornamenti di Windows inutilizzati utilizzando l'app di pulizia del disco incorporata
FolderTaskDescription = Pulizia della cartella "{0}"
ControlledFolderAccess = Accesso controllato alle cartelle
ProtectedFoldersRequest = Desideri abilitare l'accesso controllato alle cartelle e specificare la cartella che Microsoft Defender proteggerà dalle app dannose e dalle minacce?
ProtectedFoldersListRemoved = Cartelle rimosse
AppControlledFolderRequest = Desideri specificare un'app consentita tramite l'accesso alle cartelle controllate?
AllowedControlledFolderAppsRemoved = App consentite rimosse
DefenderTitle = Microsoft Defender
DefenderExclusionFolderRequest = Desideri specificare una cartella da escludere dalle scansioni del malware di Microsoft Defender?
DefenderExclusionFoldersListRemoved = Cartelle escluse rimosse
AddDefenderExclusionFileRequest = Desideri specificare un file da escludere dalle scansioni del malware di Microsoft Defender?
DefenderExclusionFilesRemoved = File esclusi rimossi
EventViewerCustomViewName = Creazione del Processo
EventViewerCustomViewDescription = Creazione di Processi ed Eventi di Controllo dalla riga di comando
RestartWarning = Assicurati di riavviare il PC
ErrorsLine = Linea
ErrorsFile = File
ErrorsMessage = Errori/Avvisi
Add = Aggiungi
AllFilesFilter = Tutti i file (*.*)|*.*
Change = Cambia
Continue = Continua
DialogBoxOpening = Visualizzazione della finestra di dialogo...
Disable = Disinstalla
Enable = Abilita
EXEFilesFilter = *.exe|*.exe|Tutti i file (*.*)|*.*
FolderSelect = Seleziona una cartella
FilesWontBeMoved = I file non verranno spostati
NoData = Nulla da visualizzare
NoInternetConnection = Nessuna connessione Internet
NoResponse = Non è stato possibile stabilire una connessione con https://store.rg-adguard.net
Patient = Attendere prego...
Select = Selezionare
Skip = Salta
Skipped = Saltato
SymbolicSkipped = È stata saltata la creazione di un collegamento simbolico
Uninstall = Rimuovi
Install = Installare
UnsupportedOSBitness = Questo script supporta solo Windows 10 x64
UnsupportedOSBuild = Lo script supporta le versioni di Windows 10 2004/20H1 e successive
UnsupportedRelease = Nuova versione trovata
ControlledFolderAccessDisabled = Accesso controllato alle cartelle disabilitato
ScheduledTasks = Attività pianificate
OneDriveUninstalling = Disinstalla OneDrive...
OneDriveNotEmptyFolder = La cartella "{0}" non è vuota. Eliminarla manualmente
OneDriveFileSyncShell64dllBlocked = "{0}" è bloccata. Eliminarla manualmente
OneDriveInstalling = OneDrive si sta installando ...
OneDriveDownloading = Scaricamento di OneDrive... ~33 MB
ClearFolder = Elimina tutti i file nella cartella "{0}"?
FilesBlocked = I seguenti file sono bloccati da app di terze parti. Rimuoverli manualmente e continua
TempNotEmpty = La cartella "{0}" non è vuota. Pulirla manualmente
WindowsFeaturesTitle = Funzionalità Windows
OptionalFeaturesTitle = Funzionalità facoltative
EnableHardwareVT = Attiva Virtualizzazione in UEFI
UserShellFolderNotEmpty = Sono rimasti alcuni file nella cartella "{0}". Spostarli manualmente in una nuova posizione.
RetrievingDrivesList = Recupero lista delle unità...
NewUserShellFolderLocation = Nuova posizione: "{0}"
DesktopDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Dekstop
DocumentsDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Documenti
DownloadsDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Download
MusicDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Musica
PicturesDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Immagini
VideosDriveSelect = Seleziona l'unità all'interno della radice della quale verrà creata la cartella Video
DesktopRequest = Desideri cambiare la posizione della cartella Desktop?
DocumentsRequest = Desideri cambiare la posizione della cartella Documenti?
DownloadsRequest = Desideri cambiare la posizione della cartella Download?
MusicRequest = Desideri cambiare la posizione della cartella Musica?
PicturesRequest = Desideri cambiare la posizione della cartella Immagini?
VideosRequest = Desideri cambiare la posizione della cartella Video?
DesktopFolderSelect = Seleziona una cartella per Desktop
DocumentsFolderSelect = Seleziona una cartella per Documenti
DownloadsFolderSelect = Seleziona una cartella per Download
MusicFolderSelect = Seleziona una cartella per Musica
PicturesFolderSelect = Seleziona una cartella per Immagini
VideosFolderSelect = Seleziona una cartella per Video
DesktopDefaultFolder = Desideri modificare la posizione della cartella Desktop sul valore predefinito?
DocumentsDefaultFolder = Desideri modificare la posizione della cartella Documenti sul valore predefinito?
DownloadsDefaultFolder = Desideri modificare la posizione della cartella Download sul valore predefinito?
MusicDefaultFolder = Desideri modificare la posizione della cartella Musica sul valore predefinito?
PicturesDefaultFolder = Desideri modificare la posizione della cartella Immagini sul valore predefinito?
VideosDefaultFolder = Desideri modificare la posizione della cartella Video sul valore predefinito?
ReservedStorageIsInUse = Questa operazione non è supportata quando reserved storage è in uso\nAttendere il completamento delle operazioni di manutenzione e riprovare più tardi
ShortcutPinning = Il collegamento "{0}" viene aggiunto a Start
UninstallUWPForAll = Per tutti gli utenti
UninstallUWPTitle = App UWP
WSLUpdateDownloading = Scaricamento del pacchetto aggiornato di Linux kernel... ~14 MB
WSLUpdateInstalling = Installazione del pacchetto aggiornato di Linux kernel...
HEVCDownloading = Download di Estensioni video HEVC del produttore del dispositivo in corso... ~2,8 MB
GraphicsPerformanceTitle = Preferenze prestazioni della Grafica
GraphicsPerformanceRequest = Desideri impostare le prestazioni grafiche di un app di tua scelta su "Prestazioni elevate"?
CleanupTaskDescription = Pulizia di file e aggiornamenti di Windows inutilizzati utilizzando l'app di pulizia del disco incorporata
CleanupTaskNotificationTitle = Informazioni importanti
CleanupTaskNotificationEventTitle = Eseguire l'attività per pulire i file e gli aggiornamenti inutilizzati di Windows?
CleanupTaskNotificationEvent = La pulizia di Windows non richiederà molto tempo. La prossima volta la notifica apparirà tra 30 giorni
CleanupTaskNotificationSnoozeInterval = Seleziona un intervallo di promemoria
CleanupNotificationTaskDescription = Pulizia di file e aggiornamenti di Windows inutilizzati utilizzando l'app di pulizia del disco incorporata
FolderTaskDescription = Pulizia della cartella "{0}"
ControlledFolderAccess = Accesso controllato alle cartelle
ProtectedFoldersRequest = Desideri abilitare l'accesso controllato alle cartelle e specificare la cartella che Microsoft Defender proteggerà dalle app dannose e dalle minacce?
ProtectedFoldersListRemoved = Cartelle rimosse
AppControlledFolderRequest = Desideri specificare un'app consentita tramite l'accesso alle cartelle controllate?
AllowedControlledFolderAppsRemoved = App consentite rimosse
DefenderExclusionFolderRequest = Desideri specificare una cartella da escludere dalle scansioni del malware di Microsoft Defender?
DefenderExclusionFoldersListRemoved = Cartelle escluse rimosse
AddDefenderExclusionFileRequest = Desideri specificare un file da escludere dalle scansioni del malware di Microsoft Defender?
DefenderExclusionFilesRemoved = File esclusi rimossi
EventViewerCustomViewName = Creazione del Processo
EventViewerCustomViewDescription = Creazione di Processi ed Eventi di Controllo dalla riga di comando
RestartWarning = Assicurati di riavviare il PC
ErrorsLine = Linea
ErrorsFile = File
ErrorsMessage = Errori/Avvisi
Add = Aggiungi
AllFilesFilter = Tutti i file (*.*)|*.*
Change = Cambia
Continue = Continua
DialogBoxOpening = Visualizzazione della finestra di dialogo...
Disable = Disinstalla
Dismiss = Annulla
Enable = Abilita
EXEFilesFilter = *.exe|*.exe|Tutti i file (*.*)|*.*
FolderSelect = Seleziona una cartella
FilesWontBeMoved = I file non verranno spostati
Minute = 1 minuto
NoData = Nulla da visualizzare
NoInternetConnection = Nessuna connessione Internet
NoResponse = Non è stato possibile stabilire una connessione con https://store.rg-adguard.net
Patient = Attendere prego...
Run = Avvia
Select = Selezionare
Skip = Salta
Skipped = Saltato
Snooze = Posponi
SymbolicSkipped = È stata saltata la creazione di un collegamento simbolico
Uninstall = Rimuovi
Install = Installare
HalfHour = 30 minuti
FourHours = 4 ore
'@

191
Sophia/PowerShell 5.1/ru-RU/Sophia.psd1

@ -1,93 +1,102 @@
ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Скрипт поддерживает только Windows 10 x64
UnsupportedOSBuild = Скрипт поддерживает только Windows 10 версии 2004/20H1 и выше
UnsupportedRelease = Обнаружена новая версия
ControlledFolderAccessDisabled = Контролируемый доступ к папкам выключен
ScheduledTasks = Запланированные задачи
OneDriveUninstalling = Удаление OneDrive...
OneDriveNotEmptyFolder = Папка "{0}" не пуста. Удалите ее вручную
OneDriveFileSyncShell64dllBlocked = "{0}" заблокирован. Удалите его вручную
OneDriveInstalling = OneDrive устанавливается...
OneDriveDownloading = Скачивается OneDrive... ~33 МБ
ClearFolder = Удалить все файлы в папке "{0}"?
FilesBlocked = Следующие файлы блокируются сторонними приложениями. Удалите их вручную и продолжите
TempNotEmpty = Папка "{0}" не пуста. Очистите ее вручную
WindowsFeaturesTitle = Компоненты Windows
OptionalFeaturesTitle = Дополнительные компоненты
EnableHardwareVT = Включите виртуализацию в UEFI
UserShellFolderNotEmpty = В папке "{0}" остались файлы. Переместите их вручную в новое расположение
RetrievingDrivesList = Получение списка дисков...
NewUserShellFolderLocation = Новое расположение: "{0}"
DesktopDriveSelect = Выберите диск, в корне которого будет создана папка для "Рабочий стол"
DocumentsDriveSelect = Выберите диск, в корне которого будет создана папка для "Документы"
DownloadsDriveSelect = Выберите диск, в корне которого будет создана папка для "Загрузки"
MusicDriveSelect = Выберите диск, в корне которого будет создана папка для "Музыка"
PicturesDriveSelect = Выберите диск, в корне которого будет создана папка для "Изображения"
VideosDriveSelect = Выберите диск, в корне которого будет создана папка для "Видео"
DesktopRequest = Хотите изменить расположение папки "Рабочий стол"?
DocumentsRequest = Хотите изменить расположение папки "Документы"?
DownloadsRequest = Хотите изменить расположение папки "Загрузки"?
MusicRequest = Хотите изменить расположение папки "Музыка"?
PicturesRequest = Хотите изменить расположение папки "Изображения"?
VideosRequest = Хотите изменить расположение папки "Видео"?
DesktopFolderSelect = Выберите папку для "Рабочий стол"
DocumentsFolderSelect = Выберите папку для "Документы"
DownloadsFolderSelect = Выберите папку для "Загрузки"
MusicFolderSelect = Выберите папку для "Музыка"
PicturesFolderSelect = Выберите папку для "Изображения"
VideosFolderSelect = Выберите папку для "Видео"
DesktopDefaultFolder = Хотите изменить расположение папки "Рабочий стол" на значение по умолчанию?
DocumentsDefaultFolder = Хотите изменить расположение папки "Документы" на значение по умолчанию?
DownloadsDefaultFolder = Хотите изменить расположение папки "Загрузки" на значение по умолчанию?
MusicDefaultFolder = Хотите изменить расположение папки "Музыка" на значение по умолчанию?
PicturesDefaultFolder = Хотите изменить расположение папки "Изображения" на значение по умолчанию?
VideosDefaultFolder = Хотите изменить расположение папки "Видео" на значение по умолчанию?
ReservedStorageIsInUse = Операция не поддерживается, пока используется зарезервированное хранилище\nПожалуйста, дождитесь окончания всех обслуживающих операций и попробуйте заново
ShortcutPinning = Ярлык "{0}" закрепляется на начальном экране
UninstallUWPForAll = Для всех пользователей
UninstallUWPTitle = UWP-приложения
WSLUpdateDownloading = Скачивается пакет обновления ядра Linux... ~14 МБ
WSLUpdateInstalling = Установка пакета обновления ядра Linux...
HEVCDownloading = Скачивается Расширения для видео HEVC от производителя устройства... ~2,8 МБ
GraphicsPerformanceTitle = Настройка производительности графики
GraphicsPerformanceRequest = Установить для любого приложения по вашему выбору настройки производительности графики на "Высокая производительность"?
CleanUpTaskToast = Очистка неиспользуемых файлов и обновлений Windows начнется через минуту
CleanUpTaskDescription = Очистка неиспользуемых файлов и обновлений Windows, используя встроенную программу Очистка диска
FolderTaskDescription = Очистка папки "{0}"
ControlledFolderAccess = Контролируемый доступ к папкам
ProtectedFoldersRequest = Хотите включить контролируемый доступ к папкам и указать папку, которую Microsoft Defender будет защищать от вредоносных приложений и угроз?
ProtectedFoldersListRemoved = Удаленные папки
AppControlledFolderRequest = Указать приложение, которому разрешена работа через контролируемый доступ к папкам
AllowedControlledFolderAppsRemoved = Удаленные разрешенные приложения
DefenderTitle = Microsoft Defender
DefenderExclusionFolderRequest = Указать папку, чтобы исключить ее из списка сканирования Microsoft Defender?
DefenderExclusionFoldersListRemoved = Исключенные папки удалены
AddDefenderExclusionFileRequest = Указать файл, чтобы исключить его из списка сканирования Microsoft Defender?
DefenderExclusionFilesRemoved = Исключенные файлы удалены
EventViewerCustomViewName = Создание процесса
EventViewerCustomViewDescription = События содания нового процесса и аудит командной строки
RestartWarning = Обязательно перезагрузите ваш ПК
ErrorsLine = Строка
ErrorsFile = Файл
ErrorsMessage = Ошибки/предупреждения
Add = Добавить
AllFilesFilter = Все файлы (*.*)|*.*
Change = Изменить
Continue = Продолжить
DialogBoxOpening = Диалоговое окно открывается...
Disable = Отключить
Enable = Включить
EXEFilesFilter = *.exe|*.exe|Все файлы (*.*)|*.*
FolderSelect = Выберите папку
FilesWontBeMoved = Файлы не будут перенесены
NoData = Отсутствуют данные
NoInternetConnection = Отсутствует интернет-соединение
NoResponse = Невозможно установить соединение с https://store.rg-adguard.net
Patient = Пожалуйста, подождите...
Select = Выбрать
Skip = Пропустить
Skipped = Пропущено
SymbolicSkipped = Пропущено создание символической ссылки
Uninstall = Удалить
Install = Установить
UnsupportedOSBitness = Скрипт поддерживает только Windows 10 x64
UnsupportedOSBuild = Скрипт поддерживает только Windows 10 версии 2004/20H1 и выше
UnsupportedRelease = Обнаружена новая версия
ControlledFolderAccessDisabled = Контролируемый доступ к папкам выключен
ScheduledTasks = Запланированные задания
OneDriveUninstalling = Удаление OneDrive...
OneDriveNotEmptyFolder = Папка "{0}" не пуста. Удалите ее вручную
OneDriveFileSyncShell64dllBlocked = "{0}" заблокирован. Удалите его вручную
OneDriveInstalling = OneDrive устанавливается...
OneDriveDownloading = Скачивается OneDrive... ~33 МБ
ClearFolder = Удалить все файлы в папке "{0}"?
FilesBlocked = Следующие файлы блокируются сторонними приложениями. Удалите их вручную и продолжите
TempNotEmpty = Папка "{0}" не пуста. Очистите ее вручную
WindowsFeaturesTitle = Компоненты Windows
OptionalFeaturesTitle = Дополнительные компоненты
EnableHardwareVT = Включите виртуализацию в UEFI
UserShellFolderNotEmpty = В папке "{0}" остались файлы. Переместите их вручную в новое расположение
RetrievingDrivesList = Получение списка дисков...
NewUserShellFolderLocation = Новое расположение: "{0}"
DesktopDriveSelect = Выберите диск, в корне которого будет создана папка для "Рабочий стол"
DocumentsDriveSelect = Выберите диск, в корне которого будет создана папка для "Документы"
DownloadsDriveSelect = Выберите диск, в корне которого будет создана папка для "Загрузки"
MusicDriveSelect = Выберите диск, в корне которого будет создана папка для "Музыка"
PicturesDriveSelect = Выберите диск, в корне которого будет создана папка для "Изображения"
VideosDriveSelect = Выберите диск, в корне которого будет создана папка для "Видео"
DesktopRequest = Хотите изменить расположение папки "Рабочий стол"?
DocumentsRequest = Хотите изменить расположение папки "Документы"?
DownloadsRequest = Хотите изменить расположение папки "Загрузки"?
MusicRequest = Хотите изменить расположение папки "Музыка"?
PicturesRequest = Хотите изменить расположение папки "Изображения"?
VideosRequest = Хотите изменить расположение папки "Видео"?
DesktopFolderSelect = Выберите папку для "Рабочий стол"
DocumentsFolderSelect = Выберите папку для "Документы"
DownloadsFolderSelect = Выберите папку для "Загрузки"
MusicFolderSelect = Выберите папку для "Музыка"
PicturesFolderSelect = Выберите папку для "Изображения"
VideosFolderSelect = Выберите папку для "Видео"
DesktopDefaultFolder = Хотите изменить расположение папки "Рабочий стол" на значение по умолчанию?
DocumentsDefaultFolder = Хотите изменить расположение папки "Документы" на значение по умолчанию?
DownloadsDefaultFolder = Хотите изменить расположение папки "Загрузки" на значение по умолчанию?
MusicDefaultFolder = Хотите изменить расположение папки "Музыка" на значение по умолчанию?
PicturesDefaultFolder = Хотите изменить расположение папки "Изображения" на значение по умолчанию?
VideosDefaultFolder = Хотите изменить расположение папки "Видео" на значение по умолчанию?
ReservedStorageIsInUse = Операция не поддерживается, пока используется зарезервированное хранилище\nПожалуйста, дождитесь окончания всех обслуживающих операций и попробуйте заново
ShortcutPinning = Ярлык "{0}" закрепляется на начальном экране
UninstallUWPForAll = Для всех пользователей
UninstallUWPTitle = UWP-приложения
WSLUpdateDownloading = Скачивается пакет обновления ядра Linux... ~14 МБ
WSLUpdateInstalling = Установка пакета обновления ядра Linux...
HEVCDownloading = Скачивается Расширения для видео HEVC от производителя устройства... ~2,8 МБ
GraphicsPerformanceTitle = Настройка производительности графики
GraphicsPerformanceRequest = Установить для любого приложения по вашему выбору настройки производительности графики на "Высокая производительность"?
CleanupTaskDescription = Очистка неиспользуемых файлов и обновлений Windows, используя встроенную программу Очистка диска
CleanupTaskNotificationTitle = Важная информация
CleanupTaskNotificationEventTitle = Запустить задачу по очистке неиспользуемых файлов и обновлений Windows?
CleanupTaskNotificationEvent = Очистка Windows не займет много времени. Следующий раз это уведомление появится через 30 дней
CleanupTaskNotificationSnoozeInterval = Выберите интервал повтора уведомления
CleanupNotificationTaskDescription = Всплывающее уведомление о напоминании по очистке неиспользуемых файлов и обновлений Windows
FolderTaskDescription = Очистка папки "{0}"
ControlledFolderAccess = Контролируемый доступ к папкам
ProtectedFoldersRequest = Хотите включить контролируемый доступ к папкам и указать папку, которую Microsoft Defender будет защищать от вредоносных приложений и угроз?
ProtectedFoldersListRemoved = Удаленные папки
AppControlledFolderRequest = Указать приложение, которому разрешена работа через контролируемый доступ к папкам
AllowedControlledFolderAppsRemoved = Удаленные разрешенные приложения
DefenderExclusionFolderRequest = Указать папку, чтобы исключить ее из списка сканирования Microsoft Defender?
DefenderExclusionFoldersListRemoved = Исключенные папки удалены
AddDefenderExclusionFileRequest = Указать файл, чтобы исключить его из списка сканирования Microsoft Defender?
DefenderExclusionFilesRemoved = Исключенные файлы удалены
EventViewerCustomViewName = Создание процесса
EventViewerCustomViewDescription = События содания нового процесса и аудит командной строки
RestartWarning = Обязательно перезагрузите ваш ПК
ErrorsLine = Строка
ErrorsFile = Файл
ErrorsMessage = Ошибки/предупреждения
Add = Добавить
AllFilesFilter = Все файлы (*.*)|*.*
Change = Изменить
Continue = Продолжить
DialogBoxOpening = Диалоговое окно открывается...
Disable = Отключить
Dismiss = Отмена
Enable = Включить
EXEFilesFilter = *.exe|*.exe|Все файлы (*.*)|*.*
FolderSelect = Выберите папку
FilesWontBeMoved = Файлы не будут перенесены
Minute = 1 минута
NoData = Отсутствуют данные
NoInternetConnection = Отсутствует интернет-соединение
NoResponse = Невозможно установить соединение с https://store.rg-adguard.net
Patient = Пожалуйста, подождите...
Run = Запустить
Select = Выбрать
Skip = Пропустить
Skipped = Пропущено
Snooze = Отложить
SymbolicSkipped = Пропущено создание символической ссылки
Uninstall = Удалить
Install = Установить
HalfHour = 30 минут
FourHours = 4 часа
'@

193
Sophia/PowerShell 5.1/tr-TR/Sophia.psd1

@ -1,93 +1,102 @@
ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Bu betik sadece Windows 10 x64 destekliyor
UnsupportedOSBuild = Bu betik sadece Windows 10 2004/20H1 sürüm ve üstünü destekliyor
UnsupportedRelease = Yeni sürüm bulundu
ControlledFolderAccessDisabled = Kontrollü klasör erişimi devre dışı bırakıldı
ScheduledTasks = Zamanlanan görevler
OneDriveUninstalling = OneDrive kaldırılıyor...
OneDriveNotEmptyFolder = "{0}" klasörü boş değil. Kendiniz silin
OneDriveFileSyncShell64dllBlocked = "{0}" engellendi. Kendiniz silin
OneDriveInstalling = OneDrive kuruluyor...
OneDriveDownloading = OneDrive indiriliyor... ~33 MB
ClearFolder = "{0}" klasöründeki tüm dosyaları silin?
FilesBlocked = Aşağıdaki dosyalar 3. parti uygulamalar tarafından engelleniyor. `nKendiniz silin ve devam edin
TempNotEmpty = "{0}" klasörü boş değil. Kendiniz temizleyin
WindowsFeaturesTitle = Windows özellikleri
OptionalFeaturesTitle = İsteğe bağlı özellikler
EnableHardwareVT = UEFI'dan sanallaştırmayı aktifleştirin
UserShellFolderNotEmpty = "{0}" klasöründe bazı dosyalar kaldı. `nKendiniz yeni konuma taşıyın
RetrievingDrivesList = Sürücü listesi alınıyor...
NewUserShellFolderLocation = Yeni konum: "{0}"
DesktopDriveSelect = Masaüstü klasörün oluşturulacağı kök içindeki sürücüyü seçin
DocumentsDriveSelect = Belgeler klasörün oluşturulacağı kök içindeki sürücüyü seçin
DownloadsDriveSelect = İndirilenler klasörün oluşturulacağı kök içindeki sürücüyü seçin
MusicDriveSelect = Müzikler klasörün oluşturulacağı kök içindeki sürücüyü seçin
PicturesDriveSelect = Resimler klasörün oluşturulacağı kök içindeki sürücüyü seçin
VideosDriveSelect = Videolar klasörün oluşturulacağı kök içindeki sürücüyü seçin
DesktopRequest = Masaüstü klasörünün yerini değiştirmek ister misiniz?
DocumentsRequest = Belgeler klasörünün yerini değiştirmek ister misiniz?
DownloadsRequest = İndirilenler klasörünün yerini değiştirmek ister misiniz?
MusicRequest = Müzikler klasörünün yerini değiştirmek ister misiniz?
PicturesRequest = Resimler klasörünün yerini değiştirmek ister misiniz?
VideosRequest = Videolar klasörünün yerini değiştirmek ister misiniz?
DesktopFolderSelect = Masaüstü klasörü için bir klasör seçin.
DocumentsFolderSelect = Belgeler klasörü için bir klasör seçin.
DownloadsFolderSelect = İndirilenler klasörü için bir klasör seçin.
MusicFolderSelect = Müzikler klasörü için bir klasör seçin.
PicturesFolderSelect = Resimler klasörü için bir klasör seçin.
VideosFolderSelect = Videolar klasörü için bir klasör seçin.
DesktopDefaultFolder = Masaüstü klasörünün yerini eski haline getirmek ister misiniz?
DocumentsDefaultFolder = Belgeler klasörünün yerini eski haline getirmek ister misiniz?
DownloadsDefaultFolder = İndirilenler klasörünün yerini eski haline getirmek ister misiniz?
MusicDefaultFolder = Müzikler klasörünün yerini eski haline getirmek ister misiniz?
PicturesDefaultFolder = Resimler klasörünün yerini eski haline getirmek ister misiniz?
VideosDefaultFolder = Videolar klasörünün yerini eski haline getirmek ister misiniz?
ReservedStorageIsInUse = Ayrılmış depolama kullanımdayken bu işlem desteklenmez. `nLütfen tüm servis işlemlerinin tamamlanmasını bekleyin ve daha sonra tekrar deneyin
ShortcutPinning = "{0}" kısayolu Başlangıç sekmesine sabitlendi
UninstallUWPForAll = Bütün kullanıcılar için
UninstallUWPTitle = UWP Uygulamaları
WSLUpdateDownloading = Linux kernel güncelleme paketi indiriliyor... ~14 MB
WSLUpdateInstalling = Kernel güncelleme paketi kuruluyor
HEVCDownloading =Downloading "HEVC Video Extensions from Device Manufacturer"... ~2,8 MB
GraphicsPerformanceTitle = Grafik performans tercihi
GraphicsPerformanceRequest = Seçtiğiniz bir uygulamanın grafik performansı ayarını "Yüksek performans" olarak belirlemek ister misiniz?
CleanUpTaskToast = Kullanılmayan Windows dosyalarının ve güncellemelerin temizlenmesi bir dakika içinde başlar
CleanUpTaskDescription = Kullanılmayan Windows dosyaları ve güncellemeleri yerleşik Disk Temizleme uygulaması ile temizleniyor
FolderTaskDescription = "{0}" klasörü temizleniyor
ControlledFolderAccess = Kontrollü klasör erişimi
ProtectedFoldersRequest = Kontrollü klasör erişimini etkinleştirmek ve Microsoft Defender'ın kötü amaçlı uygulamalardan ve tehditlerden koruyacağı klasörü belirtmek ister misiniz?
ProtectedFoldersListRemoved = Silinen klasörler
AppControlledFolderRequest = Kontrollü Klasör erişimine izin verilen bir uygulama belirtmek ister misiniz?
AllowedControlledFolderAppsRemoved = Tüm kaldırılan uygulamalar
DefenderTitle = Microsoft Defender
DefenderExclusionFolderRequest = Microsoft Defender kötü amaçlı yazılım taramalarının dışında tutulacak bir klasör belirtmek ister misiniz?
DefenderExclusionFoldersListRemoved = Hariç tutulan klasörler kaldırıldı
AddDefenderExclusionFileRequest = Microsoft Defender kötü amaçlı yazılım taramalarının dışında bırakılacak bir dosya belirtmek ister misiniz?
DefenderExclusionFilesRemoved = Hariç tutulan dosyalar kaldırıldı
EventViewerCustomViewName = Süreç Oluşturma
EventViewerCustomViewDescription = Süreç oluşturma ve komut satırı denetleme olayları
RestartWarning = Bilgisayarınızı yeniden başlattığınızdan emin olun
ErrorsLine = Satır
ErrorsFile = Dosya
ErrorsMessage = Hatalar/Uyarılar
Add = Ekle
AllFilesFilter = Tüm Dosyalar (*.*)|*.*
Change = Değiştir
Continue = Devam et
DialogBoxOpening = İletişim kutusu görüntüleniyor...
Disable = Devre dışı bırak
Enable = Aktif et
EXEFilesFilter = *.exe|*.exe|Tüm Dosyalar (*.*)|*.*
FolderSelect = Klasör seç
FilesWontBeMoved = Dosyalar taşınmayacak
NoData = Görüntülenecek bir şey yok
NoInternetConnection = İnternet bağlantısı yok
NoResponse = Could not contact https://store.rg-adguard.net
Patient = Lütfen bekleyin...
Select = Seç
Skip = Atla
Skipped = Atlandı
SymbolicSkipped = Sembolik bir bağlantı oluşturma atlandı
Uninstall = Kaldır
Install = Yüklemek
'@
UnsupportedOSBitness = Bu betik sadece Windows 10 x64 destekliyor
UnsupportedOSBuild = Bu betik sadece Windows 10 2004/20H1 sürüm ve üstünü destekliyor
UnsupportedRelease = Yeni sürüm bulundu
ControlledFolderAccessDisabled = Kontrollü klasör erişimi devre dışı bırakıldı
ScheduledTasks = Zamanlanan görevler
OneDriveUninstalling = OneDrive kaldırılıyor...
OneDriveNotEmptyFolder = "{0}" klasörü boş değil. Kendiniz silin
OneDriveFileSyncShell64dllBlocked = "{0}" engellendi. Kendiniz silin
OneDriveInstalling = OneDrive kuruluyor...
OneDriveDownloading = OneDrive indiriliyor... ~33 MB
ClearFolder = "{0}" klasöründeki tüm dosyaları silin?
FilesBlocked = Aşağıdaki dosyalar 3. parti uygulamalar tarafından engelleniyor. \nKendiniz silin ve devam edin
TempNotEmpty = "{0}" klasörü boş değil. Kendiniz temizleyin
WindowsFeaturesTitle = Windows özellikleri
OptionalFeaturesTitle = İsteğe bağlı özellikler
EnableHardwareVT = UEFI'dan sanallaştırmayı aktifleştirin
UserShellFolderNotEmpty = "{0}" klasöründe bazı dosyalar kaldı. \nKendiniz yeni konuma taşıyın
RetrievingDrivesList = Sürücü listesi alınıyor...
NewUserShellFolderLocation = Yeni konum: "{0}"
DesktopDriveSelect = Masaüstü klasörün oluşturulacağı kök içindeki sürücüyü seçin
DocumentsDriveSelect = Belgeler klasörün oluşturulacağı kök içindeki sürücüyü seçin
DownloadsDriveSelect = İndirilenler klasörün oluşturulacağı kök içindeki sürücüyü seçin
MusicDriveSelect = Müzikler klasörün oluşturulacağı kök içindeki sürücüyü seçin
PicturesDriveSelect = Resimler klasörün oluşturulacağı kök içindeki sürücüyü seçin
VideosDriveSelect = Videolar klasörün oluşturulacağı kök içindeki sürücüyü seçin
DesktopRequest = Masaüstü klasörünün yerini değiştirmek ister misiniz?
DocumentsRequest = Belgeler klasörünün yerini değiştirmek ister misiniz?
DownloadsRequest = İndirilenler klasörünün yerini değiştirmek ister misiniz?
MusicRequest = Müzikler klasörünün yerini değiştirmek ister misiniz?
PicturesRequest = Resimler klasörünün yerini değiştirmek ister misiniz?
VideosRequest = Videolar klasörünün yerini değiştirmek ister misiniz?
DesktopFolderSelect = Masaüstü klasörü için bir klasör seçin.
DocumentsFolderSelect = Belgeler klasörü için bir klasör seçin.
DownloadsFolderSelect = İndirilenler klasörü için bir klasör seçin.
MusicFolderSelect = Müzikler klasörü için bir klasör seçin.
PicturesFolderSelect = Resimler klasörü için bir klasör seçin.
VideosFolderSelect = Videolar klasörü için bir klasör seçin.
DesktopDefaultFolder = Masaüstü klasörünün yerini eski haline getirmek ister misiniz?
DocumentsDefaultFolder = Belgeler klasörünün yerini eski haline getirmek ister misiniz?
DownloadsDefaultFolder = İndirilenler klasörünün yerini eski haline getirmek ister misiniz?
MusicDefaultFolder = Müzikler klasörünün yerini eski haline getirmek ister misiniz?
PicturesDefaultFolder = Resimler klasörünün yerini eski haline getirmek ister misiniz?
VideosDefaultFolder = Videolar klasörünün yerini eski haline getirmek ister misiniz?
ReservedStorageIsInUse = Ayrılmış depolama kullanımdayken bu işlem desteklenmez. \nLütfen tüm servis işlemlerinin tamamlanmasını bekleyin ve daha sonra tekrar deneyin
ShortcutPinning = "{0}" kısayolu Başlangıç sekmesine sabitlendi
UninstallUWPForAll = Bütün kullanıcılar için
UninstallUWPTitle = UWP Uygulamaları
WSLUpdateDownloading = Linux kernel güncelleme paketi indiriliyor... ~14 MB
WSLUpdateInstalling = Kernel güncelleme paketi kuruluyor
HEVCDownloading = "Cihaz Üreticisinden HEVC Video Uzantıları" İndiriliyor... ~2,8 MB
GraphicsPerformanceTitle = Grafik performans tercihi
GraphicsPerformanceRequest = Seçtiğiniz bir uygulamanın grafik performansı ayarını "Yüksek performans" olarak belirlemek ister misiniz?
CleanupTaskDescription = Kullanılmayan Windows dosyaları ve güncellemeleri yerleşik Disk Temizleme uygulaması ile temizleniyor
CleanupTaskNotificationTitle = Önemli bilgi
CleanupTaskNotificationEventTitle = Windows kullanılmayan dosyaları ve güncellemeleri temizlemek için görev çalıştırılsın ?
CleanupTaskNotificationEvent = Windows cleaning won't take long. Bir dahaki sefere bildirim 30 gün içinde görünecek
CleanupTaskNotificationSnoozeInterval = Hatırlatma Aralığı Seçin
CleanupNotificationTaskDescription = Windows kullanılmayan dosyaları ve güncellemeleri temizleme hakkında açılır bildirim hatırlatıcısı
FolderTaskDescription = "{0}" klasörü temizleniyor
ControlledFolderAccess = Kontrollü klasör erişimi
ProtectedFoldersRequest = Kontrollü klasör erişimini etkinleştirmek ve Microsoft Defender'ın kötü amaçlı uygulamalardan ve tehditlerden koruyacağı klasörü belirtmek ister misiniz?
ProtectedFoldersListRemoved = Silinen klasörler
AppControlledFolderRequest = Kontrollü Klasör erişimine izin verilen bir uygulama belirtmek ister misiniz?
AllowedControlledFolderAppsRemoved = Tüm kaldırılan uygulamalar
DefenderExclusionFolderRequest = Microsoft Defender kötü amaçlı yazılım taramalarının dışında tutulacak bir klasör belirtmek ister misiniz?
DefenderExclusionFoldersListRemoved = Hariç tutulan klasörler kaldırıldı
AddDefenderExclusionFileRequest = Microsoft Defender kötü amaçlı yazılım taramalarının dışında bırakılacak bir dosya belirtmek ister misiniz?
DefenderExclusionFilesRemoved = Hariç tutulan dosyalar kaldırıldı
EventViewerCustomViewName = Süreç Oluşturma
EventViewerCustomViewDescription = Süreç oluşturma ve komut satırı denetleme olayları
RestartWarning = Bilgisayarınızı yeniden başlattığınızdan emin olun
ErrorsLine = Satır
ErrorsFile = Dosya
ErrorsMessage = Hatalar/Uyarılar
Add = Ekle
AllFilesFilter = Tüm Dosyalar (*.*)|*.*
Change = Değiştir
Continue = Devam et
DialogBoxOpening = İletişim kutusu görüntüleniyor...
Disable = Devre dışı bırak
Dismiss = İptal
Enable = Aktif et
EXEFilesFilter = *.exe|*.exe|Tüm Dosyalar (*.*)|*.*
FolderSelect = Klasör seç
FilesWontBeMoved = Dosyalar taşınmayacak
Minute = 1 dakika
NoData = Görüntülenecek bir şey yok
NoInternetConnection = İnternet bağlantısı yok
NoResponse = https://store.rg-adguard.net ile bağlantı kurulamadı
Patient = Lütfen bekleyin...
Run = Başlat
Select = Seç
Skip = Atla
Skipped = Atlandı
Snooze = Ertelemek
SymbolicSkipped = Sembolik bir bağlantı oluşturma atlandı
Uninstall = Kaldır
Install = Yüklemek
HalfHour = 30 dakika
FourHours = 4 saat
'@

193
Sophia/PowerShell 5.1/uk-UA/Sophia.psd1

@ -1,93 +1,102 @@
ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Скрипт підтримує тільки Windows 10 x64
UnsupportedOSBuild = Скрипт підтримує тільки Windows 10 версії 2004/20H1 та вище
UnsupportedRelease = Виявлено нову версію
ControlledFolderAccessDisabled = Контрольований доступ до папок вимкнений
ScheduledTasks = Заплановані задачі
OneDriveUninstalling = Видалення OneDrive...
OneDriveNotEmptyFolder = Папка "{0}" не порожня. Видаліть її
OneDriveFileSyncShell64dllBlocked = "{0}" заблокований. Видаліть його вручну
OneDriveInstalling = OneDrive встановлюється...
OneDriveDownloading = Завантажується OneDrive... ~33 МБ
ClearFolder = Видаліть всі файли у папці "{0}"?
FilesBlocked = Наступні файли блокуються сторонніми програмами\nВидаліть їх вручну та продовжуйте
TempNotEmpty = Папка "{0}" не порожня. Очистіть її вручну
WindowsFeaturesTitle = Компоненти Windows
OptionalFeaturesTitle = Додаткові компоненти
EnableHardwareVT = Увімкніть віртуалізацію в UEFI
UserShellFolderNotEmpty = У папці "{0}" залишились файли. Перемістіть їх вручну у нове розташування
RetrievingDrivesList = Отримання списку дисків...
NewUserShellFolderLocation = Нове розташування: "{0}"
DesktopDriveSelect = Виберіть диск, в корні якого буде створена папка для "Робочий стіл"
DocumentsDriveSelect = Виберіть диск, в корні якого буде створена папка для "Документи"
DownloadsDriveSelect = Виберіть диск, в корні якого буде створена папка для "Завантаження"
MusicDriveSelect = Виберіть диск, в корні якого буде створена папка для "Музика"
PicturesDriveSelect = Виберіть диск, в корні якого буде створена папка для "Зображения"
VideosDriveSelect = Виберіть диск, в корні якого буде створена папка для "Відео"
DesktopRequest = Хочете змінити розташування папки "Робочий стіл"?
DocumentsRequest = Хочете змінити розташування папки "Документи"?
DownloadsRequest = Хочете змінити розташування папки "Завантаження"?
MusicRequest = Хочете змінити розташування папки "Музика"?
PicturesRequest = Хочете змінити розташування папки "Зображения"?
VideosRequest = Хочете змінити розташування папки "Відео"?
DesktopFolderSelect = Виберіть папку для "Робочий стіл"
DocumentsFolderSelect = Виберіть папку для "Документи"
DownloadsFolderSelect = Виберіть папку для "Завантаження"
MusicFolderSelect = Виберіть папку для "Музика"
PicturesFolderSelect = Виберіть папку для "Зображения"
VideosFolderSelect = Виберіть папку для "Відео"
DesktopDefaultFolder = Хочете змінити розташування папки "Робочий стіл" на значення за замовчуванням?
DocumentsDefaultFolder = Хочете змінити розташування папки "Документи" на значення за замовчуванням?
DownloadsDefaultFolder = Хочете змінити розташування папки "Завантаження" на значення за замовчуванням?
MusicDefaultFolder = Хочете змінити розташування папки "Музика" на значення за замовчуванням?
PicturesDefaultFolder = Хочете змінити розташування папки "Зображения" на значення за замовчуванням?
VideosDefaultFolder = Хочете змінити розташування папки "Відео" на значення за замовчуванням?
ReservedStorageIsInUse = Операція не підтримується, поки використовується зарезервоване сховище\nБудь ласка, дочекайтеся закінчення всіх обслуговуючих операцій і спробуйте знову
ShortcutPinning = Ярлик "{0}" закріплюється на початковому екрані
UninstallUWPForAll = Для всіх користувачів
UninstallUWPTitle = Програми UWP
WSLUpdateDownloading = Завантажується пакет оновлення ядра Linux... ~14 МБ
WSLUpdateInstalling = Встановлення пакета оновлення ядра Linux...
HEVCDownloading = Завантаження "Розширення відео HEVC від виробника пристрою"... ~2,8 МБ
GraphicsPerformanceTitle = Налаштування продуктивності графіки
GraphicsPerformanceRequest = Встановити для будь-якої програми за вашим вибором налаштування продуктивності графіки на "Висока продуктивність"?
CleanUpTaskToast = Очищення зайвих файлів і оновлень Windows почнеться через хвилину
CleanUpTaskDescription = Очищення зайвих файлів і оновлень Windows, використовуючи вбудовану програму очищення диска
FolderTaskDescription = Очищення папки "{0}"
ControlledFolderAccess = Контрольований доступ до папок
ProtectedFoldersRequest = Бажаєте увімкнути контрольований доступ до папок і вказати папку, яку Microsoft Defender буде захищати від шкідливих додатків і загроз?
ProtectedFoldersListRemoved = Видалення папки
AppControlledFolderRequest = Вказати додаток, якому дозволена робота через контрольований доступ до папок
AllowedControlledFolderAppsRemoved = Видалені дозволені додатки
DefenderTitle = Microsoft Defender
DefenderExclusionFolderRequest = Вказати папку, щоб виключити її зі списку сканування Microsoft Defender?
DefenderExclusionFoldersListRemoved = Виключені папки видалені
AddDefenderExclusionFileRequest = Вказати файл, щоб виключити його зі списку сканування Microsoft Defender?
DefenderExclusionFilesRemoved = Виключені файли видалені
EventViewerCustomViewName = Створення процесу
EventViewerCustomViewDescription = Події створення нового процесу і аудит командного рядка
RestartWarning = Обов'язково перезавантажте ваш ПК
ErrorsLine = Рядок
ErrorsFile = Файл
ErrorsMessage = Помилки/попередження
Add = Додати
AllFilesFilter = Усі файли (*.*)|*.*
Change = Змінити
Continue = Продовжити
DialogBoxOpening = Діалогове вікно відкривається...
Disable = Вимкнути
Enable = Увімкнути
EXEFilesFilter = *.exe|*.exe|Усі файли (*.*)|*.*
FolderSelect = Виберіть папку
FilesWontBeMoved = Файли не будуть перенесені
NoData = Відсутні дані
NoInternetConnection = Відсутнє інтернет-з'єднання
NoResponse = Не вдалося встановити звязок із https://store.rg-adguard.net
Patient = Будь ласка, зачекайте...
Select = Вибрати
Skip = Пропустити
Skipped = Пропущено
SymbolicSkipped = Пропущено створення символічного посилання
Uninstall = Видалити
Install = Встановити
'@
UnsupportedOSBitness = Скрипт підтримує тільки Windows 10 x64
UnsupportedOSBuild = Скрипт підтримує тільки Windows 10 версії 2004/20H1 та вище
UnsupportedRelease = Виявлено нову версію
ControlledFolderAccessDisabled = Контрольований доступ до папок вимкнений
ScheduledTasks = Заплановані задачі
OneDriveUninstalling = Видалення OneDrive...
OneDriveNotEmptyFolder = Папка "{0}" не порожня. Видаліть її
OneDriveFileSyncShell64dllBlocked = "{0}" заблокований. Видаліть його вручну
OneDriveInstalling = OneDrive встановлюється...
OneDriveDownloading = Завантажується OneDrive... ~33 МБ
ClearFolder = Видаліть всі файли у папці "{0}"?
FilesBlocked = Наступні файли блокуються сторонніми програмами\nВидаліть їх вручну та продовжуйте
TempNotEmpty = Папка "{0}" не порожня. Очистіть її вручну
WindowsFeaturesTitle = Компоненти Windows
OptionalFeaturesTitle = Додаткові компоненти
EnableHardwareVT = Увімкніть віртуалізацію в UEFI
UserShellFolderNotEmpty = У папці "{0}" залишились файли. Перемістіть їх вручну у нове розташування
RetrievingDrivesList = Отримання списку дисків...
NewUserShellFolderLocation = Нове розташування: "{0}"
DesktopDriveSelect = Виберіть диск, в корні якого буде створена папка для "Робочий стіл"
DocumentsDriveSelect = Виберіть диск, в корні якого буде створена папка для "Документи"
DownloadsDriveSelect = Виберіть диск, в корні якого буде створена папка для "Завантаження"
MusicDriveSelect = Виберіть диск, в корні якого буде створена папка для "Музика"
PicturesDriveSelect = Виберіть диск, в корні якого буде створена папка для "Зображения"
VideosDriveSelect = Виберіть диск, в корні якого буде створена папка для "Відео"
DesktopRequest = Хочете змінити розташування папки "Робочий стіл"?
DocumentsRequest = Хочете змінити розташування папки "Документи"?
DownloadsRequest = Хочете змінити розташування папки "Завантаження"?
MusicRequest = Хочете змінити розташування папки "Музика"?
PicturesRequest = Хочете змінити розташування папки "Зображения"?
VideosRequest = Хочете змінити розташування папки "Відео"?
DesktopFolderSelect = Виберіть папку для "Робочий стіл"
DocumentsFolderSelect = Виберіть папку для "Документи"
DownloadsFolderSelect = Виберіть папку для "Завантаження"
MusicFolderSelect = Виберіть папку для "Музика"
PicturesFolderSelect = Виберіть папку для "Зображения"
VideosFolderSelect = Виберіть папку для "Відео"
DesktopDefaultFolder = Хочете змінити розташування папки "Робочий стіл" на значення за замовчуванням?
DocumentsDefaultFolder = Хочете змінити розташування папки "Документи" на значення за замовчуванням?
DownloadsDefaultFolder = Хочете змінити розташування папки "Завантаження" на значення за замовчуванням?
MusicDefaultFolder = Хочете змінити розташування папки "Музика" на значення за замовчуванням?
PicturesDefaultFolder = Хочете змінити розташування папки "Зображения" на значення за замовчуванням?
VideosDefaultFolder = Хочете змінити розташування папки "Відео" на значення за замовчуванням?
ReservedStorageIsInUse = Операція не підтримується, поки використовується зарезервоване сховище\nБудь ласка, дочекайтеся закінчення всіх обслуговуючих операцій і спробуйте знову
ShortcutPinning = Ярлик "{0}" закріплюється на початковому екрані
UninstallUWPForAll = Для всіх користувачів
UninstallUWPTitle = Програми UWP
WSLUpdateDownloading = Завантажується пакет оновлення ядра Linux... ~14 МБ
WSLUpdateInstalling = Встановлення пакета оновлення ядра Linux...
HEVCDownloading = Завантаження "Розширення відео HEVC від виробника пристрою"... ~2,8 МБ
GraphicsPerformanceTitle = Налаштування продуктивності графіки
GraphicsPerformanceRequest = Встановити для будь-якої програми за вашим вибором налаштування продуктивності графіки на "Висока продуктивність"?
CleanupTaskDescription = Очищення зайвих файлів і оновлень Windows, використовуючи вбудовану програму очищення диска
CleanupTaskNotificationTitle = Важлива інформація
CleanupTaskNotificationEventTitle = Запустити задачу по очищенню зайвих файлів і оновлень Windows?
CleanupTaskNotificationEvent = Очищення Windows не займе багато часу. Наступний раз це повідомлення з'явиться через 30 днів
CleanupTaskNotificationSnoozeInterval = Виберіть інтервал повтору повідомлення
CleanupNotificationTaskDescription = Спливаюче повідомлення про нагадуванні з очищення зайвих файлів і оновлень Windows
FolderTaskDescription = Очищення папки "{0}"
ControlledFolderAccess = Контрольований доступ до папок
ProtectedFoldersRequest = Бажаєте увімкнути контрольований доступ до папок і вказати папку, яку Microsoft Defender буде захищати від шкідливих додатків і загроз?
ProtectedFoldersListRemoved = Видалення папки
AppControlledFolderRequest = Вказати додаток, якому дозволена робота через контрольований доступ до папок
AllowedControlledFolderAppsRemoved = Видалені дозволені додатки
DefenderExclusionFolderRequest = Вказати папку, щоб виключити її зі списку сканування Microsoft Defender?
DefenderExclusionFoldersListRemoved = Виключені папки видалені
AddDefenderExclusionFileRequest = Вказати файл, щоб виключити його зі списку сканування Microsoft Defender?
DefenderExclusionFilesRemoved = Виключені файли видалені
EventViewerCustomViewName = Створення процесу
EventViewerCustomViewDescription = Події створення нового процесу і аудит командного рядка
RestartWarning = Обов'язково перезавантажте ваш ПК
ErrorsLine = Рядок
ErrorsFile = Файл
ErrorsMessage = Помилки/попередження
Add = Додати
AllFilesFilter = Усі файли (*.*)|*.*
Change = Змінити
Continue = Продовжити
DialogBoxOpening = Діалогове вікно відкривається...
Disable = Вимкнути
Dismiss = Відміна
Enable = Увімкнути
EXEFilesFilter = *.exe|*.exe|Усі файли (*.*)|*.*
FolderSelect = Виберіть папку
FilesWontBeMoved = Файли не будуть перенесені
Minute = 1 хвилина
NoData = Відсутні дані
NoInternetConnection = Відсутнє інтернет-з'єднання
NoResponse = Не вдалося встановити звязок із https://store.rg-adguard.net
Patient = Будь ласка, зачекайте...
Run = Запустити
Select = Вибрати
Skip = Пропустити
Skipped = Пропущено
Snooze = відкласти
SymbolicSkipped = Пропущено створення символічного посилання
Uninstall = Видалити
Install = Встановити
HalfHour = 30 хвилин
FourHours = 4 години
'@
Loading…
Cancel
Save