mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-04-26 01:59:55 -05:00
25 lines
707 B
C++
25 lines
707 B
C++
#ifndef UISTR_H
|
|
#define UISTR_H
|
|
|
|
//Strings since translation support
|
|
namespace ui
|
|
{
|
|
extern std::string author, userHelp, titleHelp, folderHelp, optHelp, \
|
|
confBlacklist, confOverwrite, confRestore, confDel, confCopy, \
|
|
confEraseNand, confEraseFolder, yt, nt, on, off, confirmHead, \
|
|
copyHead, noSavesFound;
|
|
|
|
//Strings for file mode menu
|
|
extern std::string advMenuStr[6];
|
|
//Strings for extras menu
|
|
extern std::string exMenuStr[11];
|
|
//Strings for options menu
|
|
extern std::string optMenuStr[13];
|
|
//Strings for options explanations
|
|
extern std::string optMenuExp[13];
|
|
//Strings for the holding thing
|
|
extern std::string holdingText[3];
|
|
}
|
|
|
|
#endif // UISTR_H
|