Add translation marks in Users
This commit is contained in:
parent
540c55515f
commit
06879bca7a
3 changed files with 17 additions and 17 deletions
|
@ -225,8 +225,8 @@ export default class CUD extends Component {
|
||||||
const canDelete = isEdit && userId !== 1 && mailtrainConfig.user.id !== userId;
|
const canDelete = isEdit && userId !== 1 && mailtrainConfig.user.id !== userId;
|
||||||
|
|
||||||
const rolesColumns = [
|
const rolesColumns = [
|
||||||
{ data: 1, title: "Name" },
|
{ data: 1, title: t("name") },
|
||||||
{ data: 2, title: "Description" },
|
{ data: 2, title: t("description") },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -29,15 +29,15 @@ export default class List extends Component {
|
||||||
const t = this.props.t;
|
const t = this.props.t;
|
||||||
|
|
||||||
const columns = [
|
const columns = [
|
||||||
{ data: 1, title: "Username" },
|
{ data: 1, title: t("username") },
|
||||||
];
|
];
|
||||||
|
|
||||||
if (mailtrainConfig.isAuthMethodLocal) {
|
if (mailtrainConfig.isAuthMethodLocal) {
|
||||||
columns.push({ data: 2, title: "Full Name" });
|
columns.push({ data: 2, title: t("fullName") });
|
||||||
}
|
}
|
||||||
|
|
||||||
columns.push({ data: 3, title: "Namespace" });
|
columns.push({ data: 3, title: t("namespace") });
|
||||||
columns.push({ data: 4, title: "Role" });
|
columns.push({ data: 4, title: t("role") });
|
||||||
|
|
||||||
columns.push({
|
columns.push({
|
||||||
actions: data => {
|
actions: data => {
|
||||||
|
@ -72,4 +72,4 @@ export default class List extends Component {
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -733,24 +733,24 @@
|
||||||
"username": "Usuario",
|
"username": "Usuario",
|
||||||
"password": "Contraseña",
|
"password": "Contraseña",
|
||||||
"rememberMe": "Recuérdame",
|
"rememberMe": "Recuérdame",
|
||||||
"resettingPassword": "Resetting password ...",
|
"resettingPassword": "Reestableciendo contraseña ...",
|
||||||
"passwordReset-1": "Password reset",
|
"passwordReset-1": "Reestablecida contraseña",
|
||||||
"yourPasswordCannotBeReset": "Your password cannot be reset.",
|
"yourPasswordCannotBeReset": "Tu contraseña no pudo ser reestablecida.",
|
||||||
"thePasswordResetTokenHasExpired": "The password reset token has expired.",
|
"thePasswordResetTokenHasExpired": "El token para resetear tu contraseña ha caducado.",
|
||||||
"clickHereToRequestANewPasswordResetLink": "Click here to request a new password reset link.",
|
"clickHereToRequestANewPasswordResetLink": "Click here to request a new password reset link.",
|
||||||
"validatingPasswordResetToken": "Validating password reset token ...",
|
"validatingPasswordResetToken": "Validating password reset token ...",
|
||||||
"thePasswordCannotBeReset": "The password cannot be reset",
|
"thePasswordCannotBeReset": "La contraseña no pudo ser reestablecida.",
|
||||||
"setNewPasswordFor": "Set new password for",
|
"setNewPasswordFor": "Establece una nueva contraseña para",
|
||||||
"resetPassword": "Reset password",
|
"resetPassword": "Reestablecer contraseña",
|
||||||
"parentNamespaceMustBeSelected": "Debes escoger un espacio de nombres padre",
|
"parentNamespaceMustBeSelected": "Debes escoger un espacio de nombres padre",
|
||||||
"namespaceUpdated": "Espacio de nombres actualizado",
|
"namespaceUpdated": "Espacio de nombres actualizado",
|
||||||
"namespaceCreated": "Espacio de nombres creado",
|
"namespaceCreated": "Espacio de nombres creado",
|
||||||
"thereHasBeenALoopDetectedInTheAssignment": "There has been a loop detected in the assignment of the parent namespace. This is most likely because someone else has changed the parent of some namespace in the meantime. Refresh your page to start anew. Please note that your changes will be lost.",
|
"thereHasBeenALoopDetectedInTheAssignment": "There has been a loop detected in the assignment of the parent namespace. This is most likely because someone else has changed the parent of some namespace in the meantime. Refresh your page to start anew. Please note that your changes will be lost.",
|
||||||
"itSeemsThatTheParentNamespaceHasBeen": "It seems that the parent namespace has been deleted in the meantime. Refresh your page to start anew. Please note that your changes will be lost.",
|
"itSeemsThatTheParentNamespaceHasBeen": "It seems that the parent namespace has been deleted in the meantime. Refresh your page to start anew. Please note that your changes will be lost.",
|
||||||
"deletingNamespace": "Borrando namespace ...",
|
"deletingNamespace": "Borrando espacio de nombres ...",
|
||||||
"namespaceDeleted": "Espacio de nombres borrado",
|
"namespaceDeleted": "Espacio de nombres borrado",
|
||||||
"editNamespace": "Editar Namespace",
|
"editNamespace": "Editar Espacio de Nombres",
|
||||||
"createNamespace": "Crear Namespace",
|
"createNamespace": "Crear Espacio de Nombre",
|
||||||
"parentNamespace": "Namespace Padre",
|
"parentNamespace": "Namespace Padre",
|
||||||
"namespaces": "Espacios de nombres",
|
"namespaces": "Espacios de nombres",
|
||||||
"namespaceName": "Espacio de nombres \"{{name}}\"",
|
"namespaceName": "Espacio de nombres \"{{name}}\"",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue