├── .github ├── catapult_ui.gif └── windows_export_01.png ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── fonts ├── NotoSansKR-Regular.ttf ├── OpenSans-Italic.tres ├── OpenSans-Italic.ttf ├── OpenSans-Regular.tres ├── OpenSans-Regular.ttf ├── OpenSans-Semibold.tres ├── OpenSans-Semibold.ttf ├── OpenSans-SemiboldItalic.tres ├── OpenSans-SemiboldItalic.ttf ├── SourceHanSansCN-Regular.otf ├── default_ui_font.tres ├── ingame │ ├── FantasqueSansMono-Bold.ttf │ ├── FantasqueSansMono-Regular.ttf │ ├── Hack-Bold.ttf │ ├── Hack-Regular.ttf │ ├── Inconsolata-LGC-Bold.ttf │ ├── Inconsolata-LGC.ttf │ ├── PT_Mono_55F.ttf │ ├── PT_Mono_75F.ttf │ ├── UbuntuMono-B.ttf │ ├── UbuntuMono-R.ttf │ └── font_info.json └── licenses │ ├── AdobeSource.txt │ ├── FantasqueSansMono.txt │ ├── Hack.txt │ ├── Inconsolata-LGC.txt │ ├── OpenSans.txt │ ├── PT_Mono.txt │ └── UbuntuMono.txt ├── icons ├── appicon.ico ├── appicon.svg ├── appicon.svg.import ├── buttons │ ├── activate.svg │ ├── activate.svg.import │ ├── delete.svg │ ├── delete.svg.import │ ├── download.svg │ ├── download.svg.import │ ├── play.svg │ ├── play.svg.import │ ├── resume.svg │ ├── resume.svg.import │ ├── tex_activate.tex │ ├── tex_delete.tex │ ├── tex_download.tex │ ├── tex_play.tex │ └── tex_resume.tex ├── folder.svg.import ├── folder_game.svg ├── folder_game.svg.import ├── folder_user.svg ├── folder_user.svg.import ├── help.svg ├── help.svg.import ├── info.svg ├── info.svg.import ├── lang │ ├── lang-pl.svg │ ├── lang-pl.svg.import │ ├── lang-tr.svg │ ├── lang-tr.svg.import │ ├── lang_cs.svg │ ├── lang_cs.svg.import │ ├── lang_en.svg │ ├── lang_en.svg.import │ ├── lang_es.svg │ ├── lang_es.svg.import │ ├── lang_fr.svg │ ├── lang_fr.svg.import │ ├── lang_ko.svg │ ├── lang_ko.svg.import │ ├── lang_pt.svg │ ├── lang_pt.svg.import │ ├── lang_ru.svg │ ├── lang_ru.svg.import │ ├── lang_zh.svg │ ├── lang_zh.svg.import │ ├── tex_lang_cs.res │ ├── tex_lang_en.res │ ├── tex_lang_es.res │ ├── tex_lang_fr.res │ ├── tex_lang_ko.res │ ├── tex_lang_pl.res │ ├── tex_lang_pt.res │ ├── tex_lang_ru.res │ ├── tex_lang_tr.res │ └── tex_lang_zh.res ├── placeholder.svg ├── placeholder.svg.import ├── theme │ ├── godot3.png.import │ ├── godot3.svg │ ├── godot3.svg.import │ ├── grey.png.import │ ├── grey.svg │ ├── grey.svg.import │ ├── light.png.import │ ├── light.svg │ ├── light.svg.import │ ├── solarized_dark.png.import │ ├── solarized_dark.svg │ ├── solarized_dark.svg.import │ ├── solarized_light.png.import │ ├── solarized_light.svg │ ├── solarized_light.svg.import │ ├── tex_godot3.res │ ├── tex_grey.res │ ├── tex_light.res │ ├── tex_solarized_dark.res │ └── tex_solarized_light.res ├── transparent.png └── transparent.png.import ├── images ├── font-rect.png ├── font-rect.png.import ├── font-sizes.png └── font-sizes.png.import ├── project.godot ├── scenes ├── Catapult.tscn ├── ChangelogDialog.tscn ├── FontSizeHelpDialog.tscn ├── InlineIconButton.tscn └── ModReinstallDialog.tscn ├── scripts ├── BackupManager.gd ├── BackupsUI.gd ├── Catapult.gd ├── ChangelogDialod.gd ├── Debug.gd ├── Enums.gd ├── FontManager.gd ├── FontSizeHelpDialog.gd ├── FontsUI.gd ├── InlineIconButton.gd ├── InstallsList.gd ├── ItemList.gd ├── ModManager.gd ├── ModReinstallDialog.gd ├── ModsUI.gd ├── OSExecWrapper.gd ├── ReleaseInstaller.gd ├── ReleaseManager.gd ├── SettingsUI.gd ├── SoundpackManager.gd ├── SoundpacksUI.gd ├── Tabs.gd ├── ThreadedFuncExecutor.gd ├── download_manager.gd ├── filesystem_helper.gd ├── helpers.gd ├── path_helper.gd ├── scalable_texture.gd ├── scalable_theme.gd ├── settings_manager.gd ├── status.gd ├── totd.gd └── window_geometry.gd ├── text ├── TRANSLATING.md ├── cs │ ├── backup_manager.csv │ ├── backup_manager.csv.import │ ├── backups_tab.csv │ ├── backups_tab.csv.import │ ├── changelog_dialog.csv │ ├── changelog_dialog.csv.import │ ├── dialog_buttons.csv │ ├── dialog_buttons.csv.import │ ├── download_manager.csv │ ├── download_manager.csv.import │ ├── easter_egg.csv │ ├── easter_egg.csv.import │ ├── filesystem_helper.csv │ ├── filesystem_helper.csv.import │ ├── font_help_dialog.csv │ ├── font_help_dialog.csv.import │ ├── font_info.csv │ ├── font_info.csv.import │ ├── font_manager.csv │ ├── font_manager.csv.import │ ├── fonts_tab.csv │ ├── fonts_tab.csv.import │ ├── game_tab.csv │ ├── game_tab.csv.import │ ├── general.csv │ ├── general.csv.import │ ├── helpers.csv │ ├── helpers.csv.import │ ├── install_probe.csv │ ├── install_probe.csv.import │ ├── mod_manager.csv │ ├── mod_manager.csv.import │ ├── mod_reinstall_dialog.csv │ ├── mod_reinstall_dialog.csv.import │ ├── mods_tab.csv │ ├── mods_tab.csv.import │ ├── release_installer.csv │ ├── release_installer.csv.import │ ├── release_manager.csv │ ├── release_manager.csv.import │ ├── settings_manager.csv │ ├── settings_manager.csv.import │ ├── settings_tab.csv │ ├── settings_tab.csv.import │ ├── soundpack_manager.csv │ ├── soundpack_manager.csv.import │ ├── soundpacks_tab.csv │ ├── soundpacks_tab.csv.import │ ├── tips.csv │ └── tips.csv.import ├── en │ ├── backup_manager.csv │ ├── backup_manager.csv.import │ ├── backups_tab.csv │ ├── backups_tab.csv.import │ ├── changelog_dialog.csv │ ├── changelog_dialog.csv.import │ ├── dialog_buttons.csv │ ├── dialog_buttons.csv.import │ ├── download_manager.csv │ ├── download_manager.csv.import │ ├── easter_egg.csv │ ├── easter_egg.csv.import │ ├── filesystem_helper.csv │ ├── filesystem_helper.csv.import │ ├── font_help_dialog.csv │ ├── font_help_dialog.csv.import │ ├── font_info.csv │ ├── font_info.csv.import │ ├── font_manager.csv │ ├── font_manager.csv.import │ ├── fonts_tab.csv │ ├── fonts_tab.csv.import │ ├── game_tab.csv │ ├── game_tab.csv.import │ ├── general.csv │ ├── general.csv.import │ ├── helpers.csv │ ├── helpers.csv.import │ ├── install_probe.csv │ ├── install_probe.csv.import │ ├── mod_manager.csv │ ├── mod_manager.csv.import │ ├── mod_reinstall_dialog.csv │ ├── mod_reinstall_dialog.csv.import │ ├── mods_tab.csv │ ├── mods_tab.csv.import │ ├── release_installer.csv │ ├── release_installer.csv.import │ ├── release_manager.csv │ ├── release_manager.csv.import │ ├── settings_manager.csv │ ├── settings_manager.csv.import │ ├── settings_tab.csv │ ├── settings_tab.csv.import │ ├── soundpack_manager.csv │ ├── soundpack_manager.csv.import │ ├── soundpacks_tab.csv │ ├── soundpacks_tab.csv.import │ ├── tips.csv │ └── tips.csv.import ├── es │ ├── backup_manager.csv │ ├── backup_manager.csv.import │ ├── backups_tab.csv │ ├── backups_tab.csv.import │ ├── changelog_dialog.csv │ ├── changelog_dialog.csv.import │ ├── dialog_buttons.csv │ ├── dialog_buttons.csv.import │ ├── download_manager.csv │ ├── download_manager.csv.import │ ├── easter_egg.csv │ ├── easter_egg.csv.import │ ├── filesystem_helper.csv │ ├── filesystem_helper.csv.import │ ├── font_help_dialog.csv │ ├── font_help_dialog.csv.import │ ├── font_info.csv │ ├── font_info.csv.import │ ├── font_manager.csv │ ├── font_manager.csv.import │ ├── fonts_tab.csv │ ├── fonts_tab.csv.import │ ├── game_tab.csv │ ├── game_tab.csv.import │ ├── general.csv │ ├── general.csv.import │ ├── helpers.csv │ ├── helpers.csv.import │ ├── install_probe.csv │ ├── install_probe.csv.import │ ├── mod_manager.csv │ ├── mod_manager.csv.import │ ├── mod_reinstall_dialog.csv │ ├── mod_reinstall_dialog.csv.import │ ├── mods_tab.csv │ ├── mods_tab.csv.import │ ├── release_installer.csv │ ├── release_installer.csv.import │ ├── release_manager.csv │ ├── release_manager.csv.import │ ├── settings_manager.csv │ ├── settings_manager.csv.import │ ├── settings_tab.csv │ ├── settings_tab.csv.import │ ├── soundpack_manager.csv │ ├── soundpack_manager.csv.import │ ├── soundpacks_tab.csv │ ├── soundpacks_tab.csv.import │ ├── tips.csv │ └── tips.csv.import ├── fr │ ├── backup_manager.csv │ ├── backup_manager.csv.import │ ├── backups_tab.csv │ ├── backups_tab.csv.import │ ├── changelog_dialog.csv │ ├── changelog_dialog.csv.import │ ├── dialog_buttons.csv │ ├── dialog_buttons.csv.import │ ├── download_manager.csv │ ├── download_manager.csv.import │ ├── easter_egg.csv │ ├── easter_egg.csv.import │ ├── filesystem_helper.csv │ ├── filesystem_helper.csv.import │ ├── font_help_dialog.csv │ ├── font_help_dialog.csv.import │ ├── font_info.csv │ ├── font_info.csv.import │ ├── font_manager.csv │ ├── font_manager.csv.import │ ├── fonts_tab.csv │ ├── fonts_tab.csv.import │ ├── game_tab.csv │ ├── game_tab.csv.import │ ├── general.csv │ ├── general.csv.import │ ├── helpers.csv │ ├── helpers.csv.import │ ├── install_probe.csv │ ├── install_probe.csv.import │ ├── mod_manager.csv │ ├── mod_manager.csv.import │ ├── mod_reinstall_dialog.csv │ ├── mod_reinstall_dialog.csv.import │ ├── mods_tab.csv │ ├── mods_tab.csv.import │ ├── release_installer.csv │ ├── release_installer.csv.import │ ├── release_manager.csv │ ├── release_manager.csv.import │ ├── settings_manager.csv │ ├── settings_manager.csv.import │ ├── settings_tab.csv │ ├── settings_tab.csv.import │ ├── soundpack_manager.csv │ ├── soundpack_manager.csv.import │ ├── soundpacks_tab.csv │ ├── soundpacks_tab.csv.import │ ├── tips.csv │ └── tips.csv.import ├── ko │ ├── backup_manager.csv │ ├── backup_manager.csv.import │ ├── backups_tab.csv │ ├── backups_tab.csv.import │ ├── changelog_dialog.csv │ ├── changelog_dialog.csv.import │ ├── dialog_buttons.csv │ ├── dialog_buttons.csv.import │ ├── download_manager.csv │ ├── download_manager.csv.import │ ├── easter_egg.csv │ ├── easter_egg.csv.import │ ├── filesystem_helper.csv │ ├── filesystem_helper.csv.import │ ├── font_help_dialog.csv │ ├── font_help_dialog.csv.import │ ├── font_info.csv │ ├── font_info.csv.import │ ├── font_manager.csv │ ├── font_manager.csv.import │ ├── fonts_tab.csv │ ├── fonts_tab.csv.import │ ├── game_tab.csv │ ├── game_tab.csv.import │ ├── general.csv │ ├── general.csv.import │ ├── helpers.csv │ ├── helpers.csv.import │ ├── install_probe.csv │ ├── install_probe.csv.import │ ├── mod_manager.csv │ ├── mod_manager.csv.import │ ├── mod_reinstall_dialog.csv │ ├── mod_reinstall_dialog.csv.import │ ├── mods_tab.csv │ ├── mods_tab.csv.import │ ├── release_installer.csv │ ├── release_installer.csv.import │ ├── release_manager.csv │ ├── release_manager.csv.import │ ├── settings_manager.csv │ ├── settings_manager.csv.import │ ├── settings_tab.csv │ ├── settings_tab.csv.import │ ├── soundpack_manager.csv │ ├── soundpack_manager.csv.import │ ├── soundpacks_tab.csv │ ├── soundpacks_tab.csv.import │ ├── tips.csv │ └── tips.csv.import ├── pl │ ├── backup_manager.csv │ ├── backup_manager.csv.import │ ├── backups_tab.csv │ ├── backups_tab.csv.import │ ├── changelog_dialog.csv │ ├── changelog_dialog.csv.import │ ├── dialog_buttons.csv │ ├── dialog_buttons.csv.import │ ├── download_manager.csv │ ├── download_manager.csv.import │ ├── easter_egg.csv │ ├── easter_egg.csv.import │ ├── filesystem_helper.csv │ ├── filesystem_helper.csv.import │ ├── font_help_dialog.csv │ ├── font_help_dialog.csv.import │ ├── font_info.csv │ ├── font_info.csv.import │ ├── font_manager.csv │ ├── font_manager.csv.import │ ├── fonts_tab.csv │ ├── fonts_tab.csv.import │ ├── game_tab.csv │ ├── game_tab.csv.import │ ├── general.csv │ ├── general.csv.import │ ├── helpers.csv │ ├── helpers.csv.import │ ├── install_probe.csv │ ├── install_probe.csv.import │ ├── mod_manager.csv │ ├── mod_manager.csv.import │ ├── mod_reinstall_dialog.csv │ ├── mod_reinstall_dialog.csv.import │ ├── mods_tab.csv │ ├── mods_tab.csv.import │ ├── release_installer.csv │ ├── release_installer.csv.import │ ├── release_manager.csv │ ├── release_manager.csv.import │ ├── settings_manager.csv │ ├── settings_manager.csv.import │ ├── settings_tab.csv │ ├── settings_tab.csv.import │ ├── soundpack_manager.csv │ ├── soundpack_manager.csv.import │ ├── soundpacks_tab.csv │ ├── soundpacks_tab.csv.import │ ├── tips.csv │ └── tips.csv.import ├── pt │ ├── backup_manager.csv │ ├── backup_manager.csv.import │ ├── backups_tab.csv │ ├── backups_tab.csv.import │ ├── changelog_dialog.csv │ ├── changelog_dialog.csv.import │ ├── dialog_buttons.csv │ ├── dialog_buttons.csv.import │ ├── download_manager.csv │ ├── download_manager.csv.import │ ├── easter_egg.csv │ ├── easter_egg.csv.import │ ├── filesystem_helper.csv │ ├── filesystem_helper.csv.import │ ├── font_help_dialog.csv │ ├── font_help_dialog.csv.import │ ├── font_info.csv │ ├── font_info.csv.import │ ├── font_manager.csv │ ├── font_manager.csv.import │ ├── fonts_tab.csv │ ├── fonts_tab.csv.import │ ├── game_tab.csv │ ├── game_tab.csv.import │ ├── general.csv │ ├── general.csv.import │ ├── helpers.csv │ ├── helpers.csv.import │ ├── install_probe.csv │ ├── install_probe.csv.import │ ├── mod_manager.csv │ ├── mod_manager.csv.import │ ├── mod_reinstall_dialog.csv │ ├── mod_reinstall_dialog.csv.import │ ├── mods_tab.csv │ ├── mods_tab.csv.import │ ├── release_installer.csv │ ├── release_installer.csv.import │ ├── release_manager.csv │ ├── release_manager.csv.import │ ├── settings_manager.csv │ ├── settings_manager.csv.import │ ├── settings_tab.csv │ ├── settings_tab.csv.import │ ├── soundpack_manager.csv │ ├── soundpack_manager.csv.import │ ├── soundpacks_tab.csv │ ├── soundpacks_tab.csv.import │ ├── tips.csv │ └── tips.csv.import ├── ru │ ├── backup_manager.csv │ ├── backup_manager.csv.import │ ├── backups_tab.csv │ ├── backups_tab.csv.import │ ├── changelog_dialog.csv │ ├── changelog_dialog.csv.import │ ├── dialog_buttons.csv │ ├── dialog_buttons.csv.import │ ├── download_manager.csv │ ├── download_manager.csv.import │ ├── easter_egg.csv │ ├── easter_egg.csv.import │ ├── filesystem_helper.csv │ ├── filesystem_helper.csv.import │ ├── font_help_dialog.csv │ ├── font_help_dialog.csv.import │ ├── font_info.csv │ ├── font_info.csv.import │ ├── font_manager.csv │ ├── font_manager.csv.import │ ├── fonts_tab.csv │ ├── fonts_tab.csv.import │ ├── game_tab.csv │ ├── game_tab.csv.import │ ├── general.csv │ ├── general.csv.import │ ├── helpers.csv │ ├── helpers.csv.import │ ├── install_probe.csv │ ├── install_probe.csv.import │ ├── mod_manager.csv │ ├── mod_manager.csv.import │ ├── mod_reinstall_dialog.csv │ ├── mod_reinstall_dialog.csv.import │ ├── mods_tab.csv │ ├── mods_tab.csv.import │ ├── release_installer.csv │ ├── release_installer.csv.import │ ├── release_manager.csv │ ├── release_manager.csv.import │ ├── settings_manager.csv │ ├── settings_manager.csv.import │ ├── settings_tab.csv │ ├── settings_tab.csv.import │ ├── soundpack_manager.csv │ ├── soundpack_manager.csv.import │ ├── soundpacks_tab.csv │ ├── soundpacks_tab.csv.import │ ├── tips.csv │ └── tips.csv.import ├── tr │ ├── backup_manager.csv │ ├── backup_manager.csv.import │ ├── backups_tab.csv │ ├── backups_tab.csv.import │ ├── changelog_dialog.csv │ ├── changelog_dialog.csv.import │ ├── dialog_buttons.csv │ ├── dialog_buttons.csv.import │ ├── download_manager.csv │ ├── download_manager.csv.import │ ├── easter_egg.csv │ ├── easter_egg.csv.import │ ├── filesystem_helper.csv │ ├── filesystem_helper.csv.import │ ├── font_help_dialog.csv │ ├── font_help_dialog.csv.import │ ├── font_info.csv │ ├── font_info.csv.import │ ├── font_manager.csv │ ├── font_manager.csv.import │ ├── fonts_tab.csv │ ├── fonts_tab.csv.import │ ├── game_tab.csv │ ├── game_tab.csv.import │ ├── general.csv │ ├── general.csv.import │ ├── helpers.csv │ ├── helpers.csv.import │ ├── install_probe.csv │ ├── install_probe.csv.import │ ├── mod_manager.csv │ ├── mod_manager.csv.import │ ├── mod_reinstall_dialog.csv │ ├── mod_reinstall_dialog.csv.import │ ├── mods_tab.csv │ ├── mods_tab.csv.import │ ├── release_installer.csv │ ├── release_installer.csv.import │ ├── release_manager.csv │ ├── release_manager.csv.import │ ├── settings_manager.csv │ ├── settings_manager.csv.import │ ├── settings_tab.csv │ ├── settings_tab.csv.import │ ├── soundpack_manager.csv │ ├── soundpack_manager.csv.import │ ├── soundpacks_tab.csv │ ├── soundpacks_tab.csv.import │ ├── tips.csv │ └── tips.csv.import └── zh │ ├── backup_manager.csv │ ├── backup_manager.csv.import │ ├── backups_tab.csv │ ├── backups_tab.csv.import │ ├── changelog_dialog.csv │ ├── changelog_dialog.csv.import │ ├── dialog_buttons.csv │ ├── dialog_buttons.csv.import │ ├── download_manager.csv │ ├── download_manager.csv.import │ ├── easter_egg.csv │ ├── easter_egg.csv.import │ ├── filesystem_helper.csv │ ├── filesystem_helper.csv.import │ ├── font_help_dialog.csv │ ├── font_help_dialog.csv.import │ ├── font_info.csv │ ├── font_info.csv.import │ ├── font_manager.csv │ ├── font_manager.csv.import │ ├── fonts_tab.csv │ ├── fonts_tab.csv.import │ ├── game_tab.csv │ ├── game_tab.csv.import │ ├── general.csv │ ├── general.csv.import │ ├── helpers.csv │ ├── helpers.csv.import │ ├── install_probe.csv │ ├── install_probe.csv.import │ ├── mod_manager.csv │ ├── mod_manager.csv.import │ ├── mod_reinstall_dialog.csv │ ├── mod_reinstall_dialog.csv.import │ ├── mods_tab.csv │ ├── mods_tab.csv.import │ ├── release_installer.csv │ ├── release_installer.csv.import │ ├── release_manager.csv │ ├── release_manager.csv.import │ ├── settings_manager.csv │ ├── settings_manager.csv.import │ ├── settings_tab.csv │ ├── settings_tab.csv.import │ ├── soundpack_manager.csv │ ├── soundpack_manager.csv.import │ ├── soundpacks_tab.csv │ ├── soundpacks_tab.csv.import │ ├── tips.csv │ └── tips.csv.import ├── themes ├── Godot_3.res ├── Grey.res ├── Light.res ├── Solarized_Dark.res └── Solarized_Light.res └── utils ├── INFOZIP_LICENSE ├── unzip.exe └── zip.exe /.github/catapult_ui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/.github/catapult_ui.gif -------------------------------------------------------------------------------- /.github/windows_export_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/.github/windows_export_01.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.import 2 | export_presets.cfg 3 | Catapult.x86_64 4 | Catapult.exe 5 | *.translation 6 | *~lock* 7 | 8 | # Godot Git plugin 9 | /bin 10 | git_api.gdnlib 11 | git_api.gdns 12 | 13 | # vscode 14 | .vscode -------------------------------------------------------------------------------- /fonts/NotoSansKR-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/NotoSansKR-Regular.ttf -------------------------------------------------------------------------------- /fonts/OpenSans-Italic.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="DynamicFont" load_steps=4 format=2] 2 | 3 | [ext_resource path="res://fonts/OpenSans-Italic.ttf" type="DynamicFontData" id=1] 4 | [ext_resource path="res://fonts/SourceHanSansCN-Regular.otf" type="DynamicFontData" id=2] 5 | [ext_resource path="res://fonts/NotoSansKR-Regular.ttf" type="DynamicFontData" id=3] 6 | 7 | [resource] 8 | size = 13 9 | extra_spacing_top = -3 10 | extra_spacing_bottom = -3 11 | font_data = ExtResource( 1 ) 12 | fallback/0 = ExtResource( 2 ) 13 | fallback/1 = ExtResource( 3 ) 14 | -------------------------------------------------------------------------------- /fonts/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /fonts/OpenSans-Regular.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="DynamicFont" load_steps=4 format=2] 2 | 3 | [ext_resource path="res://fonts/OpenSans-Regular.ttf" type="DynamicFontData" id=1] 4 | [ext_resource path="res://fonts/SourceHanSansCN-Regular.otf" type="DynamicFontData" id=2] 5 | [ext_resource path="res://fonts/NotoSansKR-Regular.ttf" type="DynamicFontData" id=3] 6 | 7 | [resource] 8 | size = 13 9 | extra_spacing_top = -3 10 | extra_spacing_bottom = -3 11 | font_data = ExtResource( 1 ) 12 | fallback/0 = ExtResource( 2 ) 13 | fallback/1 = ExtResource( 3 ) 14 | -------------------------------------------------------------------------------- /fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/OpenSans-Semibold.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="DynamicFont" load_steps=4 format=2] 2 | 3 | [ext_resource path="res://fonts/OpenSans-Semibold.ttf" type="DynamicFontData" id=1] 4 | [ext_resource path="res://fonts/SourceHanSansCN-Regular.otf" type="DynamicFontData" id=2] 5 | [ext_resource path="res://fonts/NotoSansKR-Regular.ttf" type="DynamicFontData" id=3] 6 | 7 | [resource] 8 | size = 13 9 | extra_spacing_top = -3 10 | extra_spacing_bottom = -3 11 | font_data = ExtResource( 1 ) 12 | fallback/0 = ExtResource( 2 ) 13 | fallback/1 = ExtResource( 3 ) 14 | -------------------------------------------------------------------------------- /fonts/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /fonts/OpenSans-SemiboldItalic.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="DynamicFont" load_steps=4 format=2] 2 | 3 | [ext_resource path="res://fonts/OpenSans-SemiboldItalic.ttf" type="DynamicFontData" id=1] 4 | [ext_resource path="res://fonts/SourceHanSansCN-Regular.otf" type="DynamicFontData" id=2] 5 | [ext_resource path="res://fonts/NotoSansKR-Regular.ttf" type="DynamicFontData" id=3] 6 | 7 | [resource] 8 | size = 13 9 | extra_spacing_top = -3 10 | extra_spacing_bottom = -3 11 | font_data = ExtResource( 1 ) 12 | fallback/0 = ExtResource( 2 ) 13 | fallback/1 = ExtResource( 3 ) 14 | -------------------------------------------------------------------------------- /fonts/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /fonts/SourceHanSansCN-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/SourceHanSansCN-Regular.otf -------------------------------------------------------------------------------- /fonts/default_ui_font.tres: -------------------------------------------------------------------------------- 1 | [gd_resource type="DynamicFont" load_steps=4 format=2] 2 | 3 | [ext_resource path="res://fonts/SourceHanSansCN-Regular.otf" type="DynamicFontData" id=1] 4 | [ext_resource path="res://fonts/OpenSans-Regular.ttf" type="DynamicFontData" id=2] 5 | [ext_resource path="res://fonts/NotoSansKR-Regular.ttf" type="DynamicFontData" id=3] 6 | 7 | [resource] 8 | size = 13 9 | use_mipmaps = true 10 | extra_spacing_top = -3 11 | extra_spacing_bottom = -3 12 | font_data = ExtResource( 2 ) 13 | fallback/0 = ExtResource( 1 ) 14 | fallback/1 = ExtResource( 3 ) 15 | -------------------------------------------------------------------------------- /fonts/ingame/FantasqueSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/ingame/FantasqueSansMono-Bold.ttf -------------------------------------------------------------------------------- /fonts/ingame/FantasqueSansMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/ingame/FantasqueSansMono-Regular.ttf -------------------------------------------------------------------------------- /fonts/ingame/Hack-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/ingame/Hack-Bold.ttf -------------------------------------------------------------------------------- /fonts/ingame/Hack-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/ingame/Hack-Regular.ttf -------------------------------------------------------------------------------- /fonts/ingame/Inconsolata-LGC-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/ingame/Inconsolata-LGC-Bold.ttf -------------------------------------------------------------------------------- /fonts/ingame/Inconsolata-LGC.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/ingame/Inconsolata-LGC.ttf -------------------------------------------------------------------------------- /fonts/ingame/PT_Mono_55F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/ingame/PT_Mono_55F.ttf -------------------------------------------------------------------------------- /fonts/ingame/PT_Mono_75F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/ingame/PT_Mono_75F.ttf -------------------------------------------------------------------------------- /fonts/ingame/UbuntuMono-B.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/ingame/UbuntuMono-B.ttf -------------------------------------------------------------------------------- /fonts/ingame/UbuntuMono-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/ingame/UbuntuMono-R.ttf -------------------------------------------------------------------------------- /fonts/licenses/PT_Mono.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/fonts/licenses/PT_Mono.txt -------------------------------------------------------------------------------- /icons/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/appicon.ico -------------------------------------------------------------------------------- /icons/buttons/activate.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/activate.svg-96299c27af7b843f23c2fd384d5130ab.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/buttons/activate.svg" 10 | dest_files=[ "res://.import/activate.svg-96299c27af7b843f23c2fd384d5130ab.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/buttons/delete.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/delete.svg-eb3f283ce0845cc310f35455bb8a389f.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/buttons/delete.svg" 10 | dest_files=[ "res://.import/delete.svg-eb3f283ce0845cc310f35455bb8a389f.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/buttons/download.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/download.svg-9c96e819818866701a8a985608394973.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/buttons/download.svg" 10 | dest_files=[ "res://.import/download.svg-9c96e819818866701a8a985608394973.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/buttons/play.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/play.svg-56c236147ec6a3c20de6f1b933772dc4.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/buttons/play.svg" 10 | dest_files=[ "res://.import/play.svg-56c236147ec6a3c20de6f1b933772dc4.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/buttons/resume.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/resume.svg-7e6eedb6256fc04995eef3be7c7de11e.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/buttons/resume.svg" 10 | dest_files=[ "res://.import/resume.svg-7e6eedb6256fc04995eef3be7c7de11e.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/buttons/tex_activate.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/buttons/tex_activate.tex -------------------------------------------------------------------------------- /icons/buttons/tex_delete.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/buttons/tex_delete.tex -------------------------------------------------------------------------------- /icons/buttons/tex_download.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/buttons/tex_download.tex -------------------------------------------------------------------------------- /icons/buttons/tex_play.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/buttons/tex_play.tex -------------------------------------------------------------------------------- /icons/buttons/tex_resume.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/buttons/tex_resume.tex -------------------------------------------------------------------------------- /icons/lang/lang-pl.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/lang-pl.svg-dcdf9192a39eef6cec4ee0230757adaa.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/lang/lang-pl.svg" 10 | dest_files=[ "res://.import/lang-pl.svg-dcdf9192a39eef6cec4ee0230757adaa.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/lang/lang-tr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/lang/lang-tr.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/lang-tr.svg-05d40da15054ac5266c746f529864c8f.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/lang/lang-tr.svg" 10 | dest_files=[ "res://.import/lang-tr.svg-05d40da15054ac5266c746f529864c8f.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/lang/lang_cs.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/lang/lang_cs.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/lang_cs.svg-915a1de056804e961ee877a1a91f6fe2.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/lang/lang_cs.svg" 10 | dest_files=[ "res://.import/lang_cs.svg-915a1de056804e961ee877a1a91f6fe2.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/lang/lang_en.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/lang_en.svg-67b65a414e624531fed9b67b2e59a88b.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/lang/lang_en.svg" 10 | dest_files=[ "res://.import/lang_en.svg-67b65a414e624531fed9b67b2e59a88b.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/lang/lang_es.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/lang_es.svg-8eb9cd0ec415153b0fe37dc2cd38a75c.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/lang/lang_es.svg" 10 | dest_files=[ "res://.import/lang_es.svg-8eb9cd0ec415153b0fe37dc2cd38a75c.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/lang/lang_fr.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icons/lang/lang_fr.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/lang_fr.svg-8c09c2b664f72e91e0fecf9719d305d7.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/lang/lang_fr.svg" 10 | dest_files=[ "res://.import/lang_fr.svg-8c09c2b664f72e91e0fecf9719d305d7.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/lang/lang_ko.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/lang_ko.svg-f51eed7c559719025da85b9243c061b5.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/lang/lang_ko.svg" 10 | dest_files=[ "res://.import/lang_ko.svg-f51eed7c559719025da85b9243c061b5.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/lang/lang_pt.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/lang_pt.svg-b5727325abbef00c8adfec7109ec90b3.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/lang/lang_pt.svg" 10 | dest_files=[ "res://.import/lang_pt.svg-b5727325abbef00c8adfec7109ec90b3.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/lang/lang_ru.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/lang_ru.svg-eb492fa34f52caedca6c1d0aa2d16a63.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/lang/lang_ru.svg" 10 | dest_files=[ "res://.import/lang_ru.svg-eb492fa34f52caedca6c1d0aa2d16a63.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/lang/lang_zh.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/lang_zh.svg-190f96e27fd9b2c5c04b28ba84940564.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/lang/lang_zh.svg" 10 | dest_files=[ "res://.import/lang_zh.svg-190f96e27fd9b2c5c04b28ba84940564.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/lang/tex_lang_cs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/lang/tex_lang_cs.res -------------------------------------------------------------------------------- /icons/lang/tex_lang_en.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/lang/tex_lang_en.res -------------------------------------------------------------------------------- /icons/lang/tex_lang_es.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/lang/tex_lang_es.res -------------------------------------------------------------------------------- /icons/lang/tex_lang_fr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/lang/tex_lang_fr.res -------------------------------------------------------------------------------- /icons/lang/tex_lang_ko.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/lang/tex_lang_ko.res -------------------------------------------------------------------------------- /icons/lang/tex_lang_pl.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/lang/tex_lang_pl.res -------------------------------------------------------------------------------- /icons/lang/tex_lang_pt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/lang/tex_lang_pt.res -------------------------------------------------------------------------------- /icons/lang/tex_lang_ru.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/lang/tex_lang_ru.res -------------------------------------------------------------------------------- /icons/lang/tex_lang_tr.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/lang/tex_lang_tr.res -------------------------------------------------------------------------------- /icons/lang/tex_lang_zh.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/lang/tex_lang_zh.res -------------------------------------------------------------------------------- /icons/theme/godot3.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/godot3.png-b7b404cf56425f9dc3e1901b8cc2f389.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/theme/godot3.png" 10 | dest_files=[ "res://.import/godot3.png-b7b404cf56425f9dc3e1901b8cc2f389.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/theme/godot3.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/godot3.svg-93abcd24d98a0a648490dad29b216bee.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/theme/godot3.svg" 10 | dest_files=[ "res://.import/godot3.svg-93abcd24d98a0a648490dad29b216bee.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/theme/grey.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/grey.png-6dfdb163d434c353d4f269e3a4d44c11.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/theme/grey.png" 10 | dest_files=[ "res://.import/grey.png-6dfdb163d434c353d4f269e3a4d44c11.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/theme/grey.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/grey.svg-8deae262264540ec07ff2d9195e173dd.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/theme/grey.svg" 10 | dest_files=[ "res://.import/grey.svg-8deae262264540ec07ff2d9195e173dd.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/theme/light.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/light.png-c3742d5d7d86cda23e2ccca084de8e1f.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/theme/light.png" 10 | dest_files=[ "res://.import/light.png-c3742d5d7d86cda23e2ccca084de8e1f.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/theme/light.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/light.svg-f8031eaab707e379bdbb80ebafd0a3a2.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/theme/light.svg" 10 | dest_files=[ "res://.import/light.svg-f8031eaab707e379bdbb80ebafd0a3a2.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/theme/solarized_dark.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/solarized_dark.png-fcab47bb45de639a093862b640b9d5ad.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/theme/solarized_dark.png" 10 | dest_files=[ "res://.import/solarized_dark.png-fcab47bb45de639a093862b640b9d5ad.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/theme/solarized_dark.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/solarized_dark.svg-8d2b2730c48d9b8eb47bd56826ff4833.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/theme/solarized_dark.svg" 10 | dest_files=[ "res://.import/solarized_dark.svg-8d2b2730c48d9b8eb47bd56826ff4833.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/theme/solarized_light.png.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/solarized_light.png-35330fd61be13b36a100465f01aa7943.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/theme/solarized_light.png" 10 | dest_files=[ "res://.import/solarized_light.png-35330fd61be13b36a100465f01aa7943.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/theme/solarized_light.svg.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="image" 4 | type="Image" 5 | path="res://.import/solarized_light.svg-4c415a59213383a60aed2002a1466cea.image" 6 | 7 | [deps] 8 | 9 | source_file="res://icons/theme/solarized_light.svg" 10 | dest_files=[ "res://.import/solarized_light.svg-4c415a59213383a60aed2002a1466cea.image" ] 11 | 12 | [params] 13 | 14 | -------------------------------------------------------------------------------- /icons/theme/tex_godot3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/theme/tex_godot3.res -------------------------------------------------------------------------------- /icons/theme/tex_grey.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/theme/tex_grey.res -------------------------------------------------------------------------------- /icons/theme/tex_light.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/theme/tex_light.res -------------------------------------------------------------------------------- /icons/theme/tex_solarized_dark.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/theme/tex_solarized_dark.res -------------------------------------------------------------------------------- /icons/theme/tex_solarized_light.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/theme/tex_solarized_light.res -------------------------------------------------------------------------------- /icons/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/icons/transparent.png -------------------------------------------------------------------------------- /images/font-rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/images/font-rect.png -------------------------------------------------------------------------------- /images/font-sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/images/font-sizes.png -------------------------------------------------------------------------------- /scripts/Enums.gd: -------------------------------------------------------------------------------- 1 | class_name Enums 2 | 3 | 4 | enum { # Status message types. 5 | MSG_INFO = 0, 6 | MSG_WARN = 1, 7 | MSG_ERROR = 2, 8 | MSG_DEBUG = 3, 9 | } 10 | -------------------------------------------------------------------------------- /scripts/FontSizeHelpDialog.gd: -------------------------------------------------------------------------------- 1 | extends WindowDialog 2 | 3 | 4 | onready var _label := $Panel/Margin/VBox/Help 5 | 6 | 7 | func open() -> void: 8 | 9 | var text := tr("dlg_font_config_help") 10 | text = text.replace("[IMG_1]", "[img=%d]res://images/font-sizes.png[/img]" % (180 * Geom.scale)) 11 | text = text.replace("[IMG_2]", "[img=%d]res://images/font-rect.png[/img]" % (400 * Geom.scale)) 12 | _label.bbcode_text = text 13 | _label.scroll_to_line(0) 14 | # 15 | popup_centered_ratio(0.9) 16 | 17 | 18 | func _on_BtnOK_pressed() -> void: 19 | 20 | hide() 21 | -------------------------------------------------------------------------------- /scripts/InlineIconButton.gd: -------------------------------------------------------------------------------- 1 | extends TextureButton 2 | 3 | 4 | export(float, 1.0, 1.5) var _scale_when_hovered = 1.1 5 | 6 | var _normal_position := Vector2() 7 | 8 | 9 | func _on_mouse_entered() -> void: 10 | 11 | _normal_position = rect_position 12 | rect_size = rect_min_size * _scale_when_hovered 13 | var offset := (rect_size - rect_min_size) / 2.0 14 | rect_position -= offset 15 | 16 | 17 | func _on_mouse_exited() -> void: 18 | 19 | rect_size = rect_min_size 20 | rect_position = _normal_position 21 | -------------------------------------------------------------------------------- /scripts/InstallsList.gd: -------------------------------------------------------------------------------- 1 | extends ItemList 2 | 3 | 4 | var disabled: bool setget _set_disabled, _get_disabled 5 | 6 | 7 | func _set_disabled(value: bool) -> void: 8 | 9 | for i in get_item_count(): 10 | set_item_disabled(i, value) 11 | 12 | if value == true: 13 | unselect_all() 14 | 15 | disabled = value 16 | 17 | 18 | func _get_disabled() -> bool: 19 | 20 | return disabled 21 | -------------------------------------------------------------------------------- /scripts/ItemList.gd: -------------------------------------------------------------------------------- 1 | extends ItemList 2 | # A small extension that adds the "disabled" propertry to ItemList. 3 | 4 | 5 | export var disabled: bool = false setget _set_disabled 6 | 7 | 8 | func _set_disabled(value: bool) -> void: 9 | 10 | for i in get_item_count(): 11 | set_item_disabled(i, value) 12 | 13 | set_process_input(not value) 14 | disabled = value 15 | -------------------------------------------------------------------------------- /scripts/OSExecWrapper.gd: -------------------------------------------------------------------------------- 1 | class_name OSExecWrapper 2 | extends Object 3 | 4 | 5 | signal process_exited 6 | 7 | var _worker: Thread 8 | var output = [] 9 | var exit_code = null 10 | 11 | 12 | func _wrapper(path_and_args: Array) -> void: 13 | 14 | exit_code = OS.execute(path_and_args[0], path_and_args[1], true, output, true) 15 | emit_signal("process_exited") 16 | _worker.call_deferred("wait_to_finish") 17 | 18 | func execute(path: String, args: PoolStringArray) -> void: 19 | 20 | _worker = Thread.new() 21 | _worker.start(self, "_wrapper", [path, args]) 22 | 23 | -------------------------------------------------------------------------------- /scripts/scalable_texture.gd: -------------------------------------------------------------------------------- 1 | class_name ScalableImageTexture 2 | extends ImageTexture 3 | 4 | 5 | var _base_size: Vector2 6 | 7 | 8 | func _init() -> void: 9 | 10 | _base_size = self.get_size() 11 | Geom.connect("scale_changed", self, "_on_ui_scale_changed") 12 | 13 | 14 | func _on_ui_scale_changed(new_scale: float) -> void: 15 | 16 | self.size = _base_size * new_scale 17 | -------------------------------------------------------------------------------- /scripts/totd.gd: -------------------------------------------------------------------------------- 1 | extends Node 2 | # This node stores tips of the day and picks one at random when asked. 3 | 4 | 5 | const _TOTD = [ 6 | # These used to be hardcoded, but now it is just a list of translation keys. 7 | 8 | "tip_os_hopping", 9 | "tip_dual_install", 10 | "tip_downgrading", 11 | "tip_stock_mods", 12 | "tip_mod_multi_install", 13 | "tip_modpack_update", 14 | "tip_debug_mode", 15 | "tip_bug_reporting", 16 | "tip_backup_caveat", 17 | "tip_multi_install", 18 | ] 19 | 20 | 21 | func get_tip() -> String: 22 | 23 | var index = OS.get_system_time_msecs() % len(_TOTD) 24 | return tr(_TOTD[index]) 25 | -------------------------------------------------------------------------------- /text/cs/backup_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "msg_backing_up_saves","Zálohuji aktuální uložené hry do \""%s\""..." 4 | "msg_backup_created","Záloha vytvořena." 5 | "msg_backup_name_taken","Záloha se jménem \""%s\"" už existuje." 6 | "msg_restoring_backup","Obnovuji zálohu \""%s\""..." 7 | "msg_backup_restored","Záloha obnovena." 8 | "msg_backup_not_found","Záloha \""%s\"" nenalezena." 9 | "msg_deleting_backup","Mažu zálohu \""%s\""..." 10 | "msg_backup_deleted","Záloha smazána." 11 | -------------------------------------------------------------------------------- /text/cs/backup_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/backup_manager.cs.translation" ] 9 | 10 | source_file="res://text/cs/backup_manager.csv" 11 | dest_files=[ "res://text/cs/backup_manager.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/backups_tab.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "lbl_save_backups","Složka se zálohami her:" 4 | "btn_restore_backup","Obnovit zálohu" 5 | "btn_delete_backup","Smazat" 6 | "btn_refresh_backups","Obnovit" 7 | "lbl_manual_backup","Manuální záloha" 8 | "lbl_backup_name","Jméno:" 9 | "btn_create_backup","Vytvořit" 10 | "lbl_backup_info_placeholder","Vyberte existující zálohu pro zobrazení detailů." 11 | , 12 | "backup_info_location","Lokace:" 13 | "backup_info_worlds","Světy:" 14 | -------------------------------------------------------------------------------- /text/cs/backups_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/backups_tab.cs.translation" ] 9 | 10 | source_file="res://text/cs/backups_tab.csv" 11 | dest_files=[ "res://text/cs/backups_tab.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/changelog_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "dlg_changelog_title","Nedávné změny" 4 | "str_fetching_changes","Fetching recent changes from GitHub. Prosím čekejte..." 5 | "str_error_retrieving_data","Chyba získávání dat z GitHub API." 6 | "str_hhtp_response_code","\n\nHTTP stavový kód: %s" 7 | "str_github_says","\nGitHub říká: [i]%s[/i]" 8 | "str_try_later","\n\nProsím, zkuste to znovu." 9 | "str_changelog_intro","Ukazuji posledních [b]%s[/b] dokončených pull requestů (přidání kódu) do [b]%s[/b].\n\nMůžete kliknout na libovolný z nich pro zobrazení korespondujícího PR na GitHubu a detailů změny.\n" 10 | -------------------------------------------------------------------------------- /text/cs/changelog_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/changelog_dialog.cs.translation" ] 9 | 10 | source_file="res://text/cs/changelog_dialog.csv" 11 | dest_files=[ "res://text/cs/changelog_dialog.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/dialog_buttons.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "btn_close","Zavřít" 4 | "btn_ok","OK" 5 | "btn_cancel","Zrušit" 6 | "btn_yes","Ano" 7 | "btn_no","Ne" 8 | "btn_reinstall","Znovu nainstalovat" 9 | "btn_skip","Přeskočit" 10 | -------------------------------------------------------------------------------- /text/cs/dialog_buttons.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/dialog_buttons.cs.translation" ] 9 | 10 | source_file="res://text/cs/dialog_buttons.csv" 11 | dest_files=[ "res://text/cs/dialog_buttons.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/download_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "unit_kb","KB" 4 | "unit_mb","MB" 5 | "unit_kbps","KB/s" 6 | "unit_mbps","MB/s" 7 | , 8 | "msg_downloading_file","Stahuji %s..." 9 | "msg_download_progress","Stahuji:" 10 | "str_dl_speed_at","rychlostí" 11 | "msg_download_finished","Dokončeno stahování %s." 12 | "msg_download_failed","Nezdařilo se stáhnout %s." 13 | "msg_http_request_info","[b]Informace o požadavku HTTP:[/b]\n[u]Výsledek:[/u] %s\n[u]Kód odpovědi:[/u] %s\n[u]Hlavičky:[/u] %s" 14 | -------------------------------------------------------------------------------- /text/cs/download_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/download_manager.cs.translation" ] 9 | 10 | source_file="res://text/cs/download_manager.csv" 11 | dest_files=[ "res://text/cs/download_manager.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/easter_egg.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "msg_easter_egg_warning","POZOR!" 4 | "msg_easter_egg_activated","ALE NE, ROZBILI JSTE TO!!" 5 | -------------------------------------------------------------------------------- /text/cs/easter_egg.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/easter_egg.cs.translation" ] 9 | 10 | source_file="res://text/cs/easter_egg.csv" 11 | dest_files=[ "res://text/cs/easter_egg.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/filesystem_helper.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/filesystem_helper.cs.translation" ] 9 | 10 | source_file="res://text/cs/filesystem_helper.csv" 11 | dest_files=[ "res://text/cs/filesystem_helper.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/font_help_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/font_help_dialog.cs.translation" ] 9 | 10 | source_file="res://text/cs/font_help_dialog.csv" 11 | dest_files=[ "res://text/cs/font_help_dialog.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/font_info.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "font_desc_fantasque","Poněkud náladový monospace font od Jany Belluz." 4 | "font_desc_hack","Tvrdě pracující font primárně navrhnut pro zdrojový kód,\nse zaměřením na čitelnost. Od Source Foundry Authors." 5 | "font_desc_inconsolata","Variace fontu Inconsolata (původně od Raph Levien)\ns přidáním řeckých symbolů a azbuky." 6 | "font_desc_pt","Font pro psací stroj od ParaType s excelentní typografií azbuky." 7 | "font_desc_ubuntu","Font od Canonicalu s velmi vytříbeným stylem,\nnavrhnut pro jejich Linuxovou distribuci." 8 | -------------------------------------------------------------------------------- /text/cs/font_info.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/font_info.cs.translation" ] 9 | 10 | source_file="res://text/cs/font_info.csv" 11 | dest_files=[ "res://text/cs/font_info.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/font_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/font_manager.cs.translation" ] 9 | 10 | source_file="res://text/cs/font_manager.csv" 11 | dest_files=[ "res://text/cs/font_manager.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/fonts_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/fonts_tab.cs.translation" ] 9 | 10 | source_file="res://text/cs/fonts_tab.csv" 11 | dest_files=[ "res://text/cs/fonts_tab.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/game_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/game_tab.cs.translation" ] 9 | 10 | source_file="res://text/cs/game_tab.csv" 11 | dest_files=[ "res://text/cs/game_tab.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/general.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/general.cs.translation" ] 9 | 10 | source_file="res://text/cs/general.csv" 11 | dest_files=[ "res://text/cs/general.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/helpers.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "msg_file_read_fail","Nepodařilo se otevřít soubor %s (chyba %s)." 4 | "msg_file_write_fail","Nepodařilo se otevřít soubor %s pro psaní (chyba %s)." 5 | "msg_debug_file_path","Celá cesta: %s" 6 | "msg_json_parse_fail","Nezdařilo se zparsovat obsah %s." 7 | "msg_debug_json_result","Výsledek parsování JSON:\nChybový kód: %s\nChybová hláška: %s\nŘádek s chybou: %s" 8 | -------------------------------------------------------------------------------- /text/cs/helpers.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/helpers.cs.translation" ] 9 | 10 | source_file="res://text/cs/helpers.csv" 11 | dest_files=[ "res://text/cs/helpers.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/install_probe.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "msg_cannot_create_install_info","Nepodařilo se vytvořit soubor s informacemi o instalaci %s" 4 | "msg_cannot_parse_install_info","Nepodařilo se zparsovat soubor s informacemi o instalaci %s" 5 | -------------------------------------------------------------------------------- /text/cs/install_probe.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/install_probe.cs.translation" ] 9 | 10 | source_file="res://text/cs/install_probe.csv" 11 | dest_files=[ "res://text/cs/install_probe.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/mod_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/mod_manager.cs.translation" ] 9 | 10 | source_file="res://text/cs/mod_manager.csv" 11 | dest_files=[ "res://text/cs/mod_manager.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/mod_reinstall_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "dlg_mod_reinstall_title","Potvrdit opětovnou instalaci modu" 4 | "dlg_mod_reinstall_text_single","Jeden z vybraných modů už je nainstalován.\nSmazat a znovu nainstalovat?" 5 | "dlg_mod_reinstall_text_multiple","%s z vybraných modů už jsou nainstalovány.\nSmazat a znovu nainstalovat?" 6 | -------------------------------------------------------------------------------- /text/cs/mod_reinstall_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/mod_reinstall_dialog.cs.translation" ] 9 | 10 | source_file="res://text/cs/mod_reinstall_dialog.csv" 11 | dest_files=[ "res://text/cs/mod_reinstall_dialog.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/mods_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/mods_tab.cs.translation" ] 9 | 10 | source_file="res://text/cs/mods_tab.csv" 11 | dest_files=[ "res://text/cs/mods_tab.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/release_installer.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "msg_updating_game","Aktualizuji na %s..." 4 | "msg_installing_game","Instaluji %s..." 5 | "msg_game_updated","Aktualizace dokončena." 6 | "msg_game_installed","Instalace dokončena." 7 | "msg_deleting_game","Odebírám %s..." 8 | "msg_game_deleted","Odstranění dokončeno." 9 | "msg_delete_not_found","Pokusil jsem se odstranit vydání \"%s\", ale nemohl jsem je najít na disku." 10 | -------------------------------------------------------------------------------- /text/cs/release_installer.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/release_installer.cs.translation" ] 9 | 10 | source_file="res://text/cs/release_installer.csv" 11 | dest_files=[ "res://text/cs/release_installer.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/release_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "msg_unsupported_platform","Nepodporovaná platforma: \""%s\""" 4 | "msg_releases_request_failed","Požadavek selhal. Jste připojeni k internetu?" 5 | "msg_releases_api_failure","Nepodařilo se získat seznam vydání. GitHub říká: %s" 6 | "msg_got_n_releases","Získáno %s vydání." 7 | "msg_fetching_releases_dda","Získávám vydání pro DDA Experimental..." 8 | "msg_fetching_releases_bn","Získávám vydání pro BN Experimental..." 9 | "msg_invalid_fetch_func_param","ReleaseManager.fetch() dostal %s" 10 | -------------------------------------------------------------------------------- /text/cs/release_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/release_manager.cs.translation" ] 9 | 10 | source_file="res://text/cs/release_manager.csv" 11 | dest_files=[ "res://text/cs/release_manager.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/settings_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "msg_creating_settings","Vytvářím soubor s nastavením %s." 4 | "msg_nonexistent_attempt","Pokus o načtení nastavení z neexistujícího souboru %s" 5 | "msg_loading_settings","Načítám nastavení z %s." 6 | "msg_settings_parse_error","Chyba parsování nastavení z JSONu, řádek %s, hláška: %s" 7 | "msg_nonexisting_setting","Pokus o přečtení neexistujícího nastavení \""%s\""" 8 | -------------------------------------------------------------------------------- /text/cs/settings_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/settings_manager.cs.translation" ] 9 | 10 | source_file="res://text/cs/settings_manager.csv" 11 | dest_files=[ "res://text/cs/settings_manager.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/settings_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/settings_tab.cs.translation" ] 9 | 10 | source_file="res://text/cs/settings_tab.csv" 11 | dest_files=[ "res://text/cs/settings_tab.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/soundpack_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","cs" 2 | , 3 | "msg_no_sound_dir","Složka se zvuky neexistuje: %s" 4 | "msg_deleting_sound","Mažu %s" 5 | "msg_soundpack_not_found","Nepodařilo se najít balíček se zvuky \""%s\""" 6 | "msg_installing_sound","Instaluji balíček se zvuky \""%s\""..." 7 | "msg_reinstalling_sound","Znovu instaluji balíček se zvuky \""%s\""..." 8 | "msg_sound_download_failed","Nepodařilo se stáhnout archív s balíčkem se zvuky." 9 | "msg_sound_installed","Balíček se zvuky nainstalován." 10 | -------------------------------------------------------------------------------- /text/cs/soundpack_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/soundpack_manager.cs.translation" ] 9 | 10 | source_file="res://text/cs/soundpack_manager.csv" 11 | dest_files=[ "res://text/cs/soundpack_manager.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/soundpacks_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/soundpacks_tab.cs.translation" ] 9 | 10 | source_file="res://text/cs/soundpacks_tab.csv" 11 | dest_files=[ "res://text/cs/soundpacks_tab.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/cs/tips.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/cs/tips.cs.translation" ] 9 | 10 | source_file="res://text/cs/tips.csv" 11 | dest_files=[ "res://text/cs/tips.cs.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/backup_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "msg_backing_up_saves","Backing up current saves to\""%s\""..." 4 | "msg_backup_created","Backup created." 5 | "msg_backup_name_taken","A backup named \""%s\"" already exists." 6 | "msg_restoring_backup","Restoring backup \""%s\""..." 7 | "msg_backup_restored","Backup restored." 8 | "msg_backup_not_found","Backup \""%s\"" not found." 9 | "msg_deleting_backup","Deleting backup \""%s\""..." 10 | "msg_backup_deleted","Backup deleted." 11 | -------------------------------------------------------------------------------- /text/en/backup_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/backup_manager.en.translation" ] 9 | 10 | source_file="res://text/en/backup_manager.csv" 11 | dest_files=[ "res://text/en/backup_manager.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/backups_tab.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "lbl_save_backups","Save directory backups:" 4 | "btn_restore_backup","Restore" 5 | "btn_delete_backup","Delete" 6 | "btn_refresh_backups","Refresh" 7 | "lbl_manual_backup","Manual backup" 8 | "lbl_backup_name","Name:" 9 | "btn_create_backup","Create" 10 | "lbl_backup_info_placeholder","Select an existing backup to see its details here." 11 | , 12 | "backup_info_location","Location:" 13 | "backup_info_worlds","Worlds:" 14 | -------------------------------------------------------------------------------- /text/en/backups_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/backups_tab.en.translation" ] 9 | 10 | source_file="res://text/en/backups_tab.csv" 11 | dest_files=[ "res://text/en/backups_tab.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/changelog_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "dlg_changelog_title","Recent changes" 4 | "str_fetching_changes","Fetching recent changes from GitHub. Please wait..." 5 | "str_error_retrieving_data","Error retrieving data from GitHub API." 6 | "str_hhtp_response_code","\n\nHTTP response code: %s" 7 | "str_github_says","\nGitHub says: [i]%s[/i]" 8 | "str_try_later","\n\nPlease try again later." 9 | "str_changelog_intro","Showing the last [b]%s[/b] completed pull requests (code additions) to [b]%s[/b].\n\nYou can click on any item to view the corresponding PR on GitHub and learn more about the change.\n" 10 | -------------------------------------------------------------------------------- /text/en/changelog_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/changelog_dialog.en.translation" ] 9 | 10 | source_file="res://text/en/changelog_dialog.csv" 11 | dest_files=[ "res://text/en/changelog_dialog.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/dialog_buttons.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "btn_close","Close" 4 | "btn_ok","OK" 5 | "btn_cancel","Cancel" 6 | "btn_yes","Yes" 7 | "btn_no","No" 8 | "btn_reinstall","Reinstall" 9 | "btn_skip","Skip" 10 | -------------------------------------------------------------------------------- /text/en/dialog_buttons.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/dialog_buttons.en.translation" ] 9 | 10 | source_file="res://text/en/dialog_buttons.csv" 11 | dest_files=[ "res://text/en/dialog_buttons.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/download_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "unit_kb","KB" 4 | "unit_mb","MB" 5 | "unit_kbps","KB/s" 6 | "unit_mbps","MB/s" 7 | , 8 | "msg_downloading_file","Downloading %s..." 9 | "msg_download_progress","Downloading:" 10 | "str_dl_speed_at","at" 11 | "msg_download_finished","Finished downloading %s." 12 | "msg_download_failed","Failed to download %s." 13 | "msg_http_request_info","[b]HTTPRequest info:[/b]\n[u]Result:[/u] %s\n[u]Response code:[/u] %s\n[u]Headers:[/u] %s" 14 | "msg_using_proxy","Using proxy: %s:%s" 15 | -------------------------------------------------------------------------------- /text/en/download_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/download_manager.en.translation" ] 9 | 10 | source_file="res://text/en/download_manager.csv" 11 | dest_files=[ "res://text/en/download_manager.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/easter_egg.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "msg_easter_egg_warning","WATCH OUT!" 4 | "msg_easter_egg_activated","OH NO, YOU BROKE IT!!" 5 | -------------------------------------------------------------------------------- /text/en/easter_egg.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/easter_egg.en.translation" ] 9 | 10 | source_file="res://text/en/easter_egg.csv" 11 | dest_files=[ "res://text/en/easter_egg.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/filesystem_helper.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/filesystem_helper.en.translation" ] 9 | 10 | source_file="res://text/en/filesystem_helper.csv" 11 | dest_files=[ "res://text/en/filesystem_helper.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/font_help_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/font_help_dialog.en.translation" ] 9 | 10 | source_file="res://text/en/font_help_dialog.csv" 11 | dest_files=[ "res://text/en/font_help_dialog.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/font_info.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "font_desc_fantasque","A somewhat whimsical monospace font by Jany Belluz." 4 | "font_desc_hack","A workhorse font primarily designed for source code,\nwith focus on legibility. By Source Foundry Authors." 5 | "font_desc_inconsolata","A variant of Inconsolata font (originally by Raph Levien)\nwith addition of Greek and Cyrillic characters." 6 | "font_desc_pt","A typewriter font by ParaType with excellent Cyrillic typography." 7 | "font_desc_ubuntu","A font by Canonical with a very distinct style,\ndesigned for the eponymous Linux distribution." 8 | -------------------------------------------------------------------------------- /text/en/font_info.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/font_info.en.translation" ] 9 | 10 | source_file="res://text/en/font_info.csv" 11 | dest_files=[ "res://text/en/font_info.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/font_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/font_manager.en.translation" ] 9 | 10 | source_file="res://text/en/font_manager.csv" 11 | dest_files=[ "res://text/en/font_manager.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/fonts_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/fonts_tab.en.translation" ] 9 | 10 | source_file="res://text/en/fonts_tab.csv" 11 | dest_files=[ "res://text/en/fonts_tab.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/game_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/game_tab.en.translation" ] 9 | 10 | source_file="res://text/en/game_tab.csv" 11 | dest_files=[ "res://text/en/game_tab.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/general.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/general.en.translation" ] 9 | 10 | source_file="res://text/en/general.csv" 11 | dest_files=[ "res://text/en/general.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/helpers.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "msg_file_read_fail","Could not open file %s (error %s)." 4 | "msg_file_write_fail","Could not open file %s for writing (error %s)." 5 | "msg_debug_file_path","Full path: %s" 6 | "msg_json_parse_fail","Could not parse contents of %s." 7 | "msg_debug_json_result","JSON parse result:\nError code: %s\nError message: %s\nError line: %s" 8 | -------------------------------------------------------------------------------- /text/en/helpers.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/helpers.en.translation" ] 9 | 10 | source_file="res://text/en/helpers.csv" 11 | dest_files=[ "res://text/en/helpers.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/install_probe.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "msg_cannot_create_install_info","Could not create install info file %s" 4 | "msg_cannot_parse_install_info","Could not parse install info file %s" 5 | -------------------------------------------------------------------------------- /text/en/install_probe.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/install_probe.en.translation" ] 9 | 10 | source_file="res://text/en/install_probe.csv" 11 | dest_files=[ "res://text/en/install_probe.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/mod_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/mod_manager.en.translation" ] 9 | 10 | source_file="res://text/en/mod_manager.csv" 11 | dest_files=[ "res://text/en/mod_manager.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/mod_reinstall_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "dlg_mod_reinstall_title","Confirm Mod Reinstall" 4 | "dlg_mod_reinstall_text_single","One of the selected mods is already installed.\nDelete and reinstall it?" 5 | "dlg_mod_reinstall_text_multiple","%s of the selected mods are already installed.\nDelete and reinstall them?" 6 | -------------------------------------------------------------------------------- /text/en/mod_reinstall_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/mod_reinstall_dialog.en.translation" ] 9 | 10 | source_file="res://text/en/mod_reinstall_dialog.csv" 11 | dest_files=[ "res://text/en/mod_reinstall_dialog.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/mods_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/mods_tab.en.translation" ] 9 | 10 | source_file="res://text/en/mods_tab.csv" 11 | dest_files=[ "res://text/en/mods_tab.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/release_installer.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "msg_updating_game","Updating to %s..." 4 | "msg_installing_game","Installing %s..." 5 | "msg_game_updated","Update finished." 6 | "msg_game_installed","Installation finished." 7 | "msg_deleting_game","Removing %s..." 8 | "msg_game_deleted","Removal finished." 9 | "msg_delete_not_found","Attempted to remove release \"%s\", but could not find it on disk." -------------------------------------------------------------------------------- /text/en/release_installer.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/release_installer.en.translation" ] 9 | 10 | source_file="res://text/en/release_installer.csv" 11 | dest_files=[ "res://text/en/release_installer.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/release_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/release_manager.en.translation" ] 9 | 10 | source_file="res://text/en/release_manager.csv" 11 | dest_files=[ "res://text/en/release_manager.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/settings_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "msg_creating_settings","Creating settings file %s." 4 | "msg_nonexistent_attempt","Attempted to load settings from nonexistent file %s" 5 | "msg_loading_settings","Loading settings from %s." 6 | "msg_settings_parse_error","Error parsing settings from JSON, line %s, message: %s" 7 | "msg_nonexisting_setting","Attempted to read nonexistent setting \""%s\""" 8 | -------------------------------------------------------------------------------- /text/en/settings_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/settings_manager.en.translation" ] 9 | 10 | source_file="res://text/en/settings_manager.csv" 11 | dest_files=[ "res://text/en/settings_manager.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/settings_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/settings_tab.en.translation" ] 9 | 10 | source_file="res://text/en/settings_tab.csv" 11 | dest_files=[ "res://text/en/settings_tab.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/soundpack_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","en" 2 | , 3 | "msg_no_sound_dir","Sound directory does not exist: %s" 4 | "msg_deleting_sound","Deleting %s" 5 | "msg_soundpack_not_found","Could not find soundpack named \""%s\""" 6 | "msg_installing_sound","Installing soundpack \""%s\""..." 7 | "msg_reinstalling_sound","Reinstalling soundpack \""%s\""..." 8 | "msg_sound_download_failed","Could not download soundpack archive." 9 | "msg_sound_installed","Soundpack installed." 10 | -------------------------------------------------------------------------------- /text/en/soundpack_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/soundpack_manager.en.translation" ] 9 | 10 | source_file="res://text/en/soundpack_manager.csv" 11 | dest_files=[ "res://text/en/soundpack_manager.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/soundpacks_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/soundpacks_tab.en.translation" ] 9 | 10 | source_file="res://text/en/soundpacks_tab.csv" 11 | dest_files=[ "res://text/en/soundpacks_tab.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/en/tips.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/en/tips.en.translation" ] 9 | 10 | source_file="res://text/en/tips.csv" 11 | dest_files=[ "res://text/en/tips.en.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/backup_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "msg_backing_up_saves","Guardando backups en \""%s\""..." 4 | "msg_backup_created","Backup creado." 5 | "msg_backup_name_taken","El backup llamado \""%s\"" ya existe." 6 | "msg_restoring_backup","Restaurando backup \""%s\""..." 7 | "msg_backup_restored","Backup restaurado." 8 | "msg_backup_not_found","No se encontró el backup \""%s\""." 9 | "msg_deleting_backup","Eliminando backup \""%s\""..." 10 | "msg_backup_deleted","Backup eliminad." 11 | -------------------------------------------------------------------------------- /text/es/backup_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/backup_manager.es.translation" ] 9 | 10 | source_file="res://text/es/backup_manager.csv" 11 | dest_files=[ "res://text/es/backup_manager.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/backups_tab.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "lbl_save_backups","Carpeta de backups guardados:" 4 | "btn_restore_backup","Restaurar" 5 | "btn_delete_backup","Borrar" 6 | "btn_refresh_backups","Refrescar" 7 | "lbl_manual_backup","Backup manual" 8 | "lbl_backup_name","Nombre:" 9 | "btn_create_backup","Crear" 10 | "lbl_backup_info_placeholder","Selecciona un backup para ver sus detalles." 11 | , 12 | "backup_info_location","Carpeta:" 13 | "backup_info_worlds","Mundos:" 14 | -------------------------------------------------------------------------------- /text/es/backups_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/backups_tab.es.translation" ] 9 | 10 | source_file="res://text/es/backups_tab.csv" 11 | dest_files=[ "res://text/es/backups_tab.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/changelog_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/changelog_dialog.es.translation" ] 9 | 10 | source_file="res://text/es/changelog_dialog.csv" 11 | dest_files=[ "res://text/es/changelog_dialog.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/dialog_buttons.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "btn_close","Cerrar" 4 | "btn_ok","OK" 5 | "btn_cancel","Cancelar" 6 | "btn_yes","Si" 7 | "btn_no","No" 8 | "btn_reinstall","Reinstalar" 9 | "btn_skip","Saltear" 10 | -------------------------------------------------------------------------------- /text/es/dialog_buttons.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/dialog_buttons.es.translation" ] 9 | 10 | source_file="res://text/es/dialog_buttons.csv" 11 | dest_files=[ "res://text/es/dialog_buttons.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/download_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "unit_kb","KB" 4 | "unit_mb","MB" 5 | "unit_kbps","KB/s" 6 | "unit_mbps","MB/s" 7 | , 8 | "msg_downloading_file","Descargando %s..." 9 | "msg_download_progress","Descargando:" 10 | "str_dl_speed_at","a" 11 | "msg_download_finished","La descarga de %s se ha completado." 12 | "msg_download_failed","La descarga ha fallado %s." 13 | "msg_http_request_info","[b]Info HTTPRequest:[/b]\n[u]Resultado:[/u] %s\n[u]Código de respuesta:[/u] %s\n[u]Cabeceras:[/u] %s" 14 | -------------------------------------------------------------------------------- /text/es/download_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/download_manager.es.translation" ] 9 | 10 | source_file="res://text/es/download_manager.csv" 11 | dest_files=[ "res://text/es/download_manager.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/easter_egg.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "msg_easter_egg_warning","CUIDADO!" 4 | "msg_easter_egg_activated","OH NO, LO HAS ROTO!!" 5 | -------------------------------------------------------------------------------- /text/es/easter_egg.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/easter_egg.es.translation" ] 9 | 10 | source_file="res://text/es/easter_egg.csv" 11 | dest_files=[ "res://text/es/easter_egg.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/filesystem_helper.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/filesystem_helper.es.translation" ] 9 | 10 | source_file="res://text/es/filesystem_helper.csv" 11 | dest_files=[ "res://text/es/filesystem_helper.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/font_help_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/font_help_dialog.es.translation" ] 9 | 10 | source_file="res://text/es/font_help_dialog.csv" 11 | dest_files=[ "res://text/es/font_help_dialog.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/font_info.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/font_info.es.translation" ] 9 | 10 | source_file="res://text/es/font_info.csv" 11 | dest_files=[ "res://text/es/font_info.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/font_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/font_manager.es.translation" ] 9 | 10 | source_file="res://text/es/font_manager.csv" 11 | dest_files=[ "res://text/es/font_manager.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/fonts_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/fonts_tab.es.translation" ] 9 | 10 | source_file="res://text/es/fonts_tab.csv" 11 | dest_files=[ "res://text/es/fonts_tab.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/game_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/game_tab.es.translation" ] 9 | 10 | source_file="res://text/es/game_tab.csv" 11 | dest_files=[ "res://text/es/game_tab.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/general.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/general.es.translation" ] 9 | 10 | source_file="res://text/es/general.csv" 11 | dest_files=[ "res://text/es/general.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/helpers.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "msg_file_read_fail","No se pudo abrir el archivo %s (error %s)." 4 | "msg_file_write_fail","No se pudo abrir el archivo %s para escritura (error %s)." 5 | "msg_debug_file_path","Ruta completa: %s" 6 | "msg_json_parse_fail","No se pudo analizar el contenido de %s." 7 | "msg_debug_json_result","Resultado de análisis del JSON:\nCódigo de error: %s\nMensaje de error: %s\nLínea de error: %s" 8 | -------------------------------------------------------------------------------- /text/es/helpers.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/helpers.es.translation" ] 9 | 10 | source_file="res://text/es/helpers.csv" 11 | dest_files=[ "res://text/es/helpers.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/install_probe.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "msg_cannot_create_install_info","No se pudo crear el archivo de información de instalación %s." 4 | "msg_cannot_parse_install_info","No se pudo analizar el archivo de información de instalación %s." 5 | -------------------------------------------------------------------------------- /text/es/install_probe.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/install_probe.es.translation" ] 9 | 10 | source_file="res://text/es/install_probe.csv" 11 | dest_files=[ "res://text/es/install_probe.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/mod_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/mod_manager.es.translation" ] 9 | 10 | source_file="res://text/es/mod_manager.csv" 11 | dest_files=[ "res://text/es/mod_manager.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/mod_reinstall_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "dlg_mod_reinstall_title","Confirma la reinstalación del mod" 4 | "dlg_mod_reinstall_text_single","Uno de los mods seleccionados ya esta instalado.\n¿Quieres eliminarlo y reinstalarlo?" 5 | "dlg_mod_reinstall_text_multiple","%s de los mods seleccionados ya están instalados.\n¿Quieres eliminarlos y reinstalarlos?" 6 | -------------------------------------------------------------------------------- /text/es/mod_reinstall_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/mod_reinstall_dialog.es.translation" ] 9 | 10 | source_file="res://text/es/mod_reinstall_dialog.csv" 11 | dest_files=[ "res://text/es/mod_reinstall_dialog.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/mods_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/mods_tab.es.translation" ] 9 | 10 | source_file="res://text/es/mods_tab.csv" 11 | dest_files=[ "res://text/es/mods_tab.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/release_installer.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "msg_updating_game","Actualizando a %s..." 4 | "msg_installing_game","Instalando %s..." 5 | "msg_game_updated","Actualización terminada." 6 | "msg_game_installed","Instalación terminada." 7 | "msg_deleting_game","Eliminando %s..." 8 | "msg_game_deleted","Eliminación finalizada". 9 | "msg_delete_not_found","Intenté eliminar la versión \"%s\", pero no pude encontrarla en el disco". 10 | -------------------------------------------------------------------------------- /text/es/release_installer.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/release_installer.es.translation" ] 9 | 10 | source_file="res://text/es/release_installer.csv" 11 | dest_files=[ "res://text/es/release_installer.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/release_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "msg_unsupported_platform","Plataforma no soportada: \""%s\""" 4 | "msg_releases_request_failed","Solicitud fallida.¿Tienes conexión a internet?" 5 | "msg_releases_api_failure","No se pudo obtener la lista de versiones. GitHub dice: %s" 6 | "msg_got_n_releases","Hay %s lanzamientos." 7 | "msg_fetching_releases_dda","Buscando lanzamientos para DDA Experimental..." 8 | "msg_fetching_releases_bn","Buscando lanzamientos para BN Experimental..." 9 | "msg_invalid_fetch_func_param","ReleaseManager.fetch() pasó %s" 10 | -------------------------------------------------------------------------------- /text/es/release_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/release_manager.es.translation" ] 9 | 10 | source_file="res://text/es/release_manager.csv" 11 | dest_files=[ "res://text/es/release_manager.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/settings_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "msg_creating_settings","Creando archivos de configuración %s." 4 | "msg_nonexistent_attempt","Se intentó cargar la configuración del archivo inexistente %s" 5 | "msg_loading_settings","Cargando configuraciones de %s." 6 | "msg_settings_parse_error","Error al analizar la configuración del JSON, linea %s, mensaje: %s" 7 | "msg_nonexisting_setting","Se intento leer configuración inexistente \""%s\""" 8 | -------------------------------------------------------------------------------- /text/es/settings_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/settings_manager.es.translation" ] 9 | 10 | source_file="res://text/es/settings_manager.csv" 11 | dest_files=[ "res://text/es/settings_manager.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/settings_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/settings_tab.es.translation" ] 9 | 10 | source_file="res://text/es/settings_tab.csv" 11 | dest_files=[ "res://text/es/settings_tab.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/soundpack_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","es" 2 | , 3 | "msg_no_sound_dir","La carpeta de sonido no existe: %s" 4 | "msg_deleting_sound","Eliminando %s" 5 | "msg_soundpack_not_found","No se pudo encontrar el paquete de sonido llamado \""%s\""" 6 | "msg_installing_sound","Instalando paquete de sonido \""%s\""..." 7 | "msg_reinstalling_sound","Reinstalando paquete de sonido \""%s\""..." 8 | "msg_sound_download_failed","No se pudo descargar el paquete de sonido." 9 | "msg_sound_installed","Paquete de sonido instalado." 10 | -------------------------------------------------------------------------------- /text/es/soundpack_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/soundpack_manager.es.translation" ] 9 | 10 | source_file="res://text/es/soundpack_manager.csv" 11 | dest_files=[ "res://text/es/soundpack_manager.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/soundpacks_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/soundpacks_tab.es.translation" ] 9 | 10 | source_file="res://text/es/soundpacks_tab.csv" 11 | dest_files=[ "res://text/es/soundpacks_tab.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/es/tips.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/es/tips.es.translation" ] 9 | 10 | source_file="res://text/es/tips.csv" 11 | dest_files=[ "res://text/es/tips.es.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/backup_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "msg_backing_up_saves","Archive les sauvegardes existantes vers \""%s\""..." 4 | "msg_backup_created","Archive créée." 5 | "msg_backup_name_taken","Une archive nommée \""%s\"" existe déjà." 6 | "msg_restoring_backup","Restaure l’archive \""%s\""..." 7 | "msg_backup_restored","Archive restaurée." 8 | "msg_backup_not_found","Archive \""%s\"" non trouvée." 9 | "msg_deleting_backup","Supprime l’archive \""%s\""" 10 | "msg_backup_deleted","Archive supprimée" 11 | -------------------------------------------------------------------------------- /text/fr/backup_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/backup_manager.fr.translation" ] 9 | 10 | source_file="res://text/fr/backup_manager.csv" 11 | dest_files=[ "res://text/fr/backup_manager.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/backups_tab.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "lbl_save_backups","Répertoire des archives de sauvegarde" 4 | "btn_restore_backup","Restaurer" 5 | "btn_delete_backup","Supprimer" 6 | "btn_refresh_backups","Actualiser" 7 | "lbl_manual_backup","Archive manuelle" 8 | "lbl_backup_name","Nom:" 9 | "btn_create_backup","Créer" 10 | "lbl_backup_info_placeholder","Sélectionner une archive existante pour voir ses détails ici." 11 | , 12 | "backup_info_location","Endroit:" 13 | "backup_info_worlds","Mondes:" 14 | -------------------------------------------------------------------------------- /text/fr/backups_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/backups_tab.fr.translation" ] 9 | 10 | source_file="res://text/fr/backups_tab.csv" 11 | dest_files=[ "res://text/fr/backups_tab.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/changelog_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/changelog_dialog.fr.translation" ] 9 | 10 | source_file="res://text/fr/changelog_dialog.csv" 11 | dest_files=[ "res://text/fr/changelog_dialog.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/dialog_buttons.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "btn_close","Fermer" 4 | "btn_ok","OK" 5 | "btn_cancel","Annuler" 6 | "btn_yes","Oui" 7 | "btn_no","Non" 8 | "btn_reinstall","Réinstaller" 9 | "btn_skip","Passer" 10 | -------------------------------------------------------------------------------- /text/fr/dialog_buttons.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/dialog_buttons.fr.translation" ] 9 | 10 | source_file="res://text/fr/dialog_buttons.csv" 11 | dest_files=[ "res://text/fr/dialog_buttons.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/download_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "unit_kb","Ko" 4 | "unit_mb","Mo" 5 | "unit_kbps","Ko/s" 6 | "unit_mbps","Mo/s" 7 | , 8 | "msg_downloading_file","Télécharge %s" 9 | "msg_download_progress","Téléchargement: " 10 | "str_dl_speed_at","à" 11 | "msg_download_finished","Téléchargement terminé: %s" 12 | "msg_download_failed","Échec de téléchargement: %s" 13 | "msg_http_request_info","[b]Info Requête HTTP:[/b]\n[u]Résultat:[/u] %s\n[u]Réponse[/u] %s\n[u]En-tête[/u] %s" 14 | -------------------------------------------------------------------------------- /text/fr/download_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/download_manager.fr.translation" ] 9 | 10 | source_file="res://text/fr/download_manager.csv" 11 | dest_files=[ "res://text/fr/download_manager.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/easter_egg.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "msg_easter_egg_warning","ATTENTION!!" 4 | "msg_easter_egg_activated","OH NON, TOUT EST CASSÉ!" 5 | -------------------------------------------------------------------------------- /text/fr/easter_egg.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/easter_egg.fr.translation" ] 9 | 10 | source_file="res://text/fr/easter_egg.csv" 11 | dest_files=[ "res://text/fr/easter_egg.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/filesystem_helper.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/filesystem_helper.fr.translation" ] 9 | 10 | source_file="res://text/fr/filesystem_helper.csv" 11 | dest_files=[ "res://text/fr/filesystem_helper.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/font_help_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/font_help_dialog.fr.translation" ] 9 | 10 | source_file="res://text/fr/font_help_dialog.csv" 11 | dest_files=[ "res://text/fr/font_help_dialog.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/font_info.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/font_info.fr.translation" ] 9 | 10 | source_file="res://text/fr/font_info.csv" 11 | dest_files=[ "res://text/fr/font_info.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/font_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/font_manager.fr.translation" ] 9 | 10 | source_file="res://text/fr/font_manager.csv" 11 | dest_files=[ "res://text/fr/font_manager.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/fonts_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/fonts_tab.fr.translation" ] 9 | 10 | source_file="res://text/fr/fonts_tab.csv" 11 | dest_files=[ "res://text/fr/fonts_tab.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/game_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/game_tab.fr.translation" ] 9 | 10 | source_file="res://text/fr/game_tab.csv" 11 | dest_files=[ "res://text/fr/game_tab.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/general.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/general.fr.translation" ] 9 | 10 | source_file="res://text/fr/general.csv" 11 | dest_files=[ "res://text/fr/general.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/helpers.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "msg_file_read_fail","Impossible d'ouvrir le fichier %s (erreur %s)." 4 | "msg_file_write_fail","Impossible d'ouvrir le fichier %s en écriture (erreur %s)." 5 | "msg_debug_file_path","Chemin complet: %s" 6 | "msg_json_parse_fail","Impossible d'analyser le contenu de %s." 7 | "msg_debug_json_result","Résultat de l'analyse JSON:\nCode d'erreur: %s\nMessage d'erreur: %s\nLigne d'erreur: %s" 8 | -------------------------------------------------------------------------------- /text/fr/helpers.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/helpers.fr.translation" ] 9 | 10 | source_file="res://text/fr/helpers.csv" 11 | dest_files=[ "res://text/fr/helpers.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/install_probe.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "msg_cannot_create_install_info","Impossible de créer le fichier d’installation %s" 4 | "msg_cannot_parse_install_info","Impossible d’analyser le fichier d’installation %s" 5 | -------------------------------------------------------------------------------- /text/fr/install_probe.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/install_probe.fr.translation" ] 9 | 10 | source_file="res://text/fr/install_probe.csv" 11 | dest_files=[ "res://text/fr/install_probe.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/mod_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/mod_manager.fr.translation" ] 9 | 10 | source_file="res://text/fr/mod_manager.csv" 11 | dest_files=[ "res://text/fr/mod_manager.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/mod_reinstall_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "dlg_mod_reinstall_title","Confirmation de réinstallation des Mods" 4 | "dlg_mod_reinstall_text_single","Un des mods sélectionné est déjà installé.\nSupprimer et réinstaller?" 5 | "dlg_mod_reinstall_text_multiple","%s des mods sélectionnés sont déjà installés.\nLes supprimer et les réinstaller?" 6 | -------------------------------------------------------------------------------- /text/fr/mod_reinstall_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/mod_reinstall_dialog.fr.translation" ] 9 | 10 | source_file="res://text/fr/mod_reinstall_dialog.csv" 11 | dest_files=[ "res://text/fr/mod_reinstall_dialog.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/mods_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/mods_tab.fr.translation" ] 9 | 10 | source_file="res://text/fr/mods_tab.csv" 11 | dest_files=[ "res://text/fr/mods_tab.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/release_installer.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "msg_updating_game","Mettre à jour vers %s..." 4 | "msg_installing_game","Installe %s..." 5 | "msg_game_updated","Mise à jour terminée." 6 | "msg_game_installed","Installation terminée." 7 | "msg_deleting_game","Suppression de %s..." 8 | "msg_game_deleted","Suppression terminée." 9 | "msg_delete_not_found","Tentative de suppression de la version \"%s\", mais introuvable sur le disque." 10 | -------------------------------------------------------------------------------- /text/fr/release_installer.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/release_installer.fr.translation" ] 9 | 10 | source_file="res://text/fr/release_installer.csv" 11 | dest_files=[ "res://text/fr/release_installer.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/release_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "msg_unsupported_platform","Plateforme non supportée: \""%s\""" 4 | "msg_releases_request_failed","Échec de la requête. Vérifier votre connexion Internet." 5 | "msg_releases_api_failure","Impossible de récupérer la liste des versions. GitHub indique: %s" 6 | "msg_got_n_releases","Trouvé %s versions." 7 | "msg_fetching_releases_dda","Cherche les dernières versions de DDA Expérimental..." 8 | "msg_fetching_releases_bn","Cherche les dernières versions de BN Expérimental..." 9 | "msg_invalid_fetch_func_param","ReleaseManager.fetch() a passé %s" 10 | -------------------------------------------------------------------------------- /text/fr/release_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/release_manager.fr.translation" ] 9 | 10 | source_file="res://text/fr/release_manager.csv" 11 | dest_files=[ "res://text/fr/release_manager.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/settings_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "msg_creating_settings","Crée le fichier de paramètres %s" 4 | "msg_nonexistent_attempt","Essaie de lire les paramètres d’un fichier inexistant %s" 5 | "msg_loading_settings","Charge les paramètres depuis %s" 6 | "msg_settings_parse_error","Erreur d’analyse des paramètres depuis JSON, ligne %s, message: %s" 7 | "msg_nonexisting_setting","Essaie de lire le paramètre \""%s\"" inexistant" 8 | -------------------------------------------------------------------------------- /text/fr/settings_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/settings_manager.fr.translation" ] 9 | 10 | source_file="res://text/fr/settings_manager.csv" 11 | dest_files=[ "res://text/fr/settings_manager.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/settings_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/settings_tab.fr.translation" ] 9 | 10 | source_file="res://text/fr/settings_tab.csv" 11 | dest_files=[ "res://text/fr/settings_tab.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/soundpack_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","fr" 2 | , 3 | "msg_no_sound_dir","Le répertoire des sons n’existe pas: %s" 4 | "msg_deleting_sound","Supprime %s" 5 | "msg_soundpack_not_found","Impossible de trouver le pack de sons nommé \""%s\""" 6 | "msg_installing_sound","Installe le pack de sons \""%s\""..." 7 | "msg_reinstalling_sound","Réinstalle le pack de sons \""%s\""..." 8 | "msg_sound_download_failed","Impossible de télécharger l’archive du pack de sons" 9 | "msg_sound_installed","Pack de sons installé" 10 | -------------------------------------------------------------------------------- /text/fr/soundpack_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/soundpack_manager.fr.translation" ] 9 | 10 | source_file="res://text/fr/soundpack_manager.csv" 11 | dest_files=[ "res://text/fr/soundpack_manager.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/soundpacks_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/soundpacks_tab.fr.translation" ] 9 | 10 | source_file="res://text/fr/soundpacks_tab.csv" 11 | dest_files=[ "res://text/fr/soundpacks_tab.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/fr/tips.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/fr/tips.fr.translation" ] 9 | 10 | source_file="res://text/fr/tips.csv" 11 | dest_files=[ "res://text/fr/tips.fr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/backup_manager.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | msg_backing_up_saves,"현재 저장 내용을 \""%s\""에 백업하는 중..." 4 | msg_backup_created,백업이 생성되었습니다. 5 | msg_backup_name_taken,"\""%s\""이라는 백업이 이미 존재합니다." 6 | msg_restoring_backup,"백업 \""%s\"" 복원 중..." 7 | msg_backup_restored,백업이 복원되었습니다. 8 | msg_backup_not_found,"백업 \""%s\""을(를) 찾을 수 없습니다." 9 | msg_deleting_backup,"백업 \""%s\"" 삭제 중..." 10 | msg_backup_deleted,백업이 삭제되었습니다. 11 | -------------------------------------------------------------------------------- /text/ko/backup_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/backup_manager.ko.translation" ] 9 | 10 | source_file="res://text/ko/backup_manager.csv" 11 | dest_files=[ "res://text/ko/backup_manager.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/backups_tab.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | lbl_save_backups,디렉터리 백업 저장: 4 | btn_restore_backup,복원 5 | btn_delete_backup,삭제 6 | btn_refresh_backups,새로고침 7 | lbl_manual_backup,수동 백업 8 | lbl_backup_name,이름: 9 | btn_create_backup,생성 10 | lbl_backup_info_placeholder,여기에서 세부정보를 보려면 존재하는 백업을 선택하세요. 11 | , 12 | backup_info_location,위치: 13 | backup_info_worlds,세계: 14 | -------------------------------------------------------------------------------- /text/ko/backups_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/backups_tab.ko.translation" ] 9 | 10 | source_file="res://text/ko/backups_tab.csv" 11 | dest_files=[ "res://text/ko/backups_tab.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/changelog_dialog.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | dlg_changelog_title,최근 변경사항 4 | str_fetching_changes,GitHub에서 최근 변경사항을 가져오는 중입니다. 기다리세요... 5 | str_error_retrieving_data,GitHub API에서 데이터를 검색하는 중에 오류가 발생했습니다. 6 | str_hhtp_response_code,\n\nHTTP 응답 코드: %s 7 | str_github_says,\nGitHub 내용: [i]%s[/i] 8 | str_try_later,\n\n나중에 다시 시도해 주세요. 9 | str_changelog_intro,마지막 [b]%s[/b]개의 완료된 풀 리퀘스트(코드 추가)를 [b]%s[/b]에서 가져옵니다.\n\n항목을 클릭하면 GitHub에서 해당 PR을 보고 다음에 대해 자세히 알아볼 수 있습니다.\n 10 | -------------------------------------------------------------------------------- /text/ko/changelog_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/changelog_dialog.ko.translation" ] 9 | 10 | source_file="res://text/ko/changelog_dialog.csv" 11 | dest_files=[ "res://text/ko/changelog_dialog.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/dialog_buttons.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | btn_close,닫기 4 | btn_ok,확인 5 | btn_cancel,취소 6 | btn_yes,예 7 | btn_no,아니오 8 | btn_reinstall,재설치 9 | btn_skip,건너뛰기 10 | -------------------------------------------------------------------------------- /text/ko/dialog_buttons.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/dialog_buttons.ko.translation" ] 9 | 10 | source_file="res://text/ko/dialog_buttons.csv" 11 | dest_files=[ "res://text/ko/dialog_buttons.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/download_manager.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | unit_kb,KB 4 | unit_mb,MB 5 | unit_kbps,KB/초 6 | unit_mbps,MB/초 7 | , 8 | msg_downloading_file,%s 다운로드 중... 9 | msg_download_progress,다운로드 중: 10 | str_dl_speed_at,속도: 11 | msg_download_finished,%s 다운로드가 완료되었습니다. 12 | msg_download_failed,%s를 다운로드하지 못했습니다. 13 | msg_http_request_info,[b]HTTP요청 정보:[/b]\n[u]결과:[/u] %s\n[u]응답 코드:[/u] %s\n[u]헤더:[/u] %s 14 | -------------------------------------------------------------------------------- /text/ko/download_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/download_manager.ko.translation" ] 9 | 10 | source_file="res://text/ko/download_manager.csv" 11 | dest_files=[ "res://text/ko/download_manager.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/easter_egg.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | msg_easter_egg_warning,조심해! 4 | msg_easter_egg_activated,"오 안돼, 네가 망쳤어!!" 5 | -------------------------------------------------------------------------------- /text/ko/easter_egg.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/easter_egg.ko.translation" ] 9 | 10 | source_file="res://text/ko/easter_egg.csv" 11 | dest_files=[ "res://text/ko/easter_egg.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/filesystem_helper.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/filesystem_helper.ko.translation" ] 9 | 10 | source_file="res://text/ko/filesystem_helper.csv" 11 | dest_files=[ "res://text/ko/filesystem_helper.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/font_help_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/font_help_dialog.ko.translation" ] 9 | 10 | source_file="res://text/ko/font_help_dialog.csv" 11 | dest_files=[ "res://text/ko/font_help_dialog.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/font_info.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | font_desc_fantasque,Jany Belluz의 다소 기발한 고정폭 글꼴입니다. 4 | font_desc_hack,가독성에 중점을 두고 주로 소스 코드용으로\n설계된 주력 글꼴입니다. By Source Foundry Authors. 5 | font_desc_inconsolata,Inconsolata 글꼴의 변형(원래 Raph Levien 제작)\n그리스어 및 키릴 문자가 추가되었습니다. 6 | font_desc_pt,뛰어난 키릴 문자 타이포그래피를 갖춘 ParaType의 타자기 글꼴입니다. 7 | font_desc_ubuntu,"매우 독특한 스타일을 지닌 Canonical의 글꼴로,\n동명의 Linux 배포판용으로 디자인되었습니다." 8 | -------------------------------------------------------------------------------- /text/ko/font_info.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/font_info.ko.translation" ] 9 | 10 | source_file="res://text/ko/font_info.csv" 11 | dest_files=[ "res://text/ko/font_info.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/font_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/font_manager.ko.translation" ] 9 | 10 | source_file="res://text/ko/font_manager.csv" 11 | dest_files=[ "res://text/ko/font_manager.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/fonts_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/fonts_tab.ko.translation" ] 9 | 10 | source_file="res://text/ko/fonts_tab.csv" 11 | dest_files=[ "res://text/ko/fonts_tab.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/game_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/game_tab.ko.translation" ] 9 | 10 | source_file="res://text/ko/game_tab.csv" 11 | dest_files=[ "res://text/ko/game_tab.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/general.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/general.ko.translation" ] 9 | 10 | source_file="res://text/ko/general.csv" 11 | dest_files=[ "res://text/ko/general.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/helpers.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | msg_file_read_fail,%s 파일을 열 수 없습니다(오류 %s). 4 | msg_file_write_fail,쓰기 위해 %s 파일을 열 수 없습니다(오류 %s). 5 | msg_debug_file_path,전체 경로: %s 6 | msg_json_parse_fail,%s의 내용을 읽어들일 수 없습니다. 7 | msg_debug_json_result,JSON 구문 분석 결과:\n오류 코드: %s\n오류 메시지: %s\n오류 줄: %s 8 | -------------------------------------------------------------------------------- /text/ko/helpers.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/helpers.ko.translation" ] 9 | 10 | source_file="res://text/ko/helpers.csv" 11 | dest_files=[ "res://text/ko/helpers.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/install_probe.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | msg_cannot_create_install_info,설치 정보 파일 %s을(를) 생성할 수 없습니다. 4 | msg_cannot_parse_install_info,설치 정보 파일 %s을(를) 읽을 수 없습니다. 5 | -------------------------------------------------------------------------------- /text/ko/install_probe.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/install_probe.ko.translation" ] 9 | 10 | source_file="res://text/ko/install_probe.csv" 11 | dest_files=[ "res://text/ko/install_probe.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/mod_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/mod_manager.ko.translation" ] 9 | 10 | source_file="res://text/ko/mod_manager.csv" 11 | dest_files=[ "res://text/ko/mod_manager.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/mod_reinstall_dialog.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | dlg_mod_reinstall_title,모드 재설치 확인 4 | dlg_mod_reinstall_text_single,선택한 모드 중 하나가 이미 설치되어 있습니다.\n삭제하고 다시 설치하시겠습니까? 5 | dlg_mod_reinstall_text_multiple,선택한 모드 중 %s이(가) 이미 설치되어 있습니다.\n삭제하고 다시 설치하시겠습니까? 6 | -------------------------------------------------------------------------------- /text/ko/mod_reinstall_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/mod_reinstall_dialog.ko.translation" ] 9 | 10 | source_file="res://text/ko/mod_reinstall_dialog.csv" 11 | dest_files=[ "res://text/ko/mod_reinstall_dialog.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/mods_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/mods_tab.ko.translation" ] 9 | 10 | source_file="res://text/ko/mods_tab.csv" 11 | dest_files=[ "res://text/ko/mods_tab.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/release_installer.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | msg_updating_game,%s(으)로 업데이트 중... 4 | msg_installing_game,%s 설치 중... 5 | msg_game_updated,업데이트가 완료되었습니다. 6 | msg_game_installed,설치가 완료되었습니다. 7 | msg_deleting_game,%s 제거 중... 8 | msg_game_deleted,제거가 완료되었습니다. 9 | msg_delete_not_found,"릴리스 \"%s\"을(를) 제거하려고 시도했지만, 디스크에서 찾을 수 없었습니다." 10 | -------------------------------------------------------------------------------- /text/ko/release_installer.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/release_installer.ko.translation" ] 9 | 10 | source_file="res://text/ko/release_installer.csv" 11 | dest_files=[ "res://text/ko/release_installer.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/release_manager.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | msg_unsupported_platform,"지원되지 않는 플랫폼: \"%s\"" 4 | msg_releases_request_failed,요청이 실패했습니다. 인터넷에 연결되어 있나요? 5 | msg_releases_api_failure,빌드 목록을 가져올 수 없습니다. GitHub의 내용: %s 6 | msg_got_n_releases,%s개의 릴리스를 받았습니다. 7 | msg_fetching_releases_dda,DDA 실험용 릴리스를 가져오는 중... 8 | msg_fetching_releases_bn,BN 실험용 릴리스를 가져오는 중... 9 | msg_invalid_fetch_func_param,ReleaseManager.fetch()가 %s에 전달되었습니다. 10 | -------------------------------------------------------------------------------- /text/ko/release_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/release_manager.ko.translation" ] 9 | 10 | source_file="res://text/ko/release_manager.csv" 11 | dest_files=[ "res://text/ko/release_manager.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/settings_manager.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | msg_creating_settings,설정 파일 %s을(를) 만드는 중입니다. 4 | msg_nonexistent_attempt,존재하지 않는 파일 %s에서 설정을 로드하려고 시도했습니다. 5 | msg_loading_settings,%s에서 설정을 로드하는 중입니다. 6 | msg_settings_parse_error,"JSON에서 설정을 구문 분석하는 중 오류가 발생했습니다. %s행, 메시지: %s" 7 | msg_nonexisting_setting,"존재하지 않는 설정 \""%s\""을(를) 읽으려고 시도했습니다." 8 | -------------------------------------------------------------------------------- /text/ko/settings_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/settings_manager.ko.translation" ] 9 | 10 | source_file="res://text/ko/settings_manager.csv" 11 | dest_files=[ "res://text/ko/settings_manager.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/settings_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/settings_tab.ko.translation" ] 9 | 10 | source_file="res://text/ko/settings_tab.csv" 11 | dest_files=[ "res://text/ko/settings_tab.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/soundpack_manager.csv: -------------------------------------------------------------------------------- 1 | keys,ko 2 | , 3 | msg_no_sound_dir,사운드 디렉터리가 존재하지 않습니다: %s 4 | msg_deleting_sound,%s 삭제 중 5 | msg_soundpack_not_found,"이름이 \""%s\""인 사운드팩을 찾을 수 없습니다." 6 | msg_installing_sound,"사운드팩 \""%s\"" 설치 중..." 7 | msg_reinstalling_sound,"사운드팩 \""%s\"" 재설치 중..." 8 | msg_sound_download_failed,사운드팩 아카이브를 다운로드할 수 없습니다. 9 | msg_sound_installed,사운드팩이 설치되었습니다. 10 | -------------------------------------------------------------------------------- /text/ko/soundpack_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/soundpack_manager.ko.translation" ] 9 | 10 | source_file="res://text/ko/soundpack_manager.csv" 11 | dest_files=[ "res://text/ko/soundpack_manager.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/soundpacks_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/soundpacks_tab.ko.translation" ] 9 | 10 | source_file="res://text/ko/soundpacks_tab.csv" 11 | dest_files=[ "res://text/ko/soundpacks_tab.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ko/tips.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ko/tips.ko.translation" ] 9 | 10 | source_file="res://text/ko/tips.csv" 11 | dest_files=[ "res://text/ko/tips.ko.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/backup_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "msg_backing_up_saves","Kopiowanie zapisów gry do\""%s\""..." 4 | "msg_backup_created","Kopia utworzona." 5 | "msg_backup_name_taken","Kopia o nazwie \""%s\"" już istnieje." 6 | "msg_restoring_backup","Przywracanie kopii \""%s\""..." 7 | "msg_backup_restored","Kopia przywrócona." 8 | "msg_backup_not_found","Kopia \""%s\"" nie istnieje." 9 | "msg_deleting_backup","Usuwanie kopii \""%s\""..." 10 | "msg_backup_deleted","Kopia usunięta." 11 | -------------------------------------------------------------------------------- /text/pl/backup_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/backup_manager.pl.translation" ] 9 | 10 | source_file="res://text/pl/backup_manager.csv" 11 | dest_files=[ "res://text/pl/backup_manager.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/backups_tab.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "lbl_save_backups","Kopie folderów zapisów:" 4 | "btn_restore_backup","Przywróć" 5 | "btn_delete_backup","Usuń" 6 | "btn_refresh_backups","Odśwież" 7 | "lbl_manual_backup","Kopia manualna" 8 | "lbl_backup_name","Nazwa:" 9 | "btn_create_backup","Utwórz" 10 | "lbl_backup_info_placeholder","Wybierz istniejącą kopię, aby zobaczyć jej szczegóły." 11 | , 12 | "backup_info_location","Lokalizacja:" 13 | "backup_info_worlds","Światy:" 14 | -------------------------------------------------------------------------------- /text/pl/backups_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/backups_tab.pl.translation" ] 9 | 10 | source_file="res://text/pl/backups_tab.csv" 11 | dest_files=[ "res://text/pl/backups_tab.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/changelog_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/changelog_dialog.pl.translation" ] 9 | 10 | source_file="res://text/pl/changelog_dialog.csv" 11 | dest_files=[ "res://text/pl/changelog_dialog.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/dialog_buttons.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "btn_close","Zamknij" 4 | "btn_ok","OK" 5 | "btn_cancel","Anuluj" 6 | "btn_yes","Tak" 7 | "btn_no","Nie" 8 | "btn_reinstall","Reinstalacja" 9 | "btn_skip","Pomiń" 10 | -------------------------------------------------------------------------------- /text/pl/dialog_buttons.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/dialog_buttons.pl.translation" ] 9 | 10 | source_file="res://text/pl/dialog_buttons.csv" 11 | dest_files=[ "res://text/pl/dialog_buttons.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/download_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "unit_kb","KB" 4 | "unit_mb","MB" 5 | "unit_kbps","KB/s" 6 | "unit_mbps","MB/s" 7 | , 8 | "msg_downloading_file","Pobieranie %s..." 9 | "msg_download_progress","Pobieranie:" 10 | "str_dl_speed_at","z prędkością" 11 | "msg_download_finished","Ukończono pobieranie %s." 12 | "msg_download_failed","Nie udało się pobrać %s." 13 | "msg_http_request_info","[b]HTTPRequest info:[/b]\n[u]Rezultat:[/u] %s\n[u]Kod odpowiedzi:[/u] %s\n[u]Nagłówki:[/u] %s" 14 | -------------------------------------------------------------------------------- /text/pl/download_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/download_manager.pl.translation" ] 9 | 10 | source_file="res://text/pl/download_manager.csv" 11 | dest_files=[ "res://text/pl/download_manager.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/easter_egg.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "msg_easter_egg_warning","UWAŻAJ!" 4 | "msg_easter_egg_activated","OCH NIE, POPSUŁEŚ TO!!" 5 | -------------------------------------------------------------------------------- /text/pl/easter_egg.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/easter_egg.pl.translation" ] 9 | 10 | source_file="res://text/pl/easter_egg.csv" 11 | dest_files=[ "res://text/pl/easter_egg.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/filesystem_helper.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/filesystem_helper.pl.translation" ] 9 | 10 | source_file="res://text/pl/filesystem_helper.csv" 11 | dest_files=[ "res://text/pl/filesystem_helper.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/font_help_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/font_help_dialog.pl.translation" ] 9 | 10 | source_file="res://text/pl/font_help_dialog.csv" 11 | dest_files=[ "res://text/pl/font_help_dialog.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/font_info.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/font_info.pl.translation" ] 9 | 10 | source_file="res://text/pl/font_info.csv" 11 | dest_files=[ "res://text/pl/font_info.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/font_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/font_manager.pl.translation" ] 9 | 10 | source_file="res://text/pl/font_manager.csv" 11 | dest_files=[ "res://text/pl/font_manager.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/fonts_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/fonts_tab.pl.translation" ] 9 | 10 | source_file="res://text/pl/fonts_tab.csv" 11 | dest_files=[ "res://text/pl/fonts_tab.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/game_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/game_tab.pl.translation" ] 9 | 10 | source_file="res://text/pl/game_tab.csv" 11 | dest_files=[ "res://text/pl/game_tab.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/general.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/general.pl.translation" ] 9 | 10 | source_file="res://text/pl/general.csv" 11 | dest_files=[ "res://text/pl/general.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/helpers.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "msg_file_read_fail","Nie udało się otworzyć pliku %s (błąd %s)." 4 | "msg_file_write_fail","Nie udało się otworzyć pliku %s do zapisu (błąd %s)." 5 | "msg_debug_file_path","Pełna ścieżka: %s" 6 | "msg_json_parse_fail","Nie udało się sparsować zawartości %s." 7 | "msg_debug_json_result","Rezultat parsowania JSON:\nKod błędu: %s\nWiadomość błędu: %s\nLinia błędu: %s" 8 | -------------------------------------------------------------------------------- /text/pl/helpers.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/helpers.pl.translation" ] 9 | 10 | source_file="res://text/pl/helpers.csv" 11 | dest_files=[ "res://text/pl/helpers.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/install_probe.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "msg_cannot_create_install_info","Nie udało się stworzyć pliku informacyjnego instalacji %s" 4 | "msg_cannot_parse_install_info","Nie udało się sparsować pliku informacyjnego instalacji %s" 5 | -------------------------------------------------------------------------------- /text/pl/install_probe.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/install_probe.pl.translation" ] 9 | 10 | source_file="res://text/pl/install_probe.csv" 11 | dest_files=[ "res://text/pl/install_probe.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/mod_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/mod_manager.pl.translation" ] 9 | 10 | source_file="res://text/pl/mod_manager.csv" 11 | dest_files=[ "res://text/pl/mod_manager.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/mod_reinstall_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "dlg_mod_reinstall_title","Potwierdź Reinstalację Moda" 4 | "dlg_mod_reinstall_text_single","Jeden z wybranych modów jest już zainstalowany.\nUsunąć go i przeinstalować?" 5 | "dlg_mod_reinstall_text_multiple","%s z wybranych modów jest już zainstalowanych.\nUsunąć je i przeinstalować?" 6 | -------------------------------------------------------------------------------- /text/pl/mod_reinstall_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/mod_reinstall_dialog.pl.translation" ] 9 | 10 | source_file="res://text/pl/mod_reinstall_dialog.csv" 11 | dest_files=[ "res://text/pl/mod_reinstall_dialog.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/mods_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/mods_tab.pl.translation" ] 9 | 10 | source_file="res://text/pl/mods_tab.csv" 11 | dest_files=[ "res://text/pl/mods_tab.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/release_installer.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "msg_updating_game","Aktualizacja do %s..." 4 | "msg_installing_game","Instalowanie %s..." 5 | "msg_game_updated","Aktualizacja zakończona." 6 | "msg_game_installed","Instalacja zakończona." 7 | "msg_deleting_game","Usuwanie %s..." 8 | "msg_game_deleted","Usuwanie zakończone." 9 | "msg_delete_not_found","Próbowano usunąć wydanie \"%s\", ale nie można go znaleźć na dysku." 10 | -------------------------------------------------------------------------------- /text/pl/release_installer.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/release_installer.pl.translation" ] 9 | 10 | source_file="res://text/pl/release_installer.csv" 11 | dest_files=[ "res://text/pl/release_installer.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/release_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "msg_unsupported_platform","Nieobsługiwana platforma: \""%s\""" 4 | "msg_releases_request_failed","Żądanie nie powiodło się. Czy posiadasz połączenie z internetem?" 5 | "msg_releases_api_failure","Nie udało się odebrać listy kompilacji. GitHub odpowiada: %s" 6 | "msg_got_n_releases","Odebrano %s kompilacji." 7 | "msg_fetching_releases_dda","Sprowadzanie kompilacji dla for DDA Experimental..." 8 | "msg_fetching_releases_bn","Sprowadzanie kompilacji dla BN Experimental..." 9 | "msg_invalid_fetch_func_param","ReleaseManager.fetch() przeszło %s" 10 | -------------------------------------------------------------------------------- /text/pl/release_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/release_manager.pl.translation" ] 9 | 10 | source_file="res://text/pl/release_manager.csv" 11 | dest_files=[ "res://text/pl/release_manager.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/settings_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "msg_creating_settings","Tworzenie pliku konfiguracyjnego %s." 4 | "msg_nonexistent_attempt","Próbowano załadować ustawienia z nieistniejącego pliku %s" 5 | "msg_loading_settings","Ładowanie ustawień z %s." 6 | "msg_settings_parse_error","Błąd parsowania ustawień z JSON, linia %s, wiadomość: %s" 7 | "msg_nonexisting_setting","Próbowano wczytać nieistniejące ustawienie \""%s\""" 8 | -------------------------------------------------------------------------------- /text/pl/settings_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/settings_manager.pl.translation" ] 9 | 10 | source_file="res://text/pl/settings_manager.csv" 11 | dest_files=[ "res://text/pl/settings_manager.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/settings_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/settings_tab.pl.translation" ] 9 | 10 | source_file="res://text/pl/settings_tab.csv" 11 | dest_files=[ "res://text/pl/settings_tab.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/soundpack_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","pl" 2 | , 3 | "msg_no_sound_dir","Folder dźwięków nie istnieje: %s" 4 | "msg_deleting_sound","Usuwanie %s" 5 | "msg_soundpack_not_found","Nie udało się znaleźć paczki dźwiękowej o nazwie \""%s\""" 6 | "msg_installing_sound","Instalowanie paczki dźwiękowej \""%s\""..." 7 | "msg_reinstalling_sound","Reinstalacja paczki dźwiękowej \""%s\""..." 8 | "msg_sound_download_failed","Nie udało się pobrać archiwum paczki dźwiękowej." 9 | "msg_sound_installed","Paczka dźwiękowa zainstalowana." 10 | -------------------------------------------------------------------------------- /text/pl/soundpack_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/soundpack_manager.pl.translation" ] 9 | 10 | source_file="res://text/pl/soundpack_manager.csv" 11 | dest_files=[ "res://text/pl/soundpack_manager.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/soundpacks_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/soundpacks_tab.pl.translation" ] 9 | 10 | source_file="res://text/pl/soundpacks_tab.csv" 11 | dest_files=[ "res://text/pl/soundpacks_tab.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pl/tips.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pl/tips.pl.translation" ] 9 | 10 | source_file="res://text/pl/tips.csv" 11 | dest_files=[ "res://text/pl/tips.pl.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/backup_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "msg_backing_up_saves","Fazendo backup dos arquivos salvos para\""%s\""..." 4 | "msg_backup_created","Backup criado." 5 | "msg_backup_name_taken","O backup chamado de \""%s\"" já existe." 6 | "msg_restoring_backup","Restaurando backup \""%s\""..." 7 | "msg_backup_restored","Backup restaurado." 8 | "msg_backup_not_found","Backup \""%s\"" não foi encontrado." 9 | "msg_deleting_backup","Deletando o backup \""%s\""..." 10 | "msg_backup_deleted","Backup deletado." -------------------------------------------------------------------------------- /text/pt/backup_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/backup_manager.pt.translation" ] 9 | 10 | source_file="res://text/pt/backup_manager.csv" 11 | dest_files=[ "res://text/pt/backup_manager.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/backups_tab.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "lbl_save_backups","Backups salvos no diretório:" 4 | "btn_restore_backup","Restaurar" 5 | "btn_delete_backup","Deletar" 6 | "btn_refresh_backups","Atualizar" 7 | "lbl_manual_backup","Backup manual" 8 | "lbl_backup_name","Nome:" 9 | "btn_create_backup","Criar" 10 | "lbl_backup_info_placeholder","Selecione um backup existente para ver seus detalhes aqui." 11 | , 12 | "backup_info_location","Local:" 13 | "backup_info_worlds","Mundos:" -------------------------------------------------------------------------------- /text/pt/backups_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/backups_tab.pt.translation" ] 9 | 10 | source_file="res://text/pt/backups_tab.csv" 11 | dest_files=[ "res://text/pt/backups_tab.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/changelog_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/changelog_dialog.pt.translation" ] 9 | 10 | source_file="res://text/pt/changelog_dialog.csv" 11 | dest_files=[ "res://text/pt/changelog_dialog.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/dialog_buttons.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "btn_close","Fechar" 4 | "btn_ok","OK" 5 | "btn_cancel","Cancelar" 6 | "btn_yes","Sim" 7 | "btn_no","Não" 8 | "btn_reinstall","Reinstalar" 9 | "btn_skip","Pular" -------------------------------------------------------------------------------- /text/pt/dialog_buttons.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/dialog_buttons.pt.translation" ] 9 | 10 | source_file="res://text/pt/dialog_buttons.csv" 11 | dest_files=[ "res://text/pt/dialog_buttons.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/download_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "unit_kb","KB" 4 | "unit_mb","MB" 5 | "unit_kbps","KB/s" 6 | "unit_mbps","MB/s" 7 | , 8 | "msg_downloading_file","Baixando %s..." 9 | "msg_download_progress","Baixando:" 10 | "str_dl_speed_at","a" 11 | "msg_download_finished","Terminou de baixar %s." 12 | "msg_download_failed","Falhou em baixar %s." 13 | "msg_http_request_info","[b]Info do HTTPRequest:[/b]\n[u]Resultado:[/u] %s\n[u]Código de resposta:[/u] %s\n[u]Cabeçalhos:[/u] %s" -------------------------------------------------------------------------------- /text/pt/download_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/download_manager.pt.translation" ] 9 | 10 | source_file="res://text/pt/download_manager.csv" 11 | dest_files=[ "res://text/pt/download_manager.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/easter_egg.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "msg_easter_egg_warning","CUIDADO!" 4 | "msg_easter_egg_activated","AH NÃO, VOCÊ QUEBROU ISSO!!" -------------------------------------------------------------------------------- /text/pt/easter_egg.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/easter_egg.pt.translation" ] 9 | 10 | source_file="res://text/pt/easter_egg.csv" 11 | dest_files=[ "res://text/pt/easter_egg.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/filesystem_helper.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/filesystem_helper.pt.translation" ] 9 | 10 | source_file="res://text/pt/filesystem_helper.csv" 11 | dest_files=[ "res://text/pt/filesystem_helper.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/font_help_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/font_help_dialog.pt.translation" ] 9 | 10 | source_file="res://text/pt/font_help_dialog.csv" 11 | dest_files=[ "res://text/pt/font_help_dialog.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/font_info.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/font_info.pt.translation" ] 9 | 10 | source_file="res://text/pt/font_info.csv" 11 | dest_files=[ "res://text/pt/font_info.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/font_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/font_manager.pt.translation" ] 9 | 10 | source_file="res://text/pt/font_manager.csv" 11 | dest_files=[ "res://text/pt/font_manager.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/fonts_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/fonts_tab.pt.translation" ] 9 | 10 | source_file="res://text/pt/fonts_tab.csv" 11 | dest_files=[ "res://text/pt/fonts_tab.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/game_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/game_tab.pt.translation" ] 9 | 10 | source_file="res://text/pt/game_tab.csv" 11 | dest_files=[ "res://text/pt/game_tab.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/general.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/general.pt.translation" ] 9 | 10 | source_file="res://text/pt/general.csv" 11 | dest_files=[ "res://text/pt/general.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/helpers.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "msg_file_read_fail","Não foi possível abrir o arquivo %s (erro %s)." 4 | "msg_file_write_fail","Não foi possível abrir o arquivo %s para salvar (erro %s)." 5 | "msg_debug_file_path","Caminho completo: %s" 6 | "msg_json_parse_fail","Não foi possível analisar o conteúdo de %s." 7 | "msg_debug_json_result","Resultado da análise JSON:\nCódigo do erro: %s\nMensagem do erro: %s\nLinha do erro: %s" -------------------------------------------------------------------------------- /text/pt/helpers.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/helpers.pt.translation" ] 9 | 10 | source_file="res://text/pt/helpers.csv" 11 | dest_files=[ "res://text/pt/helpers.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/install_probe.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "msg_cannot_create_install_info","Não foi possível criar o arquivo de informações de instalação %s" 4 | "msg_cannot_parse_install_info","Não foi possível analisar o arquivo de informações de instalação %s" -------------------------------------------------------------------------------- /text/pt/install_probe.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/install_probe.pt.translation" ] 9 | 10 | source_file="res://text/pt/install_probe.csv" 11 | dest_files=[ "res://text/pt/install_probe.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/mod_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/mod_manager.pt.translation" ] 9 | 10 | source_file="res://text/pt/mod_manager.csv" 11 | dest_files=[ "res://text/pt/mod_manager.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/mod_reinstall_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "dlg_mod_reinstall_title","Confirmar Reinstalação do Mod" 4 | "dlg_mod_reinstall_text_single","Um dos mods selecionados já está instalado.\nDeletá-lo e reinstalá-lo?" 5 | "dlg_mod_reinstall_text_multiple","%s dos mods selecionados já estão instalados.\nDeletá-los e reinstalá-los?" -------------------------------------------------------------------------------- /text/pt/mod_reinstall_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/mod_reinstall_dialog.pt.translation" ] 9 | 10 | source_file="res://text/pt/mod_reinstall_dialog.csv" 11 | dest_files=[ "res://text/pt/mod_reinstall_dialog.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/mods_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/mods_tab.pt.translation" ] 9 | 10 | source_file="res://text/pt/mods_tab.csv" 11 | dest_files=[ "res://text/pt/mods_tab.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/release_installer.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "msg_updating_game","Atualizando para %s..." 4 | "msg_installing_game","Instalando %s..." 5 | "msg_game_updated","Atualização concluída." 6 | "msg_game_installed","Instalação concluída." 7 | "msg_deleting_game","Removendo %s..." 8 | "msg_game_deleted","Remoção concluída." 9 | "msg_delete_not_found","Tentou remover a versão \"%s\", mas não é possível encontrá-la no disco." -------------------------------------------------------------------------------- /text/pt/release_installer.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/release_installer.pt.translation" ] 9 | 10 | source_file="res://text/pt/release_installer.csv" 11 | dest_files=[ "res://text/pt/release_installer.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/release_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/release_manager.pt.translation" ] 9 | 10 | source_file="res://text/pt/release_manager.csv" 11 | dest_files=[ "res://text/pt/release_manager.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/settings_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "msg_creating_settings","Criando arquivo de configurações %s." 4 | "msg_nonexistent_attempt","Tentou carregar configurações de um arquivo inexistente %s" 5 | "msg_loading_settings","Carregando configurações de %s." 6 | "msg_settings_parse_error","Erro ao analisar as configurações do JSON, linha %s, mensagem: %s" 7 | "msg_nonexisting_setting","Tentou ler uma configuração inexistente \""%s\""" -------------------------------------------------------------------------------- /text/pt/settings_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/settings_manager.pt.translation" ] 9 | 10 | source_file="res://text/pt/settings_manager.csv" 11 | dest_files=[ "res://text/pt/settings_manager.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/settings_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/settings_tab.pt.translation" ] 9 | 10 | source_file="res://text/pt/settings_tab.csv" 11 | dest_files=[ "res://text/pt/settings_tab.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/soundpack_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","pt" 2 | , 3 | "msg_no_sound_dir","Pasta Sound não existe: %s" 4 | "msg_deleting_sound","Deletando %s" 5 | "msg_soundpack_not_found","Não foi possível encontrar pacote de sons chamado \""%s\""" 6 | "msg_installing_sound","Instalando pacote de sons \""%s\""..." 7 | "msg_reinstalling_sound","Reinstalando pacote de sons \""%s\""..." 8 | "msg_sound_download_failed","Não foi possível baixar o arquivo de pacote de sons." 9 | "msg_sound_installed","Pacote de sons instalado." -------------------------------------------------------------------------------- /text/pt/soundpack_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/soundpack_manager.pt.translation" ] 9 | 10 | source_file="res://text/pt/soundpack_manager.csv" 11 | dest_files=[ "res://text/pt/soundpack_manager.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/soundpacks_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/soundpacks_tab.pt.translation" ] 9 | 10 | source_file="res://text/pt/soundpacks_tab.csv" 11 | dest_files=[ "res://text/pt/soundpacks_tab.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/pt/tips.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/pt/tips.pt.translation" ] 9 | 10 | source_file="res://text/pt/tips.csv" 11 | dest_files=[ "res://text/pt/tips.pt.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/backup_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "msg_backing_up_saves","Создается бэкап текущих сохранений под именем \""%s\""..." 4 | "msg_backup_created","Бэкап создан." 5 | "msg_backup_name_taken","Бэкап с названием \""%s\"" уже существует." 6 | "msg_restoring_backup","Восстановление бэкапа \""%s\""..." 7 | "msg_backup_restored","Бэкап восстановлен." 8 | "msg_backup_not_found","Бэкап \""%s\"" не найден." 9 | "msg_deleting_backup","Удаление бэкапа \""%s\""..." 10 | "msg_backup_deleted","Бэкап удалён." 11 | -------------------------------------------------------------------------------- /text/ru/backup_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/backup_manager.ru.translation" ] 9 | 10 | source_file="res://text/ru/backup_manager.csv" 11 | dest_files=[ "res://text/ru/backup_manager.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/backups_tab.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "lbl_save_backups","Бэкапы папки с сохранениями:" 4 | "btn_restore_backup","Восстановить" 5 | "btn_delete_backup","Удалить" 6 | "btn_refresh_backups","Обновить список" 7 | "lbl_manual_backup","Ручной бэкап" 8 | "lbl_backup_name","Название:" 9 | "btn_create_backup","Создать" 10 | "lbl_backup_info_placeholder","Выберите существующий бэкап, чтобы увидеть здесь информацию по нему." 11 | , 12 | "backup_info_location","Расположение:" 13 | "backup_info_worlds","Миры:" 14 | -------------------------------------------------------------------------------- /text/ru/backups_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/backups_tab.ru.translation" ] 9 | 10 | source_file="res://text/ru/backups_tab.csv" 11 | dest_files=[ "res://text/ru/backups_tab.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/changelog_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/changelog_dialog.ru.translation" ] 9 | 10 | source_file="res://text/ru/changelog_dialog.csv" 11 | dest_files=[ "res://text/ru/changelog_dialog.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/dialog_buttons.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "btn_close","Закрыть" 4 | "btn_ok","ОК" 5 | "btn_cancel","Отмена" 6 | "btn_yes","Да" 7 | "btn_no","Нет" 8 | "btn_reinstall","Переустановить" 9 | "btn_skip","Пропустить" 10 | -------------------------------------------------------------------------------- /text/ru/dialog_buttons.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/dialog_buttons.ru.translation" ] 9 | 10 | source_file="res://text/ru/dialog_buttons.csv" 11 | dest_files=[ "res://text/ru/dialog_buttons.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/download_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "unit_kb","КБ" 4 | "unit_mb","МБ" 5 | "unit_kbps","КБ/с" 6 | "unit_mbps","МБ/с" 7 | , 8 | "msg_downloading_file","Загружается файл %s..." 9 | "msg_download_progress","Загрузка:" 10 | "str_dl_speed_at","на скорости" 11 | "msg_download_finished","Завершена загрузка %s." 12 | "msg_download_failed","Не удалось загрузить %s." 13 | "msg_http_request_info","[b]Информация от HTTPRequest:[/b]\n[u]Результат:[/u] %s\n[u]Код ответа:[/u] %s\n[u]Заголовки:[/u] %s" 14 | -------------------------------------------------------------------------------- /text/ru/download_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/download_manager.ru.translation" ] 9 | 10 | source_file="res://text/ru/download_manager.csv" 11 | dest_files=[ "res://text/ru/download_manager.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/easter_egg.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "msg_easter_egg_warning","ОСТОРОЖНЕЕ!" 4 | "msg_easter_egg_activated","О НЕТ, ТЫ ВСЁ СЛОМАЛ!!" 5 | -------------------------------------------------------------------------------- /text/ru/easter_egg.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/easter_egg.ru.translation" ] 9 | 10 | source_file="res://text/ru/easter_egg.csv" 11 | dest_files=[ "res://text/ru/easter_egg.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/filesystem_helper.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/filesystem_helper.ru.translation" ] 9 | 10 | source_file="res://text/ru/filesystem_helper.csv" 11 | dest_files=[ "res://text/ru/filesystem_helper.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/font_help_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/font_help_dialog.ru.translation" ] 9 | 10 | source_file="res://text/ru/font_help_dialog.csv" 11 | dest_files=[ "res://text/ru/font_help_dialog.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/font_info.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "font_desc_fantasque","Слегка причудливый моноширинный шрифт от Jany Belluz." 4 | "font_desc_hack","Рабочий шрифт, созданный в первую очередь для кода,\nс упором на удобочитаемость. От Source Foundry Authors." 5 | "font_desc_inconsolata","Вариант шрифта Inconsolata (созданного Raph Levien)\nс добавлением греческих и кириллических символов." 6 | "font_desc_pt","Машинописный шрифт от компании ParaType\nс отличной кириллической типографикой." 7 | "font_desc_ubuntu","Шрифт с неповторимым стилем, созданный компанией\nCanonical для одноименного дистрибутива Линукса." 8 | -------------------------------------------------------------------------------- /text/ru/font_info.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/font_info.ru.translation" ] 9 | 10 | source_file="res://text/ru/font_info.csv" 11 | dest_files=[ "res://text/ru/font_info.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/font_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/font_manager.ru.translation" ] 9 | 10 | source_file="res://text/ru/font_manager.csv" 11 | dest_files=[ "res://text/ru/font_manager.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/fonts_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/fonts_tab.ru.translation" ] 9 | 10 | source_file="res://text/ru/fonts_tab.csv" 11 | dest_files=[ "res://text/ru/fonts_tab.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/game_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/game_tab.ru.translation" ] 9 | 10 | source_file="res://text/ru/game_tab.csv" 11 | dest_files=[ "res://text/ru/game_tab.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/general.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/general.ru.translation" ] 9 | 10 | source_file="res://text/ru/general.csv" 11 | dest_files=[ "res://text/ru/general.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/helpers.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "msg_file_read_fail","Не удалось открыть файл %s (ошибка %s)." 4 | "msg_file_write_fail","Не удалось открыть файл %s на запись (ошибка %s)." 5 | "msg_debug_file_path","Полный путь: %s" 6 | "msg_json_parse_fail","Не удалось разобрать содержимое файла %s." 7 | "msg_debug_json_result","Результат разбора JSON:\nКод ошибки: %s\nСообщение: %s\nСтрока с ошибкой: %s" 8 | -------------------------------------------------------------------------------- /text/ru/helpers.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/helpers.ru.translation" ] 9 | 10 | source_file="res://text/ru/helpers.csv" 11 | dest_files=[ "res://text/ru/helpers.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/install_probe.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "msg_cannot_create_install_info","Не удалось создать файл с информацией об установке %s" 4 | "msg_cannot_parse_install_info","Не удалось разобрать информацию об установке в %s" 5 | -------------------------------------------------------------------------------- /text/ru/install_probe.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/install_probe.ru.translation" ] 9 | 10 | source_file="res://text/ru/install_probe.csv" 11 | dest_files=[ "res://text/ru/install_probe.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/mod_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/mod_manager.ru.translation" ] 9 | 10 | source_file="res://text/ru/mod_manager.csv" 11 | dest_files=[ "res://text/ru/mod_manager.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/mod_reinstall_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "dlg_mod_reinstall_title","Подтвердите переустановку модов" 4 | "dlg_mod_reinstall_text_single","Один из выбранных модов уже установлен.\nУдалить его и установить заново?" 5 | "dlg_mod_reinstall_text_multiple","%s из выбранных модов уже установлены.\nУдалить их и установить заново?" 6 | -------------------------------------------------------------------------------- /text/ru/mod_reinstall_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/mod_reinstall_dialog.ru.translation" ] 9 | 10 | source_file="res://text/ru/mod_reinstall_dialog.csv" 11 | dest_files=[ "res://text/ru/mod_reinstall_dialog.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/mods_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/mods_tab.ru.translation" ] 9 | 10 | source_file="res://text/ru/mods_tab.csv" 11 | dest_files=[ "res://text/ru/mods_tab.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/release_installer.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "msg_updating_game","Обновление до %s..." 4 | "msg_installing_game","Установка %s..." 5 | "msg_game_updated","Обновление завершено." 6 | "msg_game_installed","Установка завершена." 7 | "msg_deleting_game","Удаление %s..." 8 | «msg_game_deleted», «Удаление завершено». 9 | "msg_delete_not_found", "Была попытка удалить релиз \"%s\", но не удалось найти его на диске." 10 | -------------------------------------------------------------------------------- /text/ru/release_installer.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/release_installer.ru.translation" ] 9 | 10 | source_file="res://text/ru/release_installer.csv" 11 | dest_files=[ "res://text/ru/release_installer.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/release_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "msg_unsupported_platform","Неподдерживаемая платформа: \""%s\""" 4 | "msg_releases_request_failed","Запрос не удался. Вы ведь подключены к интернету?" 5 | "msg_releases_api_failure","Не удалось получить список релизов. GitHub сказал: %s" 6 | "msg_got_n_releases","Получено %s релизов." 7 | "msg_fetching_releases_dda","Получение списка экспериментальных релизов DDA..." 8 | "msg_fetching_releases_bn","Получение списка экспериментальных релизов BN..." 9 | "msg_invalid_fetch_func_param","В ReleaseManager.fetch() был передан аргумент %s" 10 | -------------------------------------------------------------------------------- /text/ru/release_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/release_manager.ru.translation" ] 9 | 10 | source_file="res://text/ru/release_manager.csv" 11 | dest_files=[ "res://text/ru/release_manager.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/settings_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "msg_creating_settings","Создается файл настроек %s." 4 | "msg_nonexistent_attempt","Совершена попытка загрузить настройки из несуществующего файла %s" 5 | "msg_loading_settings","Загрузка настроек из %s." 6 | "msg_settings_parse_error","Произошла ошибка при парсинге настроек из JSON, строка %s, сообщение: %s" 7 | "msg_nonexisting_setting","Совершена попытка прочитать несуществующую настройку \""%s\""" 8 | -------------------------------------------------------------------------------- /text/ru/settings_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/settings_manager.ru.translation" ] 9 | 10 | source_file="res://text/ru/settings_manager.csv" 11 | dest_files=[ "res://text/ru/settings_manager.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/settings_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/settings_tab.ru.translation" ] 9 | 10 | source_file="res://text/ru/settings_tab.csv" 11 | dest_files=[ "res://text/ru/settings_tab.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/soundpack_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","ru" 2 | , 3 | "msg_no_sound_dir","Отсутствует директория со звуками игры: %s" 4 | "msg_deleting_sound","Удаляется %s" 5 | "msg_soundpack_not_found","Не удалось найти саундпак под названием \""%s\""" 6 | "msg_installing_sound","Установка саундпака \""%s\""..." 7 | "msg_reinstalling_sound","Переустановка саундпака \""%s\""..." 8 | "msg_sound_download_failed","Не удалось скачать архив с саундпаком." 9 | "msg_sound_installed","Саундпак установлен." 10 | -------------------------------------------------------------------------------- /text/ru/soundpack_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/soundpack_manager.ru.translation" ] 9 | 10 | source_file="res://text/ru/soundpack_manager.csv" 11 | dest_files=[ "res://text/ru/soundpack_manager.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/soundpacks_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/soundpacks_tab.ru.translation" ] 9 | 10 | source_file="res://text/ru/soundpacks_tab.csv" 11 | dest_files=[ "res://text/ru/soundpacks_tab.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/ru/tips.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/ru/tips.ru.translation" ] 9 | 10 | source_file="res://text/ru/tips.csv" 11 | dest_files=[ "res://text/ru/tips.ru.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/backup_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "msg_backing_up_saves","Kayıt dosyaları \""%s\"" ‘e yedekleniyor..." 4 | "msg_backup_created","Yedek oluşturuldu." 5 | "msg_backup_name_taken","\""%s\"" isimli bir yedek zaten var." 6 | "msg_restoring_backup","\""%s\"" yedeği kurtarılıyor..." 7 | "msg_backup_restored","Yedek kurtarıldı." 8 | "msg_backup_not_found","\""%s\"" yedeği bulunamadı." 9 | "msg_deleting_backup","\""%s\" yedeği siliniyor..." 10 | "msg_backup_deleted","Yedek silindi." 11 | -------------------------------------------------------------------------------- /text/tr/backup_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/backup_manager.tr.translation" ] 9 | 10 | source_file="res://text/tr/backup_manager.csv" 11 | dest_files=[ "res://text/tr/backup_manager.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/backups_tab.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "lbl_save_backups","Kayıt dosyası yedekleri:" 4 | "btn_restore_backup","Kurtar" 5 | "btn_delete_backup","Sil" 6 | "btn_refresh_backups","Yenile" 7 | "lbl_manual_backup","Elle yedek" 8 | "lbl_backup_name","İsim::" 9 | "btn_create_backup","Oluştur" 10 | "lbl_backup_info_placeholder","Detayları görmek için bir yedek seçin." 11 | , 12 | "backup_info_location","Konum:" 13 | "backup_info_worlds","Dünyalar:" 14 | -------------------------------------------------------------------------------- /text/tr/backups_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/backups_tab.tr.translation" ] 9 | 10 | source_file="res://text/tr/backups_tab.csv" 11 | dest_files=[ "res://text/tr/backups_tab.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/changelog_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/changelog_dialog.tr.translation" ] 9 | 10 | source_file="res://text/tr/changelog_dialog.csv" 11 | dest_files=[ "res://text/tr/changelog_dialog.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/dialog_buttons.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "btn_close","Kapat" 4 | "btn_ok","TAMAM" 5 | "btn_cancel","İptal" 6 | "btn_yes","Evet" 7 | "btn_no","Hayır" 8 | "btn_reinstall","Y. yükle" 9 | "btn_skip","Atla" 10 | -------------------------------------------------------------------------------- /text/tr/dialog_buttons.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/dialog_buttons.tr.translation" ] 9 | 10 | source_file="res://text/tr/dialog_buttons.csv" 11 | dest_files=[ "res://text/tr/dialog_buttons.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/download_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "unit_kb","KB" 4 | "unit_mb","MB" 5 | "unit_kbps","KB/s" 6 | "unit_mbps","MB/s" 7 | , 8 | "msg_downloading_file","%s indiriliyor..." 9 | "msg_download_progress","İndiriliyor:" 10 | "str_dl_speed_at","hızı 11 | "msg_download_finished","%s nın indirilmesi tamamlandı." 12 | "msg_download_failed","%s nın indirilmesi başarısız oldu." 13 | "msg_http_request_info","[b]HTTPRequest bilgisi:[/b]\n[u]Sonuç:[/u] %s\n[u]Tepki kodu:[/u] %s\n[u]Başlıklar:[/u] %s" 14 | -------------------------------------------------------------------------------- /text/tr/download_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/download_manager.tr.translation" ] 9 | 10 | source_file="res://text/tr/download_manager.csv" 11 | dest_files=[ "res://text/tr/download_manager.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/easter_egg.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "msg_easter_egg_warning","DİKKATLİ OL!" 4 | "msg_easter_egg_activated","AL KIRDIN KIRDIN!" 5 | -------------------------------------------------------------------------------- /text/tr/easter_egg.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/easter_egg.tr.translation" ] 9 | 10 | source_file="res://text/tr/easter_egg.csv" 11 | dest_files=[ "res://text/tr/easter_egg.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/filesystem_helper.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/filesystem_helper.tr.translation" ] 9 | 10 | source_file="res://text/tr/filesystem_helper.csv" 11 | dest_files=[ "res://text/tr/filesystem_helper.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/font_help_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/font_help_dialog.tr.translation" ] 9 | 10 | source_file="res://text/tr/font_help_dialog.csv" 11 | dest_files=[ "res://text/tr/font_help_dialog.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/font_info.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "font_desc_fantasque","Jany Belluz yapımı,nasılsa kaprisli bir monospace fontu." 4 | "font_desc_hack","Kaynak kodu için tasarlanmış okunulurluğa odaklanmış bir ofis fontu,\n. Yapan, Source Foundry Authors." 5 | "font_desc_inconsolata","Inconsolata fontunun (aslen Raph Levien yapımı)\n Yunan ve Kiril harfleri eklenmiş bir çeşidi." 6 | "font_desc_pt","Harika Kiril tipografisiyle oluşturulmuş, ParaType yapımı bir daktilo fontu." 7 | "font_desc_ubuntu","Canonical yapımı,oldukça farklı bir tarza sahip bir font.\nadını veren Linux dağıtımı (Ubuntu) için tasarlandı. 8 | -------------------------------------------------------------------------------- /text/tr/font_info.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/font_info.tr.translation" ] 9 | 10 | source_file="res://text/tr/font_info.csv" 11 | dest_files=[ "res://text/tr/font_info.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/font_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/font_manager.tr.translation" ] 9 | 10 | source_file="res://text/tr/font_manager.csv" 11 | dest_files=[ "res://text/tr/font_manager.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/fonts_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/fonts_tab.tr.translation" ] 9 | 10 | source_file="res://text/tr/fonts_tab.csv" 11 | dest_files=[ "res://text/tr/fonts_tab.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/game_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/game_tab.tr.translation" ] 9 | 10 | source_file="res://text/tr/game_tab.csv" 11 | dest_files=[ "res://text/tr/game_tab.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/general.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/general.tr.translation" ] 9 | 10 | source_file="res://text/tr/general.csv" 11 | dest_files=[ "res://text/tr/general.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/helpers.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "msg_file_read_fail","Dosya %s açılamıyor (hata %s)." 4 | "msg_file_write_fail","Dosya %s yazma için açılamıyor (hata %s)." 5 | "msg_debug_file_path","Tam yol: %s" 6 | "msg_json_parse_fail","%s nin içeriği alınamadı." 7 | "msg_debug_json_result","JSON alım sonucu:\nHata kodu: %s\nHata mesajı: %s\nHata satırı: %s" 8 | -------------------------------------------------------------------------------- /text/tr/helpers.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/helpers.tr.translation" ] 9 | 10 | source_file="res://text/tr/helpers.csv" 11 | dest_files=[ "res://text/tr/helpers.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/install_probe.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "msg_cannot_create_install_info","%s dosyasına yükleme bilgisi yazılamıyor." 4 | "msg_cannot_parse_install_info","%s dosyasından yükleme bilgisi alınamıyor." 5 | -------------------------------------------------------------------------------- /text/tr/install_probe.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/install_probe.tr.translation" ] 9 | 10 | source_file="res://text/tr/install_probe.csv" 11 | dest_files=[ "res://text/tr/install_probe.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/mod_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/mod_manager.tr.translation" ] 9 | 10 | source_file="res://text/tr/mod_manager.csv" 11 | dest_files=[ "res://text/tr/mod_manager.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/mod_reinstall_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "dlg_mod_reinstall_title","Mod yeniden yüklemesini onayla" 4 | "dlg_mod_reinstall_text_single","Seçili modlardan biri zaten yüklenmiş.\nSilinip yeniden yüklensin mi?" 5 | "dlg_mod_reinstall_text_multiple","Seçili modlardan %s tanesi zaten yüklenmiş.\nSilinip yeniden yüklensin mi?" 6 | -------------------------------------------------------------------------------- /text/tr/mod_reinstall_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/mod_reinstall_dialog.tr.translation" ] 9 | 10 | source_file="res://text/tr/mod_reinstall_dialog.csv" 11 | dest_files=[ "res://text/tr/mod_reinstall_dialog.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/mods_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/mods_tab.tr.translation" ] 9 | 10 | source_file="res://text/tr/mods_tab.csv" 11 | dest_files=[ "res://text/tr/mods_tab.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/release_installer.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "msg_updating_game","%s e güncelleniyor..." 4 | "msg_installing_game","%s yükleniyor..." 5 | "msg_game_updated","Güncelleme bitti" 6 | "msg_game_installed","Yükleme bitti" 7 | "msg_deleting_game","%s kaldırılıyor..." 8 | "msg_game_deleted","Kaldırma bitti" 9 | "msg_delete_not_found","Sürüm \""%s\"" kaldırılmaya çalışıldı",fakat diskte bulunamadı." 10 | -------------------------------------------------------------------------------- /text/tr/release_installer.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/release_installer.tr.translation" ] 9 | 10 | source_file="res://text/tr/release_installer.csv" 11 | dest_files=[ "res://text/tr/release_installer.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/release_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "msg_unsupported_platform","Desteklenmeyen platform: \""%s\""" 4 | "msg_releases_request_failed","İstek başarısı oldu. İnternet bağlantın var mı?" 5 | "msg_releases_api_failure","Sürüm listesi alınamadı. GitHub diyor ki : %s" 6 | "msg_got_n_releases","%s sürüm alındı." 7 | "msg_fetching_releases_dda","Deneysel DDA için sürümler alınıyor..." 8 | "msg_fetching_releases_bn","Deneysel BN için sürümler alınıyor..." 9 | "msg_invalid_fetch_func_param","ReleaseManager.fetch() fonksiyonu %s çıktısını verdi." 10 | -------------------------------------------------------------------------------- /text/tr/release_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/release_manager.tr.translation" ] 9 | 10 | source_file="res://text/tr/release_manager.csv" 11 | dest_files=[ "res://text/tr/release_manager.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/settings_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "msg_creating_settings","Ayar dosyası %s oluşturuluyor." 4 | "msg_nonexistent_attempt","Olmayan dosya %s den ayar yüklenmeye çalışıldı" 5 | "msg_loading_settings","%s daki ayarlan yükleniyor." 6 | "msg_settings_parse_error","JSON, satırı %s den ayar okunurken hata, mesaj: %s" 7 | "msg_nonexisting_setting","Olmayan ayar \""%s\"" okunulmaya çalışıldı." 8 | "msg_no_game_options_file","Oyun ayarları şu an yönetilemiyor: oyun ayar dosyası yok. Oluşturmak için oyunu en az bir kere başlattığından emin ol." -------------------------------------------------------------------------------- /text/tr/settings_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/settings_manager.tr.translation" ] 9 | 10 | source_file="res://text/tr/settings_manager.csv" 11 | dest_files=[ "res://text/tr/settings_manager.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/settings_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/settings_tab.tr.translation" ] 9 | 10 | source_file="res://text/tr/settings_tab.csv" 11 | dest_files=[ "res://text/tr/settings_tab.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/soundpack_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","tr" 2 | , 3 | "msg_no_sound_dir","%s ses dizini yok." 4 | "msg_deleting_sound","%s siliniyor" 5 | "msg_soundpack_not_found","\""%s\"" isimli ses paketi bulunmadı." 6 | "msg_installing_sound","\""%s\"" ses paketi indiriliyor..." 7 | "msg_reinstalling_sound","\""%s\"" ses paketi yeniden indiriliyor..." 8 | "msg_sound_download_failed","Ses paketi arşivi indirilemedi." 9 | "msg_sound_installed","Ses paketi yüklendi." 10 | -------------------------------------------------------------------------------- /text/tr/soundpack_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/soundpack_manager.tr.translation" ] 9 | 10 | source_file="res://text/tr/soundpack_manager.csv" 11 | dest_files=[ "res://text/tr/soundpack_manager.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/soundpacks_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/soundpacks_tab.tr.translation" ] 9 | 10 | source_file="res://text/tr/soundpacks_tab.csv" 11 | dest_files=[ "res://text/tr/soundpacks_tab.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/tr/tips.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/tr/tips.tr.translation" ] 9 | 10 | source_file="res://text/tr/tips.csv" 11 | dest_files=[ "res://text/tr/tips.tr.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/backup_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "msg_backing_up_saves","备份当前存档至\""%s\""..." 4 | "msg_backup_created","备份已创建。" 5 | "msg_backup_name_taken","名为\""%s\""的备份已经存在。" 6 | "msg_restoring_backup","正在从\""%s\""备份恢复..." 7 | "msg_backup_restored","备份已恢复。" 8 | "msg_backup_not_found","备份\""%s\""未找到。" 9 | "msg_deleting_backup","正在删除备份\""%s\""..." 10 | "msg_backup_deleted","备份已删除。" 11 | -------------------------------------------------------------------------------- /text/zh/backup_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/backup_manager.zh.translation" ] 9 | 10 | source_file="res://text/zh/backup_manager.csv" 11 | dest_files=[ "res://text/zh/backup_manager.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/backups_tab.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "lbl_save_backups","保存目录下的备份:" 4 | "btn_restore_backup","恢复" 5 | "btn_delete_backup","删除该项" 6 | "btn_refresh_backups","刷新" 7 | "lbl_manual_backup","手动备份" 8 | "lbl_backup_name","名称:" 9 | "btn_create_backup","创建" 10 | "lbl_backup_info_placeholder","选择一项备份以查看详情。" 11 | , 12 | "backup_info_location","位置:" 13 | "backup_info_worlds","世界:" 14 | -------------------------------------------------------------------------------- /text/zh/backups_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/backups_tab.zh.translation" ] 9 | 10 | source_file="res://text/zh/backups_tab.csv" 11 | dest_files=[ "res://text/zh/backups_tab.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/changelog_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "dlg_changelog_title","最近改动" 4 | "str_fetching_changes","正在从Github获取最近改动。请稍等..." 5 | "str_error_retrieving_data","从GitHub API检索数据时出错。 " 6 | "str_hhtp_response_code","\n\nHTTP响应代码: %s" 7 | "str_github_says","\nGitHub说: [i]%s[/i]" 8 | "str_try_later","\n\n请稍后重试。" 9 | "str_changelog_intro","展示最近[b]%s[/b]个到[b]%s[/b]\n\n的已合并请求(代码贡献)。您可以点击任意一项来查阅相应的Github合并请求并了解更多。\n" 10 | -------------------------------------------------------------------------------- /text/zh/changelog_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/changelog_dialog.zh.translation" ] 9 | 10 | source_file="res://text/zh/changelog_dialog.csv" 11 | dest_files=[ "res://text/zh/changelog_dialog.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/dialog_buttons.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "btn_close","关闭" 4 | "btn_ok","OK" 5 | "btn_cancel","取消" 6 | "btn_yes","是" 7 | "btn_no","否" 8 | "btn_reinstall","重新安装" 9 | "btn_skip","跳过" 10 | -------------------------------------------------------------------------------- /text/zh/dialog_buttons.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/dialog_buttons.zh.translation" ] 9 | 10 | source_file="res://text/zh/dialog_buttons.csv" 11 | dest_files=[ "res://text/zh/dialog_buttons.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/download_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "unit_kb","KB" 4 | "unit_mb","MB" 5 | "unit_kbps","KB/s" 6 | "unit_mbps","MB/s" 7 | , 8 | "msg_downloading_file","正在下载%s..." 9 | "msg_download_progress","正在下载:" 10 | "str_dl_speed_at","以" 11 | "msg_download_finished","已完成下载%s。" 12 | "msg_download_failed","下载%s失败。" 13 | "msg_http_request_info","[b]HTTPRequest信息:[/b]\n[u]结果:[/u] %s\n[u]响应代码:[/u] %s\n[u]头:[/u] %s" 14 | "msg_using_proxy","使用代理:%s:%s" 15 | -------------------------------------------------------------------------------- /text/zh/download_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/download_manager.zh.translation" ] 9 | 10 | source_file="res://text/zh/download_manager.csv" 11 | dest_files=[ "res://text/zh/download_manager.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/easter_egg.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "msg_easter_egg_warning","当心!" 4 | "msg_easter_egg_activated","哦不!你毁了它!" 5 | -------------------------------------------------------------------------------- /text/zh/easter_egg.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/easter_egg.zh.translation" ] 9 | 10 | source_file="res://text/zh/easter_egg.csv" 11 | dest_files=[ "res://text/zh/easter_egg.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/filesystem_helper.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/filesystem_helper.zh.translation" ] 9 | 10 | source_file="res://text/zh/filesystem_helper.csv" 11 | dest_files=[ "res://text/zh/filesystem_helper.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/font_help_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/font_help_dialog.zh.translation" ] 9 | 10 | source_file="res://text/zh/font_help_dialog.csv" 11 | dest_files=[ "res://text/zh/font_help_dialog.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/font_info.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "font_desc_fantasque","Jany Belluz 的一种有点异想天开的等宽字体。" 4 | "font_desc_hack","主要为源代码设计的主力字体,\n注重易读性。作者:Source Foundry Authors。" 5 | "font_desc_inconsolata","Inconsolata 字体的变体(最初由 Raph Levien 设计)\n添加了希腊语和西里尔字符。" 6 | "font_desc_pt","ParaType 的打字机字体,在显示西里尔字体上很出色。" 7 | "font_desc_ubuntu","Canonical 的字体,风格非常独特,\n为同名的 Linux 发行版设计。" 8 | -------------------------------------------------------------------------------- /text/zh/font_info.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/font_info.zh.translation" ] 9 | 10 | source_file="res://text/zh/font_info.csv" 11 | dest_files=[ "res://text/zh/font_info.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/font_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/font_manager.zh.translation" ] 9 | 10 | source_file="res://text/zh/font_manager.csv" 11 | dest_files=[ "res://text/zh/font_manager.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/fonts_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/fonts_tab.zh.translation" ] 9 | 10 | source_file="res://text/zh/fonts_tab.csv" 11 | dest_files=[ "res://text/zh/fonts_tab.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/game_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/game_tab.zh.translation" ] 9 | 10 | source_file="res://text/zh/game_tab.csv" 11 | dest_files=[ "res://text/zh/game_tab.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/general.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/general.zh.translation" ] 9 | 10 | source_file="res://text/zh/general.csv" 11 | dest_files=[ "res://text/zh/general.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/helpers.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "msg_file_read_fail","无法打开文件 %s(错误 %s)。" 4 | "msg_file_write_fail","无法打开文件 %s 进行写入(错误 %s)。" 5 | "msg_debug_file_path","完整路径: %s" 6 | "msg_json_parse_fail","无法解析 %s 的内容。" 7 | "msg_debug_json_result","JSON 解析结果:\n错误代码: %s\n错误消息: %s\n错误行: %s" 8 | -------------------------------------------------------------------------------- /text/zh/helpers.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/helpers.zh.translation" ] 9 | 10 | source_file="res://text/zh/helpers.csv" 11 | dest_files=[ "res://text/zh/helpers.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/install_probe.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "msg_cannot_create_install_info","无法创建安装信息文件%s" 4 | "msg_cannot_parse_install_info","无法解析安装信息文件%s" 5 | -------------------------------------------------------------------------------- /text/zh/install_probe.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/install_probe.zh.translation" ] 9 | 10 | source_file="res://text/zh/install_probe.csv" 11 | dest_files=[ "res://text/zh/install_probe.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/mod_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/mod_manager.zh.translation" ] 9 | 10 | source_file="res://text/zh/mod_manager.csv" 11 | dest_files=[ "res://text/zh/mod_manager.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/mod_reinstall_dialog.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "dlg_mod_reinstall_title","确认重装模组" 4 | "dlg_mod_reinstall_text_single","选中的模组有一个已经安装。\n删除并重装?" 5 | "dlg_mod_reinstall_text_multiple","选中的模组有%s个已经安装。\n删除并重装?" 6 | -------------------------------------------------------------------------------- /text/zh/mod_reinstall_dialog.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/mod_reinstall_dialog.zh.translation" ] 9 | 10 | source_file="res://text/zh/mod_reinstall_dialog.csv" 11 | dest_files=[ "res://text/zh/mod_reinstall_dialog.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/mods_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/mods_tab.zh.translation" ] 9 | 10 | source_file="res://text/zh/mods_tab.csv" 11 | dest_files=[ "res://text/zh/mods_tab.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/release_installer.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "msg_updating_game","更新至%s..." 4 | "msg_installing_game","正在安装%s..." 5 | "msg_game_updated","更新完成。" 6 | "msg_game_installed","安装完成。" 7 | "msg_deleting_game","正在删除 %s..." 8 | "msg_game_deleted","删除完成。" 9 | "msg_delete_not_found","试图删除版本 \"%s\",但在磁盘上找不到它。" 10 | -------------------------------------------------------------------------------- /text/zh/release_installer.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/release_installer.zh.translation" ] 9 | 10 | source_file="res://text/zh/release_installer.csv" 11 | dest_files=[ "res://text/zh/release_installer.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/release_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "msg_unsupported_platform","不支持的平台:\""%s\""" 4 | "msg_releases_request_failed","请求失败。你的网络正常连接吗?" 5 | "msg_releases_api_failure","无法获取版本列表。GitHub说:%s" 6 | "msg_got_n_releases","获取了%s个发布。" 7 | "msg_fetching_releases_dda","正在为DDA测试版获取发布... " 8 | "msg_fetching_releases_bn","正在为BN测试版获取发布..." 9 | "msg_invalid_fetch_func_param","ReleaseManager.fetch()已传至%s" 10 | -------------------------------------------------------------------------------- /text/zh/release_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/release_manager.zh.translation" ] 9 | 10 | source_file="res://text/zh/release_manager.csv" 11 | dest_files=[ "res://text/zh/release_manager.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/settings_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "msg_creating_settings","正在创建设置文件%s。" 4 | "msg_nonexistent_attempt","尝试从不存在的文件%s加载设置。" 5 | "msg_loading_settings","正在从%s加载设置。" 6 | "msg_settings_parse_error","解析来自JSON的设置时出错,第%s行,信息:%s" 7 | "msg_nonexisting_setting","尝试读取不存在的设定 \""%s\""" 8 | -------------------------------------------------------------------------------- /text/zh/settings_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/settings_manager.zh.translation" ] 9 | 10 | source_file="res://text/zh/settings_manager.csv" 11 | dest_files=[ "res://text/zh/settings_manager.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/settings_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/settings_tab.zh.translation" ] 9 | 10 | source_file="res://text/zh/settings_tab.csv" 11 | dest_files=[ "res://text/zh/settings_tab.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/soundpack_manager.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "msg_no_sound_dir","音效目录不存在:%s" 4 | "msg_deleting_sound","正在删除%s" 5 | "msg_soundpack_not_found","无法找到名为\""%s\""的音效包" 6 | "msg_installing_sound","正在安装音效包\""%s\""..." 7 | "msg_reinstalling_sound","正在重装音效包\""%s\""..." 8 | "msg_sound_download_failed","无法下载音效包文件。" 9 | "msg_sound_installed","音效包已安装。" 10 | -------------------------------------------------------------------------------- /text/zh/soundpack_manager.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/soundpack_manager.zh.translation" ] 9 | 10 | source_file="res://text/zh/soundpack_manager.csv" 11 | dest_files=[ "res://text/zh/soundpack_manager.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/soundpacks_tab.csv: -------------------------------------------------------------------------------- 1 | "keys","zh" 2 | , 3 | "lbl_installed_sound","已安装:" 4 | "lbl_avail_sound","可下载:" 5 | "cbtn_stock_sound","展示基础音效包" 6 | "btn_delete_sound","删除该项" 7 | "btn_install_sound","安装所选" 8 | "btn_reinstall_sound","重新安装所选" 9 | , 10 | "tooltip_stock_sound","显示该列表下data/sound里的音效包。" 11 | "tooltip_delete_sound","从游戏中删除该音效包。" 12 | "tooltip_install_sound","下载所选音效包并添加至游戏。" 13 | , 14 | "dlg_sound_deletion_title","确认删除音效包" 15 | "dlg_sound_deletion_text","正在删除%s。" 16 | "dlg_sound_manual_dl_title","需要手动下载" 17 | "dlg_sound_manual_dl_text","该音效包无法自动下载。点击OK跳转到浏览器, 在文件选择窗口选择文件保存的位置。" 18 | , 19 | "str_no_sound_desc","无描述。" 20 | -------------------------------------------------------------------------------- /text/zh/soundpacks_tab.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/soundpacks_tab.zh.translation" ] 9 | 10 | source_file="res://text/zh/soundpacks_tab.csv" 11 | dest_files=[ "res://text/zh/soundpacks_tab.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /text/zh/tips.csv.import: -------------------------------------------------------------------------------- 1 | [remap] 2 | 3 | importer="csv_translation" 4 | type="Translation" 5 | 6 | [deps] 7 | 8 | files=[ "res://text/zh/tips.zh.translation" ] 9 | 10 | source_file="res://text/zh/tips.csv" 11 | dest_files=[ "res://text/zh/tips.zh.translation" ] 12 | 13 | [params] 14 | 15 | compress=true 16 | delimiter=0 17 | -------------------------------------------------------------------------------- /themes/Godot_3.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/themes/Godot_3.res -------------------------------------------------------------------------------- /themes/Grey.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/themes/Grey.res -------------------------------------------------------------------------------- /themes/Light.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/themes/Light.res -------------------------------------------------------------------------------- /themes/Solarized_Dark.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/themes/Solarized_Dark.res -------------------------------------------------------------------------------- /themes/Solarized_Light.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/themes/Solarized_Light.res -------------------------------------------------------------------------------- /utils/unzip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/utils/unzip.exe -------------------------------------------------------------------------------- /utils/zip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qrrk/Catapult/b675cb861e495b81c0ab8448cf84652dcf6d7fae/utils/zip.exe --------------------------------------------------------------------------------