mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-21 17:24:37 -05:00
29 lines
849 B
C++
29 lines
849 B
C++
#ifndef UISTR_H
|
|
#define UISTR_H
|
|
|
|
//Strings since translation support
|
|
namespace ui
|
|
{
|
|
extern const std::string loadGlyphArray[8];
|
|
|
|
extern std::string author, userHelp, titleHelp, folderHelp, optHelp, \
|
|
confBlacklist, confOverwrite, confRestore, confDel, confCopy, \
|
|
confEraseNand, confEraseFolder, yt, nt, on, off, confirmHead, \
|
|
copyHead, noSavesFound, errorConnecting, noUpdate;
|
|
|
|
//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[14];
|
|
//Strings for options explanations
|
|
extern std::string optMenuExp[14];
|
|
//Strings for the holding thing
|
|
extern std::string holdingText[3];
|
|
//Strings for sort type
|
|
extern std::string sortString[3];
|
|
}
|
|
|
|
#endif // UISTR_H
|