i18n
Loading...
Searching...
No Matches
LocaleFR.hpp
Go to the documentation of this file.
1
11#pragma once
12
13#include "DefaultLocale.hpp"
14
18class LocaleFr: public DefaultLocale {
19 public:
20 const std::string languageCode() const override { return "fr"; }
21
22 const std::string getButtonCancel() const override { return "Annuler";}
23 const std::string getButtonSubmit() const override { return "Valider";}
24 const std::string getLoginSubTitle() const override { return "Bienvenue !";}
25 const std::string getSignInTitle() const override { return "Connexion";}
26 const std::string getSignUpTitle() const override { return "Inscription";}
27};
virtual const std::string languageCode() const =0
Retrieve the two-letter language code of the locale.