26 lines
1.2 KiB
C++
26 lines
1.2 KiB
C++
|
#include <string>
|
||
|
#ifndef __GL_HPP_
|
||
|
#define __GL_HPP_
|
||
|
|
||
|
namespace gl{
|
||
|
const extern std::string noColor = "El terminal non soporta cores";
|
||
|
const extern std::string errorGenerico_1 = "Como chegaches aquí?";
|
||
|
const extern std::string errorGenerico_2 = "Por si acaso imos ó menú principal";
|
||
|
const extern std::string menuPrincipal = "Menú Principal";
|
||
|
const extern std::string menuPrincipal_1 = "- Iniciar Stress Test";
|
||
|
const extern std::string menuPrincipal_2 = "- Configurar";
|
||
|
const extern std::string menuPrincipal_3 = "- Sair";
|
||
|
const extern std::string menuConfigurar = "Configuración";
|
||
|
const extern std::string menuConfigurar_1 = "- Configurar todo";
|
||
|
const extern std::string menuConfigurar_2 = "- Número de filos";
|
||
|
const extern std::string menuConfigurar_3 = "- Tempo";
|
||
|
const extern std::string menuConfigurar_4 = "- Menú principal";
|
||
|
const extern std::string confTodo = "Toda a configuración escribirase en ";
|
||
|
const extern std::string confHilos = "Número de filos actuáis > ";
|
||
|
const extern std::string confTiempo = "Tempo actual > ";
|
||
|
const extern std::string confHilosInput = "- Número de filos\t> ";
|
||
|
const extern std::string confTiempoInput = "- Tempo de execución\t> ";
|
||
|
}
|
||
|
|
||
|
#endif // __GL_HPP_
|