diff --git a/VitaShell_warning.vpk b/VitaShell_warning.vpk deleted file mode 100644 index d576e8fd..00000000 Binary files a/VitaShell_warning.vpk and /dev/null differ diff --git a/hex.c b/hex.c index 10838cb2..b63b6448 100644 --- a/hex.c +++ b/hex.c @@ -239,7 +239,7 @@ int hexViewer(char *file) { } if (changed) { - initMessageDialog(SCE_MSG_DIALOG_BUTTON_TYPE_YESNO, "Do you want to save your modifications?"); + initMessageDialog(SCE_MSG_DIALOG_BUTTON_TYPE_YESNO, language_container[SAVE_MODIFICATIONS]); save_question = 1; } else { break; diff --git a/language.c b/language.c index 989fbb4c..6f3bf202 100644 --- a/language.c +++ b/language.c @@ -89,6 +89,7 @@ void loadLanguage(int id) { LANGUAGE_ENTRY(DELETE_FILES_FOLDERS_QUESTION), LANGUAGE_ENTRY(INSTALL_QUESTION), LANGUAGE_ENTRY(INSTALL_WARNING), + LANGUAGE_ENTRY(SAVE_MODIFICATIONS), LANGUAGE_ENTRY(WIFI_ERROR), LANGUAGE_ENTRY(FTP_SERVER), }; diff --git a/language.h b/language.h index f818eea7..9286d60a 100644 --- a/language.h +++ b/language.h @@ -47,6 +47,7 @@ enum LanguageContainer { DELETE_FILES_FOLDERS_QUESTION, INSTALL_QUESTION, INSTALL_WARNING, + SAVE_MODIFICATIONS, WIFI_ERROR, FTP_SERVER, LANGUAGE_CONTRAINER_SIZE, diff --git a/resources/english_us.txt b/resources/english_us.txt index b9b5164b..1b442ce8 100644 --- a/resources/english_us.txt +++ b/resources/english_us.txt @@ -27,5 +27,6 @@ DELETE_FOLDER_QUESTION = "Are you sure you want to delete this fol DELETE_FILES_FOLDERS_QUESTION = "Are you sure you want to delete these files/folders?" INSTALL_QUESTION = "Do you want to install this package?" INSTALL_WARNING = "This package requests advanced access to the\system.\It will have access to your personal information.\If you did not obtain it from a trusted source,\please proceed at your own caution.\\Would you like to continue the install?" +SAVE_MODIFICATIONS = "Do you want to save your modifications?" WIFI_ERROR = "You must use Wi-Fi to do this." FTP_SERVER = "FTP server is now running at\ftp://%s:%i\\Press 'OK' to keep it in background.\Press 'Cancel' to disconnect." \ No newline at end of file