diff --git a/Common/Data/Text/Parsers.cpp b/Common/Data/Text/Parsers.cpp index 41f611be84c9..5b7771335c34 100644 --- a/Common/Data/Text/Parsers.cpp +++ b/Common/Data/Text/Parsers.cpp @@ -18,7 +18,7 @@ void NiceSizeFormat(uint64_t size, char *out, size_t bufSize) { if (s == 0) snprintf(out, bufSize, "%d B", (int)size); else { - const char* sizes[] = { "B","KB","MB","GB","TB","PB","EB" }; + static const char* const sizes[] = { "B","KB","MB","GB","TB","PB","EB" }; snprintf(out, bufSize, "%3.2f %s", f, sizes[s]); } } diff --git a/Common/File/FileUtil.cpp b/Common/File/FileUtil.cpp index a431272bc32d..184f45ebfdcb 100644 --- a/Common/File/FileUtil.cpp +++ b/Common/File/FileUtil.cpp @@ -519,8 +519,8 @@ bool CreateDir(const Path &path) { // Convert it to a "CreateDirIn" call, if possible, since that's // what we can do with the storage API. AndroidContentURI uri(path.ToString()); + std::string newDirName = uri.GetLastPart(); if (uri.NavigateUp()) { - std::string newDirName = uri.GetLastPart(); INFO_LOG(COMMON, "Calling Android_CreateDirectory(%s, %s)", uri.ToString().c_str(), newDirName.c_str()); return Android_CreateDirectory(uri.ToString(), newDirName) == StorageError::SUCCESS; } else { diff --git a/Core/Util/GameManager.cpp b/Core/Util/GameManager.cpp index 17aa0013cdc9..bd678f355cb0 100644 --- a/Core/Util/GameManager.cpp +++ b/Core/Util/GameManager.cpp @@ -542,7 +542,9 @@ bool GameManager::ExtractFile(struct zip *z, int file_index, const Path &outFile delete[] buffer; return true; } else { - ERROR_LOG(HLE, "Failed to open file for writing"); + auto iz = GetI18NCategory(I18NCat::INSTALLZIP); + g_OSD.Show(OSDType::MESSAGE_ERROR, iz->T("Installation failed")); + ERROR_LOG(HLE, "Failed to open file for writing: %s", outFilename.c_str()); return false; } } @@ -613,6 +615,7 @@ bool GameManager::InstallMemstickGame(struct zip *z, const Path &zipfile, const continue; if (!ExtractFile(z, i, outFilename, &bytesCopied, allBytes)) { + ERROR_LOG(HLE, "Bailing: Failed to extract file: %s -> %s", zippedName.c_str(), outFilename.c_str()); goto bail; } else { createdFiles.push_back(outFilename); diff --git a/android/jni/app-android.cpp b/android/jni/app-android.cpp index acdf51e099a4..78b449283532 100644 --- a/android/jni/app-android.cpp +++ b/android/jni/app-android.cpp @@ -1482,8 +1482,12 @@ std::vector System_GetCameraDeviceList() { for (int i = 0; i < arrayListObjectLen; i++) { jstring dev = static_cast(getEnv()->CallObjectMethod(deviceListObject, arrayListGet, i)); - const char* cdev = getEnv()->GetStringUTFChars(dev, nullptr); - deviceListVector.push_back(cdev); + const char *cdev = getEnv()->GetStringUTFChars(dev, nullptr); + if (!cdev) { + getEnv()->DeleteLocalRef(dev); + continue; + } + deviceListVector.push_back(std::string(cdev)); getEnv()->ReleaseStringUTFChars(dev, cdev); getEnv()->DeleteLocalRef(dev); } diff --git a/assets/lang/ar_AE.ini b/assets/lang/ar_AE.ini index 78fbf737a8a7..8f34c6c7b15c 100644 --- a/assets/lang/ar_AE.ini +++ b/assets/lang/ar_AE.ini @@ -696,6 +696,7 @@ Delete ZIP file = ‎مسح الملف المضغوط Install = ‎تثبيت Install game from ZIP file? = ‎تثبيت اللعبة من الملف المضغوط ? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = ‎مثبت! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/az_AZ.ini b/assets/lang/az_AZ.ini index 64187edaa933..889605951543 100644 --- a/assets/lang/az_AZ.ini +++ b/assets/lang/az_AZ.ini @@ -688,6 +688,7 @@ Delete ZIP file = Delete ZIP file Install = Install Install game from ZIP file? = Install game from ZIP file? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installed! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/bg_BG.ini b/assets/lang/bg_BG.ini index 8e1305d9e89e..9664bc7b3831 100644 --- a/assets/lang/bg_BG.ini +++ b/assets/lang/bg_BG.ini @@ -688,6 +688,7 @@ Delete ZIP file = Изтрий ZIP архива Install = Инсталирай Install game from ZIP file? = Инсталирай игра от ZIP архив? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Инсталирано! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/ca_ES.ini b/assets/lang/ca_ES.ini index 52b89f611f7e..9e36d4156a80 100644 --- a/assets/lang/ca_ES.ini +++ b/assets/lang/ca_ES.ini @@ -688,6 +688,7 @@ Delete ZIP file = Delete ZIP file Install = Install Install game from ZIP file? = Install game from ZIP file? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installed! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/cz_CZ.ini b/assets/lang/cz_CZ.ini index 81e9e45b0b24..c3e03fdb191f 100644 --- a/assets/lang/cz_CZ.ini +++ b/assets/lang/cz_CZ.ini @@ -688,6 +688,7 @@ Delete ZIP file = Smazat soubor ZIP Install = Nainstalovat Install game from ZIP file? = Instalovat hru ze souboru ZIP? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Instalováno! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/da_DK.ini b/assets/lang/da_DK.ini index a59828e11887..12fefde68ef5 100644 --- a/assets/lang/da_DK.ini +++ b/assets/lang/da_DK.ini @@ -688,6 +688,7 @@ Delete ZIP file = Slet ZIP fil Install = Installer Install game from ZIP file? = Installer spil fra ZIP fil? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installeret! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/de_DE.ini b/assets/lang/de_DE.ini index 8947de87206f..02abdb36ea58 100644 --- a/assets/lang/de_DE.ini +++ b/assets/lang/de_DE.ini @@ -688,6 +688,7 @@ Delete ZIP file = ZIP Datei löschen Install = Installieren Install game from ZIP file? = Spiel aus ZIP Datei installieren? Install textures from ZIP file? = Texturen von ZIP Datei installieren? +Installation failed = Installation failed Installed! = Installiert! Texture pack doesn't support install = Texturpack unterstützt keine Installation Zip archive corrupt = ZIP Archiv beschädigt diff --git a/assets/lang/dr_ID.ini b/assets/lang/dr_ID.ini index 1f3a89407107..56621244d59a 100644 --- a/assets/lang/dr_ID.ini +++ b/assets/lang/dr_ID.ini @@ -688,6 +688,7 @@ Delete ZIP file = Delete ZIP file Install = Install Install game from ZIP file? = Install game from ZIP file? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installed! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/en_US.ini b/assets/lang/en_US.ini index 7c32195d7b64..72dd8ed57a20 100644 --- a/assets/lang/en_US.ini +++ b/assets/lang/en_US.ini @@ -712,6 +712,7 @@ Delete ZIP file = Delete ZIP file Install = Install Install game from ZIP file? = Install game from ZIP file? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installed! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/es_ES.ini b/assets/lang/es_ES.ini index a349b52d46be..7b516c078714 100644 --- a/assets/lang/es_ES.ini +++ b/assets/lang/es_ES.ini @@ -688,6 +688,7 @@ Delete ZIP file = Borrar archivo ZIP Install = Instalar Install game from ZIP file? = ¿Instalar juego desde archivo ZIP? Install textures from ZIP file? = ¿Instalar texturas desde archivo ZIP? +Installation failed = Installation failed Installed! = ¡Instalado! Texture pack doesn't support install = El paquete de texturas no es compatible con la instalación. Zip archive corrupt = El archivo ZIP está dañado. diff --git a/assets/lang/es_LA.ini b/assets/lang/es_LA.ini index 6a5baa5f95b6..b64fcfd04753 100644 --- a/assets/lang/es_LA.ini +++ b/assets/lang/es_LA.ini @@ -688,6 +688,7 @@ Delete ZIP file = Borrar archivo ZIP Install = Instalar Install game from ZIP file? = ¿Instalar juego desde un archivo ZIP? Install textures from ZIP file? = ¿Instalar texturas desde un archivo ZIP? +Installation failed = Installation failed Installed! = ¡Instalado! Texture pack doesn't support install = El paquete de texturas no es compatible con la instalación. Zip archive corrupt = El archivo ZIP está dañado. diff --git a/assets/lang/fa_IR.ini b/assets/lang/fa_IR.ini index e2f2cbaf11e7..de24ce150b2b 100644 --- a/assets/lang/fa_IR.ini +++ b/assets/lang/fa_IR.ini @@ -688,6 +688,7 @@ Delete ZIP file = Delete ZIP file Install = Install Install game from ZIP file? = Install game from ZIP file? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installed! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/fi_FI.ini b/assets/lang/fi_FI.ini index a620f440d986..19bd33ce39ea 100644 --- a/assets/lang/fi_FI.ini +++ b/assets/lang/fi_FI.ini @@ -688,6 +688,7 @@ Delete ZIP file = Poista ZIP-tiedosto Install = Asenna Install game from ZIP file? = Asenna peli ZIP-tiedostosta? Install textures from ZIP file? = Asenna tekstuureja ZIP-tiedostosta? +Installation failed = Installation failed Installed! = Asenettu! Texture pack doesn't support install = Tekstuuripakkaus ei tue asennusta Zip archive corrupt = ZIP-arkisto on korruptoitunut diff --git a/assets/lang/fr_FR.ini b/assets/lang/fr_FR.ini index ec46d0dfafb0..01f8d1dd18d8 100644 --- a/assets/lang/fr_FR.ini +++ b/assets/lang/fr_FR.ini @@ -688,6 +688,7 @@ Delete ZIP file = Supprimer le fichier ZIP Install = Installer Install game from ZIP file? = Installer le jeu depuis le fichier ZIP ? Install textures from ZIP file? = Installer les textures depuis le fichier ZIP ? +Installation failed = Installation failed Installed! = Installé ! Texture pack doesn't support install = Le pack de textures ne peut pas être installé Zip archive corrupt = Archive ZIP corrompue diff --git a/assets/lang/gl_ES.ini b/assets/lang/gl_ES.ini index 334fd3418b28..49d9dfe75bc3 100644 --- a/assets/lang/gl_ES.ini +++ b/assets/lang/gl_ES.ini @@ -688,6 +688,7 @@ Delete ZIP file = Borrar arquivo ZIP Install = Instalar Install game from ZIP file? = Instalar xogo dende un arquivo ZIP? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = ¡Instalado! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/gr_EL.ini b/assets/lang/gr_EL.ini index 982d3e6fcec8..b907319f3996 100644 --- a/assets/lang/gr_EL.ini +++ b/assets/lang/gr_EL.ini @@ -688,6 +688,7 @@ Delete ZIP file = Διαγραφή αρχείου ZIP Install = Εγκατάσταση Install game from ZIP file? = Εγκατάσταση παιχνιδιού από το αρχείο ZIP? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Εγκαταστάθηκε! Texture pack doesn't support install = Το πακέτο υφής δεν υποστηρίζει την εγκατάσταση Zip archive corrupt = Το αρχείο ZIP είναι κατεστραμμένο diff --git a/assets/lang/he_IL.ini b/assets/lang/he_IL.ini index 9aae6ca1b81d..b848791025cc 100644 --- a/assets/lang/he_IL.ini +++ b/assets/lang/he_IL.ini @@ -688,6 +688,7 @@ Delete ZIP file = Delete ZIP file Install = Install Install game from ZIP file? = Install game from ZIP file? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installed! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/he_IL_invert.ini b/assets/lang/he_IL_invert.ini index df714ba5bde8..eeb84825f901 100644 --- a/assets/lang/he_IL_invert.ini +++ b/assets/lang/he_IL_invert.ini @@ -688,6 +688,7 @@ Delete ZIP file = Delete ZIP file Install = Install Install game from ZIP file? = Install game from ZIP file? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installed! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/hr_HR.ini b/assets/lang/hr_HR.ini index 05717f829b1b..bbc3c746315b 100644 --- a/assets/lang/hr_HR.ini +++ b/assets/lang/hr_HR.ini @@ -688,6 +688,7 @@ Delete ZIP file = Izbriši ZIP datoteku Install = Instaliraj Install game from ZIP file? = Instaliraj igru iz ZIP datoteke? Install textures from ZIP file? = Instaliraj teksture iz ZIP datoteke? +Installation failed = Installation failed Installed! = Instalirano! Texture pack doesn't support install = Texture pack ne podržava instaliranje Zip archive corrupt = Koruptana ZIP arhiva diff --git a/assets/lang/hu_HU.ini b/assets/lang/hu_HU.ini index 05bbcf3e4fdc..236f232aa698 100644 --- a/assets/lang/hu_HU.ini +++ b/assets/lang/hu_HU.ini @@ -688,6 +688,7 @@ Delete ZIP file = ZIP fájl törlése Install = Telepítés Install game from ZIP file? = Játék telepítése ZIP fájlból? Install textures from ZIP file? = Textúrák telepítése ZIP fájlból? +Installation failed = Installation failed Installed! = Telepítve! Texture pack doesn't support install = A textúra csomag nem támogatja a telepítést Zip archive corrupt = A ZIP archívum sérült diff --git a/assets/lang/id_ID.ini b/assets/lang/id_ID.ini index 82569a67822f..38465c006560 100644 --- a/assets/lang/id_ID.ini +++ b/assets/lang/id_ID.ini @@ -688,6 +688,7 @@ Delete ZIP file = Hapus berkas ZIP Install = Pasang Install game from ZIP file? = Pasang permainan dari berkas ZIP? Install textures from ZIP file? = Pasang tekstur dari file ZIP? +Installation failed = Installation failed Installed! = Terpasang! Texture pack doesn't support install = Paket tekstur tidak mendukung pemasangan Zip archive corrupt = Arzip ZIP rusak diff --git a/assets/lang/it_IT.ini b/assets/lang/it_IT.ini index b0d4193e8aeb..69bf9fad9af6 100644 --- a/assets/lang/it_IT.ini +++ b/assets/lang/it_IT.ini @@ -689,6 +689,7 @@ Delete ZIP file = Elimina file ZIP Install = Installa Install game from ZIP file? = Installare il gioco dal file ZIP? Install textures from ZIP file? = Installare le texture dal file ZIP? +Installation failed = Installation failed Installed! = Installato! Texture pack doesn't support install = Il texture pack non supporta l'installazione Zip archive corrupt = Archivio ZIP corrotto diff --git a/assets/lang/ja_JP.ini b/assets/lang/ja_JP.ini index 8e106a7927f8..d9a8023506ed 100644 --- a/assets/lang/ja_JP.ini +++ b/assets/lang/ja_JP.ini @@ -688,6 +688,7 @@ Delete ZIP file = ZIPファイルを削除 Install = インストールする Install game from ZIP file? = ZIPファイルからゲームをインストールしますか? Install textures from ZIP file? = ZIPファイルからテクスチャをインストールしますか? +Installation failed = Installation failed Installed! = インストールしました Texture pack doesn't support install = テクスチャパックがインストールをサポートしていません Zip archive corrupt = ZIPアーカイブが破損しています diff --git a/assets/lang/jv_ID.ini b/assets/lang/jv_ID.ini index 7ba978696ae6..831cf59738cc 100644 --- a/assets/lang/jv_ID.ini +++ b/assets/lang/jv_ID.ini @@ -688,6 +688,7 @@ Delete ZIP file = Mbusek berkas ZIP Install = Nginstal Install game from ZIP file? = Nginstal dolanan saka berkas ZIP? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Keinstal! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/ko_KR.ini b/assets/lang/ko_KR.ini index 945cea417745..1c8e399a9d98 100644 --- a/assets/lang/ko_KR.ini +++ b/assets/lang/ko_KR.ini @@ -688,6 +688,7 @@ Delete ZIP file = ZIP 파일 삭제 Install = 설치 Install game from ZIP file? = ZIP 파일에서 게임을 설치하겠습니까? Install textures from ZIP file? = ZIP 파일에서 텍스처를 설치하겠습니까? +Installation failed = Installation failed Installed! = 설치되었습니다! Texture pack doesn't support install = 텍스처 팩은 설치를 지원하지 않습니다. Zip archive corrupt = ZIP 아카이브가 손상되었습니다. diff --git a/assets/lang/lo_LA.ini b/assets/lang/lo_LA.ini index f866297f2684..82988965ff02 100644 --- a/assets/lang/lo_LA.ini +++ b/assets/lang/lo_LA.ini @@ -688,6 +688,7 @@ Delete ZIP file = ລຶບໄຟລ໌ ZIP Install = ຕິດຕັ້ງ Install game from ZIP file? = ຕິດຕັ້ງເກມຈາກໄຟລ໌ ZIP ຫຼືບໍ່? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = ຕິດຕັ້ງແລ້ວ! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/lt-LT.ini b/assets/lang/lt-LT.ini index bbfe927fd8a7..39dabb3a0d35 100644 --- a/assets/lang/lt-LT.ini +++ b/assets/lang/lt-LT.ini @@ -688,6 +688,7 @@ Delete ZIP file = Ištrinti ZIP failą Install = Instaliuoti Install game from ZIP file? = Instaliuoti žaidimą iš ZIP failo? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Instaliuota! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/ms_MY.ini b/assets/lang/ms_MY.ini index 81cc5b5212cc..3a727879ff64 100644 --- a/assets/lang/ms_MY.ini +++ b/assets/lang/ms_MY.ini @@ -688,6 +688,7 @@ Delete ZIP file = Padam fail ZIP Install = Pasang Install game from ZIP file? = Pasang permainan dari fail ZIP? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Dipasang! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/nl_NL.ini b/assets/lang/nl_NL.ini index 2423a73c500c..238dd972a3a0 100644 --- a/assets/lang/nl_NL.ini +++ b/assets/lang/nl_NL.ini @@ -688,6 +688,7 @@ Delete ZIP file = ZIP-bestand wissen Install = Installeren Install game from ZIP file? = Game installeren vanuit het ZIP-bestand? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installatie voltooid! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/no_NO.ini b/assets/lang/no_NO.ini index c0a8f437692a..d3f6d41db80f 100644 --- a/assets/lang/no_NO.ini +++ b/assets/lang/no_NO.ini @@ -688,6 +688,7 @@ Delete ZIP file = Delete ZIP file Install = Install Install game from ZIP file? = Install game from ZIP file? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installed! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/pl_PL.ini b/assets/lang/pl_PL.ini index e68582ceed79..90aa8b4a6a0d 100644 --- a/assets/lang/pl_PL.ini +++ b/assets/lang/pl_PL.ini @@ -693,6 +693,7 @@ Delete ZIP file = Usuń plik ZIP Install = Zainstaluj Install game from ZIP file? = Zainstalować grę z pliku ZIP? Install textures from ZIP file? = Czy zainstalować teksturę z archiwum ZIP? +Installation failed = Installation failed Installed! = Zainstalowano! Texture pack doesn't support install = Paczka tekstur nie obsługuje instalacji Zip archive corrupt = Niepoprawne archiwum ZIP diff --git a/assets/lang/pt_BR.ini b/assets/lang/pt_BR.ini index 4bac956cbe71..8c64892b3d86 100644 --- a/assets/lang/pt_BR.ini +++ b/assets/lang/pt_BR.ini @@ -712,6 +712,7 @@ Delete ZIP file = Apagar arquivo ZIP Install = Instalar Install game from ZIP file? = Instalar o jogo do arquivo ZIP? Install textures from ZIP file? = Instalar as texturas do arquivo ZIP? +Installation failed = Installation failed Installed! = Instalado! Texture pack doesn't support install = O pacote das texturas não suporta a instalação Zip archive corrupt = Arquivo ZIP corrompido diff --git a/assets/lang/pt_PT.ini b/assets/lang/pt_PT.ini index 3eb93dcbd17d..898b6af649df 100644 --- a/assets/lang/pt_PT.ini +++ b/assets/lang/pt_PT.ini @@ -712,6 +712,7 @@ Delete ZIP file = Eliminar ficheiro .zip Install = Instalar Install game from ZIP file? = Instalar o jogo do ficheiro .zip? Install textures from ZIP file? = Instalar as texturas do ficheiro .zip? +Installation failed = Installation failed Installed! = Instalado! Texture pack doesn't support install = O pacote de texturas não é compatível com a instalação. Zip archive corrupt = Ficheiro .zip compactado corrompido. diff --git a/assets/lang/ro_RO.ini b/assets/lang/ro_RO.ini index d795a4f89679..7dbcfe63ee1a 100644 --- a/assets/lang/ro_RO.ini +++ b/assets/lang/ro_RO.ini @@ -689,6 +689,7 @@ Delete ZIP file = Șterge fișier ZIP Install = Instalează Install game from ZIP file? = Instalează joc din fișier ZIP? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Instalat! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/ru_RU.ini b/assets/lang/ru_RU.ini index 7b4cff9d062b..d31ab3ef5c8d 100644 --- a/assets/lang/ru_RU.ini +++ b/assets/lang/ru_RU.ini @@ -688,6 +688,7 @@ Delete ZIP file = Удалить ZIP файл Install = Установить Install game from ZIP file? = Установить игру из ZIP-файла? Install textures from ZIP file? = Установить текстуры из ZIP-файла? +Installation failed = Installation failed Installed! = Установлено! Texture pack doesn't support install = Набор текстур не поддерживает установку Zip archive corrupt = ZIP-архив повреждён diff --git a/assets/lang/sv_SE.ini b/assets/lang/sv_SE.ini index ebc5ba03c068..1f59608addcb 100644 --- a/assets/lang/sv_SE.ini +++ b/assets/lang/sv_SE.ini @@ -689,6 +689,7 @@ Delete ZIP file = Ta bort ZIP-fil Install = Installera Install game from ZIP file? = Installera spel från ZIP-fil? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installerad! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/tg_PH.ini b/assets/lang/tg_PH.ini index 63c097cd6f21..228b47f323ca 100644 --- a/assets/lang/tg_PH.ini +++ b/assets/lang/tg_PH.ini @@ -688,6 +688,7 @@ Delete ZIP file = Burahin ang ZIP File Install = Install Install game from ZIP file? = I-install ang laro mula sa ZIP? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Installed! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/th_TH.ini b/assets/lang/th_TH.ini index 1389136e29db..990986192a79 100644 --- a/assets/lang/th_TH.ini +++ b/assets/lang/th_TH.ini @@ -688,6 +688,7 @@ Delete ZIP file = ลบไฟล์ ZIP Install = ติดตั้ง Install game from ZIP file? = ต้องการติดตั้งเกมจากไฟล์ ZIP เลยหรือไม่? Install textures from ZIP file? = ต้องการติดตั้งเท็คเจอร์จากไฟล์ ZIP เลยหรือไม่? +Installation failed = Installation failed Installed! = ติดตั้งเสร็จสิ้น! Texture pack doesn't support install = เท็คเจอร์แพ็คนี้ไม่รองรับการติดตั้ง Zip archive corrupt = ไฟล์ ZIP ไม่สมบูรณ์ (เสียจ้า) diff --git a/assets/lang/tr_TR.ini b/assets/lang/tr_TR.ini index 690b2224955e..00a3a20fdf06 100644 --- a/assets/lang/tr_TR.ini +++ b/assets/lang/tr_TR.ini @@ -690,6 +690,7 @@ Delete ZIP file = Zip dosyasını sil Install = Yükle Install game from ZIP file? = Zip dosyasından oyun yüklensin mi? Install textures from ZIP file? = Zip dosyasından dokular yüklensin mi? +Installation failed = Installation failed Installed! = Yüklendi! Texture pack doesn't support install = Doku paketi yüklemeyi desteklemiyor Zip archive corrupt = ZIP arşivi bozuk diff --git a/assets/lang/uk_UA.ini b/assets/lang/uk_UA.ini index 5130165d6d04..fb3d1aedaf35 100644 --- a/assets/lang/uk_UA.ini +++ b/assets/lang/uk_UA.ini @@ -688,6 +688,7 @@ Delete ZIP file = Видалити ZIP файл Install = Встановити Install game from ZIP file? = Встановити гру з ZIP-файлу? Install textures from ZIP file? = Встановити текстури з ZIP-файлу? +Installation failed = Installation failed Installed! = Встановлено! Texture pack doesn't support install = Пакет текстур не підтримує встановлення Zip archive corrupt = ZIP архів пошкоджено diff --git a/assets/lang/vi_VN.ini b/assets/lang/vi_VN.ini index bea10d6d4014..54462b5cacdc 100644 --- a/assets/lang/vi_VN.ini +++ b/assets/lang/vi_VN.ini @@ -688,6 +688,7 @@ Delete ZIP file = Xóa file ZIP Install = Cài đặt Install game from ZIP file? = Cài đặt trò chơi từ file ZIP? Install textures from ZIP file? = Install textures from ZIP file? +Installation failed = Installation failed Installed! = Đã cài xong! Texture pack doesn't support install = Texture pack doesn't support install Zip archive corrupt = ZIP archive corrupt diff --git a/assets/lang/zh_CN.ini b/assets/lang/zh_CN.ini index 588c409683be..fa11a956188b 100644 --- a/assets/lang/zh_CN.ini +++ b/assets/lang/zh_CN.ini @@ -688,6 +688,7 @@ Delete ZIP file = 删除ZIP文件 Install = 安装 Install game from ZIP file? = 从ZIP文件安装游戏? Install textures from ZIP file? = 从ZIP文件安装纹理包? +Installation failed = Installation failed Installed! = 安装完成! Texture pack doesn't support install = 此纹理包不支持安装 Zip archive corrupt = ZIP文档损坏 diff --git a/assets/lang/zh_TW.ini b/assets/lang/zh_TW.ini index a7676079108a..ab7dbc88f942 100644 --- a/assets/lang/zh_TW.ini +++ b/assets/lang/zh_TW.ini @@ -688,6 +688,7 @@ Delete ZIP file = 刪除 ZIP 檔案 Install = 安裝 Install game from ZIP file? = 從 ZIP 檔案安裝遊戲? Install textures from ZIP file? = 從 ZIP 檔案安裝紋理? +Installation failed = Installation failed Installed! = 已安裝! Texture pack doesn't support install = 紋理套件不支援安裝 Zip archive corrupt = ZIP 封存損毀