Skip to content

Commit 2cf5277

Browse files
committed
Update Filename Display setting text
1 parent 4c8e3ce commit 2cf5277

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

settings/arm9/source/language.inl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ STRING(MEDIUM, "Medium")
102102
STRING(SLOW, "Slow")
103103
STRING(ZOOM, "Zoom")
104104
STRING(ABOVE_BANNER, "Above Banner")
105-
STRING(ALWAYS, "Always")
105+
STRING(REPLACE_BANNER, "Replace Banner")
106106

107107
STRING(DESCRIPTION_UPDATETWLMENU, "Updates TWiLight Menu++ to a new version.")
108108
STRING(DESCRIPTION_DSCLASSICMENU, "The menu that is shown by pressing SELECT in the Nintendo DSi UI, can be shown before the ROM select menu.")
@@ -126,7 +126,7 @@ STRING(DESCRIPTION_SHOW_PHOTO, "Show photos and screenshots on the top screen of
126126
STRING(DESCRIPTION_BOXART, "Show box art on the top screen of the Nintendo DSi/3DS UIs.")
127127
STRING(DESCRIPTION_BOXART_DSI, "Show box art on the top screen of the Nintendo DSi/3DS UIs. Caching allows smoother scrolling at the cost of slower ROM list loading.")
128128
STRING(DESCRIPTION_PHOTO_BOXART_COLOR_DEBAND, "Increases color range of the photo and/or box art/game covers. Disable this, if you encounter a freeze in the DSi, 3DS, Saturn, or HBL UIs.")
129-
STRING(DESCRIPTION_FILENAME_DISPLAY, "Choose whether to display the filename above the banner text, or always in place of the banner text. Applies to the DSi, Saturn, and HBL UIs.")
129+
STRING(DESCRIPTION_FILENAME_DISPLAY, "Choose whether to display the filename above the banner text, or replace the banner text. Applies to the DSi, Saturn, and HBL UIs.")
130130
STRING(DESCRIPTION_ANIMATEDSIICONS_1, "Animate the icons of Nintendo DSi-enhanced titles.")
131131
STRING(DESCRIPTION_CUSTOMICONS, "Show custom game icons for all ROM types.")
132132
STRING(DESCRIPTION_CLOCK_SYSTEM, "Use either a 12-hour clock or a 24-hour clock.")

settings/arm9/source/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1188,7 +1188,7 @@ int settingsMode(void)
11881188

11891189
guiPage.option(STR_CLOCK_SYSTEM, STR_DESCRIPTION_CLOCK_SYSTEM, Option::Bool(&ms().show12hrClock), {STR_12_HOUR, STR_24_HOUR}, {true, false});
11901190
if (!ms().macroMode) {
1191-
guiPage.option(STR_FILENAME_DISPLAY, STR_DESCRIPTION_FILENAME_DISPLAY, Option::Int(&ms().filenameDisplay), {STR_OFF, STR_ABOVE_BANNER, STR_ALWAYS}, {0, 1, 2});
1191+
guiPage.option(STR_FILENAME_DISPLAY, STR_DESCRIPTION_FILENAME_DISPLAY, Option::Int(&ms().filenameDisplay), {STR_OFF, STR_ABOVE_BANNER, STR_REPLACE_BANNER}, {0, 1, 2});
11921192
}
11931193
guiPage.option(STR_ANIMATEDSIICONS, STR_DESCRIPTION_ANIMATEDSIICONS_1, Option::Bool(&ms().animateDsiIcons), {STR_YES, STR_NO}, {true, false})
11941194
.option(STR_CUSTOMICONS, STR_DESCRIPTION_CUSTOMICONS, Option::Bool(&ms().showCustomIcons), {STR_ON, STR_OFF}, {true, false})

settings/nitrofiles/languages/en/language.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ MEDIUM=Medium
9494
SLOW=Slow
9595
ZOOM=Zoom
9696
ABOVE_BANNER=Above Banner
97-
ALWAYS=Always
97+
REPLACE_BANNER=Replace Banner
9898
9999
DESCRIPTION_UPDATETWLMENU=Updates TWiLight Menu++ to a new version.
100100
DESCRIPTION_DSCLASSICMENU=The menu that is shown by pressing SELECT in the Nintendo DSi UI, can be shown before the ROM select menu.
@@ -118,7 +118,7 @@ DESCRIPTION_SHOW_PHOTO=Show photos and screenshots on the top screen of the Nint
118118
DESCRIPTION_BOXART=Show box art on the top screen of the Nintendo DSi/3DS UIs.
119119
DESCRIPTION_BOXART_DSI=Show box art on the top screen of the Nintendo DSi/3DS UIs. Caching allows smoother scrolling at the cost of slower ROM list loading.
120120
DESCRIPTION_PHOTO_BOXART_COLOR_DEBAND=Increases color range of the photo and/or box art/game covers. Disable this, if you encounter a freeze in the DSi, 3DS, Saturn, or HBL UIs.
121-
DESCRIPTION_FILENAME_DISPLAY=Choose whether to display the filename above the banner text, or always in place of the banner text. Applies to the DSi, Saturn, and HBL UIs.
121+
DESCRIPTION_FILENAME_DISPLAY=Choose whether to display the filename above the banner text, or replace the banner text. Applies to the DSi, Saturn, and HBL UIs.
122122
DESCRIPTION_ANIMATEDSIICONS_1=Animate the icons of Nintendo DSi-enhanced titles.
123123
DESCRIPTION_CUSTOMICONS=Show custom game icons for all ROM types.
124124
DESCRIPTION_CLOCK_SYSTEM=Use either a 12-hour clock or a 24-hour clock.

0 commit comments

Comments
 (0)