Browse Source

17.03.2021 v5.8

pull/149/head
Dmitry Nefedov 4 years ago
committed by GitHub
parent
commit
4995d17343
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 28
      Sophia/LTSC/Sophia.ps1
  2. BIN
      Sophia/LTSC/Sophia.psd1
  3. 1078
      Sophia/LTSC/Sophia.psm1
  4. 159
      Sophia/LTSC/cn-CN/Sophia.psd1
  5. 159
      Sophia/LTSC/de-DE/Sophia.psd1
  6. 159
      Sophia/LTSC/en-US/Sophia.psd1
  7. 159
      Sophia/LTSC/es-ES/Sophia.psd1
  8. 159
      Sophia/LTSC/fr-FR/Sophia.psd1
  9. 159
      Sophia/LTSC/it-IT/Sophia.psd1
  10. 73
      Sophia/LTSC/pt-BR/Sophia.psd1
  11. 159
      Sophia/LTSC/ru-RU/Sophia.psd1
  12. 159
      Sophia/LTSC/tr-TR/Sophia.psd1
  13. 159
      Sophia/LTSC/uk-UA/Sophia.psd1

28
Sophia/LTSC/Sophia.ps1

@ -2,9 +2,9 @@
.SYNOPSIS .SYNOPSIS
Default preset file for "Windows 10 Sophia Script" (LTSC version) Default preset file for "Windows 10 Sophia Script" (LTSC version)
Version: v5.1 Version: v5.1.1
Date: 05.03.2021 Date: 17.03.2021
Copyright (c) 2021 farag & oZ-Zo Copyright (c) 20152021 farag & oZ-Zo
https://github.com/farag2 https://github.com/farag2
https://github.com/oz-zo https://github.com/oz-zo
@ -30,10 +30,10 @@
https://www.reddit.com/r/PowerShell/comments/go2n5v/powershell_script_setup_windows_10/ https://www.reddit.com/r/PowerShell/comments/go2n5v/powershell_script_setup_windows_10/
.NOTES .NOTES
Supported Windows 10 Supported Windows 10 version
Version: 1809 Version: 1809
Build: 17763 Build: 17763
Editions: Enterprise LTSC Edition: Enterprise LTSC
Architecture: x64 Architecture: x64
.NOTES .NOTES
@ -57,7 +57,7 @@ param
Clear-Host Clear-Host
$Host.UI.RawUI.WindowTitle = "Windows 10 Sophia Script for LTSC v5.1 | $([char]0x00A9) farag & oz-zo, 2015–2021" $Host.UI.RawUI.WindowTitle = "Windows 10 Sophia Script for LTSC v5.1.1 | Made with $([char]::ConvertFromUtf32(0x1F497)) of Windows 10 | $([char]0x00A9) farag & oz-zo, 2015–2021"
Remove-Module -Name Sophia -Force -ErrorAction Ignore Remove-Module -Name Sophia -Force -ErrorAction Ignore
Import-Module -Name $PSScriptRoot\Sophia.psd1 -PassThru -Force Import-Module -Name $PSScriptRoot\Sophia.psd1 -PassThru -Force
@ -705,20 +705,14 @@ SmartActiveHours -Enable
# SmartActiveHours -Disable # SmartActiveHours -Disable
<# <#
Register app, calculate hash, and set as default for specific extension without the "How do you want to open this?" pop-up Register app, calculate hash, and set as default for specific extension without the "How do you want to open this?" pop-up
Зарегистрировать приложение, вычислить хэш и установить как приложение по умолчанию для конкретного расширения без всплывающего окошка "Каким образом вы хотите открыть этот файл?" Зарегистрировать приложение, вычислить хэш и установить как приложение по умолчанию для конкретного расширения без всплывающего окна "Каким образом вы хотите открыть этот файл?"
Examples: Examples:
Примеры: Примеры:
Set-Association -ProgramPath "C:\SumatraPDF.exe" -Extension .pdf -Icon "shell32.dll,100" Set-Association -ProgramPath "C:\SumatraPDF.exe" -Extension .pdf -Icon "shell32.dll,100"
Set-Association -ProgramPath "C:\Program Files\Notepad++\notepad++.exe" -Extension .psm1 -Icon "C:\Program Files\Notepad++\notepad++.exe,0" Set-Association -ProgramPath "%ProgramFiles%\Notepad++\notepad++.exe" -Extension .txt -Icon "%ProgramFiles%\Notepad++\notepad++.exe,0"
The app must be installed
Приложение должно быть установлено
Do not use relative paths like "%Program Files%"
Не используйте относительные пути вида "%Program Files%"
#> #>
# Set-Association -ProgramPath "C:\Program Files\Notepad++\notepad++.exe" -Extension .psm1 -Icon "C:\Program Files\Notepad++\notepad++.exe,0" # Set-Association -ProgramPath "%ProgramFiles%\Notepad++\notepad++.exe" -Extension .txt -Icon "%ProgramFiles%\Notepad++\notepad++.exe,0"
#endregion System #endregion System
#region Start menu #region Start menu
@ -787,14 +781,16 @@ SetAppGraphicsPerformance
CleanupTask -Register CleanupTask -Register
# Delete the "Windows Cleanup" and "Windows Cleanup Notification" scheduled tasks for cleaning up Windows unused files and updates # Delete the "Windows Cleanup" and "Windows Cleanup Notification" scheduled tasks for cleaning up Windows unused files and updates
# Удалить задачу "Windows Cleanup" и "Windows Cleanup Notification" по очистке неиспользуемых файлов и обновлений Windows из Планировщика заданий # Удалить задачи "Windows Cleanup" и "Windows Cleanup Notification" по очистке неиспользуемых файлов и обновлений Windows из Планировщика заданий
# CleanupTask -Delete # CleanupTask -Delete
<# <#
Create the "SoftwareDistribution" scheduled task for cleaning up the %SystemRoot%\SoftwareDistribution\Download folder Create the "SoftwareDistribution" scheduled task for cleaning up the %SystemRoot%\SoftwareDistribution\Download folder
The task will wait until the Windows Updates service finishes running
The task runs every 90 days The task runs every 90 days
Создать задачу "SoftwareDistribution" по очистке папки %SystemRoot%\SoftwareDistribution\Download в Планировщике заданий Создать задачу "SoftwareDistribution" по очистке папки %SystemRoot%\SoftwareDistribution\Download в Планировщике заданий
Задача будет ждать, пока служба обновлений Windows не закончит работу
Задача выполняется каждые 90 дней Задача выполняется каждые 90 дней
#> #>
SoftwareDistributionTask -Register SoftwareDistributionTask -Register

BIN
Sophia/LTSC/Sophia.psd1

Binary file not shown.

1078
Sophia/LTSC/Sophia.psm1

File diff suppressed because it is too large

159
Sophia/LTSC/cn-CN/Sophia.psd1

@ -1,90 +1,73 @@
ConvertFrom-StringData -StringData @' ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = 该脚本仅支持Windows 10 x64 UnsupportedOSBitness = 该脚本仅支持Windows 10 x64
UnsupportedOSBuild = 该脚本支持Windows 10版本1809 Enterprise LTSC UnsupportedOSBuild = 该脚本支持Windows 10版本1809 Enterprise LTSC
UnsupportedRelease = 找到新版本 UnsupportedRelease = 找到新版本
ControlledFolderAccessDisabled = 受控文件夹访问禁用 ControlledFolderAccessDisabled = 受控文件夹访问禁用
ScheduledTasks = 计划任务 ScheduledTasks = 计划任务
ClearFolder = 删除"{0}"文件夹中的所有文件 ClearFolder = 删除{0}文件夹中的所有文件
FilesBlocked = 以下文件被第三方应用程序阻止手动删除它们并继续 FilesBlocked = 以下文件被第三方应用程序阻止手动删除它们并继续
TempNotEmpty = "{0}"文件夹不为空 手动清除 TempNotEmpty = {0}文件夹不为空 手动清除
WindowsFeaturesTitle = Windows功能 WindowsFeaturesTitle = Windows功能
OptionalFeaturesTitle = 可选功能 OptionalFeaturesTitle = 可选功能
EnableHardwareVT = UEFI中开启虚拟化 EnableHardwareVT = UEFI中开启虚拟化
UserShellFolderNotEmpty = 一些文件留在了"{0}"文件夹请手动将它们移到一个新位置 UserShellFolderNotEmpty = 一些文件留在了{0}文件夹请手动将它们移到一个新位置
RetrievingDrivesList = 取得驱动器列表 RetrievingDrivesList = 取得驱动器列表
NewUserShellFolderLocation = 新位置"{0}" DriveSelect = 选择将在其根目录中创建{0}文件夹的驱动器
DesktopDriveSelect = 请选择一个驱动器,桌面文件夹将创建在其根目录 UserFolderRequest = 是否要更改{0}文件夹位置
DocumentsDriveSelect = 请选择一个驱动器,文档文件夹将创建在其根目录 UserFolderSelect = {0}文件夹选择一个文件夹
DownloadsDriveSelect = 请选择一个驱动器,下载文件夹将创建在其根目录 UserDefaultFolder = 您想将{0}文件夹的位置更改为默认值吗
MusicDriveSelect = 请选择一个驱动器,音乐文件夹将创建在其根目录 GraphicsPerformanceTitle = 图形性能偏好
PicturesDriveSelect = 请选择一个驱动器,图片文件夹将创建在其根目录 GraphicsPerformanceRequest = 是否将所选应用程序的图形性能设置设为"高性能"
VideosDriveSelect = 请选择一个驱动器,视频文件夹将创建在其根目录 TaskNotificationTitle = 通知
DesktopRequest = 是否要更改桌面文件夹位置 CleanupTaskNotificationTitle = 重要信息
DocumentsRequest = 是否要更改文档文件夹位置 CleanupTaskDescription = 使用内置磁盘清理工具清理未使用的Windows文件和更新
DownloadsRequest = 是否要更改下载文件夹位置 CleanupTaskNotificationEventTitle = 运行任务以清理Windows未使用的文件和更新
MusicRequest = 是否要更改音乐文件夹位置 CleanupTaskNotificationEvent = Windows清理不会花很长时间下次通知将在30天内显示
PicturesRequest = 是否要更改图片文件夹位置 CleanupTaskNotificationSnoozeInterval = 选择提醒间隔
VideosRequest = 是否要更改视频文件夹位置 CleanupNotificationTaskDescription = 关于清理Windows未使用的文件和更新的弹出通知提醒
DesktopFolderSelect = 桌面文件夹选择一个文件夹 SoftwareDistributionTaskNotificationEvent = Windows更新缓存已成功删除
DocumentsFolderSelect = 文档文件夹选择一个文件夹 TempTaskNotificationEvent = 临时文件文件夹已成功清理
DownloadsFolderSelect = 下载文件夹选择一个文件夹 FolderTaskDescription = {0}文件夹清理
MusicFolderSelect = 音乐文件夹选择一个文件夹 ControlledFolderAccess = 受控文件夹访问
PicturesFolderSelect = 图片文件夹选择一个文件夹 ProtectedFoldersRequest = 是否启用受控文件夹访问权限并指定文件夹,由微软Defender保护其免受恶意应用程序威胁
VideosFolderSelect = 视频文件夹选择一个文件夹 ProtectedFoldersListRemoved = 已被移除的文件夹
DesktopDefaultFolder = 是否要将桌面文件夹位置改为默认值 AppControlledFolderRequest = 是否指定应用获取受控文件夹访问权限
DocumentsDefaultFolder = 是否要将文档文件夹位置改为默认值 AllowedControlledFolderAppsRemoved = 删除了允许的应用
DownloadsDefaultFolder = 是否要将下载文件夹位置改为默认值 DefenderExclusionFolderRequest = 是否要添加指定文件夹到微软Defender的恶意软件扫描白名单
MusicDefaultFolder = 是否要将音乐文件夹位置改为默认值 DefenderExclusionFoldersListRemoved = 排除的文件夹已删除
PicturesDefaultFolder = 是否要将图片文件夹位置改为默认值 AddDefenderExclusionFileRequest = 是否要添加指定文件到微软Defender的恶意软件扫描白名单
VideosDefaultFolder = 是否要将视频文件夹位置改为默认值 DefenderExclusionFilesRemoved = 排除文件已删除
GraphicsPerformanceTitle = 图形性能偏好 EventViewerCustomViewName = 进程创建
GraphicsPerformanceRequest = 是否将所选应用程序的图形性能设置设为"高性能" EventViewerCustomViewDescription = 进程创建和命令行审核事件
CleanupTaskDescription = 使用内置磁盘清理工具清理未使用的Windows文件和更新 RestartWarning = 确保重启电脑
CleanupTaskNotificationTitle = 重要信息 ErrorsLine =
CleanupTaskNotificationEventTitle = 运行任务以清理Windows未使用的文件和更新 ErrorsFile = 文件
CleanupTaskNotificationEvent = Windows清理不会花很长时间下次通知将在30天内显示 ErrorsMessage = 错误/警告
CleanupTaskNotificationSnoozeInterval = 选择提醒间隔 Add = 添加
CleanupNotificationTaskDescription = 关于清理Windows未使用的文件和更新的弹出通知提醒 AllFilesFilter = 所有文件 (*.*)|*.*
FolderTaskDescription = 定时清理"{0}" Change = 更改
ControlledFolderAccess = 受控文件夹访问 Delete = 删除
ProtectedFoldersRequest = 是否启用受控文件夹访问权限并指定文件夹,由微软Defender保护其免受恶意应用程序威胁 DialogBoxOpening = 显示对话窗口
ProtectedFoldersListRemoved = 已被移除的文件夹 Disable = 禁用
AppControlledFolderRequest = 是否指定应用获取受控文件夹访问权限 Dismiss = 解雇
AllowedControlledFolderAppsRemoved = 删除了允许的应用 Enable = 启用
DefenderExclusionFolderRequest = 是否要添加指定文件夹到微软Defender的恶意软件扫描白名单 EXEFilesFilter = *.exe|*.exe|所有文件 (*.*)|*.*
DefenderExclusionFoldersListRemoved = 排除的文件夹已删除 FolderSelect = 选择一个文件夹
AddDefenderExclusionFileRequest = 是否要添加指定文件到微软Defender的恶意软件扫描白名单 FilesWontBeMoved = 文件将不会被移动
DefenderExclusionFilesRemoved = 排除文件已删除 FourHours = 4个小时
EventViewerCustomViewName = 进程创建 HalfHour = 30分钟
EventViewerCustomViewDescription = 进程创建和命令行审核事件 Install = 安装
RestartWarning = 确保重启电脑 Minute = 1分钟
ErrorsLine = NoData = 无数据
ErrorsFile = 文件 NoInternetConnection = 无网络连接
ErrorsMessage = 错误/警告 NoResponse = 无法建立https://store.rg-adguard.net连接
Add = 添加 Patient = 请等待
AllFilesFilter = 所有文件 (*.*)|*.* Run = 运行
Change = 更改 Select = 选择
Continue = 接续 SelectAll = 全选
DialogBoxOpening = 显示对话窗口 Skip = 跳过
Disable = 禁用 Skipped = 已跳过
Dismiss = 解雇 Snooze = 推迟
Enable = 启用 SymbolicSkipped = 跳过创建符号链接
EXEFilesFilter = *.exe|*.exe|所有文件 (*.*)|*.* Uninstall = 卸载
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个小时
'@ '@

159
Sophia/LTSC/de-DE/Sophia.psd1

@ -1,90 +1,73 @@
ConvertFrom-StringData -StringData @' ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Das Skript unterstützt nur Windows 10 x64 UnsupportedOSBitness = Das Skript unterstützt nur Windows 10 x64
UnsupportedOSBuild = Das Skript unterstützt Windows 10 1809 Enterprise LTSC UnsupportedOSBuild = Das Skript unterstützt Windows 10 1809 Enterprise LTSC
UnsupportedRelease = Neue Version gefunden UnsupportedRelease = Neue Version gefunden
ControlledFolderAccessDisabled = Kontrollierter Ordnerzugriff deaktiviert ControlledFolderAccessDisabled = Kontrollierter Ordnerzugriff deaktiviert
ScheduledTasks = Geplante Aufgaben ScheduledTasks = Geplante Aufgaben
ClearFolder = Löscht alle Dateien im Ordner "{0}"? 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 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 TempNotEmpty = Der Ordner "{0}" ist nicht leer. Löschen Sie ihn manuell
WindowsFeaturesTitle = Windows Eigenschaften WindowsFeaturesTitle = Windows Eigenschaften
OptionalFeaturesTitle = Optionale Eigenschaften OptionalFeaturesTitle = Optionale Eigenschaften
EnableHardwareVT = Virtualisierung in UEFI aktivieren EnableHardwareVT = Virtualisierung in UEFI aktivieren
UserShellFolderNotEmpty = Einige im Ordner "{0}" verbliebene Dateien \nVerschieben Sie sie manuell an einen neuen Ort UserShellFolderNotEmpty = Einige im Ordner "{0}" verbliebene Dateien \nVerschieben Sie sie manuell an einen neuen Ort
RetrievingDrivesList = Abrufen der Laufwerksliste... RetrievingDrivesList = Abrufen der Laufwerksliste...
NewUserShellFolderLocation = Neuer Standort: "{0}" DriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der "{0}"-Ordner erstellt werden soll
DesktopDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Desktop-Ordner erstellt werden soll UserFolderRequest = Möchten Sie den Speicherort des "{0}"-Ordners ändern?
DocumentsDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner "Dokumente" erstellt werden soll UserFolderSelect = Wählen Sie einen Ordner für den Ordner "{0}"
DownloadsDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner Downloads erstellt wird UserDefaultFolder = Möchten Sie den Speicherort des "{0}"-Ordners auf den Standardwert ändern?
MusicDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner "Musik" erstellt wird GraphicsPerformanceTitle = Bevorzugte Grafikleistung
PicturesDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner "Bilder" erstellt werden soll GraphicsPerformanceRequest = Möchten Sie die Einstellung der Grafikleistung einer App Ihrer Wahl auf "Hohe Leistung" setzen?
VideosDriveSelect = Wählen Sie das Laufwerk, in dessen Stammverzeichnis der Ordner Videos erstellt wird TaskNotificationTitle = Benachrichtigung
DesktopRequest = Möchten Sie den Speicherort des Desktop-Ordners ändern? CleanupTaskNotificationTitle = Wichtige informationen
DocumentsRequest = Möchten Sie den Speicherort des Ordners Dokumente ändern? CleanupTaskDescription = Bereinigung ungenutzter Windows-Dateien und -Updates mit der integrierten Festplatten-Bereinigungsanwendung
DownloadsRequest = Möchten Sie den Speicherort des Ordners Downloads ändern? CleanupTaskNotificationEventTitle = Aufgabe ausführen, um nicht verwendete Windows-Dateien und -Updates zu bereinigen?
MusicRequest = Möchten Sie den Speicherort des Ordners Musik ändern? CleanupTaskNotificationEvent = Die Windows-Bereinigung dauert nicht lange. Das nächste Mal wird die Benachrichtigung in 30 Tagen angezeigt
PicturesRequest = Möchten Sie den Speicherort des Ordners Bilder ändern? CleanupTaskNotificationSnoozeInterval = Wählen Sie ein Erinnerungsintervall
VideosRequest = Möchten Sie den Speicherort des Ordners Videos ändern? CleanupNotificationTaskDescription = Bereinigung ungenutzter Windows-Dateien und -Updates mit der integrierten Festplatten-Bereinigungsanwendung
DesktopFolderSelect = Wählen Sie einen Ordner für den Ordner Desktop SoftwareDistributionTaskNotificationEvent = Der Windows Update-Cache wurde erfolgreich gelöscht
DocumentsFolderSelect = Wählen Sie einen Ordner für den Ordner Dokumente TempTaskNotificationEvent = Der Ordner mit den temporären Dateien wurde erfolgreich bereinigt
DownloadsFolderSelect = Wählen Sie einen Ordner für den Ordner Downloads FolderTaskDescription = Die Bereinigung des Ordners "{0}"
MusicFolderSelect = Wählen Sie einen Ordner für den Ordner Musik ControlledFolderAccess = Kontrollierter Ordner-Zugriff
PicturesFolderSelect = Wählen Sie einen Ordner für den Ordner Bilder aus ProtectedFoldersRequest = Möchten Sie den kontrollierten Ordnerzugriff aktivieren und den Ordner angeben, den Microsoft Defender vor bösartigen Anwendungen und Bedrohungen schützen soll?
VideosFolderSelect = Wählen Sie einen Ordner für den Ordner Videos ProtectedFoldersListRemoved = Gelöschte Ordner
DesktopDefaultFolder = Möchten Sie den Speicherort des Desktop-Ordners auf den Standardwert ändern? AppControlledFolderRequest = Möchten Sie eine Anwendung angeben, die über den Zugriff auf Kontrollierte Ordner erlaubt ist?
DocumentsDefaultFolder = Möchten Sie den Speicherort des Ordners Dokumente auf den Standardwert ändern? AllowedControlledFolderAppsRemoved = Erlaubte Anwendungen entfernt
DownloadsDefaultFolder = Möchten Sie den Speicherort des Ordners Downloads auf den Standardwert ändern? DefenderExclusionFolderRequest = Möchten Sie einen Ordner angeben, der von den Malware-Scans von Microsoft Defender ausgeschlossen werden soll?
MusicDefaultFolder = Möchten Sie den Speicherort des Ordners Musik auf den Standardwert ändern? DefenderExclusionFoldersListRemoved = Ausgeschlossene Ordner entfernt
PicturesDefaultFolder = Möchten Sie den Speicherort des Ordners "Bilder" auf den Standardwert ändern? AddDefenderExclusionFileRequest = Möchten Sie eine Datei angeben, die von den Malware-Scans von Microsoft Defender ausgeschlossen werden soll?
VideosDefaultFolder = Möchten Sie den Speicherort des Ordners Videos auf den Standardwert ändern? DefenderExclusionFilesRemoved = Ausgeschlossene Dateien entfernt
GraphicsPerformanceTitle = Bevorzugte Grafikleistung EventViewerCustomViewName = Prozess-Erstellung
GraphicsPerformanceRequest = Möchten Sie die Einstellung der Grafikleistung einer App Ihrer Wahl auf "Hohe Leistung" setzen? EventViewerCustomViewDescription = Ereignisse zur Prozesserstellung und Befehlszeilen-Auditierung
CleanupTaskDescription = Bereinigung ungenutzter Windows-Dateien und -Updates mit der integrierten Festplatten-Bereinigungsanwendung RestartWarning = Achten Sie darauf, Ihren PC neu zu starten
CleanupTaskNotificationTitle = Wichtige informationen ErrorsLine = Zeile
CleanupTaskNotificationEventTitle = Aufgabe ausführen, um nicht verwendete Windows-Dateien und -Updates zu bereinigen? ErrorsFile = Datei
CleanupTaskNotificationEvent = Die Windows-Bereinigung dauert nicht lange. Das nächste Mal wird die Benachrichtigung in 30 Tagen angezeigt ErrorsMessage = Fehler/Warnungen
CleanupTaskNotificationSnoozeInterval = Wählen Sie ein Erinnerungsintervall Add = Hinzufügen
CleanupNotificationTaskDescription = Bereinigung ungenutzter Windows-Dateien und -Updates mit der integrierten Festplatten-Bereinigungsanwendung AllFilesFilter = Alle Dateien (*.*)|*.*
FolderTaskDescription = Die "{0}"-Ordnerbereinigung Change = Ändern
ControlledFolderAccess = Kontrollierter Ordner-Zugriff Delete = Löschen
ProtectedFoldersRequest = Möchten Sie den kontrollierten Ordnerzugriff aktivieren und den Ordner angeben, den Microsoft Defender vor bösartigen Anwendungen und Bedrohungen schützen soll? DialogBoxOpening = Anzeigen des Dialogfensters...
ProtectedFoldersListRemoved = Gelöschte Ordner Disable = Deaktivieren
AppControlledFolderRequest = Möchten Sie eine Anwendung angeben, die über den Zugriff auf Kontrollierte Ordner erlaubt ist? Dismiss = Stornieren
AllowedControlledFolderAppsRemoved = Erlaubte Anwendungen entfernt Enable = Aktivieren
DefenderExclusionFolderRequest = Möchten Sie einen Ordner angeben, der von den Malware-Scans von Microsoft Defender ausgeschlossen werden soll? EXEFilesFilter = *.exe|*.exe|Alle Dateien (*.*)|*.*
DefenderExclusionFoldersListRemoved = Ausgeschlossene Ordner entfernt FolderSelect = Wählen Sie einen Ordner aus
AddDefenderExclusionFileRequest = Möchten Sie eine Datei angeben, die von den Malware-Scans von Microsoft Defender ausgeschlossen werden soll? FilesWontBeMoved = Dateien werden nicht verschoben
DefenderExclusionFilesRemoved = Ausgeschlossene Dateien entfernt FourHours = 4 Stunden
EventViewerCustomViewName = Prozess-Erstellung HalfHour = 30 Minuten
EventViewerCustomViewDescription = Ereignisse zur Prozesserstellung und Befehlszeilen-Auditierung Install = Installieren
RestartWarning = Achten Sie darauf, Ihren PC neu zu starten Minute = 1 Minute
ErrorsLine = Zeile NoData = Nichts anzuzeigen
ErrorsFile = Datei NoInternetConnection = Keine Internetverbindung
ErrorsMessage = Fehler/Warnungen NoResponse = Eine Verbindung mit https://store.rg-adguard.net konnte nicht hergestellt werden
Add = Hinzufügen Patient = Bitte Warten...
AllFilesFilter = Alle Dateien (*.*)|*.* Run = Starten
Change = Ändern Select = Wählen Sie
Continue = Fortfahren SelectAll = Wählen Sie Alle
DialogBoxOpening = Anzeigen des Dialogfensters... Skip = Überspringen
Disable = Deaktivieren Skipped = Übersprungen
Dismiss = Stornieren Snooze = Verschieben
Enable = Aktivieren SymbolicSkipped = Das Erstellen eines symbolischen Links wurde übersprungen
EXEFilesFilter = *.exe|*.exe|Alle Dateien (*.*)|*.* Uninstall = Deinstallieren
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
'@ '@

