We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1abd74d commit 87c8d99Copy full SHA for 87c8d99
1 file changed
src/translation.cpp
@@ -45,8 +45,11 @@
45
#define TRFILE_META_INI "META.INI"
46
47
// Message box commands to remove a message box or add one in place.
48
-#define TRCUST_REMOVEMSG "__EASY_RPG_CMD:REMOVE_MSGBOX__"
49
-#define TRCUST_ADDMSG "__EASY_RPG_CMD:ADD_MSGBOX__"
+// These commands are added by translators in the .po files to manipulate
+// text boxes at runtime. They are magic strings that will not otherwise
50
+// appear in the source of EasyRPG, but they should not be deleted.
51
+#define TRCUST_REMOVEMSG "<easyrpg:delete_page>"
52
+#define TRCUST_ADDMSG "<easyrpg:new_page>"
53
54
55
std::string Tr::GetTranslationDir() {
0 commit comments