i18n
Loading...
Searching...
No Matches
LocaleIT.hpp
Go to the documentation of this file.
1
11#pragma once
12
13#include "DefaultLocale.hpp"
14
18class LocaleIt: public DefaultLocale {
19 public:
20 const std::string languageCode() const override { return "it"; }
21 const std::string getSignUpTitle() const override { return "Registrati"; }
22 const std::string getSignInTitle() const override { return "Accedi"; }
23 const std::string getButtonSubmit() const override { return "Invia"; }
24 const std::string getLoginSubTitle() const override { return "Benvenuto!"; }
25 const std::string getButtonCancel() const override { return "Annulla"; }
26};
virtual const std::string languageCode() const =0
Retrieve the two-letter language code of the locale.