159
Sophia/LTSC/en-US/Sophia.psd1

@ -1,90 +1,73 @@
ConvertFrom-StringData -StringData @' ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = The script supports Windows 10 x64 only UnsupportedOSBitness = The script supports Windows 10 x64 only
UnsupportedOSBuild = The script supports Windows 10 1809 Enterprise LTSC UnsupportedOSBuild = The script supports Windows 10 1809 Enterprise LTSC
UnsupportedRelease = New version found UnsupportedRelease = New version found
ControlledFolderAccessDisabled = Controlled folder access disabled ControlledFolderAccessDisabled = Controlled folder access disabled
ScheduledTasks = Scheduled tasks ScheduledTasks = Scheduled tasks
ClearFolder = Delete all files in the "{0}" folder? 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 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 TempNotEmpty = The "{0}" folder is not empty. Clear it manually
WindowsFeaturesTitle = Windows features WindowsFeaturesTitle = Windows features
OptionalFeaturesTitle = Optional features OptionalFeaturesTitle = Optional features
EnableHardwareVT = Enable Virtualization in UEFI EnableHardwareVT = Enable Virtualization in UEFI
UserShellFolderNotEmpty = Some files left in the "{0}" folder. Move them manually to a new location UserShellFolderNotEmpty = Some files left in the "{0}" folder. Move them manually to a new location
RetrievingDrivesList = Retrieving drives list... RetrievingDrivesList = Retrieving drives list...
NewUserShellFolderLocation = New location: "{0}" DriveSelect = Select the drive within the root of which the "{0}" folder will be created
DesktopDriveSelect = Select the drive within the root of which the Desktop folder will be created UserFolderRequest = Would you like to change the location of the "{0}" folder?
DocumentsDriveSelect = Select the drive within the root of which the Documents folder will be created UserFolderSelect = Select a folder for the "{0}" folder
DownloadsDriveSelect = Select the drive within the root of which the Downloads folder will be created UserDefaultFolder = Would you like to change the location of the "{0}" folder to the default value?
MusicDriveSelect = Select the drive within the root of which the Music folder will be created GraphicsPerformanceTitle = Graphics performance preference
PicturesDriveSelect = Select the drive within the root of which the Pictures folder will be created GraphicsPerformanceRequest = Would you like to set the graphics performance setting of an app of your choice to "High performance"?
VideosDriveSelect = Select the drive within the root of which the Videos folder will be created TaskNotificationTitle = Notification
DesktopRequest = Would you like to change the location of the Desktop folder? CleanupTaskNotificationTitle = Important Information
DocumentsRequest = Would you like to change the location of the Documents folder? CleanupTaskDescription = Cleaning up Windows unused files and updates using built-in Disk cleanup app
DownloadsRequest = Would you like to change the location of the Downloads folder? CleanupTaskNotificationEventTitle = Run task to clean up Windows unused files and updates?
MusicRequest = Would you like to change the location of the Music folder? CleanupTaskNotificationEvent = Windows cleanup won't take long. Next time this notification will appear in 30 days
PicturesRequest = Would you like to change the location of the Pictures folder? CleanupTaskNotificationSnoozeInterval = Select a Reminder Interval
VideosRequest = Would you like to change the location of the Videos folder? CleanupNotificationTaskDescription = Pop-up notification reminder about cleaning up Windows unused files and updates
DesktopFolderSelect = Select a folder for the Desktop folder SoftwareDistributionTaskNotificationEvent = The Windows update cache successfully deleted
DocumentsFolderSelect = Select a folder for the Documents folder TempTaskNotificationEvent = The temp files folder successfully cleaned up
DownloadsFolderSelect = Select a folder for the Downloads folder FolderTaskDescription = The "{0}" folder cleanup
MusicFolderSelect = Select a folder for the Music folder ControlledFolderAccess = Controlled folder access
PicturesFolderSelect = Select a folder for the Pictures folder ProtectedFoldersRequest = Would you like to enable Controlled folder access and specify the folder that Microsoft Defender will protect from malicious apps and threats?
VideosFolderSelect = Select a folder for the Videos folder ProtectedFoldersListRemoved = Removed folders
DesktopDefaultFolder = Would you like to change the location of the Desktop folder to the default value? AppControlledFolderRequest = Would you like to specify an app that is allowed through Controlled Folder access?
DocumentsDefaultFolder = Would you like to change the location of the Documents folder to the default value? AllowedControlledFolderAppsRemoved = Removed allowed apps
DownloadsDefaultFolder = Would you like to change the location of the Downloads folder to the default value? DefenderExclusionFolderRequest = Would you like to specify a folder to be excluded from Microsoft Defender malware scans?
MusicDefaultFolder = Would you like to change the location of the Music folder to the default value? DefenderExclusionFoldersListRemoved = Excluded folders removed
PicturesDefaultFolder = Would you like to change the location of the Pictures folder to the default value? AddDefenderExclusionFileRequest = Would you like to specify a file to be excluded from Microsoft Defender malware scans?
VideosDefaultFolder = Would you like to change the location of the Videos folder to the default value? DefenderExclusionFilesRemoved = Excluded files removed
GraphicsPerformanceTitle = Graphics performance preference EventViewerCustomViewName = Process Creation
GraphicsPerformanceRequest = Would you like to set the graphics performance setting of an app of your choice to "High performance"? EventViewerCustomViewDescription = Process creation and command-line auditing events
CleanupTaskDescription = Cleaning up Windows unused files and updates using built-in Disk cleanup app RestartWarning = Make sure to restart your PC
CleanupTaskNotificationTitle = Important Information ErrorsLine = Line
CleanupTaskNotificationEventTitle = Run task to clean up Windows unused files and updates? ErrorsFile = File
CleanupTaskNotificationEvent = Windows cleanup won't take long. Next time this notification will appear in 30 days ErrorsMessage = Errors/Warnings
CleanupTaskNotificationSnoozeInterval = Select a Reminder Interval Add = Add
CleanupNotificationTaskDescription = Pop-up notification reminder about cleaning up Windows unused files and updates AllFilesFilter = All Files (*.*)|*.*
FolderTaskDescription = The "{0}" folder cleaning Change = Change
ControlledFolderAccess = Controlled folder access Delete = Delete
ProtectedFoldersRequest = Would you like to enable Controlled folder access and specify the folder that Microsoft Defender will protect from malicious apps and threats? DialogBoxOpening = Displaying the dialog box...
ProtectedFoldersListRemoved = Removed folders Disable = Disable
AppControlledFolderRequest = Would you like to specify an app that is allowed through Controlled Folder access? Dismiss = Dismiss
AllowedControlledFolderAppsRemoved = Removed allowed apps Enable = Enable
DefenderExclusionFolderRequest = Would you like to specify a folder to be excluded from Microsoft Defender malware scans? EXEFilesFilter = *.exe|*.exe|All Files (*.*)|*.*
DefenderExclusionFoldersListRemoved = Excluded folders removed FolderSelect = Select a folder
AddDefenderExclusionFileRequest = Would you like to specify a file to be excluded from Microsoft Defender malware scans? FilesWontBeMoved = Files will not be moved
DefenderExclusionFilesRemoved = Excluded files removed FourHours = 4 Hours
EventViewerCustomViewName = Process Creation HalfHour = 30 Minutes
EventViewerCustomViewDescription = Process creation and command-line auditing events Install = Install
RestartWarning = Make sure to restart your PC Minute = 1 Minute
ErrorsLine = Line NoData = Nothing to display
ErrorsFile = File NoInternetConnection = No Internet connection
ErrorsMessage = Errors/Warnings NoResponse = A connection could not be established with https://store.rg-adguard.net
Add = Add Patient = Please wait...
AllFilesFilter = All Files (*.*)|*.* Run = Run
Change = Change Select = Select
Continue = Continue SelectAll = Select all
DialogBoxOpening = Displaying the dialog box... Skip = Skip
Disable = Disable Skipped = Skipped
Dismiss = Dismiss Snooze = Snooze
Enable = Enable SymbolicSkipped = Skipped creating a symbolic link
EXEFilesFilter = *.exe|*.exe|All Files (*.*)|*.* Uninstall = Uninstall
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
'@ '@

159
Sophia/LTSC/es-ES/Sophia.psd1

