mirror of
https://github.com/YunoHost/yunohost-portal.git
synced 2024-09-03 20:06:23 +02:00
i18n: removed en-US unused keys
This commit is contained in:
parent
34a9e2d9a3
commit
8d5ccbc057
3 changed files with 3 additions and 28 deletions
|
@ -1,8 +1,6 @@
|
|||
{
|
||||
"app_list": "App list",
|
||||
"back_to_apps": "Go back to app list",
|
||||
"portal": "YunoHost Portal",
|
||||
"information": "Your info",
|
||||
"username": "Username",
|
||||
"password": "Password",
|
||||
"fullname": "Full name",
|
||||
|
@ -14,46 +12,23 @@
|
|||
"new_forward": "newforward{'@'}myforeigndomain.org",
|
||||
"add_mail": "Add an e-mail alias",
|
||||
"add_forward": "Add an e-mail forwarding address",
|
||||
"ok": "OK",
|
||||
"cancel": "Cancel",
|
||||
"change_password": "Change password",
|
||||
"edit": "Edit",
|
||||
"current_password": "Current password",
|
||||
"new_password": "New password",
|
||||
"confirm_new_password": "Confirm new password",
|
||||
"confirm": "Confirm",
|
||||
"login": "Log in",
|
||||
"logout": "Log out",
|
||||
"no_apps": "There is no app to list here, either because no web app yet is installed on the server, or because you don't have access to any. Please check with the admins of the server for more infos!",
|
||||
"password_changed": "Password changed",
|
||||
"password_changed_error": "Could not change password",
|
||||
"password_not_match": "The passwords don't match",
|
||||
"password_listed": "This password is among the most used passwords in the world. Please choose something a bit more unique.",
|
||||
"password_too_simple_1": "The password needs to be at least 8 characters long",
|
||||
"password_too_simple_2": "The password needs to be at least 8 characters long and contains digit, upper and lower characters",
|
||||
"password_too_simple_3": "The password needs to be at least 8 characters long and contains digit, upper, lower and special characters",
|
||||
"password_too_simple_4": "The password needs to be at least 12 characters long and contains digit, upper, lower and special characters",
|
||||
"good_practices_about_user_password": "Pick a user password of at least 8 characters - though it is good practice to use longer ones (i.e. a passphrase) and/or use various kind of characters (uppercase, lowercase, digits and special characters).",
|
||||
"wrong_current_password": "The current password is wrong",
|
||||
"invalid_mail": "Invalid e-mail address",
|
||||
"possibly_invalid_username": "Username is possibly invalid",
|
||||
"possibly_invalid_password": "Password is possibly invalid",
|
||||
"invalid_domain": "Invalid domain in",
|
||||
"invalid_mailforward": "Invalid e-mail forwarding address",
|
||||
"mail_already_used": "E-mail address already in use",
|
||||
"information_updated": "Info updated",
|
||||
"user_saving_fail": "Could not save new user info",
|
||||
"missing_required_fields": "Fill in the required fields",
|
||||
"wrong_username_password": "Wrong username or password",
|
||||
"logged_out": "Logged out",
|
||||
"please_login": "Please log in to access to this content",
|
||||
"please_login_from_portal": "Please log in from the portal",
|
||||
"redirection_error_invalid_url": "Redirection error: Invalid URL",
|
||||
"redirection_error_unmanaged_domain": "Redirection error: Unmanaged domain",
|
||||
"footerlink_edit": "Edit my profile",
|
||||
"footerlink_documentation": "Documentation",
|
||||
"footerlink_support": "Support",
|
||||
"footerlink_administration": "Administration",
|
||||
"form_has_errors": "The form contains some errors",
|
||||
"remove": "Remove",
|
||||
"save": "Save",
|
||||
"skip_to_main_content": "Skip to main content",
|
||||
|
|
|
@ -82,7 +82,7 @@ const onSubmit = handleSubmit(async (form) => {
|
|||
|
||||
if (errData.path) {
|
||||
setFieldError(errData.path, errData.error)
|
||||
message = t('user_saving_fail')
|
||||
message = t('form_has_errors')
|
||||
} else {
|
||||
message = errData.error || errData
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ const { t } = useI18n()
|
|||
const appsData = await useApps()
|
||||
|
||||
useHead({
|
||||
title: t('portal'),
|
||||
title: t('app_list'),
|
||||
})
|
||||
|
||||
const apps = computed(() => {
|
||||
|
|
Loading…
Reference in a new issue