Skip to content

Commit

Permalink
Added missing string translation.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheOfficialFloW committed Aug 27, 2016
1 parent 7c5d911 commit 4a605d1
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 1 deletion.
Binary file removed VitaShell_warning.vpk
Binary file not shown.
2 changes: 1 addition & 1 deletion hex.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 1 addition & 0 deletions language.c
Original file line number Diff line number Diff line change
Expand Up @@ -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),
};
Expand Down
1 change: 1 addition & 0 deletions language.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ enum LanguageContainer {
DELETE_FILES_FOLDERS_QUESTION,
INSTALL_QUESTION,
INSTALL_WARNING,
SAVE_MODIFICATIONS,
WIFI_ERROR,
FTP_SERVER,
LANGUAGE_CONTRAINER_SIZE,
Expand Down
1 change: 1 addition & 0 deletions resources/english_us.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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."

0 comments on commit 4a605d1

Please sign in to comment.