@ -1,90 +1,73 @@
ConvertFrom-StringData -StringData @' ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Este script solo soporta Windows 10 x64 UnsupportedOSBitness = Este script solo soporta Windows 10 x64
UnsupportedOSBuild = Este script solo soporta Windows 10 1809 Enterprise LTSC UnsupportedOSBuild = Este script solo soporta Windows 10 1809 Enterprise LTSC
UnsupportedRelease = Nueva versión encontrada UnsupportedRelease = Nueva versión encontrada
ControlledFolderAccessDisabled = Acceso a carpetas controlado desactivado ControlledFolderAccessDisabled = Acceso a carpetas controlado desactivado
ScheduledTasks = Tareas programadas ScheduledTasks = Tareas programadas
ClearFolder = Elimine todos los archivos en la carpeta "{0}"? 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 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 TempNotEmpty = La carpeta "{0}" no está vacía. Límpiela manualmente
WindowsFeaturesTitle = Características de Windows WindowsFeaturesTitle = Características de Windows
OptionalFeaturesTitle = Características opcionales OptionalFeaturesTitle = Características opcionales
EnableHardwareVT = Activar virtualización en UEFI EnableHardwareVT = Activar virtualización en UEFI
UserShellFolderNotEmpty = Quedan algunos archivos en la carpeta "{0}". Muévalos manualmente a la nueva ubicación UserShellFolderNotEmpty = Quedan algunos archivos en la carpeta "{0}". Muévalos manualmente a la nueva ubicación
RetrievingDrivesList = Recuperando lista de unidades de disco... RetrievingDrivesList = Recuperando lista de unidades de disco...
NewUserShellFolderLocation = Nueva ubicación: "{0}" DriveSelect = Seleccione la unidad dentro de la raíz de la cual se creará la carpeta "{0}"
DesktopDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta del Escritorio UserFolderRequest = ¿Le gustaría cambiar la ubicación de la carpeta "{0}"?
DocumentsDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Documentos UserFolderSelect = Seleccione una carpeta para la carpeta "{0}"
DownloadsDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Descargas UserDefaultFolder = ¿Le gustaría cambiar la ubicación de la carpeta "{0}" al valor predeterminado?
MusicDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Música GraphicsPerformanceTitle = Preferencia de rendimiento de gráficos
PicturesDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Imágenes GraphicsPerformanceRequest = Quieres establecer el nivel de rendimiento de gráficos a "Alto rendimiento" en alguna aplicación?
VideosDriveSelect = Selecciona la raíz del disco en la cual se creará la carpeta de Vídeos TaskNotificationTitle = Notificación
DesktopRequest = ¿Quieres cambiar la ubicación de la carpeta del Escritorio? CleanupTaskNotificationTitle = Información importante
DocumentsRequest = ¿Quieres cambiar la ubicación de la carpeta de Documentos? CleanupTaskDescription = Limpiando archivos de Windows no usados y actualizaciones usando la aplicación de limpieza de disco incorporada
DownloadsRequest = ¿Quieres cambiar la ubicación de la carpeta de Descargas? CleanupTaskNotificationEventTitle = ¿Ejecutar la tarea para limpiar archivos y actualizaciones no utilizados de Windows?
MusicRequest = ¿Quieres cambiar la ubicación de la carpeta de Música? CleanupTaskNotificationEvent = La limpieza de Windows no tardará mucho. La próxima vez, la notificación aparecerá en 30 días
PicturesRequest = ¿Quieres cambiar la ubicación de la carpeta de Imágenes? CleanupTaskNotificationSnoozeInterval = Seleccione un intervalo de recordatorio
VideosRequest = ¿Quieres cambiar la ubicación de la carpeta de Vídeos? CleanupNotificationTaskDescription = Recordatorio de notificación emergente sobre la limpieza de archivos y actualizaciones no utilizados de Windows
DesktopFolderSelect = Selecciona una carpeta para la carpeta del Escritorio SoftwareDistributionTaskNotificationEvent = La caché de actualización de Windows se eliminó correctamente
DocumentsFolderSelect = Selecciona una carpeta para la carpeta de Documentos TempTaskNotificationEvent = La carpeta de archivos temporales se limpió correctamente
DownloadsFolderSelect = Selecciona una carpeta para la carpeta de Descargas FolderTaskDescription = Limpieza de la carpeta "{0}"
MusicFolderSelect = Selecciona una carpeta para la carpeta de Música ControlledFolderAccess = Acceso controlado a carpetas
PicturesFolderSelect = Selecciona una carpeta para la carpeta de Imágenes ProtectedFoldersRequest = ¿Quieres añadir control de acceso a carpeta y especificar que carpeta Microsoft Defender protegerá de aplicaciones maliciosas y amenazas?
VideosFolderSelect = Selecciona una carpeta para la carpeta de Vídeos ProtectedFoldersListRemoved = Carpetas eliminadas
DesktopDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta del Escritorio por la de defecto? AppControlledFolderRequest = Quieres especificar una aplicación para que sea permitida a través del acceso controlado de carpetas?
DocumentsDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta de Documentos por la de defecto? AllowedControlledFolderAppsRemoved = Eliminar aplicaciones permitidas
DownloadsDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta de Descargas por la de defecto? DefenderExclusionFolderRequest = ¿Quieres especificar una carpeta para ser excluida por Microsoft Defender?
MusicDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta de Música por la de defecto? DefenderExclusionFoldersListRemoved = Quitadas carpetas excluidas
PicturesDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta de Imágenes por la de defecto? AddDefenderExclusionFileRequest = ¿Quieres especificar un archivo para ser excluido por Microsoft Defender?
VideosDefaultFolder = ¿Quieres cambiar la ubicación de la carpeta de Vídeos por la de defecto? DefenderExclusionFilesRemoved = Quitados archivos excluidos
GraphicsPerformanceTitle = Preferencia de rendimiento de gráficos EventViewerCustomViewName = Creación de procesos
GraphicsPerformanceRequest = Quieres establecer el nivel de rendimiento de gráficos a "Alto rendimiento" en alguna aplicación? EventViewerCustomViewDescription = Creación de procesos y eventos de auditoria de línea de comandos
CleanupTaskDescription = Limpiando archivos de Windows no usados y actualizaciones usando la aplicación de limpieza de disco incorporada RestartWarning = Asegúrese de reiniciar su PC
CleanupTaskNotificationTitle = Información importante ErrorsLine = Línea
CleanupTaskNotificationEventTitle = ¿Ejecutar la tarea para limpiar archivos y actualizaciones no utilizados de Windows? ErrorsFile = Archivo
CleanupTaskNotificationEvent = La limpieza de Windows no tardará mucho. La próxima vez, la notificación aparecerá en 30 días ErrorsMessage = Errores/Advertencias
CleanupTaskNotificationSnoozeInterval = Seleccione un intervalo de recordatorio Add = Añadir
CleanupNotificationTaskDescription = Recordatorio de notificación emergente sobre la limpieza de archivos y actualizaciones no utilizados de Windows AllFilesFilter = Tutti i file (*.*)|*.*
FolderTaskDescription = Limpieza de la carpeta "{0}" Change = Cambiar
ControlledFolderAccess = Acceso controlado a carpetas Delete = Borrar
ProtectedFoldersRequest = ¿Quieres añadir control de acceso a carpeta y especificar que carpeta Microsoft Defender protegerá de aplicaciones maliciosas y amenazas? DialogBoxOpening = Mostrando caja de diálogo...
ProtectedFoldersListRemoved = Carpetas eliminadas Disable = Desactivar
AppControlledFolderRequest = Quieres especificar una aplicación para que sea permitida a través del acceso controlado de carpetas? Dismiss = Despedir
AllowedControlledFolderAppsRemoved = Eliminar aplicaciones permitidas Enable = Activar
DefenderExclusionFolderRequest = ¿Quieres especificar una carpeta para ser excluida por Microsoft Defender? EXEFilesFilter = *.exe|*.exe|Todos los Archivos (*.*)|*.*
DefenderExclusionFoldersListRemoved = Quitadas carpetas excluidas FolderSelect = Seleccione una carpeta
AddDefenderExclusionFileRequest = ¿Quieres especificar un archivo para ser excluido por Microsoft Defender? FilesWontBeMoved = Los archivos no se moverán
DefenderExclusionFilesRemoved = Quitados archivos excluidos FourHours = 4 horas
EventViewerCustomViewName = Creación de procesos HalfHour = 30 minutos
EventViewerCustomViewDescription = Creación de procesos y eventos de auditoria de línea de comandos Install = Instalar
RestartWarning = Asegúrese de reiniciar su PC Minute = 1 minuto
ErrorsLine = Línea NoData = Nada que mostrar
ErrorsFile = Archivo NoInternetConnection = No hay conexión a Internet
ErrorsMessage = Errores/Advertencias NoResponse = No se pudo establecer una conexión con https://store.rg-adguard.net
Add = Añadir Patient = Por favor espere...
AllFilesFilter = Tutti i file (*.*)|*.* Run = Iniciar
Change = Cambiar Select = Seleccionar
Continue = Continuar SelectAll = Seleccionar todo
DialogBoxOpening = Mostrando caja de diálogo... Skip = Omitir
Disable = Desactivar Skipped = Omitido
Dismiss = Despedir Snooze = Posponer
Enable = Activar SymbolicSkipped = Se omitió la creación de un enlace simbólico
EXEFilesFilter = *.exe|*.exe|Todos los Archivos (*.*)|*.* Uninstall = Desinstalar
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
'@ '@

159
Sophia/LTSC/fr-FR/Sophia.psd1

@ -1,90 +1,73 @@
ConvertFrom-StringData -StringData @' ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Le script supporte uniquement Windows 10 x64 UnsupportedOSBitness = Le script supporte uniquement Windows 10 x64
UnsupportedOSBuild = Le script supporte les versions Windows 10 1809 Enterprise LTSC UnsupportedOSBuild = Le script supporte le version Windows 10 1809 Enterprise LTSC
UnsupportedRelease = Nouvelle version trouvée UnsupportedRelease = Nouvelle version trouvée
ControlledFolderAccessDisabled = Contrôle d'accès aux dossiers désactivé ControlledFolderAccessDisabled = Contrôle d'accès aux dossiers désactivé
ScheduledTasks = Tâches planifiées ScheduledTasks = Tâches planifiées
ClearFolder = Supprimer tous les fichiers dans le dossier "{0}"? 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 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 TempNotEmpty = Le dossier "{0}" n'est pas vide. L'effacer manuellement
WindowsFeaturesTitle = Fonctionnalités WindowsFeaturesTitle = Fonctionnalités
OptionalFeaturesTitle = Fonctionnalités optionnelles OptionalFeaturesTitle = Fonctionnalités optionnelles
EnableHardwareVT = Activer la virtualisation dans UEFI EnableHardwareVT = Activer la virtualisation dans UEFI
UserShellFolderNotEmpty = Certains fichiers laissés dans le dossier "{0}" \nDéplacer les manuellement vers un nouvel emplacement 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... RetrievingDrivesList = Récupération de la liste des lecteurs...
NewUserShellFolderLocation = Nouvel emplacement: "{0}" DriveSelect = Seleccione la unidad dentro de la raíz de la cual se creará la carpeta "{0}"
DesktopDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Bureau sera créé UserFolderRequest = ¿Le gustaría cambiar la ubicación de la carpeta "{0}"?
DocumentsDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Documents sera créé UserFolderSelect = Seleccione una carpeta para la carpeta "{0}"
DownloadsDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Téléchargements sera créé UserDefaultFolder = ¿Le gustaría cambiar la ubicación de la carpeta "{0}" al valor predeterminado?
MusicDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Musique sera créé GraphicsPerformanceTitle = Préférence de performances graphiques
PicturesDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Images sera créé GraphicsPerformanceRequest = Souhaitez-vous définir le paramètre de performances graphiques d'une application de votre choix sur "Haute performance"?
VideosDriveSelect = Sélectionnez le lecteur à la racine duquel le dossier Vidéos sera créé TaskNotificationTitle = Notificación
DesktopRequest = Souhaitez-vous changer l'emplacement du dossier Bureau? CleanupTaskNotificationTitle = Une information important
DocumentsRequest = Souhaitez-vous changer l'emplacement du dossier Documents? CleanupTaskDescription = Nettoyage des fichiers Windows inutilisés et des mises à jour à l'aide de l'application intégrée pour le nettoyage de disque
DownloadsRequest = Souhaitez-vous changer l'emplacement du dossier Téléchargements? CleanupTaskNotificationEventTitle = Exécuter la tâche pour nettoyer les fichiers et les mises à jour inutilisés de Windows?
MusicRequest = Souhaitez-vous changer l'emplacement du dossier Musique? CleanupTaskNotificationEvent = Le nettoyage de Windows ne prendra pas longtemps. La prochaine fois que la notification apparaîtra dans 30 jours
PicturesRequest = Souhaitez-vous changer l'emplacement du dossier Images? CleanupTaskNotificationSnoozeInterval = Sélectionnez un intervalle de rappel
VideosRequest = Souhaitez-vous changer l'emplacement du dossier Vidéos? CleanupNotificationTaskDescription = Rappel de notification contextuelle sur le nettoyage des fichiers et des mises à jour inutilisés de Windows
DesktopFolderSelect = Sélectionner un dossier pour le dossier Bureau SoftwareDistributionTaskNotificationEvent = Le cache de mise à jour Windows a bien été supprimé
DocumentsFolderSelect = Sélectionner un dossier pour le dossier Documents TempTaskNotificationEvent = Le dossier des fichiers temporaires a été nettoyé avec succès
DownloadsFolderSelect = Sélectionner un dossier pour le dossier Téléchargements FolderTaskDescription = Nettoyage du dossier "{0}"
MusicFolderSelect = Sélectionner un dossier pour le dossier Musique ControlledFolderAccess = Contrôle d'accès aux dossiers
PicturesFolderSelect = Sélectionner un dossier pour le dossier Images 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?
VideosFolderSelect = Sélectionner un dossier pour le dossier Vidéos ProtectedFoldersListRemoved = Dossiers supprimés
DesktopDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Bureau à la valeur par défaut? AppControlledFolderRequest = Souhaitez-vous spécifier une application autorisée via le contrôle d'accès aux dossiers?
DocumentsDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Documents à la valeur par défaut? AllowedControlledFolderAppsRemoved = Applications autorisées supprimées
DownloadsDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Téléchargements à la valeur par défaut? DefenderExclusionFolderRequest = Souhaitez-vous spécifier un dossier à exclure des analyses de logiciels malveillants de Microsoft Defender?
MusicDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Musique à la valeur par défaut? DefenderExclusionFoldersListRemoved = Dossiers exclus supprimés
PicturesDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Images à la valeur par défaut? AddDefenderExclusionFileRequest = Souhaitez-vous spécifier un fichier à exclure des analyses de logiciels malveillants de Microsoft Defender?
VideosDefaultFolder = Souhaitez-vous changer l'emplacement du dossier Vidéos à la valeur par défaut? DefenderExclusionFilesRemoved = Fichiers exclus supprimés
GraphicsPerformanceTitle = Préférence de performances graphiques EventViewerCustomViewName = Création du processus
GraphicsPerformanceRequest = Souhaitez-vous définir le paramètre de performances graphiques d'une application de votre choix sur "Haute performance"? EventViewerCustomViewDescription = Audit des événements de création du processus et de ligne de commande
CleanupTaskDescription = Nettoyage des fichiers Windows inutilisés et des mises à jour à l'aide de l'application intégrée pour le nettoyage de disque RestartWarning = Assurez-vous de redémarrer votre PC
CleanupTaskNotificationTitle = Une information important ErrorsLine = Ligne
CleanupTaskNotificationEventTitle = Exécuter la tâche pour nettoyer les fichiers et les mises à jour inutilisés de Windows? ErrorsFile = Fichier
CleanupTaskNotificationEvent = Le nettoyage de Windows ne prendra pas longtemps. La prochaine fois que la notification apparaîtra dans 30 jours ErrorsMessage = Erreurs/Avertissements
CleanupTaskNotificationSnoozeInterval = Sélectionnez un intervalle de rappel Add = Ajouter
CleanupNotificationTaskDescription = Rappel de notification contextuelle sur le nettoyage des fichiers et des mises à jour inutilisés de Windows AllFilesFilter = Tous les Fichiers (*.*)|*.*
FolderTaskDescription = Nettoyage du dossier "{0}" Change = Changer
ControlledFolderAccess = Contrôle d'accès aux dossiers Delete = Effacer
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? DialogBoxOpening = Afficher la boîte de dialogue...
ProtectedFoldersListRemoved = Dossiers supprimés Disable = Désactiver
AppControlledFolderRequest = Souhaitez-vous spécifier une application autorisée via le contrôle d'accès aux dossiers? Dismiss = Annuler
AllowedControlledFolderAppsRemoved = Applications autorisées supprimées Enable = Activer
DefenderExclusionFolderRequest = Souhaitez-vous spécifier un dossier à exclure des analyses de logiciels malveillants de Microsoft Defender? EXEFilesFilter = *.exe|*.exe|Tous les Fichiers (*.*)|*.*
DefenderExclusionFoldersListRemoved = Dossiers exclus supprimés FolderSelect = Sélectionner un dossier
AddDefenderExclusionFileRequest = Souhaitez-vous spécifier un fichier à exclure des analyses de logiciels malveillants de Microsoft Defender? FilesWontBeMoved = Les fichiers ne seront pas déplacés
DefenderExclusionFilesRemoved = Fichiers exclus supprimés FourHours = 4 heures
EventViewerCustomViewName = Création du processus HalfHour = 30 minutes
EventViewerCustomViewDescription = Audit des événements de création du processus et de ligne de commande Install = Installer
RestartWarning = Assurez-vous de redémarrer votre PC Minute = 1 minute
ErrorsLine = Ligne NoData = Rien à afficher
ErrorsFile = Fichier NoInternetConnection = Pas de connexion Internet
ErrorsMessage = Erreurs/Avertissements NoResponse = Une connexion n'a pas pu être établie avec https://store.rg-adguard.net
Add = Ajouter Patient = Veuillez patienter...
AllFilesFilter = Tous les Fichiers (*.*)|*.* Run = Démarrer
Change = Changer Select = Sélectionner
Continue = Continuer SelectAll = Tout sélectionner
DialogBoxOpening = Afficher la boîte de dialogue... Skip = Passer
Disable = Désactiver Skipped = Passé
Dismiss = Annuler Snooze = Reporter
Enable = Activer SymbolicSkipped = La création d'un lien symbolique a été ignorée
EXEFilesFilter = *.exe|*.exe|Tous les Fichiers (*.*)|*.* Uninstall = Désinstaller
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
'@ '@

