namespace CodeLiturgy.Views.Languages; public static class Translations { internal static readonly Dictionary> RouteTitle = new Dictionary> { { RootKeyName, new Dictionary() { {"pt", "Inicio"}, {"eng", "Home"}, {"en-gb", "Home"} } }, { SystemKeyName, new Dictionary() { {"pt", "Sistema"}, {"eng", "System"}, {"en-gb", "System"}, } }, { RolesKeyName, new Dictionary() { {"pt", "Tipos de Utilizador"}, {"en-gb", "Roles"}, {"eng", "Roles"} } }, { ApplicationUsersKeyName, new Dictionary() { {"pt", "Utilizadores da Aplicação"}, {"en-gb", "Users"}, {"eng", "Users"} } }, { LogsKeyName, new Dictionary() { {"pt", "Logs"}, {"en-gb", "logs"}, {"eng", "logs"} } }, { SettingsKeyName, new Dictionary() { {"pt", "Personalização"}, {"eng", "Settings"}, {"en-gb", "Settings"}, } }, { AuthAccountKeyName, new Dictionary() { {"pt", "Conta"}, {"eng", "Account"}, {"en-gb", "Account"}, } }, { ChangePasswordKeyName, new Dictionary() { {"pt", "Alterar Senha"}, {"eng", "Change Password"}, {"en-gb", "Change Password"}, } }, }; }