mirror of
https://git.zap.org.au/git/trader.git
synced 2024-12-04 14:46:45 -05:00
Replace PACKAGE_NAME with "Star Traders"
The gettext utilities don't like C macros in gettext() invocations, so replace each occurrence of PACKAGE_NAME with "Star Traders".
This commit is contained in:
parent
1ee27fda20
commit
c7e1f6096f
@ -234,7 +234,7 @@ void init_screen (void)
|
||||
addch(attr_game_title | ' ');
|
||||
}
|
||||
|
||||
center(stdscr, 0, attr_game_title, PACKAGE_NAME);
|
||||
center(stdscr, 0, attr_game_title, "Star Traders");
|
||||
|
||||
attrset(attr_root_window);
|
||||
refresh();
|
||||
|
@ -333,7 +333,7 @@ playing that game. If GAME is not specified, start a new game.\n\n\
|
||||
printf(_("Report %s bugs to <%s>.\n"), PACKAGE_PACKAGER, PACKAGE_PACKAGER_BUG_REPORTS);
|
||||
#endif
|
||||
#ifdef PACKAGE_URL
|
||||
printf(_(PACKAGE_NAME " home page: <%s>.\n"), PACKAGE_URL);
|
||||
printf(_("Star Traders home page: <%s>.\n"), PACKAGE_URL);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
@ -52,7 +52,7 @@
|
||||
* Global definitions *
|
||||
************************************************************************/
|
||||
|
||||
#define GAME_FILE_HEADER PACKAGE_NAME " Saved Game"
|
||||
#define GAME_FILE_HEADER "Star Traders Saved Game"
|
||||
#define GAME_FILE_API_VERSION "7.0" // For game loads and saves
|
||||
#define GAME_FILE_SENTINEL 42 // End of game file sentinel
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user