From 36cf5dca823636d25dd2475fe5b3ed5af1a80e66 Mon Sep 17 00:00:00 2001 From: Jacques Yakoub Date: Thu, 2 Jul 2020 09:39:10 +0200 Subject: [PATCH] localized.h: follow Sony Naming Conventions (#8539) * localized.h: follow Sony Naming Conventions See this : https://github.com/RPCS3/rpcs3/issues/4259 (Main Window -> (Localized) Replace the category names with either something more gramatically correct or something used in Sony Naming Conventions) --- rpcs3/rpcs3qt/localized.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rpcs3/rpcs3qt/localized.h b/rpcs3/rpcs3qt/localized.h index 1069f05788..f357e4f3d7 100644 --- a/rpcs3/rpcs3qt/localized.h +++ b/rpcs3/rpcs3qt/localized.h @@ -22,10 +22,10 @@ public: const struct category // (see PARAM.SFO in psdevwiki.com) TODO: Disc Categories { // PS3 bootable - const QString app_music = tr("App Music"); - const QString app_photo = tr("App Photo"); - const QString app_tv = tr("App TV"); - const QString app_video = tr("App Video"); + const QString app_music = tr("Music App"); + const QString app_photo = tr("Photo App"); + const QString app_tv = tr("TV App"); + const QString app_video = tr("Video App"); const QString bc_video = tr("Broadcast Video"); const QString disc_game = tr("Disc Game"); const QString hdd_game = tr("HDD Game");