i18n
Loading...
Searching...
No Matches
LocaleES.hpp
Go to the documentation of this file.
1
11#pragma once
12
13#include "DefaultLocale.hpp"
14
18class LocaleEs: public DefaultLocale {
19 public:
20 const std::string languageCode() const override { return "es"; }
21 const std::string getSignUpTitle() const override { return "Registro"; }
22 const std::string getSignInTitle() const override { return "Iniciar sesión"; }
23 const std::string getButtonSubmit() const override { return "Enviar"; }
24 const std::string getLoginSubTitle() const override { return "¡Bienvenido!"; }
25 const std::string getButtonCancel() const override { return "Cancelar"; }
26};
virtual const std::string languageCode() const =0
Retrieve the two-letter language code of the locale.