diff --git a/rpcs3/Emu/Cell/Modules/cellSaveData.cpp b/rpcs3/Emu/Cell/Modules/cellSaveData.cpp index 748bc25f49..b9148a8f3b 100644 --- a/rpcs3/Emu/Cell/Modules/cellSaveData.cpp +++ b/rpcs3/Emu/Cell/Modules/cellSaveData.cpp @@ -1023,7 +1023,7 @@ static NEVER_INLINE error_code savedata_op(ppu_thread& ppu, u32 operation, u32 v // UI returns -1 for new save games if (selected == -1) { - message = get_localized_string(localized_string_id::CELL_SAVEDATA_CREATE_CONFIRMATION); + message = get_localized_string(localized_string_id::CELL_SAVEDATA_SAVE_CONFIRMATION); save_entry.dirName = listSet->newData->dirName.get_ptr(); save_entry.escaped = vfs::escape(save_entry.dirName); } @@ -1155,7 +1155,7 @@ static NEVER_INLINE error_code savedata_op(ppu_thread& ppu, u32 operation, u32 v if (selected == -1) { - message = get_localized_string(localized_string_id::CELL_SAVEDATA_CREATE_CONFIRMATION); + message = get_localized_string(localized_string_id::CELL_SAVEDATA_SAVE_CONFIRMATION); } else { diff --git a/rpcs3/Emu/RSX/Overlays/overlay_save_dialog.cpp b/rpcs3/Emu/RSX/Overlays/overlay_save_dialog.cpp index e7d85d1a0d..6faf181320 100644 --- a/rpcs3/Emu/RSX/Overlays/overlay_save_dialog.cpp +++ b/rpcs3/Emu/RSX/Overlays/overlay_save_dialog.cpp @@ -209,7 +209,7 @@ namespace rsx if (listSet && listSet->newData) { - const char* title = "Create New"; + std::string title = get_localized_string(localized_string_id::CELL_SAVEDATA_NEW_SAVED_DATA_TITLE); std::vector icon; int id = resource_config::standard_image_resource::new_entry; @@ -232,7 +232,7 @@ namespace rsx id = image_resource_id::raw_image; } - std::unique_ptr new_stub = std::make_unique(title, "Select to create a new entry", "", id, icon); + std::unique_ptr new_stub = std::make_unique(title, get_localized_string(localized_string_id::CELL_SAVEDATA_NEW_SAVED_DATA_SUB_TITLE), "", id, icon); m_list->add_entry(new_stub); } @@ -247,7 +247,7 @@ namespace rsx if (m_list->m_items.empty()) { - m_no_saves_text = std::make_unique