├── third_party ├── CommonLocalization │ ├── lt-LT │ │ ├── common-dlcs.ftl │ │ ├── common-downloader.ftl │ │ └── common.ftl │ ├── de-DE │ │ ├── common-downloader.ftl │ │ ├── common-dlcs.ftl │ │ └── common-cloud.ftl │ ├── es-ES │ │ ├── common-downloader.ftl │ │ ├── common-dlcs.ftl │ │ └── common-cloud.ftl │ ├── it-IT │ │ ├── common-downloader.ftl │ │ ├── common-dlcs.ftl │ │ └── common-cloud.ftl │ ├── pt-BR │ │ ├── common-downloader.ftl │ │ ├── common-dlcs.ftl │ │ └── common-cloud.ftl │ ├── ru-RU │ │ ├── common-downloader.ftl │ │ ├── common-dlcs.ftl │ │ └── common-cloud.ftl │ ├── tr-TR │ │ ├── common-downloader.ftl │ │ ├── common-dlcs.ftl │ │ └── common-cloud.ftl │ ├── zh-CN │ │ ├── common-downloader.ftl │ │ ├── common-dlcs.ftl │ │ └── common-cloud.ftl │ ├── en-US │ │ ├── common-downloader.ftl │ │ ├── common-dlcs.ftl │ │ └── common-cloud.ftl │ └── pl-PL │ │ ├── common-downloader.ftl │ │ ├── common-dlcs.ftl │ │ └── common-cloud.ftl ├── PlayniteExtensions │ ├── PlayniteRepo │ │ ├── SOURCE_INFO.txt │ │ ├── source │ │ │ └── playnite │ │ │ │ ├── native │ │ │ │ ├── Fileapi.cs │ │ │ │ ├── Powrprof.cs │ │ │ │ ├── Winbase.cs │ │ │ │ ├── Shlwapi.cs │ │ │ │ └── Processthreadsapi.cs │ │ │ │ ├── WindowsNotifyIconManager.cs │ │ │ │ ├── common │ │ │ │ ├── Xaml.cs │ │ │ │ └── extensions │ │ │ │ │ ├── Enums.cs │ │ │ │ │ └── ProcessExtensions.cs │ │ │ │ └── Converters │ │ │ │ └── InvertedBoolenConverter.cs │ │ └── LICENSE.md │ ├── SOURCE_INFO.txt │ ├── LICENSE.md │ └── source │ │ └── Generic │ │ └── PlayniteExtensions.Common │ │ ├── PluginSettingsViewModel.cs │ │ └── GlobalCommands.cs ├── playnite-common-plugin │ ├── SOURCE_INFO.txt │ └── src │ │ ├── Enums │ │ ├── CloudSyncAction.cs │ │ ├── DownloadAction.cs │ │ ├── ClearCacheTime.cs │ │ ├── DownloadCompleteAction.cs │ │ └── DownloadStatus.cs │ │ ├── Converters │ │ ├── NumericalSizeToStringConverter.cs │ │ └── LongToDateConverter.cs │ │ ├── CliWrapCommandExtensions.cs │ │ ├── Resources │ │ ├── NormalStyles.xaml │ │ └── Icons.xaml │ │ ├── NumericInput.xaml │ │ ├── RelativePath.cs │ │ ├── LocalizeExtension.cs │ │ └── RetryHandler.cs └── Localization │ ├── eo-UY │ └── third-party.ftl │ ├── af-ZA │ └── third-party.ftl │ ├── si-LK │ └── third-party.ftl │ ├── da-DK │ └── third-party.ftl │ ├── sk-SK │ └── third-party.ftl │ ├── sv-SE │ └── third-party.ftl │ ├── hr-HR │ └── third-party.ftl │ ├── fi-FI │ └── third-party.ftl │ ├── zh-TW │ └── third-party.ftl │ ├── zh-CN │ └── third-party.ftl │ ├── ko-KR │ └── third-party.ftl │ ├── ja-JP │ └── third-party.ftl │ ├── ro-RO │ └── third-party.ftl │ ├── he-IL │ └── third-party.ftl │ ├── mr-IN │ └── third-party.ftl │ ├── lt-LT │ └── third-party.ftl │ ├── ar-SA │ └── third-party.ftl │ ├── en-US │ └── third-party.ftl │ ├── fa-IR │ └── third-party.ftl │ ├── pt-PT │ └── third-party.ftl │ ├── id-ID │ └── third-party.ftl │ ├── tr-TR │ └── third-party.ftl │ └── cs-CZ │ └── third-party.ftl ├── src ├── LauncherUpdateSource.json ├── LocalizationPathsForDesignMode.txt ├── Resources │ └── legendary_icon.ico ├── Models │ ├── LauncherVersion.cs │ ├── Prerequisite.cs │ ├── ErrorResponse.cs │ ├── AccountResponse.cs │ ├── OverlayVersion.cs │ ├── PlaytimesResponse.cs │ ├── AssetsResponse.cs │ ├── PlaytimePayload.cs │ ├── LegendarySDLInfo.cs │ ├── UpdateInfo.cs │ ├── LibraryItemsResponse.cs │ ├── GameSettings.cs │ ├── Installed.cs │ ├── OauthResponse.cs │ ├── LegendaryGameInfo.cs │ ├── CatalogResponse.cs │ ├── DownloadManagerData.cs │ └── LegendaryMetadata.cs ├── Enums │ └── UpdatePolicy.cs ├── Localization │ ├── lt-LT │ │ └── legendary.ftl │ ├── zh-CN │ │ └── legendary.ftl │ ├── it-IT │ │ └── legendary.ftl │ └── de-DE │ │ └── legendary.ftl ├── LegendaryClient.cs ├── extension.yaml ├── App.xaml ├── LegendaryTroubleshootingInformation.cs ├── LegendaryLibrary.sln ├── Helpers.cs ├── Properties │ └── AssemblyInfo.cs ├── LegendaryMessagesSettings.cs ├── Converters │ └── DownloadStatusEnumToStringConverter.cs ├── LegendaryDownloadCompleteActionView.xaml ├── LegendaryAlternativeAuthView.xaml.cs ├── EpicMetadataProvider.cs ├── LegendaryEaActivate.xaml ├── LegendaryAlternativeAuthView.xaml └── LegendaryExtraInstallationContentView.xaml ├── make_scripts ├── config │ ├── activeLanguages.txt │ ├── stringsToMove.txt │ ├── epicLocKeys.txt │ ├── playniteLocKeys.txt │ └── placeholderReplacements.yaml ├── after_build.py ├── get_extension_version.py ├── convert_to_ftl_start.py ├── download_translations.py ├── update_3p_code.py └── update_localization_keys.py ├── crowdin.yml ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── features.yml │ └── bugs.yml ├── dependabot.yml └── workflows │ ├── crowdin_upload.yml │ ├── lock.yml │ ├── stale.yml │ └── crowdin_download.yml ├── LICENSE └── README.md /third_party/CommonLocalization/lt-LT/common-dlcs.ftl: -------------------------------------------------------------------------------- 1 | common-extra-content = Papildomas turinys 2 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/de-DE/common-downloader.ftl: -------------------------------------------------------------------------------- 1 | common-downloader-preferred-cdn = Preferred CDN 2 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/es-ES/common-downloader.ftl: -------------------------------------------------------------------------------- 1 | common-downloader-preferred-cdn = CDN preferido 2 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/it-IT/common-downloader.ftl: -------------------------------------------------------------------------------- 1 | common-downloader-preferred-cdn = CDN preferito 2 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/pt-BR/common-downloader.ftl: -------------------------------------------------------------------------------- 1 | common-downloader-preferred-cdn = CDN Preferencial 2 | -------------------------------------------------------------------------------- /src/LauncherUpdateSource.json: -------------------------------------------------------------------------------- 1 | [ 2 | "derrod", 3 | "Heroic-Games-Launcher", 4 | "hawkeye116477" 5 | ] 6 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/lt-LT/common-downloader.ftl: -------------------------------------------------------------------------------- 1 | common-downloader-preferred-cdn = Pageidaujamas CDN 2 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/ru-RU/common-downloader.ftl: -------------------------------------------------------------------------------- 1 | common-downloader-preferred-cdn = Предпочтительный CDN 2 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/tr-TR/common-downloader.ftl: -------------------------------------------------------------------------------- 1 | common-downloader-preferred-cdn = Tercih Edilen CDN 2 | -------------------------------------------------------------------------------- /src/LocalizationPathsForDesignMode.txt: -------------------------------------------------------------------------------- 1 | Localization 2 | ..\third_party\Localization 3 | ..\third_party\CommonLocalization 4 | -------------------------------------------------------------------------------- /make_scripts/config/activeLanguages.txt: -------------------------------------------------------------------------------- 1 | de-DE 2 | en-US 3 | es-ES 4 | it-IT 5 | pl-PL 6 | pt-BR 7 | ru-RU 8 | tr-TR 9 | zh-CN 10 | -------------------------------------------------------------------------------- /src/Resources/legendary_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hawkeye116477/playnite-legendary-plugin/HEAD/src/Resources/legendary_icon.ico -------------------------------------------------------------------------------- /third_party/PlayniteExtensions/PlayniteRepo/SOURCE_INFO.txt: -------------------------------------------------------------------------------- 1 | Source: https://github.com/JosefNemec/Playnite.git 2 | Commit: 81a66b1b0cdca691eefcc03095ca20ce627db907 3 | -------------------------------------------------------------------------------- /third_party/PlayniteExtensions/SOURCE_INFO.txt: -------------------------------------------------------------------------------- 1 | Source: https://github.com/JosefNemec/PlayniteExtensions.git 2 | Commit: 2571993a388889c024561d1626dfaf2b3fd55da7 3 | -------------------------------------------------------------------------------- /third_party/playnite-common-plugin/SOURCE_INFO.txt: -------------------------------------------------------------------------------- 1 | Source: https://github.com/hawkeye116477/playnite-common-plugin.git 2 | Commit: ac8532b5e4ff250a5703ec364faf5960d71c96d3 3 | -------------------------------------------------------------------------------- /make_scripts/config/stringsToMove.txt: -------------------------------------------------------------------------------- 1 | common-additional-services 2 | common-check-all-dlcs 3 | common-disable 4 | common-enable 5 | common-game-import-failure 6 | common-language-code 7 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/zh-CN/common-downloader.ftl: -------------------------------------------------------------------------------- 1 | common-downloader-preferred-cdn = 首选 CDN 2 | common-finish-installation = 完成安装的游戏 3 | common-no-finish-needed = 没有未完成安装的游戏。 4 | -------------------------------------------------------------------------------- /third_party/playnite-common-plugin/src/Enums/CloudSyncAction.cs: -------------------------------------------------------------------------------- 1 | namespace CommonPlugin.Enums 2 | { 3 | public enum CloudSyncAction 4 | { 5 | Download, 6 | Upload, 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /third_party/playnite-common-plugin/src/Enums/DownloadAction.cs: -------------------------------------------------------------------------------- 1 | namespace CommonPlugin.Enums 2 | { 3 | public enum DownloadAction 4 | { 5 | Install, 6 | Repair, 7 | Update 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/Models/LauncherVersion.cs: -------------------------------------------------------------------------------- 1 | namespace LegendaryLibraryNS.Models 2 | { 3 | public class LauncherVersion 4 | { 5 | public string Tag_name { get; set; } 6 | public string Html_url { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/en-US/common-downloader.ftl: -------------------------------------------------------------------------------- 1 | common-downloader-preferred-cdn = Preferred CDN 2 | common-finish-installation = Finish installation of games 3 | common-no-finish-needed = No games requiring finishing installation. 4 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/pl-PL/common-downloader.ftl: -------------------------------------------------------------------------------- 1 | common-downloader-preferred-cdn = Preferowany CDN 2 | common-finish-installation = Ukończ instalację gier 3 | common-no-finish-needed = Brak gier wymagających ukończenia instalacji. 4 | -------------------------------------------------------------------------------- /third_party/playnite-common-plugin/src/Enums/ClearCacheTime.cs: -------------------------------------------------------------------------------- 1 | namespace CommonPlugin.Enums 2 | { 3 | public enum ClearCacheTime 4 | { 5 | Never, 6 | Day, 7 | Week, 8 | Month, 9 | ThreeMonths, 10 | SixMonths, 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /third_party/playnite-common-plugin/src/Enums/DownloadCompleteAction.cs: -------------------------------------------------------------------------------- 1 | namespace CommonPlugin.Enums 2 | { 3 | public enum DownloadCompleteAction 4 | { 5 | Nothing, 6 | ShutDown, 7 | Reboot, 8 | Hibernate, 9 | Sleep 10 | }; 11 | } 12 | -------------------------------------------------------------------------------- /third_party/playnite-common-plugin/src/Enums/DownloadStatus.cs: -------------------------------------------------------------------------------- 1 | namespace CommonPlugin.Enums 2 | { 3 | public enum DownloadStatus 4 | { 5 | Queued, 6 | Running, 7 | Paused, 8 | Canceled, 9 | Completed, 10 | Error 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /src/Enums/UpdatePolicy.cs: -------------------------------------------------------------------------------- 1 | namespace LegendaryLibraryNS.Enums 2 | { 3 | public enum UpdatePolicy 4 | { 5 | Never, 6 | GameLaunch, 7 | PlayniteLaunch = 3, 8 | Day, 9 | Week, 10 | Month, 11 | ThreeMonths, 12 | SixMonths 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /make_scripts/config/epicLocKeys.txt: -------------------------------------------------------------------------------- 1 | LOCEpicSettingsImportInstalledLabel 2 | LOCEpicSettingsConnectAccount 3 | LOCEpicSettingsImportUninstalledLabel 4 | LOCEpicAuthenticateLabel 5 | LOCEpicNotLoggedIn 6 | LOCEpicLoginChecking 7 | LOCEpicTroubleShootingIssues 8 | LOCEpicStartUsingClient 9 | LOCEpicNotLoggedInError 10 | -------------------------------------------------------------------------------- /src/Models/Prerequisite.cs: -------------------------------------------------------------------------------- 1 | namespace LegendaryLibraryNS.Models 2 | { 3 | public class Prerequisite 4 | { 5 | public string[] ids { get; set; } 6 | public string name { get; set; } 7 | public string path { get; set; } 8 | public string args { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- 1 | project_id_env: CROWDIN_PROJECT_ID 2 | api_token_env: CROWDIN_TOKEN 3 | 4 | 5 | files: [ 6 | { 7 | "source": "/src/Localization/en-US/legendary.ftl", 8 | "translation": "/src/Localization/%locale%/legendary.ftl", 9 | "escape_quotes": 3, 10 | "escape_special_characters": 0, 11 | } 12 | ] 13 | -------------------------------------------------------------------------------- /src/Models/ErrorResponse.cs: -------------------------------------------------------------------------------- 1 | namespace LegendaryLibraryNS.Models 2 | { 3 | public class ErrorResponse 4 | { 5 | public string errorCode; 6 | public string errorMessage; 7 | public int numericErrorCode; 8 | public string originatingService; 9 | public string intent; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/Models/AccountResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace LegendaryLibraryNS.Models 8 | { 9 | public class AccountResponse 10 | { 11 | public string id; 12 | public string displayName; 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/zh-CN/common-dlcs.ftl: -------------------------------------------------------------------------------- 1 | common-download-all-dlcs = 下载所有 DLC 2 | common-extra-content = 额外内容 3 | common-installed-dlcs = 已安装的 DLC 4 | common-available-dlcs = 可用的 DLC 5 | common-manage-dlcs = 管理 DLC 6 | common-no-installed-dlcs = 没有已安装的 DLC。 7 | common-no-available-dlcs = 没有可用的 DLC。 8 | common-uninstall-selected-dlcs = 您确定要卸载选定的 DLC 吗? 9 | -------------------------------------------------------------------------------- /third_party/PlayniteExtensions/PlayniteRepo/source/playnite/native/Fileapi.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace Playnite.Native 8 | { 9 | public class Fileapi 10 | { 11 | public const uint FILE_FLAG_BACKUP_SEMANTICS = 0x2000000; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/Localization/lt-LT/legendary.ftl: -------------------------------------------------------------------------------- 1 | legendary-launch-offline = Žaidimus paleisti atsijungusiame rėžime, jei įmanoma 2 | legendary-http-only-download = Išjungti HTTPS (naudinga CDN'ams, pvz. LanCache) 3 | legendary-enable-reordering = Įjungti perrūšiavimo optimizaciją 4 | legendary-eos-overlay = EOS Užklojimas 5 | legendary-disable = Išjungti 6 | legendary-enable = Įjungti 7 | -------------------------------------------------------------------------------- /src/Models/OverlayVersion.cs: -------------------------------------------------------------------------------- 1 | namespace LegendaryLibraryNS.Models 2 | { 3 | public class OverlayVersion 4 | { 5 | public class Rootobject 6 | { 7 | public Data Data { get; set; } 8 | } 9 | 10 | public class Data 11 | { 12 | public string BuildVersion { get; set; } 13 | } 14 | 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: 📚 Help 4 | url: https://github.com/hawkeye116477/playnite-legendary-plugin/wiki 5 | about: Read it before asking or reporting anything. 6 | - name: 🗨️ Forum 7 | url: https://github.com/hawkeye116477/playnite-legendary-plugin/discussions 8 | about: Please ask and answer questions here. 9 | -------------------------------------------------------------------------------- /src/Models/PlaytimesResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace LegendaryLibraryNS.Models 8 | { 9 | public class PlaytimeItem 10 | { 11 | public string accountId; 12 | public string artifactId; 13 | public ulong totalTime; 14 | } 15 | } -------------------------------------------------------------------------------- /src/Models/AssetsResponse.cs: -------------------------------------------------------------------------------- 1 | namespace LegendaryLibraryNS.Models 2 | { 3 | public class Asset 4 | { 5 | public string appName; 6 | public string labelName; 7 | public string buildVersion; 8 | public string catalogItemId; 9 | public string @namespace; 10 | public string assetId; 11 | public string sandboxType; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /src/Models/PlaytimePayload.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace LegendaryLibraryNS.Models 8 | { 9 | public class PlaytimePayload 10 | { 11 | public string machineId; 12 | public string artifactId; 13 | public DateTime startTime; 14 | public DateTime endTime; 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/en-US/common-dlcs.ftl: -------------------------------------------------------------------------------- 1 | common-download-all-dlcs = Download all DLCs 2 | common-extra-content = Extra Content 3 | common-installed-dlcs = Installed DLCs 4 | common-available-dlcs = Available DLCs 5 | common-manage-dlcs = Manage DLCs 6 | common-no-installed-dlcs = No installed DLCs. 7 | common-no-available-dlcs = No available DLCs. 8 | common-uninstall-selected-dlcs = Are you sure you want to uninstall selected DLCs? 9 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/de-DE/common-dlcs.ftl: -------------------------------------------------------------------------------- 1 | common-download-all-dlcs = Alle DLCs herunterladen 2 | common-installed-dlcs = Installierte DLCs 3 | common-available-dlcs = Verfügbare DLCs 4 | common-manage-dlcs = DLCs verwalten 5 | common-no-installed-dlcs = Keine installierten DLCs. 6 | common-no-available-dlcs = Keine verfügbaren DLCs. 7 | common-uninstall-selected-dlcs = Sind Sie sicher, dass Sie die ausgewählten DLCs deinstallieren möchten? 8 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/ru-RU/common-dlcs.ftl: -------------------------------------------------------------------------------- 1 | common-download-all-dlcs = Скачать все DLC 2 | common-extra-content = Доп. контент 3 | common-installed-dlcs = Установленные DLC 4 | common-available-dlcs = Доступные DLC 5 | common-manage-dlcs = Управление DLC 6 | common-no-installed-dlcs = Нет установленных DLC. 7 | common-no-available-dlcs = Нет доступных DLC. 8 | common-uninstall-selected-dlcs = Вы уверены, что хотите удалить выбранные DLC? 9 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/tr-TR/common-dlcs.ftl: -------------------------------------------------------------------------------- 1 | common-download-all-dlcs = Tüm DLC içeriğini indir 2 | common-extra-content = Ekstra İçerik 3 | common-installed-dlcs = Kurulu DLC 4 | common-available-dlcs = Mevcut DLC 5 | common-manage-dlcs = DLC Yönetimi 6 | common-no-installed-dlcs = Kurulu DLC yok. 7 | common-no-available-dlcs = Mevcut DLC yok. 8 | common-uninstall-selected-dlcs = Seçili DLC içerikleri kaldırmak istediğinizden emin misiniz? 9 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/it-IT/common-dlcs.ftl: -------------------------------------------------------------------------------- 1 | common-download-all-dlcs = Scarica tutti i DLC 2 | common-extra-content = Contenuti extra 3 | common-installed-dlcs = DLC Installati 4 | common-available-dlcs = DLC disponibili 5 | common-manage-dlcs = Gestione DLC 6 | common-no-installed-dlcs = Nessun DLC installato. 7 | common-no-available-dlcs = Nessun DLC disponibile. 8 | common-uninstall-selected-dlcs = Sei sicuro di voler disinstallare i DLC selezionati? 9 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/pt-BR/common-dlcs.ftl: -------------------------------------------------------------------------------- 1 | common-download-all-dlcs = Baixar todos os DLCs 2 | common-extra-content = Conteúdo Adicional 3 | common-installed-dlcs = DLCs instalados 4 | common-available-dlcs = DLCs disponíveis 5 | common-manage-dlcs = Gerenciar DLCs 6 | common-no-installed-dlcs = Nenhum DLC instalado. 7 | common-no-available-dlcs = Nenhum DLC disponível. 8 | common-uninstall-selected-dlcs = Tem certeza que deseja desinstalar os DLC selecionados? 9 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/pl-PL/common-dlcs.ftl: -------------------------------------------------------------------------------- 1 | common-download-all-dlcs = Pobieraj wszystkie DLC 2 | common-extra-content = Dodatkowa zawartość 3 | common-installed-dlcs = Zainstalowane DLC 4 | common-available-dlcs = Dostępne DLC 5 | common-manage-dlcs = Zarządzaj dodatkami (DLC) 6 | common-no-installed-dlcs = Brak zainstalowanych DLC. 7 | common-no-available-dlcs = Brak dostępnych DLC. 8 | common-uninstall-selected-dlcs = Czy na pewno chcesz odinstalować wybrane dodatki? 9 | -------------------------------------------------------------------------------- /src/Models/LegendarySDLInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace LegendaryLibraryNS.Models 4 | { 5 | public class LegendarySDLInfo : ObservableObject 6 | { 7 | public string Description { get; set; } 8 | public string Name { get; set; } 9 | public List Tags { get; set; } = new List(); 10 | public bool Is_dlc { get; set; } = false; 11 | public string BaseGameID { get; set; } = ""; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # To get started with Dependabot version updates, you'll need to specify which 2 | # package ecosystems to update and where the package manifests are located. 3 | # Please see the documentation for all configuration options: 4 | # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates 5 | 6 | version: 2 7 | updates: 8 | - package-ecosystem: github-actions 9 | directory: / 10 | schedule: 11 | interval: weekly 12 | -------------------------------------------------------------------------------- /third_party/Localization/eo-UY/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filters = Filtriloj 8 | third-party-playnite-copy-title = Kopii 9 | -------------------------------------------------------------------------------- /src/Models/UpdateInfo.cs: -------------------------------------------------------------------------------- 1 | namespace LegendaryLibraryNS.Models 2 | { 3 | public class UpdateInfo 4 | { 5 | public string Title { get; set; } 6 | public string Version { get; set; } 7 | public string Install_path { get; set; } 8 | public double Disk_size { get; set; } = 0; 9 | public double Download_size { get; set; } = 0; 10 | public string Title_for_updater { get; set; } 11 | public bool Success { get; set; } = true; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /third_party/Localization/af-ZA/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = Filter Aktief 8 | third-party-playnite-filters = Filters 9 | -------------------------------------------------------------------------------- /src/LegendaryClient.cs: -------------------------------------------------------------------------------- 1 | using Playnite.SDK; 2 | 3 | namespace LegendaryLibraryNS 4 | { 5 | public class LegendaryClient : LibraryClient 6 | { 7 | private static readonly ILogger logger = LogManager.GetLogger(); 8 | 9 | public override string Icon => LegendaryLauncher.Icon; 10 | 11 | public override bool IsInstalled => LegendaryLauncher.IsInstalled; 12 | 13 | public override void Open() 14 | { 15 | LegendaryLauncher.StartClient(); 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /src/Models/LibraryItemsResponse.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace LegendaryLibraryNS.Models 4 | { 5 | public class LibraryItemsResponse 6 | { 7 | public Responsemetadata responseMetadata { get; set; } = new Responsemetadata(); 8 | public List records { get; set; } 9 | 10 | public class Responsemetadata 11 | { 12 | public string nextCursor { get; set; } 13 | public string stateToken { get; set; } 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/es-ES/common-dlcs.ftl: -------------------------------------------------------------------------------- 1 | common-download-all-dlcs = Descargar todos los DLCs 2 | common-extra-content = Contenido extra 3 | common-installed-dlcs = Contenido descargable instalado 4 | common-available-dlcs = Contenido descargable disponible 5 | common-manage-dlcs = Administrar contenido descargable 6 | common-no-installed-dlcs = No hay contenido descargable instalado. 7 | common-no-available-dlcs = No hay contenido descargable disponible. 8 | common-uninstall-selected-dlcs = ¿Está seguro que deseas desinstalar el contenido descargable seleccionado? 9 | -------------------------------------------------------------------------------- /third_party/PlayniteExtensions/PlayniteRepo/source/playnite/native/Powrprof.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Runtime.InteropServices; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Playnite.Native 9 | { 10 | public class Powrprof 11 | { 12 | private const string dllName = "Powrprof.dll"; 13 | 14 | [DllImport(dllName, CharSet = CharSet.Auto, ExactSpelling = true)] 15 | public static extern bool SetSuspendState(bool hiberate, bool forceCritical, bool disableWakeEvent); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /.github/workflows/crowdin_upload.yml: -------------------------------------------------------------------------------- 1 | name: Upload translations to Crowdin 2 | 3 | on: workflow_dispatch 4 | 5 | jobs: 6 | upload-to-crowdin: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - name: Checkout 10 | uses: actions/checkout@v6 11 | 12 | - name: Crowdin Action 13 | uses: crowdin/github-action@v2 14 | with: 15 | upload_sources: true 16 | upload_translations: false 17 | download_translations: false 18 | config: 'crowdin.yml' 19 | dryrun_action: false 20 | project_id: ${{ vars.CROWDIN_PROJECT_ID }} 21 | token: ${{ secrets.CROWDIN_TOKEN }} 22 | -------------------------------------------------------------------------------- /src/extension.yaml: -------------------------------------------------------------------------------- 1 | Id: LegendaryLibrary 2 | Name: Legendary (Epic Games) library integration 3 | Author: hawkeye116477 4 | Version: _version_ 5 | Module: LegendaryLibrary.dll 6 | Type: GameLibrary 7 | Icon: Resources\legendary_icon.ico 8 | Links: 9 | - Name: Source code 10 | Url: https://github.com/hawkeye116477/playnite-legendary-plugin 11 | - Name: Help 12 | Url: https://github.com/hawkeye116477/playnite-legendary-plugin/wiki 13 | - Name: Forum 14 | Url: https://github.com/hawkeye116477/playnite-legendary-plugin/discussions 15 | - Name: Translate 16 | Url: https://github.com/hawkeye116477/playnite-legendary-plugin/wiki/Translating-plugin 17 | -------------------------------------------------------------------------------- /make_scripts/after_build.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # pylint: disable=C0103 3 | # pylint: disable=C0301 4 | """Do this after succesful build with Visual Studio""" 5 | import os 6 | import sys 7 | import get_extension_version 8 | 9 | pj = os.path.join 10 | pn = os.path.normpath 11 | 12 | compiledPath = pn(sys.argv[1]) 13 | 14 | version = get_extension_version.run() 15 | 16 | with open(pj(compiledPath, "extension.yaml"), 'r', encoding='utf-8') as extManifest: 17 | data = extManifest.read() 18 | data = data.replace("_version_", version) 19 | with open(pj(compiledPath, "extension.yaml"), 'w', encoding='utf-8') as extManifest: 20 | extManifest.write(data) 21 | -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- 1 | name: 'Bodyguard' 2 | 3 | on: 4 | schedule: 5 | - cron: '0 0 * * *' 6 | 7 | jobs: 8 | lock: 9 | runs-on: ubuntu-latest 10 | permissions: 11 | issues: write 12 | steps: 13 | - uses: dessant/lock-threads@v6 14 | with: 15 | issue-inactive-days: '40' 16 | issue-comment: > 17 | This issue has been automatically locked since there 18 | has not been any recent activity after it was closed. 19 | Please open a new issue for related bugs. 20 | issue-lock-reason: 'resolved' 21 | exclude-any-issue-labels: '' 22 | process-only: 'issues' 23 | -------------------------------------------------------------------------------- /src/Models/GameSettings.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace LegendaryLibraryNS.Models 4 | { 5 | public class GameSettings 6 | { 7 | public bool? LaunchOffline { get; set; } 8 | public bool? DisableGameVersionCheck { get; set; } 9 | public List StartupArguments { get; set; } = new List(); 10 | public string LanguageCode { get; set; } = ""; 11 | public string OverrideExe { get; set; } = ""; 12 | public bool? AutoSyncSaves { get; set; } 13 | public string CloudSaveFolder { get; set; } = ""; 14 | public bool? AutoSyncPlaytime { get; set; } 15 | public bool InstallPrerequisites { get; set; } = false; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /third_party/PlayniteExtensions/PlayniteRepo/source/playnite/native/Winbase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Runtime.InteropServices; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace Playnite.Native 9 | { 10 | [UnmanagedFunctionPointer(CallingConvention.Winapi, SetLastError = true, CharSet = CharSet.Unicode)] 11 | public delegate bool ENUMRESNAMEPROC(IntPtr hModule, IntPtr lpszType, IntPtr lpszName, IntPtr lParam); 12 | 13 | [StructLayout(LayoutKind.Sequential)] 14 | public struct SECURITY_ATTRIBUTES 15 | { 16 | public int nLength; 17 | public IntPtr lpSecurityDescriptor; 18 | public int bInheritHandle; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /third_party/playnite-common-plugin/src/Converters/NumericalSizeToStringConverter.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Globalization; 3 | using System.Windows.Data; 4 | 5 | namespace CommonPlugin.Converters 6 | { 7 | public class NumericalSizeToStringConverter : IValueConverter 8 | { 9 | public object Convert(object value, Type targetType, object parameter, CultureInfo culture) 10 | { 11 | if (!(value is double bytes)) 12 | return value; 13 | return CommonHelpers.FormatSize(bytes); 14 | } 15 | 16 | public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) 17 | { 18 | return new NotImplementedException(); 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- 1 | name: 'Close stale issues' 2 | on: 3 | workflow_dispatch: null 4 | schedule: 5 | - cron: '0 0 * * *' 6 | 7 | jobs: 8 | stale: 9 | permissions: 10 | issues: write 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/stale@v10 14 | with: 15 | stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 7 days.' 16 | stale-issue-label: 'wontfix' 17 | exempt-issue-labels: 'help wanted,todo' 18 | close-issue-message: 'This issue was closed because it has been stalled for 7 days with no activity.' 19 | days-before-issue-stale: 30 20 | days-before-issue-close: 7 21 | -------------------------------------------------------------------------------- /third_party/CommonLocalization/zh-CN/common-cloud.ftl: -------------------------------------------------------------------------------- 1 | common-sync-game-saves = 同步游戏存档到云端 2 | common-syncing = 正在将 { $gameTitle } 游戏存档同步到云端…… 3 | common-sync-game-saves-warn = 云端存档功能是实验性的。建议备份游戏存档以防万一。 4 | common-cloud-saves = 云端存档 5 | common-save-path = 存档路径 6 | common-cloud = 云端 7 | common-auto-sync-saves = 同步存档到云端 8 | common-calculate-path = 计算路径 9 | common-cloud-saves-not-supported = 此游戏不支持云端存档。 10 | common-sync = 同步 11 | common-download = 下载 12 | common-upload = 上传 13 | common-force-action = 强制操作 14 | common-cloud-save-confirm = 云端存档功能是实验性的。建议备份游戏存档以防万一。您确定要继续吗? 15 | common-sync-playtime = 同步游玩时间到云端 16 | common-uploading-playtime = 正在将 { $gameTitle } 游戏游玩时间上传到云端…… 17 | common-upload-playtime-error = 在将 { $gameTitle } 游戏游玩时间上传到云端时发生错误。 18 | common-manual-sync-saves = 手动同步存档 19 | -------------------------------------------------------------------------------- /src/Models/Installed.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | 3 | namespace LegendaryLibraryNS.Models 4 | { 5 | public class Installed 6 | { 7 | public string App_name { get; set; } = ""; 8 | public bool Can_run_offline { get; set; } = true; 9 | public string Executable { get; set; } = ""; 10 | public string Install_path { get; set; } = ""; 11 | public long Install_size { get; set; } = 0; 12 | public bool Is_dlc { get; set; } = false; 13 | public string Title { get; set; } = ""; 14 | public string Version { get; set; } = ""; 15 | public string Save_path { get; set; } 16 | public Prerequisite Prereq_info { get; set; } 17 | public List Install_tags { get; set; } = new List(); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /make_scripts/get_extension_version.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # pylint: disable=C0103 3 | # pylint: disable=C0301 4 | """Get extension version""" 5 | import os 6 | 7 | pj = os.path.join 8 | pn = os.path.normpath 9 | 10 | scriptPath = os.path.dirname(os.path.realpath(__file__)) 11 | mainPath = pn(scriptPath + "/..") 12 | 13 | 14 | def run(): 15 | """Let's start""" 16 | with open(pn(pj(mainPath, r"src\Properties\AssemblyInfo.cs")), "r", encoding="utf-8") as assemblyInfo: 17 | assemblyInfoLines = assemblyInfo.read().splitlines() 18 | for line in assemblyInfoLines: 19 | if line.startswith("[") and "AssemblyVersion" in line: 20 | version = line.split('AssemblyVersion("')[ 21 | 1].replace('")]', '').replace(".*", "") 22 | return version 23 | -------------------------------------------------------------------------------- /third_party/playnite-common-plugin/src/CliWrapCommandExtensions.cs: -------------------------------------------------------------------------------- 1 | using Playnite.SDK; 2 | 3 | namespace CliWrap 4 | { 5 | internal static class CliWrapCommandExtensions 6 | { 7 | internal static Command AddCommandToLog(this Command command) 8 | { 9 | var logger = LogManager.GetLogger(); 10 | var allEnvironmentVariables = ""; 11 | if (command.EnvironmentVariables.Count > 0) 12 | { 13 | foreach (var env in command.EnvironmentVariables) 14 | { 15 | allEnvironmentVariables += $"{env.Key}={env.Value} "; 16 | } 17 | } 18 | logger.Debug($"Executing command: {allEnvironmentVariables}{command.TargetFilePath} {command.Arguments}"); 19 | return command; 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /src/App.xaml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 6 | 44 | 45 | 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /third_party/Localization/ja-JP/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = フィルター有効 8 | third-party-playnite-filters = フィルター 9 | third-party-playnite-game-start-error = ゲームを開始できませんでした: { $var0 } 10 | third-party-playnite-game-install-error = ゲームをインストールできません: { $var0 } 11 | third-party-playnite-game-uninstall-error = ゲームをアンインストールできません: { $var0 } 12 | third-party-playnite-copy-title = コピー 13 | third-party-playnite-import-label = インポート 14 | third-party-playnite-install-size-label = インストールサイズ 15 | third-party-playnite-added-label = 追加日 16 | third-party-playnite-ok-label = OK 17 | third-party-playnite-save-label = 保存 18 | third-party-playnite-cancel-label = キャンセル 19 | third-party-playnite-yes-label = はい 20 | third-party-playnite-no-label = いいえ 21 | third-party-playnite-downloading-label = ダウンロード中 22 | third-party-playnite-loading-label = 読み込み中… 23 | third-party-playnite-progress-metadata = メタデータを取得中… 24 | third-party-playnite-menu-restart-system = システムの再起動 25 | third-party-playnite-menu-shutdown-system = システムのシャットダウン 26 | third-party-playnite-menu-suspend-system = システムのスリープ 27 | third-party-playnite-menu-hibernate-system = システムの休止 28 | third-party-playnite-settings-general-label = 一般設定 29 | third-party-playnite-settings-advanced-label = 詳細設定 30 | third-party-playnite-settings-clear-cache-title = キャッシュをクリアしますか? 31 | third-party-playnite-settings-playtime-import-mode-never = 常に無効 32 | third-party-playnite-login-required = 認証が必要です 33 | third-party-playnite-executable-title = 実行ファイル 34 | third-party-playnite-game-name-title = タイトル 35 | third-party-playnite-game-install-dir-title = インストールフォルダ 36 | third-party-playnite-library-import-error = { $var0 } からゲームをインポートできませんでした。 37 | third-party-playnite-metadata-download-error = メタデータをダウンロードできませんでした: { $var0 } 38 | third-party-playnite-download-error = ダウンロードエラー 39 | third-party-playnite-uninstalling = アンインストール中 40 | third-party-playnite-do-nothing = 何もしない 41 | third-party-playnite-close = 終了 42 | third-party-playnite-updater-window-title = 更新が利用可能です 43 | third-party-playnite-updater-install-update = 更新をダウンロードしてインストール 44 | third-party-playnite-check-for-updates = 更新を確認 45 | third-party-playnite-update-check-fail-message = 新しいバージョンを確認できませんでした。 46 | third-party-playnite-install-game = インストール 47 | third-party-playnite-uninstall-game = アンインストール 48 | third-party-playnite-client-not-installed-error = { $var0 } クライアントがインストールされていません。 49 | third-party-playnite-dont-show-again-title = 次回から表示しない 50 | third-party-playnite-common-links-store-page = ストアページ 51 | third-party-playnite-extensions-updates = 更新 52 | third-party-playnite-select-file-tooltip = ファイルを選択 53 | third-party-playnite-select-directory-tooltip = フォルダを選択… 54 | third-party-playnite-option-only-manually = 手動のみ 55 | third-party-playnite-option-once-a-day = 1日に1回 56 | third-party-playnite-option-once-a-week = 週に1回 57 | third-party-playnite-open = 開く 58 | third-party-epic-settings-import-installed-label = インストール済みのゲームをインポート 59 | third-party-epic-settings-import-uninstalled-label = インストールされていないゲームをインポート 60 | third-party-epic-settings-connect-account = アカウントに接続 61 | third-party-epic-login-checking = 認証ステータスを確認しています... 62 | third-party-epic-not-logged-in = 認証が必要です 63 | third-party-epic-not-logged-in-error = ユーザー認証に失敗しました。 64 | third-party-epic-authenticate-label = 認証 65 | third-party-epic-trouble-shooting-issues = 問題のトラブルシューティング 66 | third-party-epic-start-using-client = { $var0 } クライアントの使用を開始 67 | -------------------------------------------------------------------------------- /third_party/playnite-common-plugin/src/RetryHandler.cs: -------------------------------------------------------------------------------- 1 | using Playnite.SDK; 2 | using System; 3 | using System.Net.Http; 4 | using System.Threading; 5 | using System.Threading.Tasks; 6 | 7 | namespace CommonPlugin 8 | { 9 | public class RetryHandler : DelegatingHandler 10 | { 11 | private readonly int _maxRetries = 3; 12 | private readonly int _baseDelayMs = 500; 13 | private ILogger logger = LogManager.GetLogger(); 14 | 15 | public RetryHandler(HttpMessageHandler innerHandler) : base(innerHandler) { } 16 | 17 | public RetryHandler(HttpMessageHandler innerHandler, int maxRetries, int baseDelayMs) : base(innerHandler) 18 | { 19 | _maxRetries = maxRetries; 20 | _baseDelayMs = baseDelayMs; 21 | } 22 | 23 | internal static async Task CloneRequestAsync(HttpRequestMessage originalRequest) 24 | { 25 | var newRequest = new HttpRequestMessage(originalRequest.Method, originalRequest.RequestUri) 26 | { 27 | Version = originalRequest.Version, 28 | }; 29 | 30 | foreach (var header in originalRequest.Headers) 31 | { 32 | newRequest.Headers.TryAddWithoutValidation(header.Key, header.Value); 33 | } 34 | 35 | foreach (var property in originalRequest.Properties) 36 | { 37 | newRequest.Properties.Add(property); 38 | } 39 | 40 | if (originalRequest.Content != null) 41 | { 42 | var contentBytes = await originalRequest.Content.ReadAsByteArrayAsync().ConfigureAwait(false); 43 | var newContent = new ByteArrayContent(contentBytes); 44 | foreach (var contentHeader in originalRequest.Content.Headers) 45 | { 46 | newContent.Headers.TryAddWithoutValidation(contentHeader.Key, contentHeader.Value); 47 | } 48 | newRequest.Content = newContent; 49 | } 50 | return newRequest; 51 | } 52 | 53 | protected override async Task SendAsync( 54 | HttpRequestMessage request, 55 | CancellationToken token) 56 | { 57 | HttpResponseMessage response = null; 58 | for (var i = 0; i < _maxRetries; i++) 59 | { 60 | try 61 | { 62 | var newRequest = await CloneRequestAsync(request); 63 | response = await base.SendAsync(newRequest, token); 64 | if ((int)response.StatusCode >= 500 && (int)response.StatusCode < 600) 65 | { 66 | var errorBody = await response.Content.ReadAsStringAsync(); 67 | throw new HttpRequestException($"Server error: {(int)response.StatusCode} {response.ReasonPhrase}. Body: {errorBody}"); 68 | } 69 | else 70 | { 71 | return response; 72 | } 73 | } 74 | catch when (!token.IsCancellationRequested) 75 | { 76 | if (i < _maxRetries - 1) 77 | { 78 | int delay = (int)(_baseDelayMs * Math.Pow(2, i)); 79 | logger.Debug($"Retrying request.... . Attempts left: {_maxRetries - i - 1}"); 80 | await Task.Delay(delay, token); 81 | } 82 | else 83 | { 84 | throw; 85 | } 86 | } 87 | } 88 | return response; 89 | } 90 | } 91 | } 92 | -------------------------------------------------------------------------------- /third_party/Localization/ro-RO/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = Filtru activ 8 | third-party-playnite-filters = Filtre 9 | third-party-playnite-game-start-error = Nu poate fi pornită camera: { $var0 } 10 | third-party-playnite-game-install-error = Nu se poate instala jocul: { $var0 } 11 | third-party-playnite-game-uninstall-error = Nu se poate dezinstala jocul: { $var0 } 12 | third-party-playnite-copy-title = Copiază 13 | third-party-playnite-import-label = Importaţi 14 | third-party-playnite-install-size-label = Dimensiunea instalării 15 | third-party-playnite-added-label = Adăugat 16 | third-party-playnite-ok-label = OK 17 | third-party-playnite-save-label = Salvează 18 | third-party-playnite-cancel-label = Anulează 19 | third-party-playnite-yes-label = Da 20 | third-party-playnite-no-label = Nu 21 | third-party-playnite-downloading-label = Se descarcă... 22 | third-party-playnite-loading-label = Se încarcă... 23 | third-party-playnite-progress-metadata = Se descarcă metadata... 24 | third-party-playnite-menu-restart-system = Repornire Sistem 25 | third-party-playnite-menu-shutdown-system = Închidere Sistem 26 | third-party-playnite-menu-suspend-system = Suspendare Sistem 27 | third-party-playnite-menu-hibernate-system = Hibernează Sistemul 28 | third-party-playnite-settings-general-label = General 29 | third-party-playnite-settings-advanced-label = Avansat 30 | third-party-playnite-settings-clear-cache-title = Curățați Cache-ul? 31 | third-party-playnite-settings-playtime-import-mode-never = Niciodată 32 | third-party-playnite-login-required = Autentificare necesară 33 | third-party-playnite-executable-title = Executabil 34 | third-party-playnite-game-name-title = Nume 35 | third-party-playnite-game-install-dir-title = Directorul de instalare 36 | third-party-playnite-library-import-error = Nu s-a putut importa jocuri de la { $var0 }. 37 | third-party-playnite-metadata-download-error = Nu s-a putut descărca metadata: { $var0 } 38 | third-party-playnite-download-error = Eroare la descărcare 39 | third-party-playnite-uninstalling = Se dezinstalează 40 | third-party-playnite-do-nothing = Repaus 41 | third-party-playnite-close = Închideţi 42 | third-party-playnite-updater-window-title = Versiune nouă disponibilă 43 | third-party-playnite-updater-install-update = Descarcă şi actualizează programul 44 | third-party-playnite-check-for-updates = Verificați dacă sunt disponibile Actualizări 45 | third-party-playnite-update-check-fail-message = Nu s-a putut căuta versiunea nouă. 46 | third-party-playnite-install-game = Instalaţi 47 | third-party-playnite-uninstall-game = Dezinstalați 48 | third-party-playnite-client-not-installed-error = Programul { $var0 } nu este instalat. 49 | third-party-playnite-dont-show-again-title = Nu mai afișa 50 | third-party-playnite-common-links-store-page = Pagina magazinului 51 | third-party-epic-settings-import-installed-label = Importați jocurile instalate 52 | third-party-epic-settings-import-uninstalled-label = Importanți jocurile neinstalate 53 | third-party-epic-settings-connect-account = Conectare cont 54 | third-party-epic-login-checking = Se verifică starea de autentificare... 55 | third-party-epic-not-logged-in = Necesită autentificare 56 | third-party-epic-not-logged-in-error = Autentificare eșuată. 57 | third-party-epic-authenticate-label = Autentificați-vă 58 | third-party-epic-trouble-shooting-issues = Probleme de depanare 59 | third-party-epic-start-using-client = Începeți să folosiți clientul { $var0 } 60 | -------------------------------------------------------------------------------- /third_party/Localization/he-IL/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = סינון פעיל 8 | third-party-playnite-filters = מסננים 9 | third-party-playnite-game-start-error = אי אפשר להתחיל משחק: { $var0 } 10 | third-party-playnite-game-install-error = לא ניתן להתקין את המשחק: { $var0 } 11 | third-party-playnite-game-uninstall-error = לא ניתן להסיר את המשחק: { $var0 } 12 | third-party-playnite-copy-title = העתק 13 | third-party-playnite-import-label = יבוא 14 | third-party-playnite-install-size-label = גודל ההתקנה 15 | third-party-playnite-added-label = נוסף 16 | third-party-playnite-ok-label = אישור 17 | third-party-playnite-save-label = שמור 18 | third-party-playnite-cancel-label = ביטול 19 | third-party-playnite-yes-label = כן 20 | third-party-playnite-no-label = לא 21 | third-party-playnite-downloading-label = מוריד… 22 | third-party-playnite-loading-label = טוען… 23 | third-party-playnite-progress-metadata = מוריד נתונים… 24 | third-party-playnite-menu-restart-system = איתחול מערכת 25 | third-party-playnite-menu-shutdown-system = כבה מערכת 26 | third-party-playnite-menu-suspend-system = השהה מערכת 27 | third-party-playnite-menu-hibernate-system = מצב שינה 28 | third-party-playnite-settings-general-label = כללי 29 | third-party-playnite-settings-advanced-label = מתקדם 30 | third-party-playnite-settings-clear-cache-title = לנקות מטמון? 31 | third-party-playnite-settings-playtime-import-mode-never = אף פעם 32 | third-party-playnite-login-required = נדרש אימות 33 | third-party-playnite-executable-title = ניתן להרצה 34 | third-party-playnite-game-name-title = שם 35 | third-party-playnite-game-install-dir-title = תיקיית התקנה 36 | third-party-playnite-library-import-error = נכשל ביבוא משחקים מ { $var0 }. 37 | third-party-playnite-metadata-download-error = נכשלה הורדת נתונים: { $var0 } 38 | third-party-playnite-download-error = שגיאת הורדה 39 | third-party-playnite-uninstalling = מסיר התקנה 40 | third-party-playnite-do-nothing = אל תעשה דבר 41 | third-party-playnite-close = סגור 42 | third-party-playnite-updater-window-title = עדכון זמין 43 | third-party-playnite-updater-install-update = הורד והתקן עדכון 44 | third-party-playnite-check-for-updates = חפש עדכונים 45 | third-party-playnite-update-check-fail-message = נכשל בחיפוש גרסה חדשה. 46 | third-party-playnite-install-game = התקן 47 | third-party-playnite-uninstall-game = הסר התקנה 48 | third-party-playnite-client-not-installed-error = תוכנת { $var0 } אינה מותקנת. 49 | third-party-playnite-dont-show-again-title = אל תציג שוב 50 | third-party-playnite-common-links-store-page = דף חנות 51 | third-party-playnite-extensions-updates = עדכונים 52 | third-party-playnite-select-file-tooltip = בחר קובץ... 53 | third-party-playnite-select-directory-tooltip = בחר תיקיה... 54 | third-party-playnite-option-only-manually = רק באופן ידני 55 | third-party-playnite-option-once-a-day = פעם ביום 56 | third-party-playnite-option-once-a-week = פעם בשבוע 57 | third-party-playnite-open = פתח 58 | third-party-epic-settings-import-installed-label = ייבא משחקים שהותקנו 59 | third-party-epic-settings-import-uninstalled-label = ייבא משחקים שלא הותקנו 60 | third-party-epic-settings-connect-account = חבר חשבון 61 | third-party-epic-login-checking = בודק מצב אימות… 62 | third-party-epic-not-logged-in = מחייב אימות 63 | third-party-epic-not-logged-in-error = נכשל באימות משתמש. 64 | third-party-epic-authenticate-label = אימות 65 | third-party-epic-trouble-shooting-issues = פתרון בעיות 66 | third-party-epic-start-using-client = התחל להשתמש בלקוח { $var0 } 67 | -------------------------------------------------------------------------------- /third_party/Localization/mr-IN/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = गाळणी सक्षम 8 | third-party-playnite-filters = गाळण्या 9 | third-party-playnite-game-start-error = गेम सुरू करता आला नाही: { $var0 } 10 | third-party-playnite-game-install-error = गेम स्थापित करता आला नाही: { $var0 } 11 | third-party-playnite-game-uninstall-error = गेम विस्थापित करता आला नाही: { $var0 } 12 | third-party-playnite-copy-title = कॉपी करा 13 | third-party-playnite-import-label = आयात करा 14 | third-party-playnite-install-size-label = स्थापनेचा आकार 15 | third-party-playnite-added-label = जोडले 16 | third-party-playnite-ok-label = ओके 17 | third-party-playnite-save-label = सेव्ह करा 18 | third-party-playnite-cancel-label = रद्द करा 19 | third-party-playnite-yes-label = होय 20 | third-party-playnite-no-label = नाही 21 | third-party-playnite-downloading-label = डाउनलोड करत आहे… 22 | third-party-playnite-loading-label = लोड करत आहे… 23 | third-party-playnite-progress-metadata = मेटाडेटा डाउनलोड करत आहे… 24 | third-party-playnite-menu-restart-system = सिस्टम रीस्टार्ट करा 25 | third-party-playnite-menu-shutdown-system = सिस्टम बंद करा 26 | third-party-playnite-menu-suspend-system = सिस्टम विलंबित करा 27 | third-party-playnite-menu-hibernate-system = सिस्टम हायबरनेट करा 28 | third-party-playnite-settings-general-label = साधारण 29 | third-party-playnite-settings-advanced-label = आधुनिक 30 | third-party-playnite-settings-clear-cache-title = कॅश साफ करायचे का? 31 | third-party-playnite-settings-playtime-import-mode-never = कधीच नाही 32 | third-party-playnite-login-required = प्रमाणीकरणाची गरज आहे 33 | third-party-playnite-executable-title = एग्झेक्युटेबल 34 | third-party-playnite-game-name-title = नाव 35 | third-party-playnite-game-install-dir-title = स्थापना फोल्डर 36 | third-party-playnite-library-import-error = { $var0 } पासून गेम आयात करण्यात अपयशी. 37 | third-party-playnite-metadata-download-error = मेटाडेटा डाउनलोड करण्यात अयशस्वी: { $var0 } 38 | third-party-playnite-download-error = डाउनलोड त्रुटी 39 | third-party-playnite-uninstalling = विस्थापित करत आहे 40 | third-party-playnite-do-nothing = काहीही करू नका 41 | third-party-playnite-close = बंद करा 42 | third-party-playnite-updater-window-title = अपडेट उपलब्ध 43 | third-party-playnite-updater-install-update = अपडेट डाउनलोड करून स्थापित करा 44 | third-party-playnite-check-for-updates = अपडेटकरीता तपासा 45 | third-party-playnite-update-check-fail-message = नवीन आवृत्तीचा तपास घेण्यात अयशस्वी. 46 | third-party-playnite-install-game = स्थापित करा 47 | third-party-playnite-uninstall-game = विस्थापित करा 48 | third-party-playnite-client-not-installed-error = { $var0 } हा क्लाएंट स्थापित नाही. 49 | third-party-playnite-dont-show-again-title = पुन्हा दाखवू नका 50 | third-party-playnite-common-links-store-page = दुकानाचे पृष्ठ 51 | third-party-playnite-extensions-updates = अपडेट 52 | third-party-playnite-select-file-tooltip = फाईल निवडा… 53 | third-party-playnite-select-directory-tooltip = फोल्डर निवडा… 54 | third-party-playnite-option-once-a-day = दिवसातून एकदा 55 | third-party-playnite-option-once-a-week = आठवड्यातून एकदा 56 | third-party-playnite-open = उघडा 57 | third-party-epic-settings-import-installed-label = स्थापित असलेले गेम आयात करा 58 | third-party-epic-settings-import-uninstalled-label = स्थापित नसलेले गेम आयात करा 59 | third-party-epic-settings-connect-account = खाते कनेक्ट करा 60 | third-party-epic-not-logged-in-error = प्रयोक्ता प्रमाणित करता आला नाही. 61 | third-party-epic-start-using-client = { $var0 } क्लाएंट वापरून सुरू करा 62 | -------------------------------------------------------------------------------- /src/LegendaryAlternativeAuthView.xaml: -------------------------------------------------------------------------------- 1 | 11 | 12 | /Fonts/icofont.ttf#icofont 13 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /third_party/Localization/lt-LT/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = Filtras aktyvus 8 | third-party-playnite-filters = Filtrai 9 | third-party-playnite-game-start-error = Nepavyko paleisti žaidimo: { $var0 } 10 | third-party-playnite-game-install-error = Nepavyko įrašyti žaidimo: { $var0 } 11 | third-party-playnite-game-uninstall-error = Nepavyko ištrinti žaidimo: { $var0 } 12 | third-party-playnite-copy-title = Kopijuoti 13 | third-party-playnite-import-label = Įtraukti 14 | third-party-playnite-install-size-label = Įdiegtas dydis 15 | third-party-playnite-added-label = Pridėta 16 | third-party-playnite-ok-label = Gerai 17 | third-party-playnite-save-label = Išsaugoti 18 | third-party-playnite-cancel-label = Atšaukti 19 | third-party-playnite-yes-label = Taip 20 | third-party-playnite-no-label = Ne 21 | third-party-playnite-downloading-label = Siunčiama… 22 | third-party-playnite-loading-label = Kraunama... 23 | third-party-playnite-progress-metadata = Siunčiami metaduomenys… 24 | third-party-playnite-menu-restart-system = Perkrauti sistemą 25 | third-party-playnite-menu-shutdown-system = Išjungti sistemą 26 | third-party-playnite-menu-suspend-system = Užmigdyti sistemą 27 | third-party-playnite-menu-hibernate-system = Sistemą užmigdyti įrašius 28 | third-party-playnite-settings-general-label = Bendri 29 | third-party-playnite-settings-advanced-label = Išplėstiniai 30 | third-party-playnite-settings-clear-cache-title = Išvalyti Talpyklą? 31 | third-party-playnite-settings-playtime-import-mode-never = Niekada 32 | third-party-playnite-login-required = Reikalinga autentifikacija 33 | third-party-playnite-executable-title = Programinis failas 34 | third-party-playnite-game-name-title = Pavadinimas 35 | third-party-playnite-game-install-dir-title = Žaidimo direktorija 36 | third-party-playnite-library-import-error = Importuoti žaidimus iš { $var0 }. 37 | third-party-playnite-metadata-download-error = Nepavyko atsisiųsti metadata: { $var0 } 38 | third-party-playnite-download-error = Atsiuntimo klaida 39 | third-party-playnite-uninstalling = Išdiegti 40 | third-party-playnite-do-nothing = Nieko nedaryti 41 | third-party-playnite-close = Uždaryti 42 | third-party-playnite-updater-window-title = Galimas atnaujinimas 43 | third-party-playnite-updater-install-update = Įrašyti atnaujinimą 44 | third-party-playnite-check-for-updates = Tikrinti, ar yra atnaujinimų 45 | third-party-playnite-update-check-fail-message = Nepavyko patikrinti ar yra naujinimų. 46 | third-party-playnite-install-game = Įrašyti 47 | third-party-playnite-uninstall-game = Ištrinti 48 | third-party-playnite-client-not-installed-error = { $var0 } klientas yra neįdiegtas. 49 | third-party-playnite-dont-show-again-title = Daugiau neberodyti 50 | third-party-playnite-common-links-store-page = Parduotuvės tinklalapis 51 | third-party-playnite-extensions-updates = Atnaujinimai 52 | third-party-playnite-select-file-tooltip = Pasirinkite failą... 53 | third-party-playnite-select-directory-tooltip = Pasirinkite aplanką... 54 | third-party-epic-settings-import-installed-label = Importuoti įdiegtus žaidimus 55 | third-party-epic-settings-import-uninstalled-label = Importuoti neįdiegtus žaidimus 56 | third-party-epic-settings-connect-account = Susieti paskyrą 57 | third-party-epic-login-checking = Tikrinama autentifikavimo būsena... 58 | third-party-epic-not-logged-in = Reikalinga autentifikavimas 59 | third-party-epic-not-logged-in-error = Nepavyko autentifikuoti vartotojo. 60 | third-party-epic-authenticate-label = Autentifikuoti 61 | third-party-epic-trouble-shooting-issues = Tvarkoma klaidas 62 | third-party-epic-start-using-client = Pradėti naudojant { $var0 } klientą 63 | -------------------------------------------------------------------------------- /third_party/Localization/ar-SA/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = التصفية نشطة 8 | third-party-playnite-filters = تصفيات 9 | third-party-playnite-game-start-error = تعذّر بدأ اللعبة:{ $var0 } 10 | third-party-playnite-game-install-error = تعذّر تثبيت اللعبة:{ $var0 } 11 | third-party-playnite-game-uninstall-error = تعذّر إلغاء تثبيت اللعبة:{ $var0 } 12 | third-party-playnite-copy-title = نسخ 13 | third-party-playnite-import-label = استيراد 14 | third-party-playnite-install-size-label = حجم التثبيت 15 | third-party-playnite-added-label = أضيف 16 | third-party-playnite-ok-label = موافق 17 | third-party-playnite-save-label = حفظ 18 | third-party-playnite-cancel-label = إلغاء 19 | third-party-playnite-yes-label = نعم 20 | third-party-playnite-no-label = لا 21 | third-party-playnite-downloading-label = جاري التحميل… 22 | third-party-playnite-loading-label = جاري التحميل… 23 | third-party-playnite-progress-metadata = تنزيل بيانات التعريف… 24 | third-party-playnite-menu-restart-system = إعادة تشغيل النظام 25 | third-party-playnite-menu-shutdown-system = إيقاف تشغيل النظام 26 | third-party-playnite-menu-suspend-system = تعليق النظام 27 | third-party-playnite-menu-hibernate-system = نظام السُبات 28 | third-party-playnite-settings-general-label = عامة 29 | third-party-playnite-settings-advanced-label = متقدم 30 | third-party-playnite-settings-clear-cache-title = مسح ذاكرة التخزين المؤقت؟ 31 | third-party-playnite-settings-playtime-import-mode-never = ابداً 32 | third-party-playnite-login-required = يتطلب المصادقة 33 | third-party-playnite-executable-title = قابل للتنفيذ 34 | third-party-playnite-game-name-title = الاسم 35 | third-party-playnite-game-install-dir-title = دليل التثبيت 36 | third-party-playnite-library-import-error = فشل استيراد الألعاب من { $var0 }. 37 | third-party-playnite-metadata-download-error = فشل تحميل بيانات التعريف:{ $var0 } 38 | third-party-playnite-download-error = خطأ في التحميل 39 | third-party-playnite-uninstalling = جاري إلغاء التثبيت 40 | third-party-playnite-do-nothing = ‮لا تفعل شيئا 41 | third-party-playnite-close = إغلاق 42 | third-party-playnite-updater-window-title = التحديث متوفر 43 | third-party-playnite-updater-install-update = تحميل و تثبيت التحديثات 44 | third-party-playnite-check-for-updates = تحقق من التحديثات 45 | third-party-playnite-update-check-fail-message = فشل التحقق من الإصدار الجديد. 46 | third-party-playnite-install-game = تثبيت 47 | third-party-playnite-uninstall-game = إلغاء التثبيت 48 | third-party-playnite-client-not-installed-error = { $var0 } عميل غير مثبت. 49 | third-party-playnite-dont-show-again-title = لا تُظهر مجدّدًا 50 | third-party-playnite-common-links-store-page = صفحة المتجر 51 | third-party-playnite-extensions-updates = تحديثات 52 | third-party-playnite-select-file-tooltip = تحديد الملف... 53 | third-party-playnite-select-directory-tooltip = تحديد المجلد 54 | third-party-playnite-option-only-manually = يدوياً فقط 55 | third-party-playnite-option-once-a-day = مرة في اليوم 56 | third-party-playnite-option-once-a-week = مرة في الأسبوع 57 | third-party-playnite-open = فتح 58 | third-party-epic-settings-import-installed-label = استيراد الألعاب المثبتة 59 | third-party-epic-settings-import-uninstalled-label = استيراد الألعاب الغير المثبتة 60 | third-party-epic-settings-connect-account = ربط الحساب 61 | third-party-epic-login-checking = جاري التحقق من حالة المصادقة… 62 | third-party-epic-not-logged-in = يتطلب المصادقة 63 | third-party-epic-not-logged-in-error = فشل في مصادقة المستخدم. 64 | third-party-epic-authenticate-label = مصادقة 65 | third-party-epic-trouble-shooting-issues = استكشاف الأخطاء وإصلاحها 66 | third-party-epic-start-using-client = بدء باستخدام { $var0 } عميل 67 | -------------------------------------------------------------------------------- /src/Localization/it-IT/legendary.ftl: -------------------------------------------------------------------------------- 1 | legendary-launch-offline = Avvia giochi in modalità offline, se possibile 2 | legendary-enable-offline-mode = Abilita modalità offline 3 | legendary-offline-mode = Modalità offline 4 | legendary-http-only-download = Disabilita HTTPS (utile per i CDN es. LanCache) 5 | legendary-enable-reordering = Abilita ottimizzazione riordinamento 6 | legendary-enable-reordering-tool-tip = Questo può ridurre l'utilizzo della RAM durante il download (potrebbe non funzionare correttamente per alcuni titoli). 7 | legendary-eos-overlay = Overlay EOS 8 | legendary-ignore-free-space = Ignora spazio libero 9 | legendary-ignore-free-space-tool-tip = Non annullare se non è disponibile abbastanza spazio libero. 10 | legendary-memory-error = La cache condivisa attuale è più piccola di quanto richiesto: { $currentMemory } < { $requiredMemory }. Prova ad abilitare l'ottimizzazione riordinamento per ridurre l'utilizzo della memoria o aumentare la quantità massima di memoria condivisa. 11 | legendary-no-linked-account = Nessun account { $companyAccount } collegato trovato! Collega il tuo account tramite il tuo browser e riprova. 12 | legendary-all-activated-ubisoft = Tutti i giochi sono già stati attivati sul tuo account { $companyAccount }. 13 | legendary-continue-activation = Sei sicuro di voler attivare i giochi sul tuo account { $companyAccount }? 14 | legendary-games-activate-success = Tutti i giochi sono stati attivati con successo sul tuo account { $companyAccount }. 15 | legendary-activate-games = Attiva giochi 16 | legendary-games-activate-failure = Impossibile attivare i giochi sul tuo account { $companyAccount }. Motivo: { $reason }. 17 | legendary-no-available-ea-games = Nessun gioco EA disponibile. 18 | legendary-activate-next-confirm = Vuoi attivare il prossimo gioco? 19 | legendary-ea-notice = Al momento non si sa quale gioco richiede l'attivazione, quindi sarà fatto un tentativo per attivare tutto. Se l'app di EA ti chiede d'installare il gioco piuttosto che di attivarlo, allora è già stato attivato e la finestra di dialogo può essere scartata. 20 | legendary-star-wars-message = Che la Forza sia con te, Padawan. 21 | legendary-import-third-party-launcher-games = Importa giochi che richiedono { $thirdPartyLauncherName } 22 | legendary-third-party-launcher-import-warn = Questi tipi di giochi non richiedono Legendary e non tutti possono essere installati tramite esso. Si consiglia di andare a Servizi aggiuntivi => { $thirdPartyLauncherName } => Attivare i giochi, quindi installarli direttamente via { $thirdPartyLauncherName }. 23 | legendary-required-install-via-third-party-launcher-error = 24 | { $count -> 25 | [one] { $gameTitle } richiede l'installazione diretta tramite { $thirdPartyLauncherName }. 26 | *[other] I seguenti giochi richiedono l'installazione diretta tramite { $thirdPartyLauncherName }: { $gameTitle }. 27 | } 28 | legendary-install-prerequisites = Installa i prerequisiti ({ $prerequisiteName }) 29 | legendary-required-install-of-third-party-launcher = 30 | { $count -> 31 | [one] { $gameTitle } richiede l'installazione di { $thirdPartyLauncherName }. Si consiglia di andare nelle impostazioni dei plugin => Servizi aggiuntivi => { $thirdPartyLauncherName } => Attivare i giochi, e quindi installarlo direttamente tramite { $thirdPartyLauncherName }. 32 | *[other] I seguenti giochi richiedono l'installazione di { $thirdPartyLauncherName }: { $gameTitle }. Si consiglia di andare nelle impostazioni dei plugin => Servizi aggiuntivi => { $thirdPartyLauncherName } => Attivare i giochi, e poi installarli direttamente via { $thirdPartyLauncherName }. 33 | } 34 | legendary-installing-prerequisites = Installazione dei prerequisiti ({ $prerequisiteName })... 35 | legendary-disable = Disattiva 36 | legendary-enable = Attiva 37 | legendary-game-import-failure = Impossibile importare il gioco. Motivo: { $reason }. 38 | legendary-language-code = Lingua (codice in formato RFC 1766) 39 | legendary-check-all-dlcs = Seleziona tutti i DLC 40 | legendary-additional-services = Servizi aggiuntivi 41 | -------------------------------------------------------------------------------- /third_party/Localization/en-US/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = Filter Active 8 | third-party-playnite-filters = Filters 9 | third-party-playnite-game-start-error = Cannot start game: { $var0 } 10 | third-party-playnite-game-install-error = Cannot install game: { $var0 } 11 | third-party-playnite-game-uninstall-error = Cannot un-install game: { $var0 } 12 | third-party-playnite-copy-title = Copy 13 | third-party-playnite-import-label = Import 14 | third-party-playnite-install-size-label = Install Size 15 | third-party-playnite-added-label = Added 16 | third-party-playnite-ok-label = OK 17 | third-party-playnite-save-label = Save 18 | third-party-playnite-cancel-label = Cancel 19 | third-party-playnite-yes-label = Yes 20 | third-party-playnite-no-label = No 21 | third-party-playnite-downloading-label = Downloading… 22 | third-party-playnite-loading-label = Loading… 23 | third-party-playnite-progress-metadata = Downloading metadata… 24 | third-party-playnite-menu-restart-system = Restart System 25 | third-party-playnite-menu-shutdown-system = Turn Off System 26 | third-party-playnite-menu-suspend-system = Suspend System 27 | third-party-playnite-menu-hibernate-system = Hibernate System 28 | third-party-playnite-settings-general-label = General 29 | third-party-playnite-settings-advanced-label = Advanced 30 | third-party-playnite-settings-clear-cache-title = Clear Cache? 31 | third-party-playnite-settings-playtime-import-mode-never = Never 32 | third-party-playnite-login-required = Authentification required 33 | third-party-playnite-executable-title = Executable 34 | third-party-playnite-game-name-title = Name 35 | third-party-playnite-game-install-dir-title = Installation Folder 36 | third-party-playnite-library-import-error = Failed to import games from { $var0 }. 37 | third-party-playnite-metadata-download-error = Failed to download metadata: { $var0 } 38 | third-party-playnite-download-error = Download Error 39 | third-party-playnite-uninstalling = Uninstalling 40 | third-party-playnite-do-nothing = Do nothing 41 | third-party-playnite-close = Close 42 | third-party-playnite-updater-window-title = Update Available 43 | third-party-playnite-updater-install-update = Download and Install Update 44 | third-party-playnite-check-for-updates = Check for Updates 45 | third-party-playnite-update-check-fail-message = Failed to check for new version. 46 | third-party-playnite-install-game = Install 47 | third-party-playnite-uninstall-game = Uninstall 48 | third-party-playnite-client-not-installed-error = { $var0 } client is not installed. 49 | third-party-playnite-dont-show-again-title = Don't Show Again 50 | third-party-playnite-common-links-store-page = Store Page 51 | third-party-playnite-extensions-updates = Updates 52 | third-party-playnite-select-file-tooltip = Select file… 53 | third-party-playnite-select-directory-tooltip = Select folder… 54 | third-party-playnite-option-only-manually = Only manually 55 | third-party-playnite-option-once-a-day = Once a day 56 | third-party-playnite-option-once-a-week = Once a week 57 | third-party-playnite-open = Open 58 | third-party-epic-settings-import-installed-label = Import installed games 59 | third-party-epic-settings-import-uninstalled-label = Import not installed games 60 | third-party-epic-settings-connect-account = Connect account 61 | third-party-epic-login-checking = Checking authentication status… 62 | third-party-epic-not-logged-in = Requires authentication 63 | third-party-epic-not-logged-in-error = Failed to authenticate user. 64 | third-party-epic-authenticate-label = Authenticate 65 | third-party-epic-trouble-shooting-issues = Troubleshooting issues 66 | third-party-epic-start-using-client = Start using { $var0 } client 67 | -------------------------------------------------------------------------------- /third_party/Localization/fa-IR/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = فیلتر فعال 8 | third-party-playnite-filters = فیلترها 9 | third-party-playnite-game-start-error = نمی‌توان بازی را آغاز کرد: { $var0 } 10 | third-party-playnite-game-install-error = نمی‌توان بازی را نصب کرد: { $var0 } 11 | third-party-playnite-game-uninstall-error = نمی‌توان بازی را زدود: { $var0 } 12 | third-party-playnite-copy-title = روگرفت 13 | third-party-playnite-import-label = درون‌برد 14 | third-party-playnite-install-size-label = اندازه‌ی نصب 15 | third-party-playnite-added-label = افزوده شد 16 | third-party-playnite-ok-label = باشه 17 | third-party-playnite-save-label = ذخیره 18 | third-party-playnite-cancel-label = لغو 19 | third-party-playnite-yes-label = آره 20 | third-party-playnite-no-label = نه 21 | third-party-playnite-downloading-label = بارگيری... 22 | third-party-playnite-loading-label = بارکردن… 23 | third-party-playnite-progress-metadata = در حال بارگیری ابرداده... 24 | third-party-playnite-menu-restart-system = بازراه‌اندازی رایانه 25 | third-party-playnite-menu-shutdown-system = خاموش کردن رایانه 26 | third-party-playnite-menu-suspend-system = تعلیق رایانه 27 | third-party-playnite-menu-hibernate-system = فرستادن رایانه به خواب زمستانی 28 | third-party-playnite-settings-general-label = عمومی 29 | third-party-playnite-settings-advanced-label = پیشرفته 30 | third-party-playnite-settings-clear-cache-title = حافظه پنهان پاک شود؟ 31 | third-party-playnite-settings-playtime-import-mode-never = هرگز 32 | third-party-playnite-login-required = نیاز به تایید هویت دارد 33 | third-party-playnite-executable-title = اجراپذیر 34 | third-party-playnite-game-name-title = نام 35 | third-party-playnite-game-install-dir-title = پوشه‌ی نصب 36 | third-party-playnite-library-import-error = ناکامی در درون‌برد بازی‌ها از { $var0 }. 37 | third-party-playnite-metadata-download-error = ناکامی در بارگیری فراداده: { $var0 } 38 | third-party-playnite-download-error = خطا در بارگیری 39 | third-party-playnite-uninstalling = در حال حذف نصب 40 | third-party-playnite-do-nothing = کاری نکن 41 | third-party-playnite-close = بستن 42 | third-party-playnite-updater-window-title = به روزرسانی در دسترس است 43 | third-party-playnite-updater-install-update = بارگیری و نصب به‌روزرسانی 44 | third-party-playnite-check-for-updates = بررسی برای به‌روزرسانی 45 | third-party-playnite-update-check-fail-message = ناکامی در بررسی برای نسخه‌ی نو. 46 | third-party-playnite-install-game = نصب 47 | third-party-playnite-uninstall-game = حذف نصب 48 | third-party-playnite-client-not-installed-error = { $var0 } کلاینت نصب نشده است. 49 | third-party-playnite-dont-show-again-title = دوباره نمایش نده 50 | third-party-playnite-common-links-store-page = برگهٔ فروشگاه 51 | third-party-playnite-extensions-updates = به‌روزرسانی‌ها 52 | third-party-playnite-select-file-tooltip = گزینش پرونده… 53 | third-party-playnite-select-directory-tooltip = گزینش پوشه… 54 | third-party-playnite-option-only-manually = تنها دستی 55 | third-party-playnite-option-once-a-day = یک بار در روز 56 | third-party-playnite-option-once-a-week = یکبار در هفته 57 | third-party-playnite-open = باز کن 58 | third-party-epic-settings-import-installed-label = وارد کردن بازی های نصب شده 59 | third-party-epic-settings-import-uninstalled-label = واردات بازی های نصب نشده 60 | third-party-epic-settings-connect-account = اتصال حساب 61 | third-party-epic-login-checking = بررسی وضیعت تایید… 62 | third-party-epic-not-logged-in = نیاز به تائید هویت 63 | third-party-epic-not-logged-in-error = شکست در تایید کاربر. 64 | third-party-epic-authenticate-label = احراز هویت 65 | third-party-epic-trouble-shooting-issues = عیب یابی مشکلات 66 | third-party-epic-start-using-client = شروع به استفاده از سرویس گیرنده { $var0 } کنید 67 | -------------------------------------------------------------------------------- /third_party/Localization/pt-PT/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = Filtro Ativado 8 | third-party-playnite-filters = Filtros 9 | third-party-playnite-game-start-error = Não foi possível iniciar o jogo: { $var0 } 10 | third-party-playnite-game-install-error = Não foi possível instalar o jogo: { $var0 } 11 | third-party-playnite-game-uninstall-error = Não foi possível desinstalar o jogo: { $var0 } 12 | third-party-playnite-copy-title = Copiar 13 | third-party-playnite-import-label = Importar 14 | third-party-playnite-install-size-label = Tamanho de instalação 15 | third-party-playnite-added-label = Adicionado 16 | third-party-playnite-ok-label = OK 17 | third-party-playnite-save-label = Guardar 18 | third-party-playnite-cancel-label = Cancelar 19 | third-party-playnite-yes-label = Sim 20 | third-party-playnite-no-label = Não 21 | third-party-playnite-downloading-label = A transferir… 22 | third-party-playnite-loading-label = A carregar… 23 | third-party-playnite-progress-metadata = A transferir metadados… 24 | third-party-playnite-menu-restart-system = Reiniciar Sistema 25 | third-party-playnite-menu-shutdown-system = Desligar Sistema 26 | third-party-playnite-menu-suspend-system = Suspender Sistema 27 | third-party-playnite-menu-hibernate-system = Hibernar Sistema 28 | third-party-playnite-settings-general-label = Geral 29 | third-party-playnite-settings-advanced-label = Avançado 30 | third-party-playnite-settings-clear-cache-title = Limpar Cache? 31 | third-party-playnite-settings-playtime-import-mode-never = Nunca 32 | third-party-playnite-login-required = Autenticação necessária 33 | third-party-playnite-executable-title = Executável 34 | third-party-playnite-game-name-title = Nome 35 | third-party-playnite-game-install-dir-title = Pasta de instalação 36 | third-party-playnite-library-import-error = Falha ao importar jogos de { $var0 }. 37 | third-party-playnite-metadata-download-error = Falha ao transferir metadados: { $var0 } 38 | third-party-playnite-download-error = Erro na transferência 39 | third-party-playnite-uninstalling = A desinstalar 40 | third-party-playnite-do-nothing = Não fazer nada 41 | third-party-playnite-close = Fechar 42 | third-party-playnite-updater-window-title = Atualização Disponível 43 | third-party-playnite-updater-install-update = Transferir e Instalar Atualização 44 | third-party-playnite-check-for-updates = Procurar Atualizações 45 | third-party-playnite-update-check-fail-message = Falha ao verificar atualizações. 46 | third-party-playnite-install-game = Instalar 47 | third-party-playnite-uninstall-game = Desinstalar 48 | third-party-playnite-client-not-installed-error = O cliente { $var0 } não está instalado. 49 | third-party-playnite-dont-show-again-title = Não Mostrar Novamente 50 | third-party-playnite-common-links-store-page = Página da Loja 51 | third-party-playnite-extensions-updates = Atualizações 52 | third-party-playnite-select-file-tooltip = Selecionar ficheiro... 53 | third-party-playnite-select-directory-tooltip = Seleccionar pasta... 54 | third-party-playnite-option-only-manually = Apenas manualmente 55 | third-party-playnite-option-once-a-day = Uma vez por dia 56 | third-party-playnite-option-once-a-week = Uma vez por semana 57 | third-party-playnite-open = Abrir 58 | third-party-epic-settings-import-installed-label = Importar jogos instalados 59 | third-party-epic-settings-import-uninstalled-label = Importar jogos não instalados 60 | third-party-epic-login-checking = A verificar estado da autenticação... 61 | third-party-epic-not-logged-in = Requer autenticação 62 | third-party-epic-not-logged-in-error = Falha ao autenticar utilizador. 63 | third-party-epic-authenticate-label = Autenticar 64 | third-party-epic-trouble-shooting-issues = Resolução de problemas 65 | -------------------------------------------------------------------------------- /third_party/Localization/id-ID/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = Filter aktif 8 | third-party-playnite-filters = Filter 9 | third-party-playnite-game-start-error = Gagal memulai game: { $var0 } 10 | third-party-playnite-game-install-error = Gagal menginstal game: { $var0 } 11 | third-party-playnite-game-uninstall-error = Gagal menguninstall game: { $var0 } 12 | third-party-playnite-copy-title = Salin 13 | third-party-playnite-import-label = Impor 14 | third-party-playnite-install-size-label = Besar Instalasi 15 | third-party-playnite-added-label = Ditambahkan 16 | third-party-playnite-ok-label = OK 17 | third-party-playnite-save-label = Simpan 18 | third-party-playnite-cancel-label = Batal 19 | third-party-playnite-yes-label = Ya 20 | third-party-playnite-no-label = Tidak 21 | third-party-playnite-downloading-label = Mengunduh… 22 | third-party-playnite-loading-label = Memuat... 23 | third-party-playnite-progress-metadata = Mendownload metadata... 24 | third-party-playnite-menu-restart-system = Restart Sistem 25 | third-party-playnite-menu-shutdown-system = Matikan Sistem 26 | third-party-playnite-menu-suspend-system = Suspend System 27 | third-party-playnite-menu-hibernate-system = Hibernasikan Sistem 28 | third-party-playnite-settings-general-label = Umum 29 | third-party-playnite-settings-advanced-label = Opsi Lanjut 30 | third-party-playnite-settings-clear-cache-title = Bersihkan Cache? 31 | third-party-playnite-settings-playtime-import-mode-never = Tidak pernah 32 | third-party-playnite-login-required = Login dibutuhkan 33 | third-party-playnite-executable-title = File program (file .exe/.sh/.bat, dll..) 34 | third-party-playnite-game-name-title = Nama 35 | third-party-playnite-game-install-dir-title = Direktori Instalasi 36 | third-party-playnite-library-import-error = Gagal mengimpor game dari { $var0 } 37 | third-party-playnite-metadata-download-error = Gagal mendownload metadata: { $var0 } 38 | third-party-playnite-download-error = Download Error 39 | third-party-playnite-uninstalling = Menguninstal 40 | third-party-playnite-do-nothing = Diamkan aplikasi 41 | third-party-playnite-close = Tutup aplikasi 42 | third-party-playnite-updater-window-title = Update Tersedia 43 | third-party-playnite-updater-install-update = Install Update 44 | third-party-playnite-check-for-updates = Periksa Pembaruan 45 | third-party-playnite-update-check-fail-message = Gagal memeriksa pembaruan. 46 | third-party-playnite-install-game = Instal 47 | third-party-playnite-uninstall-game = Uninstal 48 | third-party-playnite-client-not-installed-error = { $var0 } klien belum terpasang. 49 | third-party-playnite-dont-show-again-title = Jangan Tampilkan Lagi 50 | third-party-playnite-common-links-store-page = Laman Toko 51 | third-party-playnite-extensions-updates = Pembaruan 52 | third-party-playnite-select-file-tooltip = Pilih file… 53 | third-party-playnite-select-directory-tooltip = Pilih folder… 54 | third-party-playnite-option-only-manually = Hanya secara manual 55 | third-party-playnite-option-once-a-day = Sekali sehari 56 | third-party-playnite-option-once-a-week = Sekali seminggu 57 | third-party-playnite-open = Buka 58 | third-party-epic-settings-import-installed-label = Impor game yang terpasang 59 | third-party-epic-settings-import-uninstalled-label = Impor game tidak terpasang 60 | third-party-epic-settings-connect-account = Hubungkan akun 61 | third-party-epic-login-checking = Mengecek status autentikasi… 62 | third-party-epic-not-logged-in = Memerlukan autentikasi 63 | third-party-epic-not-logged-in-error = Gagal mengautentikasi pengguna 64 | third-party-epic-authenticate-label = Autentikasi 65 | third-party-epic-trouble-shooting-issues = Memecahkan masalah 66 | third-party-epic-start-using-client = Mulai menggunakan klien { $var0 } 67 | -------------------------------------------------------------------------------- /third_party/Localization/tr-TR/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = Filtre Etkin 8 | third-party-playnite-filters = Filtreler 9 | third-party-playnite-game-start-error = Oyun başlatılamıyor: { $var0 } 10 | third-party-playnite-game-install-error = Oyun kurulamıyor: { $var0 } 11 | third-party-playnite-game-uninstall-error = Oyun kaldırılamıyor: { $var0 } 12 | third-party-playnite-copy-title = Kopyala 13 | third-party-playnite-import-label = İçe aktar 14 | third-party-playnite-install-size-label = Kurulu Boyut 15 | third-party-playnite-added-label = Eklenme 16 | third-party-playnite-ok-label = TAMAM 17 | third-party-playnite-save-label = Kaydet 18 | third-party-playnite-cancel-label = İptal 19 | third-party-playnite-yes-label = Evet 20 | third-party-playnite-no-label = Hayır 21 | third-party-playnite-downloading-label = İndiriliyor… 22 | third-party-playnite-loading-label = Yükleniyor… 23 | third-party-playnite-progress-metadata = Üst veriler indiriliyor… 24 | third-party-playnite-menu-restart-system = Sistemi Yeniden Başlat 25 | third-party-playnite-menu-shutdown-system = Sistemi Kapat 26 | third-party-playnite-menu-suspend-system = Sistemi Askıya Al 27 | third-party-playnite-menu-hibernate-system = Sistemi Hazırda Beklet 28 | third-party-playnite-settings-general-label = Genel 29 | third-party-playnite-settings-advanced-label = Gelişmiş 30 | third-party-playnite-settings-clear-cache-title = Önbelleği Temizle? 31 | third-party-playnite-settings-playtime-import-mode-never = Asla 32 | third-party-playnite-login-required = Doğrulama gerekli 33 | third-party-playnite-executable-title = Uygulama 34 | third-party-playnite-game-name-title = İsim 35 | third-party-playnite-game-install-dir-title = Kurulum Klasörü 36 | third-party-playnite-library-import-error = { $var0 } konumundan oyun içe aktarılamadı. 37 | third-party-playnite-metadata-download-error = Üst veriler indirilemedi: { $var0 } 38 | third-party-playnite-download-error = İndirme Hatası 39 | third-party-playnite-uninstalling = Kaldırılıyor 40 | third-party-playnite-do-nothing = Hiçbir şey yapma 41 | third-party-playnite-close = Kapat 42 | third-party-playnite-updater-window-title = Güncelleme Mevcut 43 | third-party-playnite-updater-install-update = Güncellemeyi İndir ve Kur 44 | third-party-playnite-check-for-updates = Güncelleştirmeleri Denetle 45 | third-party-playnite-update-check-fail-message = Yeni sürüm kontrol edilemedi. 46 | third-party-playnite-install-game = Kur 47 | third-party-playnite-uninstall-game = Kurulumu Kaldır 48 | third-party-playnite-client-not-installed-error = { $var0 } istemcisi kurulmamış. 49 | third-party-playnite-dont-show-again-title = Bir Daha Gösterme 50 | third-party-playnite-common-links-store-page = Mağaza Sayfası 51 | third-party-playnite-extensions-updates = Güncellemeler 52 | third-party-playnite-select-file-tooltip = Dosya seç… 53 | third-party-playnite-select-directory-tooltip = Klasör seç… 54 | third-party-playnite-option-only-manually = Sadece el ile 55 | third-party-playnite-option-once-a-day = Günde bir 56 | third-party-playnite-option-once-a-week = Haftada bir 57 | third-party-playnite-open = Aç 58 | third-party-epic-settings-import-installed-label = Kurulu oyunları içeri aktar 59 | third-party-epic-settings-import-uninstalled-label = Kurulu olmayan oyunları içe aktar 60 | third-party-epic-settings-connect-account = Hesap bağla 61 | third-party-epic-login-checking = Kimlik doğrulama durumu kontrol ediliyor… 62 | third-party-epic-not-logged-in = Kimlik doğrulaması gerektiriyor 63 | third-party-epic-not-logged-in-error = Kullanıcı kimliği doğrulanamadı. 64 | third-party-epic-authenticate-label = Kimlik Doğrulaması 65 | third-party-epic-trouble-shooting-issues = Sorunları giderme 66 | third-party-epic-start-using-client = { $var0 } istemcisini kullanarak başlat 67 | -------------------------------------------------------------------------------- /src/Localization/de-DE/legendary.ftl: -------------------------------------------------------------------------------- 1 | legendary-launch-offline = Spiele, wenn möglich im Offline-Modus starten 2 | legendary-enable-offline-mode = Offline-Modus aktivieren 3 | legendary-offline-mode = Offline-Modus 4 | legendary-http-only-download = HTTPS deaktivieren (nützlich für CDNs, z.B. LanCache) 5 | legendary-enable-reordering = Umsortierungs-Optimierung aktivieren 6 | legendary-enable-reordering-tool-tip = Dies kann den die RAM-Nutzung während des Downloads verringern (funktioniert bei einigen Titeln möglicherweise nicht ordnungsgemäß). 7 | legendary-ignore-free-space = Freier Speicherplatz ignorieren 8 | legendary-ignore-free-space-tool-tip = Nicht abbrechen, wenn nicht genügend freier Speicherplatz verfügbar ist. 9 | legendary-memory-error = Der aktuelle geteilte Zwischenspeicher ist kleiner als erforderlich: { $currentMemory } < { $requiredMemory }. Versuchen Sie, die Optimierung der Neuanordnung zu aktivieren, um die Speicherauslastung zu reduzieren oder den maximalen geteilten Arbeitsspeicher zu erhöhen. 10 | legendary-no-linked-account = Kein verknüpftes { $companyAccount } Konto gefunden! Verknüpfen Sie Ihr Konto über Ihren Browser und versuchen Sie es erneut. 11 | legendary-all-activated-ubisoft = Alle Spiele wurden bereits auf Ihrem { $companyAccount } Konto aktiviert. 12 | legendary-continue-activation = Sind Sie sicher, dass Sie Spiele auf Ihrem { $companyAccount } Konto aktivieren möchten? 13 | legendary-games-activate-success = Alle Spiele wurden erfolgreich auf Ihrem { $companyAccount } Konto aktiviert. 14 | legendary-activate-games = Spiele aktivieren 15 | legendary-games-activate-failure = Spiele auf Ihrem { $companyAccount } Konto konnten nicht aktiviert werden. Grund: { $reason }. 16 | legendary-no-available-ea-games = Keine EA Spiele verfügbar. 17 | legendary-activate-next-confirm = Möchten Sie das nächste Spiel aktivieren? 18 | legendary-ea-notice = Es ist derzeit unbekannt, welche Spiele aktiviert werden müssen, daher wird versucht alles zu aktivieren. Wenn EA App Sie auffordert, ein Spiel zu installieren, anstatt es zu aktivieren, dann wurde es bereits aktiviert und der Dialog kann geschlossen werden. 19 | legendary-star-wars-message = Möge die Macht mit dir sein, Padawan. 20 | legendary-import-third-party-launcher-games = Spiele importieren, die { $thirdPartyLauncherName } benötigen 21 | legendary-third-party-launcher-import-warn = Diese Art von Spielen erfordert Legendary nicht und nicht alle können darüber installiert werden. Es wird empfohlen auf Zusätzlichen Diensten => { $thirdPartyLauncherName } => Spiele aktivieren zu gehen und diese dann direkt über { $thirdPartyLauncherName } zu installieren. 22 | legendary-required-install-via-third-party-launcher-error = 23 | { $count -> 24 | [one] { $gameTitle } benötigt eine direkte Installation über { $thirdPartyLauncherName }. 25 | *[other] Folgende Spiele benötigen eine direkte Installation über { $thirdPartyLauncherName }: { $gameTitle }. 26 | } 27 | legendary-install-prerequisites = Voraussetzungen installieren ({ $prerequisiteName }) 28 | legendary-required-install-of-third-party-launcher = 29 | { $count -> 30 | [one] { $gameTitle } erfordert die Installation von { $thirdPartyLauncherName }. Es wird empfohlen, zu den Plugin-Einstellungen => Zusätzliche Dienste => { $thirdPartyLauncherName } => Spiele aktivieren zu gehen und es dort direkt über { $thirdPartyLauncherName } zu installieren. 31 | *[other] Folgende Spiele benötigen die Installation von { $thirdPartyLauncherName }: { $gameTitle }. Es wird empfohlen, zu den Plugin-Einstellungen => Zusätzliche Dienste => { $thirdPartyLauncherName } => Spiele aktivieren zu gehen und sie dort direkt über { $thirdPartyLauncherName } zu installieren. 32 | } 33 | legendary-installing-prerequisites = Installiere Voraussetzungen ({ $prerequisiteName })... 34 | legendary-disable = Deaktivieren 35 | legendary-enable = Aktivieren 36 | legendary-game-import-failure = Spiel konnte nicht importiert werden. Grund: { $reason }. 37 | legendary-language-code = Sprache (Code im RFC 1766 Format) 38 | legendary-check-all-dlcs = Überprüfe alle DLCs 39 | legendary-additional-services = Zusätzliche Dienste 40 | -------------------------------------------------------------------------------- /third_party/Localization/cs-CZ/third-party.ftl: -------------------------------------------------------------------------------- 1 | ### 2 | ### Automatically generated via update_3p_localization.py script using files from 3 | ### https://github.com/JosefNemec/PlayniteExtensions/tree/2571993a388889c024561d1626dfaf2b3fd55da7 and 4 | ### https://github.com/JosefNemec/Playnite/tree/81a66b1b0cdca691eefcc03095ca20ce627db907. 5 | ### DO NOT MODIFY, CUZ IT MIGHT BE OVERWRITTEN DURING NEXT RUN! 6 | ### 7 | third-party-playnite-filter-active-label = Filtr Aktivován 8 | third-party-playnite-filters = Filtry 9 | third-party-playnite-game-start-error = Nelze spustit hru: { $var0 } 10 | third-party-playnite-game-install-error = Nelze nainstalovat hru: { $var0 } 11 | third-party-playnite-game-uninstall-error = Nelze odinstalovat hru: { $var0 } 12 | third-party-playnite-copy-title = Kopírovat 13 | third-party-playnite-import-label = Importovat 14 | third-party-playnite-install-size-label = Velikost instalace 15 | third-party-playnite-added-label = Přidáno 16 | third-party-playnite-ok-label = OK 17 | third-party-playnite-save-label = Uložit 18 | third-party-playnite-cancel-label = Zrušit 19 | third-party-playnite-yes-label = Ano 20 | third-party-playnite-no-label = Ne 21 | third-party-playnite-downloading-label = Stahování… 22 | third-party-playnite-loading-label = Načítání… 23 | third-party-playnite-progress-metadata = Stahují se metadata… 24 | third-party-playnite-menu-restart-system = Restartovat Systém 25 | third-party-playnite-menu-shutdown-system = Vypnout Systém 26 | third-party-playnite-menu-suspend-system = Uspat Systém 27 | third-party-playnite-menu-hibernate-system = Hibernovat Systém 28 | third-party-playnite-settings-general-label = Obecné 29 | third-party-playnite-settings-advanced-label = Pokročilé 30 | third-party-playnite-settings-clear-cache-title = Vyčistit Mezipaměť? 31 | third-party-playnite-settings-playtime-import-mode-never = Nikdy 32 | third-party-playnite-login-required = Vyžaduje se přihlášení 33 | third-party-playnite-executable-title = Spustitelný soubor 34 | third-party-playnite-game-name-title = Jméno 35 | third-party-playnite-game-install-dir-title = Instalační Adresář 36 | third-party-playnite-library-import-error = Nepodařilo se importovat hry z { $var0 }. 37 | third-party-playnite-metadata-download-error = Selhalo stahování metadat: { $var0 } 38 | third-party-playnite-download-error = Chyba při Stahování 39 | third-party-playnite-uninstalling = Probíhá odinstalace 40 | third-party-playnite-do-nothing = Nedělat nic 41 | third-party-playnite-close = Zavřít 42 | third-party-playnite-updater-window-title = Dostupná Aktualizace 43 | third-party-playnite-updater-install-update = Stáhnout a Nainstalovat Aktualizaci 44 | third-party-playnite-check-for-updates = Zkontrolovat Aktualizace 45 | third-party-playnite-update-check-fail-message = Nepodařilo se zkontrolovat aktualizace. 46 | third-party-playnite-install-game = Instalovat 47 | third-party-playnite-uninstall-game = Odinstalovat 48 | third-party-playnite-client-not-installed-error = Klient { $var0 } není nainstalován. 49 | third-party-playnite-dont-show-again-title = Příště Nezobrazovat 50 | third-party-playnite-common-links-store-page = Stránka v obchodě 51 | third-party-playnite-extensions-updates = Aktualizace 52 | third-party-playnite-select-file-tooltip = Vybrat soubor... 53 | third-party-playnite-select-directory-tooltip = Vybrat adresář... 54 | third-party-playnite-option-only-manually = Pouze ručně 55 | third-party-playnite-option-once-a-day = Jednou denně 56 | third-party-playnite-option-once-a-week = Jednou týdně 57 | third-party-playnite-open = Otevřít 58 | third-party-epic-settings-import-installed-label = Importovat nainstalované hry 59 | third-party-epic-settings-import-uninstalled-label = Importovat neinstalované hry 60 | third-party-epic-settings-connect-account = Připojit účet 61 | third-party-epic-login-checking = Ověřuji stav přihlášení… 62 | third-party-epic-not-logged-in = Vyžaduje přihlášení 63 | third-party-epic-not-logged-in-error = Přihlášení se nezdařilo. 64 | third-party-epic-authenticate-label = Autentizovat 65 | third-party-epic-trouble-shooting-issues = Řešení potíží 66 | third-party-epic-start-using-client = Začít používat { $var0 } klienta. 67 | --------------------------------------------------------------------------------