159
Sophia/LTSC/it-IT/Sophia.psd1

@ -1,90 +1,73 @@
ConvertFrom-StringData -StringData @' ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Questo script supporta solo Windows 10 x64 UnsupportedOSBitness = Lo script supporta solo Windows 10 x64
UnsupportedOSBuild = Lo script supporta le versioni di Windows 10 1809 Enterprise LTSC UnsupportedOSBuild = Lo script supporta Windows 10 versione 1809 Enterprise LTSC
UnsupportedRelease = Nuova versione trovata UnsupportedRelease = Nuova versione trovata
ControlledFolderAccessDisabled = Accesso controllato alle cartelle disabilitato ControlledFolderAccessDisabled = l'accesso alle cartelle controllata disattivata
ScheduledTasks = Attività pianificate ScheduledTasks = Attività pianificate
ClearFolder = Elimina tutti i file nella cartella "{0}"? ClearFolder = Eliminare tutti i file nella cartella "{0}"?
FilesBlocked = I seguenti file sono bloccati da app di terze parti. Rimuoverli manualmente e continua FilesBlocked = I seguenti file vengono bloccati da app di terze parti. Rimuovili manualmente e continua
TempNotEmpty = La cartella "{0}" non è vuota. Pulirla manualmente TempNotEmpty = La cartella "{0}" non è vuota. Cancellare manualmente
WindowsFeaturesTitle = Funzionalità Windows WindowsFeaturesTitle = Funzionalità di Windows
OptionalFeaturesTitle = Funzionalità facoltative OptionalFeaturesTitle = Caratteristiche opzionali
EnableHardwareVT = Attiva Virtualizzazione in UEFI EnableHardwareVT = Abilita virtualizzazione in UEFI
UserShellFolderNotEmpty = Sono rimasti alcuni file nella cartella "{0}". Spostarli manualmente in una nuova posizione. UserShellFolderNotEmpty = Alcuni file lasciati nella cartella "{0}". li spostare manualmente in una nuova posizione
RetrievingDrivesList = Recupero lista delle unità... RetrievingDrivesList = Recupero lista unità...
NewUserShellFolderLocation = Nuova posizione: "{0}" DriveSelect = Selezionare l'unità all'interno della radice del quale verrà creato il "{0}" cartella
DesktopDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Dekstop UserFolderRequest = Volete cambiare la posizione del "{0}" cartella?
DocumentsDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Documenti UserFolderSelect = Selezionare una cartella per la cartella "{0}"
DownloadsDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Download UserDefaultFolder = Volete cambiare la posizione della cartella "{0}" al valore di default?
MusicDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Musica GraphicsPerformanceTitle = Preferenza per le prestazioni grafiche
PicturesDriveSelect = Seleziona l'unità all'interno della radice nella quale verrà creata la cartella Immagini GraphicsPerformanceRequest = Volete impostare l'impostazione prestazioni grafiche di un app di vostra scelta per "performance High"?
VideosDriveSelect = Seleziona l'unità all'interno della radice della quale verrà creata la cartella Video TaskNotificationTitle = Notifica
DesktopRequest = Desideri cambiare la posizione della cartella Desktop? CleanupTaskNotificationTitle = Informazioni importanti
DocumentsRequest = Desideri cambiare la posizione della cartella Documenti? CleanupTaskDescription = Pulizia di Windows i file inutilizzati e aggiornamenti utilizzando built-in Disk pulizia app
DownloadsRequest = Desideri cambiare la posizione della cartella Download? CleanupTaskNotificationEventTitle = Eseguire compito di ripulire i file inutilizzati e aggiornamenti di Windows?
MusicRequest = Desideri cambiare la posizione della cartella Musica? CleanupTaskNotificationEvent = Di Windows pulizia non ci vorrà molto. La prossima volta che verrà visualizzata la notifica in 30 giorni
PicturesRequest = Desideri cambiare la posizione della cartella Immagini? CleanupTaskNotificationSnoozeInterval = Selezionare un promemoria intervallo
VideosRequest = Desideri cambiare la posizione della cartella Video? CleanupNotificationTaskDescription = Pop-up promemoria notifica di pulizia di Windows file inutilizzati e aggiornamenti
DesktopFolderSelect = Seleziona una cartella per Desktop SoftwareDistributionTaskNotificationEvent = La cache di aggiornamento di Windows cancellato con successo
DocumentsFolderSelect = Seleziona una cartella per Documenti TempTaskNotificationEvent = I file cartella Temp puliti con successo
DownloadsFolderSelect = Seleziona una cartella per Download FolderTaskDescription = La pulizia della cartella "{0}"
MusicFolderSelect = Seleziona una cartella per Musica ControlledFolderAccess = l'accesso alle cartelle Controlled
PicturesFolderSelect = Seleziona una cartella per Immagini ProtectedFoldersRequest = Vuoi per consentire l'accesso alle cartelle Controllata e specificare la cartella in cui Microsoft Defender protegge dalle applicazioni malevoli e minacce?
VideosFolderSelect = Seleziona una cartella per Video ProtectedFoldersListRemoved = Cartelle rimossi
DesktopDefaultFolder = Desideri modificare la posizione della cartella Desktop sul valore predefinito? AppControlledFolderRequest = Volete specificare un app che è consentito attraverso l'accesso controllato cartella?
DocumentsDefaultFolder = Desideri modificare la posizione della cartella Documenti sul valore predefinito? AllowedControlledFolderAppsRemoved = Applicazioni consentite rimosse
DownloadsDefaultFolder = Desideri modificare la posizione della cartella Download sul valore predefinito? DefenderExclusionFolderRequest = Volete specificare una cartella da escludere dalla Microsoft Defender scansioni di malware?
MusicDefaultFolder = Desideri modificare la posizione della cartella Musica sul valore predefinito? DefenderExclusionFoldersListRemoved = Cartelle escluse rimossi
PicturesDefaultFolder = Desideri modificare la posizione della cartella Immagini sul valore predefinito? AddDefenderExclusionFileRequest = Volete specificare un file da escludere dalla Microsoft Defender scansioni di malware?
VideosDefaultFolder = Desideri modificare la posizione della cartella Video sul valore predefinito? DefenderExclusionFilesRemoved = File esclusi rimossi
GraphicsPerformanceTitle = Preferenze prestazioni della Grafica EventViewerCustomViewName = Creazione di processo
GraphicsPerformanceRequest = Desideri impostare le prestazioni grafiche di un app di tua scelta su "Prestazioni elevate"? EventViewerCustomViewDescription = Creazione di processi ed eventi di controllo della riga di comando
CleanupTaskDescription = Pulizia di file e aggiornamenti di Windows inutilizzati utilizzando l'app di pulizia del disco incorporata RestartWarning = Assicurarsi di riavviare il PC
CleanupTaskNotificationTitle = Informazioni importanti ErrorsLine = Linea
CleanupTaskNotificationEventTitle = Eseguire l'attività per pulire i file e gli aggiornamenti inutilizzati di Windows? ErrorsFile = File
CleanupTaskNotificationEvent = La pulizia di Windows non richiederà molto tempo. La prossima volta la notifica apparirà tra 30 giorni ErrorsMessage = Errori/avvisi
CleanupTaskNotificationSnoozeInterval = Seleziona un intervallo di promemoria Add = Inserisci
CleanupNotificationTaskDescription = Pulizia di file e aggiornamenti di Windows inutilizzati utilizzando l'app di pulizia del disco incorporata AllFilesFilter = Tutti i file (*.*)|*.*
FolderTaskDescription = Pulizia della cartella "{0}" Change = Modificare
ControlledFolderAccess = Accesso controllato alle cartelle Delete = Elimina
ProtectedFoldersRequest = Desideri abilitare l'accesso controllato alle cartelle e specificare la cartella che Microsoft Defender proteggerà dalle app dannose e dalle minacce? DialogBoxOpening = Visualizzazione della finestra di dialogo...
ProtectedFoldersListRemoved = Cartelle rimosse Disable = Disattivare
AppControlledFolderRequest = Desideri specificare un'app consentita tramite l'accesso alle cartelle controllate? Dismiss = Ignorare
AllowedControlledFolderAppsRemoved = App consentite rimosse Enable = Abilitare
DefenderExclusionFolderRequest = Desideri specificare una cartella da escludere dalle scansioni del malware di Microsoft Defender? EXEFilesFilter = *.exe|*.exe|Tutti i file (*.*)|*.*
DefenderExclusionFoldersListRemoved = Cartelle escluse rimosse FolderSelect = Selezionare una cartella
AddDefenderExclusionFileRequest = Desideri specificare un file da escludere dalle scansioni del malware di Microsoft Defender? FilesWontBeMoved = I file non verranno trasferiti
DefenderExclusionFilesRemoved = File esclusi rimossi FourHours = 4 ore
EventViewerCustomViewName = Creazione del Processo HalfHour = 30 minuti
EventViewerCustomViewDescription = Creazione di Processi ed Eventi di Controllo dalla riga di comando Install = Installare
RestartWarning = Assicurati di riavviare il PC Minute = 1 minuto
ErrorsLine = Linea NoData = Niente da esposizione
ErrorsFile = File NoInternetConnection = Nessuna connessione Internet
ErrorsMessage = Errori/Avvisi NoResponse = Non è stato possibile stabilire una connessione con https://store.rg-adguard.net
Add = Aggiungi Patient = Attendere prego...
AllFilesFilter = Tutti i file (*.*)|*.* Run = Eseguire
Change = Cambia Select = Selezionare
Continue = Continua SelectAll = Seleziona tutto
DialogBoxOpening = Visualizzazione della finestra di dialogo... Skip = Salta
Disable = Disinstalla Skipped = Saltato
Dismiss = Annulla Snooze = Sonnellino
Enable = Abilita SymbolicSkipped = Saltato creando un link simbolico
EXEFilesFilter = *.exe|*.exe|Tutti i file (*.*)|*.* Uninstall = Disinstallare
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
'@ '@

