i18n
Loading...
Searching...
No Matches
LocaleEN.hpp
Go to the documentation of this file.
1
11#pragma once
12
13#include "DefaultLocale.hpp"
14
18class LocaleEn: public DefaultLocale {
19 public:
20 const std::string languageCode() const override { return "en"; }
21 const std::string getSignUpTitle() const override { return "Sign Up";}
22 const std::string getSignInTitle() const override { return "Sign In";}
23 const std::string getButtonSubmit() const override { return "Submit";}
24 const std::string getLoginSubTitle() const override { return "welcome !";}
25 const std::string getButtonCancel() const override { return "Cancel";}
26};
virtual const std::string languageCode() const =0
Retrieve the two-letter language code of the locale.