diff options
author | Teddy Wing | 2023-08-23 01:01:24 +0200 |
---|---|---|
committer | Teddy Wing | 2023-08-23 01:01:24 +0200 |
commit | e29b5f548269d8956d7b664ae32edc6d8a104b2c (patch) | |
tree | 5a16c34d407ed20ca64547b7b2908089689d1993 /Internationalization/en.lproj | |
parent | 10ba80e2d2c39d90411484b823255afa44c94583 (diff) | |
download | Base-Windowed-Application-e29b5f548269d8956d7b664ae32edc6d8a104b2c.tar.bz2 |
MainMenu: Use stringWithFormat for titles containing application name
I get the sense that the word order, particularly for the "Help" menu
item, may be different in other languages. Rather than force a certain
word order by concatenating strings, include the application name in the
localisation by making it a format string with an argument.
Diffstat (limited to 'Internationalization/en.lproj')
-rw-r--r-- | Internationalization/en.lproj/Localizable.strings | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Internationalization/en.lproj/Localizable.strings b/Internationalization/en.lproj/Localizable.strings index be3d2bf..a848c30 100644 --- a/Internationalization/en.lproj/Localizable.strings +++ b/Internationalization/en.lproj/Localizable.strings @@ -8,7 +8,7 @@ "\tRight to Left" = "\tRight to Left"; /* About menu item. */ -"About" = "About"; +"About %@" = "About %@"; /* Align Left menu item. */ "Align Left" = "Align Left"; @@ -94,8 +94,11 @@ /* Help menu title. */ "Help" = "Help"; +/* Help menu item. */ +"%@ Help" = "%@ Help"; + /* Hide menu item. */ -"Hide" = "Hide"; +"Hide %@" = "Hide %@"; /* Hide Others menu item. */ "Hide Others" = "Hide Others"; @@ -146,7 +149,7 @@ "Print…" = "Print…"; /* Quit menu item. */ -"Quit" = "Quit"; +"Quit %@" = "Quit %@"; /* Redo menu item. */ "Redo" = "Redo"; |