73
Sophia/LTSC/pt-BR/Sophia.psd1

@ -0,0 +1,73 @@
ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = O script suporta somente Windows 10 x64
UnsupportedOSBuild = O script suporta versões Windows 10 1809 Enterprise LTSC
UnsupportedRelease = Nova versão encontrada
ControlledFolderAccessDisabled = Acesso controlado a pasta desativada
ScheduledTasks = Tarefas agendadas
ClearFolder = Exclua todos os arquivos na pasta "{0}"?
FilesBlocked = Os seguintes arquivos estão sendo bloqueados pelos apps de terceiros. Removê-los manualmente e continuar
TempNotEmpty = A pasta "{0}" não está vazia. Limpá-la manualmente
WindowsFeaturesTitle = Recursos do Windows
OptionalFeaturesTitle = Recursos opcionais
EnableHardwareVT = Habilitar virtualização em UEFI
UserShellFolderNotEmpty = Alguns arquivos deixados na pasta "{0}". Movê-los manualmente para um novo local
RetrievingDrivesList = Recuperando lista de unidades...
DriveSelect = Selecione a unidade dentro da raiz da qual a pasta "{0}" será criada
UserFolderRequest = Gostaria de alterar a localização da pasta "{0}"?
UserFolderSelect = Selecione uma pasta para a pasta "{0}"
UserDefaultFolder = Gostaria de alterar a localização da pasta "{0}" para o valor padrão?
GraphicsPerformanceTitle = Preferência de desempenho gráfico
GraphicsPerformanceRequest = Gostaria de definir a configuração de performance gráfica de um app de sua escolha para "alta performance"?
TaskNotificationTitle = Notificação
CleanupTaskNotificationTitle = Informação importante
CleanupTaskDescription = Limpando o Windows arquivos não utilizados e atualizações usando o aplicativo de limpeza aplicativo de limpeza embutido no disco
CleanupTaskNotificationEventTitle = Executar tarefa para limpar arquivos e atualizações não utilizados do Windows?
CleanupTaskNotificationEvent = Limpeza de janelas não vai demorar muito. Da próxima vez que esta notificação será exibida em 30 dias
CleanupTaskNotificationSnoozeInterval = Selecione um lembrete de intervalo
CleanupNotificationTaskDescription = Pop-up lembrete de notificação sobre a limpeza do Windows arquivos não utilizados e actualizações
SoftwareDistributionTaskNotificationEvent = O cache de atualização do Windows excluído com sucesso
TempTaskNotificationEvent = Os arquivos da pasta Temp limpos com sucesso
FolderTaskDescription = A limpeza da pasta "{0}"
ControlledFolderAccess = Acesso à pasta controlada
ProtectedFoldersRequest = Gostaria de permitir o acesso à pasta controlada e especificar a pasta que Microsoft Defender irá proteger de aplicativos maliciosos e ameaças?
ProtectedFoldersListRemoved = Pastas removidas
AppControlledFolderRequest = Gostaria de especificar um aplicativo que é permitido através do acesso pasta controlada?
AllowedControlledFolderAppsRemoved = Aplicações permitidas removidas
DefenderExclusionFolderRequest = Gostaria de especificar uma pasta a ser excluído da Microsoft Defender scans de malware?
DefenderExclusionFoldersListRemoved = Pastas excluídas removidas
AddDefenderExclusionFileRequest = Gostaria de especificar um arquivo a ser excluído do Microsoft Defender scans de malware?
DefenderExclusionFilesRemoved = Arquivos excluídos removidos
EventViewerCustomViewName = Criação de processo
EventViewerCustomViewDescription = Criação de processos e eventos de auditoria de linha de comando
RestartWarning = Certifique-se de reiniciar o PC
ErrorsLine = Linha
ErrorsFile = Arquivo
ErrorsMessage = Erros/Avisos
Add = Adicionar
AllFilesFilter = Todos os arquivos (*.*)|*.*
Change = Mudar
Delete = Excluir
DialogBoxOpening = Exibindo a caixa de diálogo...
Disable = Desativar
Dismiss = Ignorar
Enable = Habilitar
EXEFilesFilter = *.exe|*.exe| Todos os arquivos (*.*)|*.*
FolderSelect = Escolha uma pasta
FilesWontBeMoved = Os arquivos não serão transferidos
FourHours = 4 horas
HalfHour = 30 minutos
Install = Instalar
Minute = 1 minuto
NoData = Nada à exibir
NoInternetConnection = Sem conexão à Internet
NoResponse = Uma conexão não pôde ser estabelecida com https://store.rg-adguard.net
Patient = Por favor, espere...
Run = Executar
Select = Selecione
SelectAll = Selecionar tudo
Skip = Pular
Skipped = Ignorados
Snooze = Soneca
SymbolicSkipped = Pulado criando um link simbólico
Uninstall = Desinstalar
'@

159
Sophia/LTSC/ru-RU/Sophia.psd1

@ -1,90 +1,73 @@
ConvertFrom-StringData -StringData @' ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Скрипт поддерживает только Windows 10 x64 UnsupportedOSBitness = Скрипт поддерживает только Windows 10 x64
UnsupportedOSBuild = Скрипт поддерживает только Windows 10 версии 1809 Enterprise LTSC UnsupportedOSBuild = Скрипт поддерживает только Windows 10 1809 Enterprise LTSC
UnsupportedRelease = Обнаружена новая версия UnsupportedRelease = Обнаружена новая версия
ControlledFolderAccessDisabled = Контролируемый доступ к папкам выключен ControlledFolderAccessDisabled = Контролируемый доступ к папкам выключен
ScheduledTasks = Запланированные задания ScheduledTasks = Запланированные задания
ClearFolder = Удалить все файлы в папке "{0}"? ClearFolder = Удалить все файлы в папке "{0}"?
FilesBlocked = Следующие файлы блокируются сторонними приложениями. Удалите их вручную и продолжите FilesBlocked = Следующие файлы блокируются сторонними приложениями. Удалите их вручную и продолжите
TempNotEmpty = Папка "{0}" не пуста. Очистите ее вручную TempNotEmpty = Папка "{0}" не пуста. Очистите ее вручную
WindowsFeaturesTitle = Компоненты Windows WindowsFeaturesTitle = Компоненты Windows
OptionalFeaturesTitle = Дополнительные компоненты OptionalFeaturesTitle = Дополнительные компоненты
EnableHardwareVT = Включите виртуализацию в UEFI EnableHardwareVT = Включите виртуализацию в UEFI
UserShellFolderNotEmpty = В папке "{0}" остались файлы. Переместите их вручную в новое расположение UserShellFolderNotEmpty = В папке "{0}" остались файлы. Переместите их вручную в новое расположение
RetrievingDrivesList = Получение списка дисков... RetrievingDrivesList = Получение списка дисков...
NewUserShellFolderLocation = Новое расположение: "{0}" DriveSelect = Выберите диск, в корне которого будет создана папка "{0}"
DesktopDriveSelect = Выберите диск, в корне которого будет создана папка для "Рабочий стол" UserFolderRequest = Хотите изменить расположение папки "{0}"?
DocumentsDriveSelect = Выберите диск, в корне которого будет создана папка для "Документы" UserFolderSelect = Выберите папку для "{0}"
DownloadsDriveSelect = Выберите диск, в корне которого будет создана папка для "Загрузки" UserDefaultFolder = Хотите изменить расположение папки "{0}" на значение по умолчанию?
MusicDriveSelect = Выберите диск, в корне которого будет создана папка для "Музыка" GraphicsPerformanceTitle = Настройка производительности графики
PicturesDriveSelect = Выберите диск, в корне которого будет создана папка для "Изображения" GraphicsPerformanceRequest = Установить для любого приложения по вашему выбору настройки производительности графики на "Высокая производительность"?
VideosDriveSelect = Выберите диск, в корне которого будет создана папка для "Видео" TaskNotificationTitle = Уведомление
DesktopRequest = Хотите изменить расположение папки "Рабочий стол"? CleanupTaskNotificationTitle = Важная информация
DocumentsRequest = Хотите изменить расположение папки "Документы"? CleanupTaskDescription = Очистка неиспользуемых файлов и обновлений Windows, используя встроенную программу Очистка диска
DownloadsRequest = Хотите изменить расположение папки "Загрузки"? CleanupTaskNotificationEventTitle = Запустить задачу по очистке неиспользуемых файлов и обновлений Windows?
MusicRequest = Хотите изменить расположение папки "Музыка"? CleanupTaskNotificationEvent = Очистка Windows не займет много времени. Следующий раз это уведомление появится через 30 дней
PicturesRequest = Хотите изменить расположение папки "Изображения"? CleanupTaskNotificationSnoozeInterval = Выберите интервал повтора уведомления
VideosRequest = Хотите изменить расположение папки "Видео"? CleanupNotificationTaskDescription = Всплывающее уведомление с напоминанием об очистке неиспользуемых файлов и обновлений Windows
DesktopFolderSelect = Выберите папку для "Рабочий стол" SoftwareDistributionTaskNotificationEvent = Кэш обновлений Windows успешно удален
DocumentsFolderSelect = Выберите папку для "Документы" TempTaskNotificationEvent = Папка временных файлов успешно очищена
DownloadsFolderSelect = Выберите папку для "Загрузки" FolderTaskDescription = Очистка папки "{0}"
MusicFolderSelect = Выберите папку для "Музыка" ControlledFolderAccess = Контролируемый доступ к папкам
PicturesFolderSelect = Выберите папку для "Изображения" ProtectedFoldersRequest = Хотите включить контролируемый доступ к папкам и указать папку, которую Microsoft Defender будет защищать от вредоносных приложений и угроз?
VideosFolderSelect = Выберите папку для "Видео" ProtectedFoldersListRemoved = Удаленные папки
DesktopDefaultFolder = Хотите изменить расположение папки "Рабочий стол" на значение по умолчанию? AppControlledFolderRequest = Указать приложение, которому разрешена работа через контролируемый доступ к папкам
DocumentsDefaultFolder = Хотите изменить расположение папки "Документы" на значение по умолчанию? AllowedControlledFolderAppsRemoved = Удаленные разрешенные приложения
DownloadsDefaultFolder = Хотите изменить расположение папки "Загрузки" на значение по умолчанию? DefenderExclusionFolderRequest = Указать папку, чтобы исключить ее из списка сканирования Microsoft Defender?
MusicDefaultFolder = Хотите изменить расположение папки "Музыка" на значение по умолчанию? DefenderExclusionFoldersListRemoved = Исключенные папки удалены
PicturesDefaultFolder = Хотите изменить расположение папки "Изображения" на значение по умолчанию? AddDefenderExclusionFileRequest = Указать файл, чтобы исключить его из списка сканирования Microsoft Defender?
VideosDefaultFolder = Хотите изменить расположение папки "Видео" на значение по умолчанию? DefenderExclusionFilesRemoved = Исключенные файлы удалены
GraphicsPerformanceTitle = Настройка производительности графики EventViewerCustomViewName = Создание процесса
GraphicsPerformanceRequest = Установить для любого приложения по вашему выбору настройки производительности графики на "Высокая производительность"? EventViewerCustomViewDescription = События содания нового процесса и аудит командной строки
CleanupTaskDescription = Очистка неиспользуемых файлов и обновлений Windows, используя встроенную программу Очистка диска RestartWarning = Обязательно перезагрузите ваш ПК
CleanupTaskNotificationTitle = Важная информация ErrorsLine = Строка
CleanupTaskNotificationEventTitle = Запустить задачу по очистке неиспользуемых файлов и обновлений Windows? ErrorsFile = Файл
CleanupTaskNotificationEvent = Очистка Windows не займет много времени. Следующий раз уведомление появится через 30 дней ErrorsMessage = Ошибки/предупреждения
CleanupTaskNotificationSnoozeInterval = Выберите интервал повтора уведомления Add = Добавить
CleanupNotificationTaskDescription = Всплывающее уведомление о напоминании по очистке неиспользуемых файлов и обновлений Windows AllFilesFilter = Все файлы (*.*)|*.*
FolderTaskDescription = Очистка папки "{0}" Change = Изменить
ControlledFolderAccess = Контролируемый доступ к папкам Delete = Удалить
ProtectedFoldersRequest = Хотите включить контролируемый доступ к папкам и указать папку, которую Microsoft Defender будет защищать от вредоносных приложений и угроз? DialogBoxOpening = Диалоговое окно открывается...
ProtectedFoldersListRemoved = Удаленные папки Disable = Отключить
AppControlledFolderRequest = Указать приложение, которому разрешена работа через контролируемый доступ к папкам Dismiss = Отмена
AllowedControlledFolderAppsRemoved = Удаленные разрешенные приложения Enable = Включить
DefenderExclusionFolderRequest = Указать папку, чтобы исключить ее из списка сканирования Microsoft Defender? EXEFilesFilter = *.exe|*.exe|Все файлы (*.*)|*.*
DefenderExclusionFoldersListRemoved = Исключенные папки удалены FolderSelect = Выберите папку
AddDefenderExclusionFileRequest = Указать файл, чтобы исключить его из списка сканирования Microsoft Defender? FilesWontBeMoved = Файлы не будут перенесены
DefenderExclusionFilesRemoved = Исключенные файлы удалены FourHours = 4 часа
EventViewerCustomViewName = Создание процесса HalfHour = 30 минут
EventViewerCustomViewDescription = События содания нового процесса и аудит командной строки Install = Установить
RestartWarning = Обязательно перезагрузите ваш ПК Minute = 1 минута
ErrorsLine = Строка NoData = Отсутствуют данные
ErrorsFile = Файл NoInternetConnection = Отсутствует интернет-соединение
ErrorsMessage = Ошибки/предупреждения NoResponse = Невозможно установить соединение с https://store.rg-adguard.net
Add = Добавить Patient = Пожалуйста, подождите...
AllFilesFilter = Все файлы (*.*)|*.* Run = Запустить
Change = Изменить Select = Выбрать
Continue = Продолжить SelectAll = Выбрать всё
DialogBoxOpening = Диалоговое окно открывается... Skip = Пропустить
Disable = Отключить Skipped = Пропущено
Dismiss = Отмена Snooze = Отложить
Enable = Включить SymbolicSkipped = Пропущено создание символической ссылки
EXEFilesFilter = *.exe|*.exe|Все файлы (*.*)|*.* Uninstall = Удалить
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 часа
'@ '@

