CodeLiturgy.Dashboard/CodeLiturgy.Views/RazorUtils/Languages/Translations.cs

85 lines
2.8 KiB
C#
Raw Normal View History

2022-10-30 19:48:24 +03:00
namespace CodeLiturgy.Views.Languages;
2022-10-27 20:13:02 +03:00
2022-11-17 00:17:44 +03:00
public static class Translations
2022-10-27 20:13:02 +03:00
{
internal static readonly Dictionary<string, Dictionary<string, string>> RouteTitle =
new Dictionary<string, Dictionary<string, string>>
{
{
RootKeyName, new Dictionary<string, string>()
{
{"pt", "Inicio"},
{"eng", "Home"},
{"en-gb", "Home"}
}
},
{
SystemKeyName, new Dictionary<string, string>()
{
{"pt", "Sistema"},
{"eng", "System"},
{"en-gb", "System"},
}
},
{
RolesKeyName, new Dictionary<string, string>()
{
{"pt", "Tipos de Utilizador"},
{"en-gb", "Roles"},
{"eng", "Roles"}
}
},
{
ApplicationUsersKeyName, new Dictionary<string, string>()
{
{"pt", "Utilizadores da Aplicação"},
{"en-gb", "Users"},
{"eng", "Users"}
}
},
{
LogsKeyName, new Dictionary<string, string>()
{
{"pt", "Logs"},
{"en-gb", "logs"},
{"eng", "logs"}
}
},
{
SettingsKeyName, new Dictionary<string, string>()
{
{"pt", "Personalização"},
{"eng", "Settings"},
{"en-gb", "Settings"},
}
},
{
2022-11-17 00:17:44 +03:00
AuthAccountKeyName, new Dictionary<string, string>()
2022-10-27 20:13:02 +03:00
{
2022-11-17 00:17:44 +03:00
{"pt", "Conta"},
{"eng", "Account"},
{"en-gb", "Account"},
2022-10-27 20:13:02 +03:00
}
},
{
2022-11-17 00:17:44 +03:00
EnvironmentsKeyName, new Dictionary<string, string>()
2022-10-27 20:13:02 +03:00
{
2022-11-17 00:17:44 +03:00
{"pt", "Ambientes"},
{"eng", "Environments"},
{"en-gb", "Environments"},
2022-10-27 20:13:02 +03:00
}
},
{
ChangePasswordKeyName, new Dictionary<string, string>()
{
{"pt", "Alterar Senha"},
{"eng", "Change Password"},
{"en-gb", "Change Password"},
}
},
};
}