138 lines
4.5 KiB
C#
138 lines
4.5 KiB
C#
|
namespace BlueWest.Views.Languages;
|
||
|
|
||
|
public static class SiteContent
|
||
|
{
|
||
|
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"},
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
DataKeyName, new Dictionary<string, string>()
|
||
|
{
|
||
|
{"pt", "Dados"},
|
||
|
{"eng", "Data"},
|
||
|
{"en-gb", "Data"}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
{
|
||
|
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"},
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
CompaniesKeyName, new Dictionary<string, string>()
|
||
|
{
|
||
|
{"pt", "Empresas"},
|
||
|
{"eng", "Companies"},
|
||
|
{"en-gb", "Companies"},
|
||
|
}
|
||
|
},
|
||
|
|
||
|
{
|
||
|
IndustriesKeyName, new Dictionary<string, string>()
|
||
|
{
|
||
|
{"pt", "Indústrias"},
|
||
|
{"en-gb", "Industries"},
|
||
|
{"eng", "Industries"},
|
||
|
}
|
||
|
},
|
||
|
|
||
|
{
|
||
|
CurrenciesKeyName, new Dictionary<string, string>()
|
||
|
{
|
||
|
{"pt", "Moedas"},
|
||
|
{"en-gb", "Currencies"},
|
||
|
{"eng", "Currencies"},
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
CountriesKeyName, new Dictionary<string, string>()
|
||
|
{
|
||
|
{"pt", "Países"},
|
||
|
{"eng", "Countries"},
|
||
|
{"en-gb", "Countries"}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
{
|
||
|
BanksKeyName, new Dictionary<string, string>()
|
||
|
{
|
||
|
{"pt", "Bancos"},
|
||
|
{"eng", "Banks"},
|
||
|
{"en-gb", "Banks"},
|
||
|
}
|
||
|
},
|
||
|
|
||
|
|
||
|
{
|
||
|
DataUsersKeyName, new Dictionary<string, string>()
|
||
|
{
|
||
|
{"pt", "Utilizadores"},
|
||
|
{"eng", "Users"},
|
||
|
{"en-gb", "Users"},
|
||
|
}
|
||
|
},
|
||
|
|
||
|
{
|
||
|
AccountKeyName, new Dictionary<string, string>()
|
||
|
{
|
||
|
{"pt", "Perfil"},
|
||
|
{"eng", "Account"},
|
||
|
{"en-gb", "Account"},
|
||
|
}
|
||
|
},
|
||
|
|
||
|
{
|
||
|
ChangePasswordKeyName, new Dictionary<string, string>()
|
||
|
{
|
||
|
{"pt", "Alterar Senha"},
|
||
|
{"eng", "Change Password"},
|
||
|
{"en-gb", "Change Password"},
|
||
|
}
|
||
|
},
|
||
|
|
||
|
};
|
||
|
}
|