159
Sophia/LTSC/tr-TR/Sophia.psd1

@ -1,90 +1,73 @@
ConvertFrom-StringData -StringData @' ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Bu betik sadece Windows 10 x64 destekliyor UnsupportedOSBitness = Bu betik sadece Windows 10 x64 destekliyor
UnsupportedOSBuild = Bu betik sadece Windows 10 1809 Enterprise LTSC UnsupportedOSBuild = Bu betik sadece Windows 10 1809 Enterprise LTSC
UnsupportedRelease = Yeni sürüm bulundu UnsupportedRelease = Yeni sürüm bulundu
ControlledFolderAccessDisabled = Kontrollü klasör erişimi devre dışı bırakıldı ControlledFolderAccessDisabled = Kontrollü klasör erişimi devre dışı bırakıldı
ScheduledTasks = Zamanlanan görevler ScheduledTasks = Zamanlanan görevler
ClearFolder = "{0}" klasöründeki tüm dosyaları silin? 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 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 TempNotEmpty = "{0}" klasörü boş değil. Kendiniz temizleyin
WindowsFeaturesTitle = Windows özellikleri WindowsFeaturesTitle = Windows özellikleri
OptionalFeaturesTitle = İsteğe bağlı özellikler OptionalFeaturesTitle = İsteğe bağlı özellikler
EnableHardwareVT = UEFI'dan sanallaştırmayı aktifleştirin EnableHardwareVT = UEFI'dan sanallaştırmayı aktifleştirin
UserShellFolderNotEmpty = "{0}" klasöründe bazı dosyalar kaldı. \nKendiniz yeni konuma taşıyın UserShellFolderNotEmpty = "{0}" klasöründe bazı dosyalar kaldı. \nKendiniz yeni konuma taşıyın
RetrievingDrivesList = Sürücü listesi alınıyor... RetrievingDrivesList = Sürücü listesi alınıyor...
NewUserShellFolderLocation = Yeni konum: "{0}" DriveSelect = "{0}" klasörünün oluşturulacağı kök içindeki sürücüyü seçin
DesktopDriveSelect = Masaüstü klasörün oluşturulacağı kök içindeki sürücüyü seçin UserFolderRequest = "{0}" klasörünün yerini değiştirmek ister misiniz?
DocumentsDriveSelect = Belgeler klasörün oluşturulacağı kök içindeki sürücüyü seçin UserFolderSelect = "{0}" klasörü için bir klasör seçin
DownloadsDriveSelect = İndirilenler klasörün oluşturulacağı kök içindeki sürücüyü seçin UserDefaultFolder = "{0}" klasörünün konumunu varsayılan değerle değiştirmek ister misiniz?
MusicDriveSelect = Müzikler klasörün oluşturulacağı kök içindeki sürücüyü seçin GraphicsPerformanceTitle = Grafik performans tercihi
PicturesDriveSelect = Resimler klasörün oluşturulacağı kök içindeki sürücüyü seçin GraphicsPerformanceRequest = Seçtiğiniz bir uygulamanın grafik performansı ayarını "Yüksek performans" olarak belirlemek ister misiniz?
VideosDriveSelect = Videolar klasörün oluşturulacağı kök içindeki sürücüyü seçin TaskNotificationTitle = Bildirim
DesktopRequest = Masaüstü klasörünün yerini değiştirmek ister misiniz? CleanupTaskNotificationTitle = Önemli bilgi
DocumentsRequest = Belgeler klasörünün yerini değiştirmek ister misiniz? CleanupTaskDescription = Kullanılmayan Windows dosyaları ve güncellemeleri yerleşik Disk Temizleme uygulaması ile temizleniyor
DownloadsRequest = İndirilenler klasörünün yerini değiştirmek ister misiniz? CleanupTaskNotificationEventTitle = Windows kullanılmayan dosyaları ve güncellemeleri temizlemek için görev çalıştırılsın ?
MusicRequest = Müzikler klasörünün yerini değiştirmek ister misiniz? CleanupTaskNotificationEvent = Windows cleaning won't take long. Bir dahaki sefere bildirim 30 gün içinde görünecek
PicturesRequest = Resimler klasörünün yerini değiştirmek ister misiniz? CleanupTaskNotificationSnoozeInterval = Hatırlatma Aralığı Seçin
VideosRequest = Videolar klasörünün yerini değiştirmek ister misiniz? CleanupNotificationTaskDescription = Windows kullanılmayan dosyaları ve güncellemeleri temizleme hakkında açılır bildirim hatırlatıcısı
DesktopFolderSelect = Masaüstü klasörü için bir klasör seçin. SoftwareDistributionTaskNotificationEvent = Windows güncelleme önbelleği başarıyla silindi
DocumentsFolderSelect = Belgeler klasörü için bir klasör seçin. TempTaskNotificationEvent = Geçici dosyalar klasörü başarıyla temizlendi
DownloadsFolderSelect = İndirilenler klasörü için bir klasör seçin. FolderTaskDescription = "{0}" klasörü temizleniyor
MusicFolderSelect = Müzikler klasörü için bir klasör seçin. ControlledFolderAccess = Kontrollü klasör erişimi
PicturesFolderSelect = Resimler klasörü için bir klasör seçin. 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?
VideosFolderSelect = Videolar klasörü için bir klasör seçin. ProtectedFoldersListRemoved = Silinen klasörler
DesktopDefaultFolder = Masaüstü klasörünün yerini eski haline getirmek ister misiniz? AppControlledFolderRequest = Kontrollü Klasör erişimine izin verilen bir uygulama belirtmek ister misiniz?
DocumentsDefaultFolder = Belgeler klasörünün yerini eski haline getirmek ister misiniz? AllowedControlledFolderAppsRemoved = Tüm kaldırılan uygulamalar
DownloadsDefaultFolder = İndirilenler klasörünün yerini eski haline getirmek ister misiniz? DefenderExclusionFolderRequest = Microsoft Defender kötü amaçlı yazılım taramalarının dışında tutulacak bir klasör belirtmek ister misiniz?
MusicDefaultFolder = Müzikler klasörünün yerini eski haline getirmek ister misiniz? DefenderExclusionFoldersListRemoved = Hariç tutulan klasörler kaldırıldı
PicturesDefaultFolder = Resimler klasörünün yerini eski haline getirmek ister misiniz? AddDefenderExclusionFileRequest = Microsoft Defender kötü amaçlı yazılım taramalarının dışında bırakılacak bir dosya belirtmek ister misiniz?
VideosDefaultFolder = Videolar klasörünün yerini eski haline getirmek ister misiniz? DefenderExclusionFilesRemoved = Hariç tutulan dosyalar kaldırıldı
GraphicsPerformanceTitle = Grafik performans tercihi EventViewerCustomViewName = Süreç Oluşturma
GraphicsPerformanceRequest = Seçtiğiniz bir uygulamanın grafik performansı ayarını "Yüksek performans" olarak belirlemek ister misiniz? EventViewerCustomViewDescription = Süreç oluşturma ve komut satırı denetleme olayları
CleanupTaskDescription = Kullanılmayan Windows dosyaları ve güncellemeleri yerleşik Disk Temizleme uygulaması ile temizleniyor RestartWarning = Bilgisayarınızı yeniden başlattığınızdan emin olun
CleanupTaskNotificationTitle = Önemli bilgi ErrorsLine = Satır
CleanupTaskNotificationEventTitle = Windows kullanılmayan dosyaları ve güncellemeleri temizlemek için görev çalıştırılsın ? ErrorsFile = Dosya
CleanupTaskNotificationEvent = Windows cleaning won't take long. Bir dahaki sefere bildirim 30 gün içinde görünecek ErrorsMessage = Hatalar/Uyarılar
CleanupTaskNotificationSnoozeInterval = Hatırlatma Aralığı Seçin Add = Ekle
CleanupNotificationTaskDescription = Windows kullanılmayan dosyaları ve güncellemeleri temizleme hakkında açılır bildirim hatırlatıcısı AllFilesFilter = Tüm Dosyalar (*.*)|*.*
FolderTaskDescription = "{0}" klasörü temizleniyor Change = Değiştir
ControlledFolderAccess = Kontrollü klasör erişimi Delete = Sil
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? DialogBoxOpening = İletişim kutusu görüntüleniyor...
ProtectedFoldersListRemoved = Silinen klasörler Disable = Devre dışı bırak
AppControlledFolderRequest = Kontrollü Klasör erişimine izin verilen bir uygulama belirtmek ister misiniz? Dismiss = İptal
AllowedControlledFolderAppsRemoved = Tüm kaldırılan uygulamalar Enable = Aktif et
DefenderExclusionFolderRequest = Microsoft Defender kötü amaçlı yazılım taramalarının dışında tutulacak bir klasör belirtmek ister misiniz? EXEFilesFilter = *.exe|*.exe|Tüm Dosyalar (*.*)|*.*
DefenderExclusionFoldersListRemoved = Hariç tutulan klasörler kaldırıldı FolderSelect = Klasör seç
AddDefenderExclusionFileRequest = Microsoft Defender kötü amaçlı yazılım taramalarının dışında bırakılacak bir dosya belirtmek ister misiniz? FilesWontBeMoved = Dosyalar taşınmayacak
DefenderExclusionFilesRemoved = Hariç tutulan dosyalar kaldırıldı FourHours = 4 saat
EventViewerCustomViewName = Süreç Oluşturma HalfHour = 30 dakika
EventViewerCustomViewDescription = Süreç oluşturma ve komut satırı denetleme olayları Install = Yüklemek
RestartWarning = Bilgisayarınızı yeniden başlattığınızdan emin olun Minute = 1 dakika
ErrorsLine = Satır NoData = Görüntülenecek bir şey yok
ErrorsFile = Dosya NoInternetConnection = İnternet bağlantısı yok
ErrorsMessage = Hatalar/Uyarılar NoResponse = https://store.rg-adguard.net ile bağlantı kurulamadı
Add = Ekle Patient = Lütfen bekleyin...
AllFilesFilter = Tüm Dosyalar (*.*)|*.* Run = Başlat
Change = Değiştir Select = Seç
Continue = Devam et SelectAll = Hepsini seç
DialogBoxOpening = İletişim kutusu görüntüleniyor... Skip = Atla
Disable = Devre dışı bırak Skipped = Atlandı
Dismiss = İptal Snooze = Ertelemek
Enable = Aktif et SymbolicSkipped = Sembolik bir bağlantı oluşturma atlandı
EXEFilesFilter = *.exe|*.exe|Tüm Dosyalar (*.*)|*.* Uninstall = Kaldır
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
'@ '@

