mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-04-27 12:51:42 +00:00
include furigana usage guidance for japanese localization
This commit is contained in:
parent
cded8c8c1c
commit
534560d718
2 changed files with 87 additions and 1 deletions
|
|
@ -37,6 +37,12 @@
|
||||||
{ ELanguage::Japanese, "Example" }
|
{ ELanguage::Japanese, "Example" }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- Japanese localization should use furigana for message windows, options items,
|
||||||
|
options descriptions and installer text.
|
||||||
|
|
||||||
|
Furigana should be included in the text as such:
|
||||||
|
"[私:わたし]はジョージです。"
|
||||||
|
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
@ -46,6 +52,7 @@
|
||||||
#define CONFIG_DEFINE_ENUM_LOCALE(type) \
|
#define CONFIG_DEFINE_ENUM_LOCALE(type) \
|
||||||
CONFIG_ENUM_LOCALE(type) g_##type##_locale =
|
CONFIG_ENUM_LOCALE(type) g_##type##_locale =
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(Language)
|
CONFIG_DEFINE_LOCALE(Language)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Language", "Change the language used for text and logos." } },
|
{ ELanguage::English, { "Language", "Change the language used for text and logos." } },
|
||||||
|
|
@ -118,6 +125,7 @@ CONFIG_DEFINE_ENUM_LOCALE(EVoiceLanguage)
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(Hints)
|
CONFIG_DEFINE_LOCALE(Hints)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Hints", "Show hints during gameplay." } },
|
{ ELanguage::English, { "Hints", "Show hints during gameplay." } },
|
||||||
|
|
@ -128,6 +136,7 @@ CONFIG_DEFINE_LOCALE(Hints)
|
||||||
{ ELanguage::Italian, { "Indizi", "Mostra degli indizzi durante il gioco." } }
|
{ ELanguage::Italian, { "Indizi", "Mostra degli indizzi durante il gioco." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(ControlTutorial)
|
CONFIG_DEFINE_LOCALE(ControlTutorial)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Control Tutorial", "Show controller hints during gameplay.\n\nThe Werehog Critical Attack prompt will be unaffected." } },
|
{ ELanguage::English, { "Control Tutorial", "Show controller hints during gameplay.\n\nThe Werehog Critical Attack prompt will be unaffected." } },
|
||||||
|
|
@ -138,6 +147,7 @@ CONFIG_DEFINE_LOCALE(ControlTutorial)
|
||||||
{ ELanguage::Italian, { "Tutorial dei comandi", "Mostra i tutorial dei comandi durante il gioco.\n\nIl tutorial per l'attacco critico del Werehog non verrà influenzato da questa opzione." } }
|
{ ELanguage::Italian, { "Tutorial dei comandi", "Mostra i tutorial dei comandi durante il gioco.\n\nIl tutorial per l'attacco critico del Werehog non verrà influenzato da questa opzione." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(AchievementNotifications)
|
CONFIG_DEFINE_LOCALE(AchievementNotifications)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Achievement Notifications", "Show notifications for unlocking achievements.\n\nAchievements will still be rewarded with notifications disabled." } },
|
{ ELanguage::English, { "Achievement Notifications", "Show notifications for unlocking achievements.\n\nAchievements will still be rewarded with notifications disabled." } },
|
||||||
|
|
@ -148,6 +158,7 @@ CONFIG_DEFINE_LOCALE(AchievementNotifications)
|
||||||
{ ELanguage::Italian, { "Notifiche obiettivi", "Mostra delle notifiche quando sblocchi degli obiettivi.\n\nGli obiettivi verranno comunque assegnati anche con le notifiche disattivate." } }
|
{ ELanguage::Italian, { "Notifiche obiettivi", "Mostra delle notifiche quando sblocchi degli obiettivi.\n\nGli obiettivi verranno comunque assegnati anche con le notifiche disattivate." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(TimeOfDayTransition)
|
CONFIG_DEFINE_LOCALE(TimeOfDayTransition)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Time of Day Transition", "Change how the loading screen appears when switching time of day in the hub areas." } },
|
{ ELanguage::English, { "Time of Day Transition", "Change how the loading screen appears when switching time of day in the hub areas." } },
|
||||||
|
|
@ -158,6 +169,7 @@ CONFIG_DEFINE_LOCALE(TimeOfDayTransition)
|
||||||
{ ELanguage::Italian, { "Transizione giorno/notte", "Modifica l'aspetto della schermata di caricamento quando fai scorrere il tempo." } }
|
{ ELanguage::Italian, { "Transizione giorno/notte", "Modifica l'aspetto della schermata di caricamento quando fai scorrere il tempo." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana in its description.
|
||||||
CONFIG_DEFINE_ENUM_LOCALE(ETimeOfDayTransition)
|
CONFIG_DEFINE_ENUM_LOCALE(ETimeOfDayTransition)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
|
@ -204,6 +216,7 @@ CONFIG_DEFINE_ENUM_LOCALE(ETimeOfDayTransition)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(ControllerIcons)
|
CONFIG_DEFINE_LOCALE(ControllerIcons)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Controller Icons", "Change the icons to match your controller." } },
|
{ ELanguage::English, { "Controller Icons", "Change the icons to match your controller." } },
|
||||||
|
|
@ -214,6 +227,7 @@ CONFIG_DEFINE_LOCALE(ControllerIcons)
|
||||||
{ ELanguage::Italian, { "Icone dei tasti", "Modifica le icone per farle corrispondere con il tuo controller." } }
|
{ ELanguage::Italian, { "Icone dei tasti", "Modifica le icone per farle corrispondere con il tuo controller." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana in its description.
|
||||||
CONFIG_DEFINE_ENUM_LOCALE(EControllerIcons)
|
CONFIG_DEFINE_ENUM_LOCALE(EControllerIcons)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
|
@ -266,6 +280,7 @@ CONFIG_DEFINE_ENUM_LOCALE(EControllerIcons)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(HorizontalCamera)
|
CONFIG_DEFINE_LOCALE(HorizontalCamera)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Horizontal Camera", "Change how the camera moves left and right." } },
|
{ ELanguage::English, { "Horizontal Camera", "Change how the camera moves left and right." } },
|
||||||
|
|
@ -276,6 +291,7 @@ CONFIG_DEFINE_LOCALE(HorizontalCamera)
|
||||||
{ ELanguage::Italian, { "Telecamera orizzontale", "Modifica come la telecamera si muove da sinistra a destra." } }
|
{ ELanguage::Italian, { "Telecamera orizzontale", "Modifica come la telecamera si muove da sinistra a destra." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(VerticalCamera)
|
CONFIG_DEFINE_LOCALE(VerticalCamera)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Vertical Camera", "Change how the camera moves up and down." } },
|
{ ELanguage::English, { "Vertical Camera", "Change how the camera moves up and down." } },
|
||||||
|
|
@ -332,6 +348,7 @@ CONFIG_DEFINE_ENUM_LOCALE(ECameraRotationMode)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(Vibration)
|
CONFIG_DEFINE_LOCALE(Vibration)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Vibration", "Toggle controller vibration." } },
|
{ ELanguage::English, { "Vibration", "Toggle controller vibration." } },
|
||||||
|
|
@ -342,6 +359,7 @@ CONFIG_DEFINE_LOCALE(Vibration)
|
||||||
{ ELanguage::Italian, { "Vibrazione", "Attiva/disattiva la vibrazione del controller." } }
|
{ ELanguage::Italian, { "Vibrazione", "Attiva/disattiva la vibrazione del controller." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(AllowBackgroundInput)
|
CONFIG_DEFINE_LOCALE(AllowBackgroundInput)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Allow Background Input", "Allow controller input whilst the game window is unfocused." } },
|
{ ELanguage::English, { "Allow Background Input", "Allow controller input whilst the game window is unfocused." } },
|
||||||
|
|
@ -352,6 +370,7 @@ CONFIG_DEFINE_LOCALE(AllowBackgroundInput)
|
||||||
{ ELanguage::Italian, { "Input con la finestra inattiva", "Attiva/disattiva i tasti del controller mentre la finestra è inattiva." } }
|
{ ELanguage::Italian, { "Input con la finestra inattiva", "Attiva/disattiva i tasti del controller mentre la finestra è inattiva." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(MasterVolume)
|
CONFIG_DEFINE_LOCALE(MasterVolume)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Master Volume", "Adjust the overall volume." } },
|
{ ELanguage::English, { "Master Volume", "Adjust the overall volume." } },
|
||||||
|
|
@ -362,6 +381,7 @@ CONFIG_DEFINE_LOCALE(MasterVolume)
|
||||||
{ ELanguage::Italian, { "Volume principale", "Regola il volume principale" } }
|
{ ELanguage::Italian, { "Volume principale", "Regola il volume principale" } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(MusicVolume)
|
CONFIG_DEFINE_LOCALE(MusicVolume)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Music Volume", "Adjust the volume for the music." } },
|
{ ELanguage::English, { "Music Volume", "Adjust the volume for the music." } },
|
||||||
|
|
@ -372,6 +392,7 @@ CONFIG_DEFINE_LOCALE(MusicVolume)
|
||||||
{ ELanguage::Italian, { "Volume musica di sottofondo", "Regola il volume della musica di sottofondo." } }
|
{ ELanguage::Italian, { "Volume musica di sottofondo", "Regola il volume della musica di sottofondo." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(EffectsVolume)
|
CONFIG_DEFINE_LOCALE(EffectsVolume)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Effects Volume", "Adjust the volume for sound effects." } },
|
{ ELanguage::English, { "Effects Volume", "Adjust the volume for sound effects." } },
|
||||||
|
|
@ -382,6 +403,7 @@ CONFIG_DEFINE_LOCALE(EffectsVolume)
|
||||||
{ ELanguage::Italian, { "Volume effetti sonori", "Regola il volume degli effetti sonori." } }
|
{ ELanguage::Italian, { "Volume effetti sonori", "Regola il volume degli effetti sonori." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(MusicAttenuation)
|
CONFIG_DEFINE_LOCALE(MusicAttenuation)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Music Attenuation", "Fade out the game's music when external media is playing." } },
|
{ ELanguage::English, { "Music Attenuation", "Fade out the game's music when external media is playing." } },
|
||||||
|
|
@ -392,6 +414,7 @@ CONFIG_DEFINE_LOCALE(MusicAttenuation)
|
||||||
{ ELanguage::Italian, { "Attenuazione musica", "Abbassa il volume della musica di sottofondo quando un'altra applicazione riproduce dei suoni." } }
|
{ ELanguage::Italian, { "Attenuazione musica", "Abbassa il volume della musica di sottofondo quando un'altra applicazione riproduce dei suoni." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(ChannelConfiguration)
|
CONFIG_DEFINE_LOCALE(ChannelConfiguration)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Channel Configuration", "Change the output mode for your audio device." } },
|
{ ELanguage::English, { "Channel Configuration", "Change the output mode for your audio device." } },
|
||||||
|
|
@ -448,6 +471,7 @@ CONFIG_DEFINE_ENUM_LOCALE(EChannelConfiguration)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(VoiceLanguage)
|
CONFIG_DEFINE_LOCALE(VoiceLanguage)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Voice Language", "Change the language used for character voices." } },
|
{ ELanguage::English, { "Voice Language", "Change the language used for character voices." } },
|
||||||
|
|
@ -458,6 +482,7 @@ CONFIG_DEFINE_LOCALE(VoiceLanguage)
|
||||||
{ ELanguage::Italian, { "Lingua delle voci", "Modifica la lingua utilizzata per le voci dei personaggi." } }
|
{ ELanguage::Italian, { "Lingua delle voci", "Modifica la lingua utilizzata per le voci dei personaggi." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(Subtitles)
|
CONFIG_DEFINE_LOCALE(Subtitles)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Subtitles", "Show subtitles during dialogue." } },
|
{ ELanguage::English, { "Subtitles", "Show subtitles during dialogue." } },
|
||||||
|
|
@ -468,6 +493,7 @@ CONFIG_DEFINE_LOCALE(Subtitles)
|
||||||
{ ELanguage::Italian, { "Sottotitoli", "Mostra i sottotitoli durante i dialoghi." } }
|
{ ELanguage::Italian, { "Sottotitoli", "Mostra i sottotitoli durante i dialoghi." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(BattleTheme)
|
CONFIG_DEFINE_LOCALE(BattleTheme)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Battle Theme", "Play the Werehog battle theme during combat.\n\nThis option will apply the next time you're in combat.\n\nExorcism missions and miniboss themes will be unaffected." } },
|
{ ELanguage::English, { "Battle Theme", "Play the Werehog battle theme during combat.\n\nThis option will apply the next time you're in combat.\n\nExorcism missions and miniboss themes will be unaffected." } },
|
||||||
|
|
@ -478,6 +504,7 @@ CONFIG_DEFINE_LOCALE(BattleTheme)
|
||||||
{ ELanguage::Italian, { "Musica di combattimento", "Riproduci la musica di combattimento del Werehog quando inizi una battaglia.\n\nQuesta opzione verrà applicata la prossima volta che sei in battaglia.\n\nLa traccia musicale verrà riprodotta ugualmente nelle missioni di Esorcismo e i miniboss." } }
|
{ ELanguage::Italian, { "Musica di combattimento", "Riproduci la musica di combattimento del Werehog quando inizi una battaglia.\n\nQuesta opzione verrà applicata la prossima volta che sei in battaglia.\n\nLa traccia musicale verrà riprodotta ugualmente nelle missioni di Esorcismo e i miniboss." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(WindowSize)
|
CONFIG_DEFINE_LOCALE(WindowSize)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Window Size", "Adjust the size of the game window in windowed mode." } },
|
{ ELanguage::English, { "Window Size", "Adjust the size of the game window in windowed mode." } },
|
||||||
|
|
@ -488,6 +515,7 @@ CONFIG_DEFINE_LOCALE(WindowSize)
|
||||||
{ ELanguage::Italian, { "Dimensioni finestra", "Regola le dimensioni della finestra del gioco in modalità finestra." } }
|
{ ELanguage::Italian, { "Dimensioni finestra", "Regola le dimensioni della finestra del gioco in modalità finestra." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(Monitor)
|
CONFIG_DEFINE_LOCALE(Monitor)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Monitor", "Change which monitor to display the game on." } },
|
{ ELanguage::English, { "Monitor", "Change which monitor to display the game on." } },
|
||||||
|
|
@ -498,6 +526,7 @@ CONFIG_DEFINE_LOCALE(Monitor)
|
||||||
{ ELanguage::Italian, { "Schermo", "Cambia lo schermo su cui visualizzare il gioco." } }
|
{ ELanguage::Italian, { "Schermo", "Cambia lo schermo su cui visualizzare il gioco." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(AspectRatio)
|
CONFIG_DEFINE_LOCALE(AspectRatio)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Aspect Ratio", "Change the aspect ratio." } },
|
{ ELanguage::English, { "Aspect Ratio", "Change the aspect ratio." } },
|
||||||
|
|
@ -508,6 +537,7 @@ CONFIG_DEFINE_LOCALE(AspectRatio)
|
||||||
{ ELanguage::Italian, { "Rapporto d'aspetto", "Modifica il rapporto d'aspetto." } }
|
{ ELanguage::Italian, { "Rapporto d'aspetto", "Modifica il rapporto d'aspetto." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana in its description.
|
||||||
CONFIG_DEFINE_ENUM_LOCALE(EAspectRatio)
|
CONFIG_DEFINE_ENUM_LOCALE(EAspectRatio)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
|
@ -566,6 +596,7 @@ CONFIG_DEFINE_ENUM_LOCALE(EAspectRatio)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(ResolutionScale)
|
CONFIG_DEFINE_LOCALE(ResolutionScale)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Resolution Scale", "Adjust the internal resolution of the game.\n\n%dx%d" } },
|
{ ELanguage::English, { "Resolution Scale", "Adjust the internal resolution of the game.\n\n%dx%d" } },
|
||||||
|
|
@ -576,6 +607,7 @@ CONFIG_DEFINE_LOCALE(ResolutionScale)
|
||||||
{ ELanguage::Italian, { "Scala risoluzione", "Regola la risoluzione interna del gioco.\n\n%dx%d" } }
|
{ ELanguage::Italian, { "Scala risoluzione", "Regola la risoluzione interna del gioco.\n\n%dx%d" } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(Fullscreen)
|
CONFIG_DEFINE_LOCALE(Fullscreen)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Fullscreen", "Toggle between borderless fullscreen or windowed mode." } },
|
{ ELanguage::English, { "Fullscreen", "Toggle between borderless fullscreen or windowed mode." } },
|
||||||
|
|
@ -586,6 +618,7 @@ CONFIG_DEFINE_LOCALE(Fullscreen)
|
||||||
{ ELanguage::Italian, { "Schermo pieno", "Attiva/disattiva tra modalità finestra senza cornice e modalità finestra." } }
|
{ ELanguage::Italian, { "Schermo pieno", "Attiva/disattiva tra modalità finestra senza cornice e modalità finestra." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(VSync)
|
CONFIG_DEFINE_LOCALE(VSync)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "V-Sync", "Synchronize the game to the refresh rate of the display to prevent screen tearing." } },
|
{ ELanguage::English, { "V-Sync", "Synchronize the game to the refresh rate of the display to prevent screen tearing." } },
|
||||||
|
|
@ -596,6 +629,7 @@ CONFIG_DEFINE_LOCALE(VSync)
|
||||||
{ ELanguage::Italian, { "V-Sync", "Sincronizza il gioco con la frequenza d'aggiornamento del display per evitare lo screen tearing." } }
|
{ ELanguage::Italian, { "V-Sync", "Sincronizza il gioco con la frequenza d'aggiornamento del display per evitare lo screen tearing." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(FPS)
|
CONFIG_DEFINE_LOCALE(FPS)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "FPS", "Set the max frame rate the game can run at.\n\nWARNING: this may introduce glitches at frame rates higher than 60 FPS." } },
|
{ ELanguage::English, { "FPS", "Set the max frame rate the game can run at.\n\nWARNING: this may introduce glitches at frame rates higher than 60 FPS." } },
|
||||||
|
|
@ -606,6 +640,7 @@ CONFIG_DEFINE_LOCALE(FPS)
|
||||||
{ ELanguage::Italian, { "FPS", "Imposta il frame rate massimo del gioco.\n\nATTENZIONE: questa opzione può causare dei glitch a frame rate più alti di 60 FPS." } }
|
{ ELanguage::Italian, { "FPS", "Imposta il frame rate massimo del gioco.\n\nATTENZIONE: questa opzione può causare dei glitch a frame rate più alti di 60 FPS." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(Brightness)
|
CONFIG_DEFINE_LOCALE(Brightness)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Brightness", "Adjust the brightness level until the symbol on the left is barely visible." } },
|
{ ELanguage::English, { "Brightness", "Adjust the brightness level until the symbol on the left is barely visible." } },
|
||||||
|
|
@ -616,6 +651,7 @@ CONFIG_DEFINE_LOCALE(Brightness)
|
||||||
{ ELanguage::Italian, { "Luminosità", "Regola la luminosità dello schermo fino a quando il simbolo a sinistra diventa leggermente visibile." } }
|
{ ELanguage::Italian, { "Luminosità", "Regola la luminosità dello schermo fino a quando il simbolo a sinistra diventa leggermente visibile." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(AntiAliasing)
|
CONFIG_DEFINE_LOCALE(AntiAliasing)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Anti-Aliasing", "Adjust the amount of smoothing applied to jagged edges." } },
|
{ ELanguage::English, { "Anti-Aliasing", "Adjust the amount of smoothing applied to jagged edges." } },
|
||||||
|
|
@ -666,6 +702,7 @@ CONFIG_DEFINE_ENUM_LOCALE(EAntiAliasing)
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(TransparencyAntiAliasing)
|
CONFIG_DEFINE_LOCALE(TransparencyAntiAliasing)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Transparency Anti-Aliasing", "Apply anti-aliasing to alpha transparent textures." } },
|
{ ELanguage::English, { "Transparency Anti-Aliasing", "Apply anti-aliasing to alpha transparent textures." } },
|
||||||
|
|
@ -676,6 +713,7 @@ CONFIG_DEFINE_LOCALE(TransparencyAntiAliasing)
|
||||||
{ ELanguage::Italian, { "Anti-Aliasing su texture trasparenti", "Applica l'anti-aliasing alle texture trasparenti." } }
|
{ ELanguage::Italian, { "Anti-Aliasing su texture trasparenti", "Applica l'anti-aliasing alle texture trasparenti." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(ShadowResolution)
|
CONFIG_DEFINE_LOCALE(ShadowResolution)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Shadow Resolution", "Set the resolution of real-time shadows." } },
|
{ ELanguage::English, { "Shadow Resolution", "Set the resolution of real-time shadows." } },
|
||||||
|
|
@ -686,6 +724,7 @@ CONFIG_DEFINE_LOCALE(ShadowResolution)
|
||||||
{ ELanguage::Italian, { "Risoluzione ombre", "Imposta la risoluzioni delle ombre in tempo reale." } }
|
{ ELanguage::Italian, { "Risoluzione ombre", "Imposta la risoluzioni delle ombre in tempo reale." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana in its description.
|
||||||
CONFIG_DEFINE_ENUM_LOCALE(EShadowResolution)
|
CONFIG_DEFINE_ENUM_LOCALE(EShadowResolution)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
|
@ -726,6 +765,7 @@ CONFIG_DEFINE_ENUM_LOCALE(EShadowResolution)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(GITextureFiltering)
|
CONFIG_DEFINE_LOCALE(GITextureFiltering)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "GI Texture Filtering", "Change the quality of the filtering used for global illumination textures." } },
|
{ ELanguage::English, { "GI Texture Filtering", "Change the quality of the filtering used for global illumination textures." } },
|
||||||
|
|
@ -782,6 +822,7 @@ CONFIG_DEFINE_ENUM_LOCALE(EGITextureFiltering)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(MotionBlur)
|
CONFIG_DEFINE_LOCALE(MotionBlur)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Motion Blur", "Change the quality of the motion blur." } },
|
{ ELanguage::English, { "Motion Blur", "Change the quality of the motion blur." } },
|
||||||
|
|
@ -792,6 +833,7 @@ CONFIG_DEFINE_LOCALE(MotionBlur)
|
||||||
{ ELanguage::Italian, { "Sfocatura di movimento", "Regola la qualità della sfocatura di movimento." } }
|
{ ELanguage::Italian, { "Sfocatura di movimento", "Regola la qualità della sfocatura di movimento." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana in its description.
|
||||||
CONFIG_DEFINE_ENUM_LOCALE(EMotionBlur)
|
CONFIG_DEFINE_ENUM_LOCALE(EMotionBlur)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
|
@ -844,6 +886,7 @@ CONFIG_DEFINE_ENUM_LOCALE(EMotionBlur)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(XboxColorCorrection)
|
CONFIG_DEFINE_LOCALE(XboxColorCorrection)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Xbox Color Correction", "Use the warm tint from the Xbox version of the game." } },
|
{ ELanguage::English, { "Xbox Color Correction", "Use the warm tint from the Xbox version of the game." } },
|
||||||
|
|
@ -854,6 +897,7 @@ CONFIG_DEFINE_LOCALE(XboxColorCorrection)
|
||||||
{ ELanguage::Italian, { "Correzione dei colori Xbox", "Applica il filtro di colori più caldi utilizzato dalla versione Xbox del gioco." } }
|
{ ELanguage::Italian, { "Correzione dei colori Xbox", "Applica il filtro di colori più caldi utilizzato dalla versione Xbox del gioco." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(CutsceneAspectRatio)
|
CONFIG_DEFINE_LOCALE(CutsceneAspectRatio)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "Cutscene Aspect Ratio", "Change the aspect ratio of the real-time cutscenes." } },
|
{ ELanguage::English, { "Cutscene Aspect Ratio", "Change the aspect ratio of the real-time cutscenes." } },
|
||||||
|
|
@ -864,6 +908,7 @@ CONFIG_DEFINE_LOCALE(CutsceneAspectRatio)
|
||||||
{ ELanguage::Italian, { "Rapporto d'aspetto dei filmati", "Cambia il rapporto d'aspetto dei filmati in tempo reale." } }
|
{ ELanguage::Italian, { "Rapporto d'aspetto dei filmati", "Cambia il rapporto d'aspetto dei filmati in tempo reale." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana in its description.
|
||||||
CONFIG_DEFINE_ENUM_LOCALE(ECutsceneAspectRatio)
|
CONFIG_DEFINE_ENUM_LOCALE(ECutsceneAspectRatio)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
|
@ -910,6 +955,7 @@ CONFIG_DEFINE_ENUM_LOCALE(ECutsceneAspectRatio)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
CONFIG_DEFINE_LOCALE(UIAlignmentMode)
|
CONFIG_DEFINE_LOCALE(UIAlignmentMode)
|
||||||
{
|
{
|
||||||
{ ELanguage::English, { "UI Alignment Mode", "Change how the UI aligns with the display." } },
|
{ ELanguage::English, { "UI Alignment Mode", "Change how the UI aligns with the display." } },
|
||||||
|
|
@ -920,6 +966,7 @@ CONFIG_DEFINE_LOCALE(UIAlignmentMode)
|
||||||
{ ELanguage::Italian, { "Modalità allineamento interfaccia", "Modifica come l'interfaccia si allinea con lo schermo." } }
|
{ ELanguage::Italian, { "Modalità allineamento interfaccia", "Modifica come l'interfaccia si allinea con lo schermo." } }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Japanese Notes: This localization should include furigana in its description.
|
||||||
CONFIG_DEFINE_ENUM_LOCALE(EUIAlignmentMode)
|
CONFIG_DEFINE_ENUM_LOCALE(EUIAlignmentMode)
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -38,6 +38,12 @@
|
||||||
{ ELanguage::Japanese, "Example" }
|
{ ELanguage::Japanese, "Example" }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
- Japanese localization should use furigana for message windows, options items,
|
||||||
|
options descriptions and installer text.
|
||||||
|
|
||||||
|
Furigana should be included in the text as such:
|
||||||
|
"[私:わたし]はジョージです。"
|
||||||
|
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
@ -123,6 +129,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Options_Desc_WindowSize",
|
"Options_Desc_WindowSize",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Adjust the size of the game window in windowed mode." },
|
{ ELanguage::English, "Adjust the size of the game window in windowed mode." },
|
||||||
|
|
@ -135,6 +142,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: description for options that cannot be accessed anywhere but the title screen or world map (e.g. Language).
|
// Notes: description for options that cannot be accessed anywhere but the title screen or world map (e.g. Language).
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Options_Desc_NotAvailable",
|
"Options_Desc_NotAvailable",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "This option is not available at this location." },
|
{ ELanguage::English, "This option is not available at this location." },
|
||||||
|
|
@ -147,6 +155,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: currently the description for Window Size when in fullscreen.
|
// Notes: currently the description for Window Size when in fullscreen.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Options_Desc_NotAvailableFullscreen",
|
"Options_Desc_NotAvailableFullscreen",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "This option is not available in fullscreen mode." },
|
{ ELanguage::English, "This option is not available in fullscreen mode." },
|
||||||
|
|
@ -159,6 +168,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: currently the description for Monitor when in fullscreen.
|
// Notes: currently the description for Monitor when in fullscreen.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Options_Desc_NotAvailableWindowed",
|
"Options_Desc_NotAvailableWindowed",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "This option is not available in windowed mode." },
|
{ ELanguage::English, "This option is not available in windowed mode." },
|
||||||
|
|
@ -171,6 +181,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: currently the description for Monitor when the user only has one display connected.
|
// Notes: currently the description for Monitor when the user only has one display connected.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Options_Desc_NotAvailableHardware",
|
"Options_Desc_NotAvailableHardware",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "This option is not available with your current hardware configuration." },
|
{ ELanguage::English, "This option is not available with your current hardware configuration." },
|
||||||
|
|
@ -183,6 +194,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: description for Transparency Anti-Aliasing when MSAA is disabled.
|
// Notes: description for Transparency Anti-Aliasing when MSAA is disabled.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Options_Desc_NotAvailableMSAA",
|
"Options_Desc_NotAvailableMSAA",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "This option is not available without MSAA." },
|
{ ELanguage::English, "This option is not available without MSAA." },
|
||||||
|
|
@ -195,6 +207,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: description for Music Attenuation when the user is not running a supported OS.
|
// Notes: description for Music Attenuation when the user is not running a supported OS.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Options_Desc_OSNotSupported",
|
"Options_Desc_OSNotSupported",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "This option is not supported by your operating system." },
|
{ ELanguage::English, "This option is not supported by your operating system." },
|
||||||
|
|
@ -207,6 +220,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when changing the Language option and backing out of the options menu.
|
// Notes: message appears when changing the Language option and backing out of the options menu.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Options_Message_Restart",
|
"Options_Message_Restart",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "The game will now restart." },
|
{ ELanguage::English, "The game will now restart." },
|
||||||
|
|
@ -246,7 +260,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
"Achievements_Unlock",
|
"Achievements_Unlock",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Achievement Unlocked!" },
|
{ ELanguage::English, "Achievement Unlocked!" },
|
||||||
{ ELanguage::Japanese, "" },
|
{ ELanguage::Japanese, "実績のろっくが解除されました" },
|
||||||
{ ELanguage::German, "Erfolg Freigeschaltet!" },
|
{ ELanguage::German, "Erfolg Freigeschaltet!" },
|
||||||
{ ELanguage::French, "Succès déverrouillé !" },
|
{ ELanguage::French, "Succès déverrouillé !" },
|
||||||
{ ELanguage::Spanish, "¡Logro desbloqueado!" },
|
{ ELanguage::Spanish, "¡Logro desbloqueado!" },
|
||||||
|
|
@ -276,6 +290,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Page_SelectLanguage",
|
"Installer_Page_SelectLanguage",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Please select a language." },
|
{ ELanguage::English, "Please select a language." },
|
||||||
|
|
@ -287,6 +302,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Page_Introduction",
|
"Installer_Page_Introduction",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Welcome to\nUnleashed Recompiled!\n\nYou'll need an Xbox 360 copy\nof Sonic Unleashed in order to proceed with the installation." },
|
{ ELanguage::English, "Welcome to\nUnleashed Recompiled!\n\nYou'll need an Xbox 360 copy\nof Sonic Unleashed in order to proceed with the installation." },
|
||||||
|
|
@ -298,6 +314,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Page_SelectGameAndUpdate",
|
"Installer_Page_SelectGameAndUpdate",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Add the sources for the game and its title update." },
|
{ ELanguage::English, "Add the sources for the game and its title update." },
|
||||||
|
|
@ -309,6 +326,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Page_SelectDLC",
|
"Installer_Page_SelectDLC",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Add the sources for the DLC." },
|
{ ELanguage::English, "Add the sources for the DLC." },
|
||||||
|
|
@ -320,6 +338,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Page_CheckSpace",
|
"Installer_Page_CheckSpace",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "The content will be installed to the program's folder.\n\n" },
|
{ ELanguage::English, "The content will be installed to the program's folder.\n\n" },
|
||||||
|
|
@ -331,6 +350,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Page_Installing",
|
"Installer_Page_Installing",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Please wait while the content is being installed..." },
|
{ ELanguage::English, "Please wait while the content is being installed..." },
|
||||||
|
|
@ -342,6 +362,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Page_InstallSucceeded",
|
"Installer_Page_InstallSucceeded",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Installation complete!\nThis project is brought to you by:" },
|
{ ELanguage::English, "Installation complete!\nThis project is brought to you by:" },
|
||||||
|
|
@ -353,6 +374,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Page_InstallFailed",
|
"Installer_Page_InstallFailed",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Installation failed.\n\nError: " },
|
{ ELanguage::English, "Installation failed.\n\nError: " },
|
||||||
|
|
@ -386,6 +408,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Step_RequiredSpace",
|
"Installer_Step_RequiredSpace",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Required space: %2.2f GiB" },
|
{ ELanguage::English, "Required space: %2.2f GiB" },
|
||||||
|
|
@ -397,6 +420,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Step_AvailableSpace",
|
"Installer_Step_AvailableSpace",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Available space: %2.2f GiB" },
|
{ ELanguage::English, "Available space: %2.2f GiB" },
|
||||||
|
|
@ -465,6 +489,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when using the "Add Files" option and choosing any file that is not an Xbox 360 game dump.
|
// Notes: message appears when using the "Add Files" option and choosing any file that is not an Xbox 360 game dump.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Message_InvalidFilesList",
|
"Installer_Message_InvalidFilesList",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "The following selected files are invalid:" },
|
{ ELanguage::English, "The following selected files are invalid:" },
|
||||||
|
|
@ -477,6 +502,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears in the event there are some invalid files after adding the DLC and moving onto the next step.
|
// Notes: message appears in the event there are some invalid files after adding the DLC and moving onto the next step.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Message_InvalidFiles",
|
"Installer_Message_InvalidFiles",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Some of the files that have\nbeen provided are not valid.\n\nPlease make sure all the\nspecified files are correct\nand try again." },
|
{ ELanguage::English, "Some of the files that have\nbeen provided are not valid.\n\nPlease make sure all the\nspecified files are correct\nand try again." },
|
||||||
|
|
@ -489,6 +515,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when clicking the "Add Files" option for the first time.
|
// Notes: message appears when clicking the "Add Files" option for the first time.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Message_FilePickerTutorial",
|
"Installer_Message_FilePickerTutorial",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Select a digital dump with\ncontent from the game.\n\nThese files can be obtained from\nyour Xbox 360 hard drive by\nfollowing the instructions on\nthe GitHub page.\n\nFor choosing a folder with extracted\nand unmodified game files, use\nthe \"Add Folder\" option instead." },
|
{ ELanguage::English, "Select a digital dump with\ncontent from the game.\n\nThese files can be obtained from\nyour Xbox 360 hard drive by\nfollowing the instructions on\nthe GitHub page.\n\nFor choosing a folder with extracted\nand unmodified game files, use\nthe \"Add Folder\" option instead." },
|
||||||
|
|
@ -501,6 +528,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when clicking the "Add Folder" option for the first time.
|
// Notes: message appears when clicking the "Add Folder" option for the first time.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Message_FolderPickerTutorial",
|
"Installer_Message_FolderPickerTutorial",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Select a folder that contains the\nunmodified files that have been\nextracted from the game.\n\nThese files can be obtained from\nyour Xbox 360 hard drive by\nfollowing the instructions on\nthe GitHub page.\n\nFor choosing a digital dump,\nuse the\"Add Files\" option instead." },
|
{ ELanguage::English, "Select a folder that contains the\nunmodified files that have been\nextracted from the game.\n\nThese files can be obtained from\nyour Xbox 360 hard drive by\nfollowing the instructions on\nthe GitHub page.\n\nFor choosing a digital dump,\nuse the\"Add Files\" option instead." },
|
||||||
|
|
@ -513,6 +541,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when providing a title update that does not match the region or version of the game dump.
|
// Notes: message appears when providing a title update that does not match the region or version of the game dump.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Message_IncompatibleGameData",
|
"Installer_Message_IncompatibleGameData",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "The specified game and\ntitle update are incompatible.\n\nPlease ensure the files are\nfor the same version and\nregion and try again." },
|
{ ELanguage::English, "The specified game and\ntitle update are incompatible.\n\nPlease ensure the files are\nfor the same version and\nregion and try again." },
|
||||||
|
|
@ -525,6 +554,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when clicking Skip at the DLC step.
|
// Notes: message appears when clicking Skip at the DLC step.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Message_DLCWarning",
|
"Installer_Message_DLCWarning",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "It is highly recommended\nthat you install all of the\nDLC, as it includes high\nquality lighting textures\nfor the base game.\n\nAre you sure you want to\nskip this step?" },
|
{ ELanguage::English, "It is highly recommended\nthat you install all of the\nDLC, as it includes high\nquality lighting textures\nfor the base game.\n\nAre you sure you want to\nskip this step?" },
|
||||||
|
|
@ -537,6 +567,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when choosing the Install option at the title screen when the user is missing DLC content.
|
// Notes: message appears when choosing the Install option at the title screen when the user is missing DLC content.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Message_TitleMissingDLC",
|
"Installer_Message_TitleMissingDLC",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "This will restart the game to\nallow you to install any DLC\nthat you are missing.\n\nInstalling DLC will improve the\nlighting quality across the game.\n\nWould you like to install missing\ncontent?" },
|
{ ELanguage::English, "This will restart the game to\nallow you to install any DLC\nthat you are missing.\n\nInstalling DLC will improve the\nlighting quality across the game.\n\nWould you like to install missing\ncontent?" },
|
||||||
|
|
@ -549,6 +580,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when choosing the Install option at the title screen when the user is not missing any content.
|
// Notes: message appears when choosing the Install option at the title screen when the user is not missing any content.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Message_Title",
|
"Installer_Message_Title",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "This restarts the game to\nallow you to install any DLC\nthat you may be missing.\n\nYou are not currently\nmissing any DLC.\n\nWould you like to proceed\nanyway?" },
|
{ ELanguage::English, "This restarts the game to\nallow you to install any DLC\nthat you may be missing.\n\nYou are not currently\nmissing any DLC.\n\nWould you like to proceed\nanyway?" },
|
||||||
|
|
@ -561,6 +593,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when user chooses "Quit" on the first available installation screen.
|
// Notes: message appears when user chooses "Quit" on the first available installation screen.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Message_Quit",
|
"Installer_Message_Quit",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Are you sure you want to quit?" },
|
{ ELanguage::English, "Are you sure you want to quit?" },
|
||||||
|
|
@ -573,6 +606,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when user chooses "Cancel" during installation.
|
// Notes: message appears when user chooses "Cancel" during installation.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Installer_Message_Cancel",
|
"Installer_Message_Cancel",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Are you sure you want to cancel the installation?" },
|
{ ELanguage::English, "Are you sure you want to cancel the installation?" },
|
||||||
|
|
@ -585,6 +619,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Notes: message appears when pressing B at the title screen.
|
// Notes: message appears when pressing B at the title screen.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Title_Message_Quit",
|
"Title_Message_Quit",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Are you sure you want to quit?" },
|
{ ELanguage::English, "Are you sure you want to quit?" },
|
||||||
|
|
@ -612,6 +647,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
{
|
{
|
||||||
// Notes: message appears when ACH-DATA is corrupted (mismatching file size, bad signature, incorrect version or invalid checksum) upon pressing start at the title screen.
|
// Notes: message appears when ACH-DATA is corrupted (mismatching file size, bad signature, incorrect version or invalid checksum) upon pressing start at the title screen.
|
||||||
// To make this occur, open the file in any editor and just remove a large chunk of data.
|
// To make this occur, open the file in any editor and just remove a large chunk of data.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Title_Message_AchievementDataCorrupt",
|
"Title_Message_AchievementDataCorrupt",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "The achievement data appears to be\ncorrupted and cannot be loaded.\n\nProceeding from this point will\nclear your achievement data." },
|
{ ELanguage::English, "The achievement data appears to be\ncorrupted and cannot be loaded.\n\nProceeding from this point will\nclear your achievement data." },
|
||||||
|
|
@ -625,6 +661,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
{
|
{
|
||||||
// Notes: message appears when ACH-DATA cannot be loaded upon pressing start at the title screen.
|
// Notes: message appears when ACH-DATA cannot be loaded upon pressing start at the title screen.
|
||||||
// To make this occur, lock the ACH-DATA file using an external program so that it cannot be accessed by the game.
|
// To make this occur, lock the ACH-DATA file using an external program so that it cannot be accessed by the game.
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Title_Message_AchievementDataIOError",
|
"Title_Message_AchievementDataIOError",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "The achievement data could not be loaded.\nYour achievements will not be saved." },
|
{ ELanguage::English, "The achievement data could not be loaded.\nYour achievements will not be saved." },
|
||||||
|
|
@ -636,6 +673,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Title_Message_UpdateAvailable",
|
"Title_Message_UpdateAvailable",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "An update is available!\n\nWould you like to visit the\nreleases page to download it?" },
|
{ ELanguage::English, "An update is available!\n\nWould you like to visit the\nreleases page to download it?" },
|
||||||
|
|
@ -647,6 +685,7 @@ std::unordered_map<std::string_view, std::unordered_map<ELanguage, std::string>>
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
// Japanese Notes: This localization should include furigana.
|
||||||
"Video_BackendError",
|
"Video_BackendError",
|
||||||
{
|
{
|
||||||
{ ELanguage::English, "Unable to create a D3D12 (Windows) or Vulkan backend.\n\nPlease make sure that:\n\n- Your system meets the minimum requirements.\n- Your GPU drivers are up to date.\n- Your operating system is on the latest version available." },
|
{ ELanguage::English, "Unable to create a D3D12 (Windows) or Vulkan backend.\n\nPlease make sure that:\n\n- Your system meets the minimum requirements.\n- Your GPU drivers are up to date.\n- Your operating system is on the latest version available." },
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue