Implementar systema de idiomas con gl, es y en

Signed-off-by: somebody_master <somebody_master@somebodyserver.mooo.com>
This commit is contained in:
2020-10-28 13:26:34 +01:00
parent 275a41a922
commit fbbef585d2
9 changed files with 240 additions and 19 deletions

27
include/textos.hpp Normal file
View File

@ -0,0 +1,27 @@
#include <string>
#ifndef __TEXTOS_HPP_
#define __TEXTOS_HPP_
namespace txt{
extern std::string g_noColor;
extern std::string g_errorGenerico_1;
extern std::string g_errorGenerico_2;
extern std::string g_menuPrincipal;
extern std::string g_menuPrincipal_1;
extern std::string g_menuPrincipal_2;
extern std::string g_menuPrincipal_3;
extern std::string g_menuConfigurar;
extern std::string g_menuConfigurar_1;
extern std::string g_menuConfigurar_2;
extern std::string g_menuConfigurar_3;
extern std::string g_menuConfigurar_4;
extern std::string g_confTodo;
extern std::string g_confHilos;
extern std::string g_confTiempo;
extern std::string g_confHilosInput;
extern std::string g_confTiempoInput;
void inicializarIdioma(std::string idioma);
}
#endif // __TEXTOS_HPP_