159
Sophia/LTSC/uk-UA/Sophia.psd1

@ -1,90 +1,73 @@
ConvertFrom-StringData -StringData @' ConvertFrom-StringData -StringData @'
UnsupportedOSBitness = Скрипт підтримує тільки Windows 10 x64 UnsupportedOSBitness = Скрипт підтримує тільки Windows 10 x64
UnsupportedOSBuild = Скрипт підтримує тільки Windows 10 1809 Enterprise LTSC UnsupportedOSBuild = Скрипт підтримує тільки Windows 10 1809 версії Enterprise LTSC
UnsupportedRelease = Виявлено нову версію UnsupportedRelease = Виявлено нову версію
ControlledFolderAccessDisabled = Контрольований доступ до папок вимкнений ControlledFolderAccessDisabled = Контрольований доступ до папок вимкнений
ScheduledTasks = Заплановані задачі ScheduledTasks = Заплановані задачі
ClearFolder = Видаліть всі файли у папці "{0}"? ClearFolder = Видаліть всі файли у папці "{0}"?
FilesBlocked = Наступні файли блокуються сторонніми програмами\nВидаліть їх вручну та продовжуйте FilesBlocked = Наступні файли блокуються сторонніми програмами\nВидаліть їх вручну та продовжуйте
TempNotEmpty = Папка "{0}" не порожня. Очистіть її вручну TempNotEmpty = Папка "{0}" не порожня. Очистіть її вручну
WindowsFeaturesTitle = Компоненти Windows WindowsFeaturesTitle = Компоненти Windows
OptionalFeaturesTitle = Додаткові компоненти OptionalFeaturesTitle = Додаткові компоненти
EnableHardwareVT = Увімкніть віртуалізацію в UEFI EnableHardwareVT = Увімкніть віртуалізацію в UEFI
UserShellFolderNotEmpty = У папці "{0}" залишились файли. Перемістіть їх вручну у нове розташування UserShellFolderNotEmpty = У папці "{0}" залишились файли. Перемістіть їх вручну у нове розташування
RetrievingDrivesList = Отримання списку дисків... RetrievingDrivesList = Отримання списку дисків...
NewUserShellFolderLocation = Нове розташування: "{0}" DriveSelect = Виберіть диск, в корні якого буде створена папка для "{0}"
DesktopDriveSelect = Виберіть диск, в корні якого буде створена папка для "Робочий стіл" UserFolderRequest = Хочете змінити розташування папки "{0}"?
DocumentsDriveSelect = Виберіть диск, в корні якого буде створена папка для "Документи" UserFolderSelect = Виберіть папку для "{0}"
DownloadsDriveSelect = Виберіть диск, в корні якого буде створена папка для "Завантаження" UserDefaultFolder = Хочете змінити розташування папки "{0}" на значення за замовчуванням?
MusicDriveSelect = Виберіть диск, в корні якого буде створена папка для "Музика" GraphicsPerformanceTitle = Налаштування продуктивності графіки
PicturesDriveSelect = Виберіть диск, в корні якого буде створена папка для "Зображения" GraphicsPerformanceRequest = Встановити для будь-якої програми за вашим вибором налаштування продуктивності графіки на "Висока продуктивність"?
VideosDriveSelect = Виберіть диск, в корні якого буде створена папка для "Відео" TaskNotificationTitle = Cповіщення
DesktopRequest = Хочете змінити розташування папки "Робочий стіл"? CleanupTaskNotificationTitle = Важлива інформація
DocumentsRequest = Хочете змінити розташування папки "Документи"? CleanupTaskDescription = Очищення зайвих файлів і оновлень Windows, використовуючи вбудовану програму очищення диска
DownloadsRequest = Хочете змінити розташування папки "Завантаження"? CleanupTaskNotificationEventTitle = Запустити задачу по очищенню зайвих файлів і оновлень Windows?
MusicRequest = Хочете змінити розташування папки "Музика"? CleanupTaskNotificationEvent = Очищення Windows не займе багато часу. Наступний раз це повідомлення з'явиться через 30 днів
PicturesRequest = Хочете змінити розташування папки "Зображения"? CleanupTaskNotificationSnoozeInterval = Виберіть інтервал повтору повідомлення
VideosRequest = Хочете змінити розташування папки "Відео"? CleanupNotificationTaskDescription = Спливаюче повідомлення про нагадуванні з очищення зайвих файлів і оновлень Windows
DesktopFolderSelect = Виберіть папку для "Робочий стіл" SoftwareDistributionTaskNotificationEvent = Кеш оновлень Windows успішно видалений
DocumentsFolderSelect = Виберіть папку для "Документи" TempTaskNotificationEvent = Папка тимчасових файлів успішно очищена
DownloadsFolderSelect = Виберіть папку для "Завантаження" FolderTaskDescription = Очищення папки "{0}"
MusicFolderSelect = Виберіть папку для "Музика" ControlledFolderAccess = Контрольований доступ до папок
PicturesFolderSelect = Виберіть папку для "Зображения" ProtectedFoldersRequest = Бажаєте увімкнути контрольований доступ до папок і вказати папку, яку Microsoft Defender буде захищати від шкідливих додатків і загроз?
VideosFolderSelect = Виберіть папку для "Відео" ProtectedFoldersListRemoved = Видалення папки
DesktopDefaultFolder = Хочете змінити розташування папки "Робочий стіл" на значення за замовчуванням? AppControlledFolderRequest = Вказати додаток, якому дозволена робота через контрольований доступ до папок
DocumentsDefaultFolder = Хочете змінити розташування папки "Документи" на значення за замовчуванням? AllowedControlledFolderAppsRemoved = Видалені дозволені додатки
DownloadsDefaultFolder = Хочете змінити розташування папки "Завантаження" на значення за замовчуванням? DefenderExclusionFolderRequest = Вказати папку, щоб виключити її зі списку сканування Microsoft Defender?
MusicDefaultFolder = Хочете змінити розташування папки "Музика" на значення за замовчуванням? DefenderExclusionFoldersListRemoved = Виключені папки видалені
PicturesDefaultFolder = Хочете змінити розташування папки "Зображения" на значення за замовчуванням? AddDefenderExclusionFileRequest = Вказати файл, щоб виключити його зі списку сканування Microsoft Defender?
VideosDefaultFolder = Хочете змінити розташування папки "Відео" на значення за замовчуванням? DefenderExclusionFilesRemoved = Виключені файли видалені
GraphicsPerformanceTitle = Налаштування продуктивності графіки EventViewerCustomViewName = Створення процесу
GraphicsPerformanceRequest = Встановити для будь-якої програми за вашим вибором налаштування продуктивності графіки на "Висока продуктивність"? EventViewerCustomViewDescription = Події створення нового процесу і аудит командного рядка
CleanupTaskDescription = Очищення зайвих файлів і оновлень Windows, використовуючи вбудовану програму очищення диска RestartWarning = Обов'язково перезавантажте ваш ПК
CleanupTaskNotificationTitle = Важлива інформація ErrorsLine = Рядок
CleanupTaskNotificationEventTitle = Запустити задачу по очищенню зайвих файлів і оновлень Windows? ErrorsFile = Файл
CleanupTaskNotificationEvent = Очищення Windows не займе багато часу. Наступний раз це повідомлення з'явиться через 30 днів ErrorsMessage = Помилки/попередження
CleanupTaskNotificationSnoozeInterval = Виберіть інтервал повтору повідомлення Add = Додати
CleanupNotificationTaskDescription = Спливаюче повідомлення про нагадуванні з очищення зайвих файлів і оновлень Windows AllFilesFilter = Усі файли (*.*)|*.*
FolderTaskDescription = Очищення папки "{0}" Change = Змінити
ControlledFolderAccess = Контрольований доступ до папок Delete = Видалити
ProtectedFoldersRequest = Бажаєте увімкнути контрольований доступ до папок і вказати папку, яку Microsoft Defender буде захищати від шкідливих додатків і загроз? DialogBoxOpening = Діалогове вікно відкривається...
ProtectedFoldersListRemoved = Видалення папки Disable = Вимкнути
AppControlledFolderRequest = Вказати додаток, якому дозволена робота через контрольований доступ до папок Dismiss = Відміна
AllowedControlledFolderAppsRemoved = Видалені дозволені додатки Enable = Увімкнути
DefenderExclusionFolderRequest = Вказати папку, щоб виключити її зі списку сканування Microsoft Defender? EXEFilesFilter = *.exe|*.exe|Усі файли (*.*)|*.*
DefenderExclusionFoldersListRemoved = Виключені папки видалені FolderSelect = Виберіть папку
AddDefenderExclusionFileRequest = Вказати файл, щоб виключити його зі списку сканування Microsoft Defender? FilesWontBeMoved = Файли не будуть перенесені
DefenderExclusionFilesRemoved = Виключені файли видалені FourHours = 4 години
EventViewerCustomViewName = Створення процесу HalfHour = 30 хвилин
EventViewerCustomViewDescription = Події створення нового процесу і аудит командного рядка Install = Встановити
RestartWarning = Обов'язково перезавантажте ваш ПК Minute = 1 хвилина
ErrorsLine = Рядок NoData = Відсутні дані
ErrorsFile = Файл NoInternetConnection = Відсутнє інтернет-з'єднання
ErrorsMessage = Помилки/попередження NoResponse = Не вдалося встановити звязок із https://store.rg-adguard.net
Add = Додати Patient = Будь ласка, зачекайте...
AllFilesFilter = Усі файли (*.*)|*.* Run = Запустити
Change = Змінити Select = Вибрати
Continue = Продовжити SelectAll = Вибрати все
DialogBoxOpening = Діалогове вікно відкривається... Skip = Пропустити
Disable = Вимкнути Skipped = Пропущено
Dismiss = Відміна Snooze = Відкласти
Enable = Увімкнути SymbolicSkipped = Пропущено створення символічного посилання
EXEFilesFilter = *.exe|*.exe|Усі файли (*.*)|*.* Uninstall = Видалити
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