2020-10-28 13:26:34 +01:00
|
|
|
#include <string>
|
|
|
|
#ifndef __GL_HPP_
|
|
|
|
#define __GL_HPP_
|
|
|
|
|
|
|
|
namespace gl{
|
2020-10-28 20:35:45 +01:00
|
|
|
const extern std::string noColor = "O terminal non soporta cores";
|
2020-10-28 13:26:34 +01:00
|
|
|
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";
|
2020-10-28 20:35:45 +01:00
|
|
|
const extern std::string menuPrincipal_3 = "- Saír";
|
2020-10-28 13:26:34 +01:00
|
|
|
const extern std::string menuConfigurar = "Configuración";
|
|
|
|
const extern std::string menuConfigurar_1 = "- Configurar todo";
|
2020-10-28 20:31:34 +01:00
|
|
|
const extern std::string menuConfigurar_2 = "- Número de fíos";
|
2020-10-28 13:26:34 +01:00
|
|
|
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 ";
|
2020-10-28 20:31:34 +01:00
|
|
|
const extern std::string confHilos = "Número de fíos actuáis > ";
|
2020-10-28 20:35:45 +01:00
|
|
|
const extern std::string confTiempo = "Tempo de execución actual > ";
|
2020-10-28 20:31:34 +01:00
|
|
|
const extern std::string confHilosInput = "- Número de fíos\t> ";
|
2020-10-28 13:26:34 +01:00
|
|
|
const extern std::string confTiempoInput = "- Tempo de execución\t> ";
|
2020-10-28 16:12:21 +01:00
|
|
|
const extern std::string confHilosError = "Debese introducir un número";
|
|
|
|
const extern std::string confTiempoError = "O formato do tempo debe ser HH:mm:ss";
|
2020-10-28 20:35:45 +01:00
|
|
|
const extern std::string confArchText_1 = "Arquivo autoxenerado por Stress_UI";
|
2020-10-28 20:25:16 +01:00
|
|
|
const extern std::string confArchText_2 = "Non editar manualmente sin saber o que se fai";
|
2020-10-28 13:26:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __GL_HPP_
|