30 lines
1.6 KiB
C++
30 lines
1.6 KiB
C++
#include <string>
|
|
#ifndef __EN_HPP_
|
|
#define __EN_HPP_
|
|
|
|
namespace en{
|
|
const extern std::string noColor = "The terminal doesn't support colors";
|
|
const extern std::string errorGenerico_1 = "How do you get here?";
|
|
const extern std::string errorGenerico_2 = "Just in case we drop you on the main menu";
|
|
const extern std::string menuPrincipal = "Main Menu";
|
|
const extern std::string menuPrincipal_1 = "- Start Stress Test";
|
|
const extern std::string menuPrincipal_2 = "- Configurate";
|
|
const extern std::string menuPrincipal_3 = "- Exit";
|
|
const extern std::string menuConfigurar = "Configuration";
|
|
const extern std::string menuConfigurar_1 = "- Configurate all";
|
|
const extern std::string menuConfigurar_2 = "- Number of threads";
|
|
const extern std::string menuConfigurar_3 = "- Time";
|
|
const extern std::string menuConfigurar_4 = "- Main Menu";
|
|
const extern std::string confTodo = "All the configuration will be write in ";
|
|
const extern std::string confHilos = "Current number of threads > ";
|
|
const extern std::string confTiempo = "Current execution time > ";
|
|
const extern std::string confHilosInput = "- Number of threads\t> ";
|
|
const extern std::string confTiempoInput = "- Execution time\t> ";
|
|
const extern std::string confHilosError = "Must introduce a number";
|
|
const extern std::string confTiempoError = "The time format must be HH:mm:ss";
|
|
const extern std::string confArchText_1 = "Autogenerated file by Stress_UI";
|
|
const extern std::string confArchText_2 = "Do not edit manually without knowing what you do";
|
|
}
|
|
|
|
#endif // __EN_HPP_
|