mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
Merge pull request #7038 from Ocelot-Social-Community/normalize-locale-files
feat(webapp): normalize locale files
This commit is contained in:
commit
bd7c2212b8
31
scripts/translations/normalize-locales.jq
Normal file
31
scripts/translations/normalize-locales.jq
Normal file
@ -0,0 +1,31 @@
|
||||
# normalize-locales.jq
|
||||
#
|
||||
# creates a copy of the structure of source and replaces the values
|
||||
# by the corresponding values of target. If a key does not exist in target,
|
||||
# the value is set to null.
|
||||
#
|
||||
# jq -n --argfile source en.json --argfile target es.json -f normalize-locales.jq
|
||||
#
|
||||
# source should be primary or fallback locale file (here en.json)
|
||||
# taget is the locale file to normalize (here es.json)
|
||||
|
||||
def find_key_by_path($path):
|
||||
if $path | length == 0
|
||||
then .
|
||||
elif .[$path[0]]
|
||||
then .[$path[0]] | find_key_by_path($path[1:])
|
||||
else null
|
||||
end;
|
||||
|
||||
def keys_to_paths_recursive($path):
|
||||
if type == "object"
|
||||
then with_entries(
|
||||
($path + [.key]) as $path |
|
||||
if (.value | type == "string")
|
||||
then .value |= ($target | find_key_by_path($path))
|
||||
else .value |= keys_to_paths_recursive($path)
|
||||
end)
|
||||
else .
|
||||
end;
|
||||
|
||||
$source | keys_to_paths_recursive([])
|
||||
19
scripts/translations/normalize.sh
Executable file
19
scripts/translations/normalize.sh
Executable file
@ -0,0 +1,19 @@
|
||||
#! /usr/bin/env bash
|
||||
|
||||
ROOT_DIR=$(dirname "$0")/../..
|
||||
tmp=$(mktemp)
|
||||
|
||||
locale_list=("es.json" "fr.json" "it.json" "nl.json" "pl.json" "pt.json" "ru.json")
|
||||
|
||||
for locale_file in "${locale_list[@]}"
|
||||
do
|
||||
jq -n \
|
||||
-f $(dirname "$0")/normalize-locales.jq \
|
||||
--argfile source $ROOT_DIR/webapp/locales/en.json \
|
||||
--argfile target $ROOT_DIR/webapp/locales/$locale_file \
|
||||
> "$tmp"
|
||||
mv "$tmp" $ROOT_DIR/webapp/locales/$locale_file
|
||||
done
|
||||
|
||||
exit 0
|
||||
|
||||
@ -6,7 +6,8 @@
|
||||
"edit": "Edite",
|
||||
"loading": "cargamento",
|
||||
"loadMore": "cargar más",
|
||||
"save": "Guardar"
|
||||
"save": "Guardar",
|
||||
"saveCategories": null
|
||||
},
|
||||
"admin": {
|
||||
"categories": {
|
||||
@ -30,6 +31,7 @@
|
||||
"goal": "Donaciones mensuales necesarias",
|
||||
"name": "Información de donaciones",
|
||||
"progress": "Donaciones recogidas hasta ahora",
|
||||
"showDonationsCheckboxLabel": null,
|
||||
"successfulUpdate": "¡Información de donaciones actualizada con éxito!"
|
||||
},
|
||||
"hashtags": {
|
||||
@ -63,6 +65,7 @@
|
||||
"placeholder": "correo electrónico, nombre o descripción"
|
||||
},
|
||||
"name": "Usuarios",
|
||||
"roleChanged": null,
|
||||
"table": {
|
||||
"columns": {
|
||||
"createdAt": "Creado el",
|
||||
@ -76,7 +79,29 @@
|
||||
}
|
||||
},
|
||||
"chat": {
|
||||
"search": "Filtrar salas de chat"
|
||||
"addRoomHeadline": null,
|
||||
"cancelSelectMessage": null,
|
||||
"conversationStarted": null,
|
||||
"isOnline": null,
|
||||
"isTyping": null,
|
||||
"lastSeen": null,
|
||||
"messageDeleted": null,
|
||||
"messagesEmpty": null,
|
||||
"newMessages": null,
|
||||
"page": {
|
||||
"headline": null
|
||||
},
|
||||
"roomEmpty": null,
|
||||
"roomsEmpty": null,
|
||||
"search": "Filtrar salas de chat",
|
||||
"typeMessage": null,
|
||||
"userProfileButton": {
|
||||
"label": null,
|
||||
"tooltip": null
|
||||
}
|
||||
},
|
||||
"client-only": {
|
||||
"loading": null
|
||||
},
|
||||
"code-of-conduct": {
|
||||
"subheader": "para la red social de {ORGANIZATION_NAME}"
|
||||
@ -113,11 +138,20 @@
|
||||
"validations": {
|
||||
"categories": "deben seleccionarse al menos una y como máximo tres categorías",
|
||||
"email": "debe ser una dirección de correo electrónico válida",
|
||||
"eventLocationNameLength": null,
|
||||
"eventLocationNameNotEmpty": null,
|
||||
"eventVenueLength": null,
|
||||
"eventVenueNotEmpty": null,
|
||||
"url": "debe ser una URL válida"
|
||||
},
|
||||
"versus": "Versus"
|
||||
},
|
||||
"components": {
|
||||
"dateTimeRange": {
|
||||
"hourMinute": null,
|
||||
"monthDay": null,
|
||||
"yearMonthDay": null
|
||||
},
|
||||
"password-reset": {
|
||||
"change-password": {
|
||||
"error": "Error al cambiar la contraseña. ¿Posiblemente un código de seguridad incorrecto?",
|
||||
@ -135,21 +169,62 @@
|
||||
},
|
||||
"registration": {
|
||||
"create-user-account": {
|
||||
"buttonTitle": null,
|
||||
"error": "¡No se ha podido crear una cuenta de usuario!",
|
||||
"help": "¿Tal vez el código de verificación era incorrecto o expiró? Si el problema persiste, por favor envíenos un correo electrónico a:",
|
||||
"recieveCommunicationAsEmailsEtcConfirmed": null,
|
||||
"success": "¡Su cuenta de usuario ha sido creada!",
|
||||
"termsAndCondsEtcConfirmed": null,
|
||||
"title": "Crear una cuenta de usuario"
|
||||
},
|
||||
"email-nonce": {
|
||||
"email": {
|
||||
"buttonTitle": {
|
||||
"resend": null,
|
||||
"send": null,
|
||||
"skipResend": null
|
||||
},
|
||||
"form": {
|
||||
"sendEmailAgain": null,
|
||||
"success": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"email-display": {
|
||||
"warningFormat": null,
|
||||
"warningUndef": null,
|
||||
"yourEmail": null
|
||||
},
|
||||
"email-nonce": {
|
||||
"buttonTitle": null,
|
||||
"form": {
|
||||
"click-next": null,
|
||||
"description": "Abra su buzón de correo e introduzca el código que le enviamos.",
|
||||
"next": "Continuar",
|
||||
"nonce": "Introduzca el código",
|
||||
"validations": {
|
||||
"length": "debe tener exactamente {nonceLength} letras"
|
||||
"error": null,
|
||||
"length": "debe tener exactamente {nonceLength} letras",
|
||||
"success": null
|
||||
}
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"invite-code": {
|
||||
"buttonTitle": null,
|
||||
"form": {
|
||||
"description": null,
|
||||
"invite-code": null,
|
||||
"next": null,
|
||||
"validations": {
|
||||
"error": null,
|
||||
"length": null,
|
||||
"success": null
|
||||
}
|
||||
}
|
||||
},
|
||||
"no-public-registrstion": {
|
||||
"title": null
|
||||
},
|
||||
"signup": {
|
||||
"form": {
|
||||
"data-privacy": "He leido y entendido la declaración de protección de datos.",
|
||||
@ -167,27 +242,55 @@
|
||||
}
|
||||
},
|
||||
"contribution": {
|
||||
"amount-clicks": null,
|
||||
"amount-comments": null,
|
||||
"amount-shouts": null,
|
||||
"amount-views": null,
|
||||
"categories": {
|
||||
"infoSelectedNoOfMaxCategories": "{chosen} de {max} categorías seleccionadas"
|
||||
},
|
||||
"category": {
|
||||
"description": {
|
||||
"body-and-excercise": null,
|
||||
"children": null,
|
||||
"culture": null,
|
||||
"economy": null,
|
||||
"energy": null,
|
||||
"finance": null,
|
||||
"health": null,
|
||||
"home": null,
|
||||
"it-and-media": null,
|
||||
"law": null,
|
||||
"miscellaneous": null,
|
||||
"mobility": null,
|
||||
"nature": null,
|
||||
"networking": null,
|
||||
"peace": null,
|
||||
"politics": null,
|
||||
"psyche": null,
|
||||
"science": null,
|
||||
"spirituality": null
|
||||
},
|
||||
"name": {
|
||||
"animal-protection": "Protección de animales",
|
||||
"art-culture-sport": "Arte, Cultura y Deporte",
|
||||
"consumption-sustainability": "Consumo y Sostenibilidad",
|
||||
"cooperation-development": "Cooperación y Desarrollo",
|
||||
"democracy-politics": "Democracia y Política",
|
||||
"economy-finances": "Economía y Finanzas",
|
||||
"education-sciences": "Educación y Ciencias",
|
||||
"energy-technology": "Energía y Tecnología",
|
||||
"environment-nature": "Medio ambiente y Naturaleza",
|
||||
"freedom-of-speech": "Libertad de expresión",
|
||||
"global-peace-nonviolence": "Paz Global y No-Violencia",
|
||||
"happiness-values": "Felicidad y Valores",
|
||||
"health-wellbeing": "Salud y Bienestar",
|
||||
"human-rights-justice": "Derechos Humanos y Justicia",
|
||||
"it-internet-data-privacy": "TI, Internet y privacidad de datos",
|
||||
"just-for-fun": "Sólo por diversión"
|
||||
"body-and-excercise": null,
|
||||
"children": null,
|
||||
"culture": null,
|
||||
"economy": null,
|
||||
"energy": null,
|
||||
"finance": null,
|
||||
"health": null,
|
||||
"home": null,
|
||||
"it-and-media": null,
|
||||
"law": null,
|
||||
"miscellaneous": null,
|
||||
"mobility": null,
|
||||
"nature": null,
|
||||
"networking": null,
|
||||
"peace": null,
|
||||
"politics": null,
|
||||
"psyche": null,
|
||||
"science": null,
|
||||
"spirituality": null
|
||||
}
|
||||
},
|
||||
"emotions-label": {
|
||||
@ -197,18 +300,33 @@
|
||||
"happy": "Feliz",
|
||||
"surprised": "Sorprendido"
|
||||
},
|
||||
"filterALL": "Ver todas las contribuciones",
|
||||
"filterFollow": "Filtrar las contribuciones de los usuarios que sigo",
|
||||
"filterMasonryGrid": {
|
||||
"myFriends": null,
|
||||
"myGroups": null,
|
||||
"myTopics": null,
|
||||
"noFilter": null,
|
||||
"onlyArticles": null,
|
||||
"onlyEvents": null
|
||||
},
|
||||
"filterMyGroups": null,
|
||||
"inappropriatePicture": "Esta imagen puede ser inapropiada para algunas personas.",
|
||||
"languageSelectLabel": "Idioma",
|
||||
"languageSelectText": "Seleccione el idioma",
|
||||
"newEvent": null,
|
||||
"newPost": "Crear una nueva contribución",
|
||||
"success": "¡Guardado!",
|
||||
"teaserImage": {
|
||||
"cropImage": null,
|
||||
"cropperConfirm": "Confirmar",
|
||||
"errors": {
|
||||
"aspect-ratio-too-small": null,
|
||||
"unSupported-file-format": null
|
||||
},
|
||||
"supportedFormats": "Insertar una imagen de formato de archivo JPG, PNG o GIF!"
|
||||
},
|
||||
"title": "Título"
|
||||
"title": "Título",
|
||||
"visibleOnlyForMembersOfGroup": null
|
||||
},
|
||||
"delete": {
|
||||
"cancel": "Cancelar",
|
||||
@ -262,6 +380,20 @@
|
||||
"addLetter": "Escriba una letra",
|
||||
"noHashtagsFound": "No se han encontrado hashtags"
|
||||
},
|
||||
"legend": {
|
||||
"bold": null,
|
||||
"heading3": null,
|
||||
"heading4": null,
|
||||
"italic": null,
|
||||
"legendTitle": null,
|
||||
"link": null,
|
||||
"orderedList": null,
|
||||
"paragraph": null,
|
||||
"quote": null,
|
||||
"ruler": null,
|
||||
"underline": null,
|
||||
"unorderedList": null
|
||||
},
|
||||
"mention": {
|
||||
"noUsersFound": "No se han encontrado usuarios"
|
||||
},
|
||||
@ -275,41 +407,160 @@
|
||||
"back-to-index": "Volver a la página de índice",
|
||||
"cannot-edit-post": "Esta contribución no se puede editar.",
|
||||
"default": "Se produjo un error",
|
||||
"group-not-found": null,
|
||||
"post-not-found": "Esta contribución no se pudo encontrar",
|
||||
"profile-not-found": "Este perfil no se pudo encontrar"
|
||||
},
|
||||
"filter-menu": {
|
||||
"all": "Todas",
|
||||
"article": null,
|
||||
"categories": "Categorías de contenido",
|
||||
"creationDate": null,
|
||||
"deleteFilter": null,
|
||||
"emotions": "Emociones",
|
||||
"ended": {
|
||||
"all": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"onlyEnded": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
}
|
||||
},
|
||||
"event": null,
|
||||
"eventsBy": null,
|
||||
"eventsEnded": null,
|
||||
"filter-by": "Filtrar por ...",
|
||||
"following": "Usuarios que sigo",
|
||||
"following-title": null,
|
||||
"languages": "Idiomas",
|
||||
"my-groups": null,
|
||||
"order": {
|
||||
"last": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"newest": {
|
||||
"hint": null,
|
||||
"label": "Más reciente"
|
||||
},
|
||||
"next": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"oldest": {
|
||||
"hint": null,
|
||||
"label": "Más antiguo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"order-by": null,
|
||||
"post-type": null,
|
||||
"save": {
|
||||
"error": null,
|
||||
"success": null
|
||||
},
|
||||
"startDate": null
|
||||
},
|
||||
"followButton": {
|
||||
"follow": "Seguir",
|
||||
"following": "Siguiendo"
|
||||
},
|
||||
"group": {
|
||||
"actionRadii": {
|
||||
"continental": null,
|
||||
"global": null,
|
||||
"interplanetary": null,
|
||||
"national": null,
|
||||
"regional": null
|
||||
},
|
||||
"actionRadius": null,
|
||||
"addMemberToGroup": null,
|
||||
"addMemberToGroupSuccess": null,
|
||||
"addUser": null,
|
||||
"addUserNoOptions": null,
|
||||
"addUserPlaceholder": null,
|
||||
"allGroups": null,
|
||||
"categories": null,
|
||||
"categoriesTitle": null,
|
||||
"changeMemberRole": null,
|
||||
"contentMenu": {
|
||||
"visitGroupPage": null
|
||||
},
|
||||
"createNewGroup": {
|
||||
"title": null,
|
||||
"tooltip": null
|
||||
},
|
||||
"description": null,
|
||||
"editGroupSettings": {
|
||||
"groupName": null,
|
||||
"title": null
|
||||
},
|
||||
"errors": {
|
||||
"userAlreadyMember": null
|
||||
},
|
||||
"follow": null,
|
||||
"foundation": null,
|
||||
"general": null,
|
||||
"goal": null,
|
||||
"groupCreated": null,
|
||||
"in": null,
|
||||
"joinLeaveButton": {
|
||||
"iAmMember": null,
|
||||
"join": null,
|
||||
"pendingMember": null
|
||||
"leave": null,
|
||||
"pendingMember": null,
|
||||
"tooltip": null
|
||||
},
|
||||
"labelSlug": null,
|
||||
"leaveModal": {
|
||||
"confirmButton": null,
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"memberRemoved": null,
|
||||
"members": null,
|
||||
"membersAdministrationList": {
|
||||
"avatar": null,
|
||||
"name": null,
|
||||
"roleInGroup": null,
|
||||
"slug": null
|
||||
},
|
||||
"membersCount": null,
|
||||
"membersListTitle": null
|
||||
"membersListTitle": null,
|
||||
"membersListTitleNotAllowedSeeingGroupMembers": null,
|
||||
"modal": {
|
||||
"cancel": null,
|
||||
"confirm": null,
|
||||
"confirmAddGroupMemberText": null,
|
||||
"confirmAddGroupMemberTitle": null
|
||||
},
|
||||
"myGroups": null,
|
||||
"name": null,
|
||||
"radius": null,
|
||||
"removeMember": null,
|
||||
"removeMemberButton": null,
|
||||
"role": null,
|
||||
"roles": {
|
||||
"admin": null,
|
||||
"owner": null,
|
||||
"pending": null,
|
||||
"usual": null
|
||||
},
|
||||
"save": null,
|
||||
"type": null,
|
||||
"types": {
|
||||
"closed": null,
|
||||
"hidden": null,
|
||||
"public": null
|
||||
},
|
||||
"typesOptions": {
|
||||
"closed": null,
|
||||
"hidden": null,
|
||||
"public": null
|
||||
},
|
||||
"update": null,
|
||||
"updatedGroup": null
|
||||
},
|
||||
"hashtags-filter": {
|
||||
"clearSearch": "Borrar búsqueda",
|
||||
@ -318,9 +569,13 @@
|
||||
},
|
||||
"header": {
|
||||
"avatarMenu": {
|
||||
"button": {
|
||||
"tooltip": null
|
||||
},
|
||||
"chats": "Chats",
|
||||
"groups": "Grupos",
|
||||
"map": "Mapa",
|
||||
"myProfile": null,
|
||||
"notifications": "Notificaciones"
|
||||
},
|
||||
"chats": {
|
||||
@ -340,6 +595,18 @@
|
||||
"change-filter-settings": "Cambie la configuración de sus filtros para obtener más resultados.",
|
||||
"no-results": "No se han encontrado contribuciones."
|
||||
},
|
||||
"invite-codes": {
|
||||
"button": {
|
||||
"tooltip": null
|
||||
},
|
||||
"copy-code": null,
|
||||
"copy-success": null,
|
||||
"not-available": null,
|
||||
"your-code": null
|
||||
},
|
||||
"localeSwitch": {
|
||||
"tooltip": null
|
||||
},
|
||||
"login": {
|
||||
"email": "Su correo electrónico",
|
||||
"failure": "Dirección de correo electrónico o contraseña incorrecta.",
|
||||
@ -350,6 +617,7 @@
|
||||
"moreInfo": "¿Qué es {APPLICATION_NAME}?",
|
||||
"moreInfoHint": "a la página de presentación",
|
||||
"no-account": "¿No tiene una cuenta?",
|
||||
"no-cookie": null,
|
||||
"password": "Su contraseña",
|
||||
"register": "Regístrese",
|
||||
"success": "¡Usted ha iniciado sesión!"
|
||||
@ -359,6 +627,33 @@
|
||||
"questions": "Si tiene alguna pregunta o problema, por favor contáctenos por correo electrónico a",
|
||||
"title": "{APPLICATION_NAME} está en mantenimiento"
|
||||
},
|
||||
"map": {
|
||||
"alertMessage": null,
|
||||
"legend": {
|
||||
"event": null,
|
||||
"group": null,
|
||||
"theUser": null,
|
||||
"user": null
|
||||
},
|
||||
"markerTypes": {
|
||||
"event": null,
|
||||
"group": null,
|
||||
"theUser": null,
|
||||
"user": null
|
||||
},
|
||||
"pageTitle": null,
|
||||
"styles": {
|
||||
"dark": null,
|
||||
"outdoors": null,
|
||||
"satellite": null,
|
||||
"streets": null
|
||||
}
|
||||
},
|
||||
"modals": {
|
||||
"deleteUser": {
|
||||
"created": null
|
||||
}
|
||||
},
|
||||
"moderation": {
|
||||
"name": "Moderación",
|
||||
"reports": {
|
||||
@ -436,13 +731,18 @@
|
||||
"read": "Leído",
|
||||
"unread": "No leído"
|
||||
},
|
||||
"group": null,
|
||||
"markAllAsRead": "Marcar todas como leido",
|
||||
"pageLink": "Todas las notificaciones",
|
||||
"post": "Contribución",
|
||||
"reason": {
|
||||
"changed_group_member_role": null,
|
||||
"commented_on_post": "Comentó su contribución ...",
|
||||
"mentioned_in_comment": "Le mencionó en un comentario …",
|
||||
"mentioned_in_post": "Le mencionó en una contribución …"
|
||||
"mentioned_in_post": "Le mencionó en una contribución …",
|
||||
"removed_user_from_group": null,
|
||||
"user_joined_group": null,
|
||||
"user_left_group": null
|
||||
},
|
||||
"title": "Notificaciones",
|
||||
"user": "Usuario"
|
||||
@ -454,7 +754,27 @@
|
||||
"submitted": "Comentario enviado",
|
||||
"updated": "Cambios guardados"
|
||||
},
|
||||
"createNewEvent": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"createNewPost": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"edited": "editado",
|
||||
"editPost": {
|
||||
"event": null,
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"event": null,
|
||||
"menu": {
|
||||
"delete": "Borrar contribución",
|
||||
"edit": "Editar contribución",
|
||||
@ -467,6 +787,20 @@
|
||||
"pinned": "Anuncio",
|
||||
"takeAction": {
|
||||
"name": "Tomar acción"
|
||||
},
|
||||
"viewEvent": {
|
||||
"eventEnd": null,
|
||||
"eventIsOnline": null,
|
||||
"eventLocationName": null,
|
||||
"eventStart": null,
|
||||
"eventVenue": null,
|
||||
"title": null
|
||||
},
|
||||
"viewPost": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
}
|
||||
},
|
||||
"profile": {
|
||||
@ -483,7 +817,6 @@
|
||||
"title": "¡Invite a alguien a {APPLICATION_NAME}!"
|
||||
},
|
||||
"memberSince": "Miembro desde",
|
||||
"name": "Mi perfil",
|
||||
"network": {
|
||||
"andMore": "y {number} más ...",
|
||||
"followedBy": "es seguido por:",
|
||||
@ -571,12 +904,19 @@
|
||||
},
|
||||
"search": {
|
||||
"failed": "No se ha encontrado nada",
|
||||
"for": null,
|
||||
"heading": {
|
||||
"Group": null,
|
||||
"Post": "Contribuciones",
|
||||
"Tag": null,
|
||||
"User": "Usuarios"
|
||||
},
|
||||
"hint": "¿Qué estás buscando? Utiliza !… para contribuciones, @… para usuarios, #… para hashtags.",
|
||||
"placeholder": "Buscar"
|
||||
"no-results": null,
|
||||
"page": null,
|
||||
"placeholder": "Buscar",
|
||||
"results": null,
|
||||
"title": null
|
||||
},
|
||||
"settings": {
|
||||
"blocked-users": {
|
||||
@ -604,6 +944,7 @@
|
||||
"data": {
|
||||
"labelBio": "Acerca de usted",
|
||||
"labelCity": "Su ciudad o región",
|
||||
"labelCityHint": null,
|
||||
"labelName": "Su nombre",
|
||||
"labelSlug": "Su nombre de usuario único",
|
||||
"name": "Sus datos",
|
||||
@ -613,13 +954,19 @@
|
||||
"deleteUserAccount": {
|
||||
"accountDescription": "Tenga en cuenta que su contribución y sus comentarios son importantes para nuestra comunidad. Si aún decide borrarlos, debe marcarlos a continuación.",
|
||||
"accountWarning": "¡NO PUEDE GESTIONAR y NO PUEDE RECUPERAR su cuenta, contribuciones o comentarios después de eliminar su cuenta!",
|
||||
"accountWarningAdmin": null,
|
||||
"accountWarningIsAdmin": null,
|
||||
"commentedCount": "Eliminar mis {count} comentarios",
|
||||
"confirmDeleting": null,
|
||||
"contributionsCount": "Eliminar mis {count} contribuciones",
|
||||
"infoAdmin": null,
|
||||
"name": "Eliminar cuenta de usuario",
|
||||
"pleaseConfirm": "¡Acción destructiva! Escriba “{confirm}” para confirmar.",
|
||||
"success": "¡Cuenta eliminada con éxito!"
|
||||
},
|
||||
"download": {
|
||||
"description": null,
|
||||
"json": null,
|
||||
"name": "Descargar datos"
|
||||
},
|
||||
"email": {
|
||||
@ -684,6 +1031,11 @@
|
||||
"unmuted": "{name} no está silenciado ahora"
|
||||
},
|
||||
"name": "Configuración",
|
||||
"notifications": {
|
||||
"name": null,
|
||||
"send-email-notifications": null,
|
||||
"success-update": null
|
||||
},
|
||||
"organizations": {
|
||||
"name": "Mis organizaciones"
|
||||
},
|
||||
@ -713,6 +1065,13 @@
|
||||
"name": "Seguridad"
|
||||
},
|
||||
"social-media": {
|
||||
"add-new-link": null,
|
||||
"delete-modal": {
|
||||
"confirm-button": null,
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"edit-link": null,
|
||||
"name": "Medios de comunicación social",
|
||||
"placeholder": "Agregar una URL de Social-Media",
|
||||
"requireUnique": "Ya ha añadido esta url",
|
||||
@ -737,6 +1096,7 @@
|
||||
"contact": "Contacto",
|
||||
"data-privacy": "Protección de datos",
|
||||
"director": "Director General",
|
||||
"donate": null,
|
||||
"error-occurred": "Se ha ocurrido un error.",
|
||||
"faq": "Preguntas más frecuentes",
|
||||
"germany": "Alemania",
|
||||
@ -744,6 +1104,7 @@
|
||||
"made": "Hecho con ❤️",
|
||||
"register": "Número de registro",
|
||||
"responsible": "Responsable según § 55 Abs. 2 RStV (Alemania)",
|
||||
"support": null,
|
||||
"taxident": "Número de identificación del impuesto sobre el valor añadido según el § 27 a de la Ley del Impuesto sobre el Valor Añadido (Alemania)",
|
||||
"termsAndConditions": "Términos y condiciones",
|
||||
"thanks": "¡Gracias!",
|
||||
|
||||
@ -6,7 +6,8 @@
|
||||
"edit": "Modifier",
|
||||
"loading": "chargement",
|
||||
"loadMore": "charger plus",
|
||||
"save": "Sauvegarder"
|
||||
"save": "Sauvegarder",
|
||||
"saveCategories": null
|
||||
},
|
||||
"admin": {
|
||||
"categories": {
|
||||
@ -30,6 +31,7 @@
|
||||
"goal": "Dons mensuels requis",
|
||||
"name": "Informations sur les dons",
|
||||
"progress": "Dons recueillis jusqu'à présent",
|
||||
"showDonationsCheckboxLabel": null,
|
||||
"successfulUpdate": "Les informations sur les dons ont été mises à jour avec succès !"
|
||||
},
|
||||
"hashtags": {
|
||||
@ -63,6 +65,7 @@
|
||||
"placeholder": "mail, nom ou description"
|
||||
},
|
||||
"name": "Utilisateurs",
|
||||
"roleChanged": null,
|
||||
"table": {
|
||||
"columns": {
|
||||
"createdAt": "Créé à",
|
||||
@ -76,7 +79,29 @@
|
||||
}
|
||||
},
|
||||
"chat": {
|
||||
"search": "Filtrer les salons de chat"
|
||||
"addRoomHeadline": null,
|
||||
"cancelSelectMessage": null,
|
||||
"conversationStarted": null,
|
||||
"isOnline": null,
|
||||
"isTyping": null,
|
||||
"lastSeen": null,
|
||||
"messageDeleted": null,
|
||||
"messagesEmpty": null,
|
||||
"newMessages": null,
|
||||
"page": {
|
||||
"headline": null
|
||||
},
|
||||
"roomEmpty": null,
|
||||
"roomsEmpty": null,
|
||||
"search": "Filtrer les salons de chat",
|
||||
"typeMessage": null,
|
||||
"userProfileButton": {
|
||||
"label": null,
|
||||
"tooltip": null
|
||||
}
|
||||
},
|
||||
"client-only": {
|
||||
"loading": null
|
||||
},
|
||||
"code-of-conduct": {
|
||||
"subheader": "pour le réseau social de {ORGANIZATION_NAME}"
|
||||
@ -113,11 +138,20 @@
|
||||
"validations": {
|
||||
"categories": "au moins une et au maximum trois catégories doivent être sélectionnées",
|
||||
"email": "Doit être une adresse mail valide",
|
||||
"eventLocationNameLength": null,
|
||||
"eventLocationNameNotEmpty": null,
|
||||
"eventVenueLength": null,
|
||||
"eventVenueNotEmpty": null,
|
||||
"url": "doit être une URL valide"
|
||||
},
|
||||
"versus": "Versus"
|
||||
},
|
||||
"components": {
|
||||
"dateTimeRange": {
|
||||
"hourMinute": null,
|
||||
"monthDay": null,
|
||||
"yearMonthDay": null
|
||||
},
|
||||
"password-reset": {
|
||||
"change-password": {
|
||||
"error": "La modification de votre mot de passe a échoué. Peut-être que le code de sécurité n'était pas correct ?",
|
||||
@ -135,22 +169,62 @@
|
||||
},
|
||||
"registration": {
|
||||
"create-user-account": {
|
||||
"buttonTitle": null,
|
||||
"error": "Compte d'utilisateur n'a pas pu être créé!",
|
||||
"help": " Peut-être que la confirmation n'était pas valide? En cas de problème, n'hésitez pas à nous demander de l'aide en nous envoyant un mail à:",
|
||||
"recieveCommunicationAsEmailsEtcConfirmed": null,
|
||||
"success": "Votre compte a été créé!",
|
||||
"termsAndCondsEtcConfirmed": null,
|
||||
"title": "Créer un compte utilisateur"
|
||||
},
|
||||
"email": {
|
||||
"buttonTitle": {
|
||||
"resend": null,
|
||||
"send": null,
|
||||
"skipResend": null
|
||||
},
|
||||
"form": {
|
||||
"sendEmailAgain": null,
|
||||
"success": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"email-display": {
|
||||
"warningFormat": null,
|
||||
"warningUndef": null,
|
||||
"yourEmail": null
|
||||
},
|
||||
"email-nonce": {
|
||||
"buttonTitle": null,
|
||||
"form": {
|
||||
"click-next": "Cliquez sur Continuer.",
|
||||
"description": "Ouvrez votre boîte de réception et entrez le code que nous vous avons envoyé.",
|
||||
"next": "Continuer",
|
||||
"nonce": "Entrez votre code",
|
||||
"validations": {
|
||||
"length": "doit comporter {nonceLength} caractères"
|
||||
"error": null,
|
||||
"length": "doit comporter {nonceLength} caractères",
|
||||
"success": null
|
||||
}
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"invite-code": {
|
||||
"buttonTitle": null,
|
||||
"form": {
|
||||
"description": null,
|
||||
"invite-code": null,
|
||||
"next": null,
|
||||
"validations": {
|
||||
"error": null,
|
||||
"length": null,
|
||||
"success": null
|
||||
}
|
||||
}
|
||||
},
|
||||
"no-public-registrstion": {
|
||||
"title": null
|
||||
},
|
||||
"signup": {
|
||||
"form": {
|
||||
"data-privacy": "J'ai lu et compris la Déclaration de confidentialité.",
|
||||
@ -168,27 +242,55 @@
|
||||
}
|
||||
},
|
||||
"contribution": {
|
||||
"amount-clicks": null,
|
||||
"amount-comments": null,
|
||||
"amount-shouts": null,
|
||||
"amount-views": null,
|
||||
"categories": {
|
||||
"infoSelectedNoOfMaxCategories": "{chosen} de {max} catégories sélectionnées"
|
||||
},
|
||||
"category": {
|
||||
"description": {
|
||||
"body-and-excercise": null,
|
||||
"children": null,
|
||||
"culture": null,
|
||||
"economy": null,
|
||||
"energy": null,
|
||||
"finance": null,
|
||||
"health": null,
|
||||
"home": null,
|
||||
"it-and-media": null,
|
||||
"law": null,
|
||||
"miscellaneous": null,
|
||||
"mobility": null,
|
||||
"nature": null,
|
||||
"networking": null,
|
||||
"peace": null,
|
||||
"politics": null,
|
||||
"psyche": null,
|
||||
"science": null,
|
||||
"spirituality": null
|
||||
},
|
||||
"name": {
|
||||
"animal-protection": "Protection des animaux",
|
||||
"art-culture-sport": "Art, Culture & Sport",
|
||||
"consumption-sustainability": "Consommation & Durabilité",
|
||||
"cooperation-development": "Coopération & Développement",
|
||||
"democracy-politics": "Démocratie & Politique",
|
||||
"economy-finances": "Économie & Finances",
|
||||
"education-sciences": "Éducation & Sciences",
|
||||
"energy-technology": "Énergie & Technologie",
|
||||
"environment-nature": "Environnement & Nature",
|
||||
"freedom-of-speech": "Liberté d'expression",
|
||||
"global-peace-nonviolence": "Paix mondiale & Non-violence",
|
||||
"happiness-values": "Bonheur & Valeurs",
|
||||
"health-wellbeing": "Santé & Bien-être",
|
||||
"human-rights-justice": "Droits de l'homme & Justice",
|
||||
"it-internet-data-privacy": "Informatique, Internet & Confidentialité des données",
|
||||
"just-for-fun": "Juste pour le Fun"
|
||||
"body-and-excercise": null,
|
||||
"children": null,
|
||||
"culture": null,
|
||||
"economy": null,
|
||||
"energy": null,
|
||||
"finance": null,
|
||||
"health": null,
|
||||
"home": null,
|
||||
"it-and-media": null,
|
||||
"law": null,
|
||||
"miscellaneous": null,
|
||||
"mobility": null,
|
||||
"nature": null,
|
||||
"networking": null,
|
||||
"peace": null,
|
||||
"politics": null,
|
||||
"psyche": null,
|
||||
"science": null,
|
||||
"spirituality": null
|
||||
}
|
||||
},
|
||||
"emotions-label": {
|
||||
@ -198,18 +300,33 @@
|
||||
"happy": "Heureux",
|
||||
"surprised": "Surpris"
|
||||
},
|
||||
"filterALL": "Voir toutes les contributions",
|
||||
"filterFollow": "Filtrer les contributions des utilisateurs que je suis",
|
||||
"filterMasonryGrid": {
|
||||
"myFriends": null,
|
||||
"myGroups": null,
|
||||
"myTopics": null,
|
||||
"noFilter": null,
|
||||
"onlyArticles": null,
|
||||
"onlyEvents": null
|
||||
},
|
||||
"filterMyGroups": null,
|
||||
"inappropriatePicture": "Cette image peut être inappropriée pour certaines personnes.",
|
||||
"languageSelectLabel": "Langue",
|
||||
"languageSelectText": "Sélectionner une langue",
|
||||
"newEvent": null,
|
||||
"newPost": "Créer un nouveau Post",
|
||||
"success": "Enregistré!",
|
||||
"teaserImage": {
|
||||
"cropImage": null,
|
||||
"cropperConfirm": "Confirmer",
|
||||
"errors": {
|
||||
"aspect-ratio-too-small": null,
|
||||
"unSupported-file-format": null
|
||||
},
|
||||
"supportedFormats": "Insérer une image au format de fichier JPG, PNG ou GIF!"
|
||||
},
|
||||
"title": "Titre"
|
||||
"title": "Titre",
|
||||
"visibleOnlyForMembersOfGroup": null
|
||||
},
|
||||
"delete": {
|
||||
"cancel": "Annuler",
|
||||
@ -263,43 +380,187 @@
|
||||
"addLetter": "Tapez une lettre",
|
||||
"noHashtagsFound": "Aucun hashtag trouvé"
|
||||
},
|
||||
"legend": {
|
||||
"bold": null,
|
||||
"heading3": null,
|
||||
"heading4": null,
|
||||
"italic": null,
|
||||
"legendTitle": null,
|
||||
"link": null,
|
||||
"orderedList": null,
|
||||
"paragraph": null,
|
||||
"quote": null,
|
||||
"ruler": null,
|
||||
"underline": null,
|
||||
"unorderedList": null
|
||||
},
|
||||
"mention": {
|
||||
"noUsersFound": "Aucun utilisateur trouvé"
|
||||
},
|
||||
"placeholder": "Écrivez quelque chose d'inspirant..."
|
||||
},
|
||||
"error-pages": {
|
||||
"403-default": null,
|
||||
"404-default": null,
|
||||
"500-default": null,
|
||||
"503-default": null,
|
||||
"back-to-index": null,
|
||||
"cannot-edit-post": null,
|
||||
"default": null,
|
||||
"group-not-found": null,
|
||||
"post-not-found": null,
|
||||
"profile-not-found": null
|
||||
},
|
||||
"filter-menu": {
|
||||
"all": "Toutes",
|
||||
"article": null,
|
||||
"categories": "Catégories de contenu",
|
||||
"creationDate": null,
|
||||
"deleteFilter": null,
|
||||
"emotions": "Émotions",
|
||||
"ended": {
|
||||
"all": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"onlyEnded": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
}
|
||||
},
|
||||
"event": null,
|
||||
"eventsBy": null,
|
||||
"eventsEnded": null,
|
||||
"filter-by": "Filtrer par ...",
|
||||
"following": "Utilisateurs que je suis",
|
||||
"following-title": null,
|
||||
"languages": "Langues",
|
||||
"my-groups": null,
|
||||
"order": {
|
||||
"last": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"newest": {
|
||||
"hint": null,
|
||||
"label": "Plus récent"
|
||||
},
|
||||
"next": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"oldest": {
|
||||
"hint": null,
|
||||
"label": "Le plus ancien"
|
||||
}
|
||||
}
|
||||
},
|
||||
"order-by": null,
|
||||
"post-type": null,
|
||||
"save": {
|
||||
"error": null,
|
||||
"success": null
|
||||
},
|
||||
"startDate": null
|
||||
},
|
||||
"followButton": {
|
||||
"follow": "Suivre",
|
||||
"following": "Je suis les"
|
||||
},
|
||||
"group": {
|
||||
"actionRadii": {
|
||||
"continental": null,
|
||||
"global": null,
|
||||
"interplanetary": null,
|
||||
"national": null,
|
||||
"regional": null
|
||||
},
|
||||
"actionRadius": null,
|
||||
"addMemberToGroup": null,
|
||||
"addMemberToGroupSuccess": null,
|
||||
"addUser": null,
|
||||
"addUserNoOptions": null,
|
||||
"addUserPlaceholder": null,
|
||||
"allGroups": null,
|
||||
"categories": null,
|
||||
"categoriesTitle": null,
|
||||
"changeMemberRole": null,
|
||||
"contentMenu": {
|
||||
"visitGroupPage": null
|
||||
},
|
||||
"createNewGroup": {
|
||||
"title": null,
|
||||
"tooltip": null
|
||||
},
|
||||
"description": null,
|
||||
"editGroupSettings": {
|
||||
"groupName": null,
|
||||
"title": null
|
||||
},
|
||||
"errors": {
|
||||
"userAlreadyMember": null
|
||||
},
|
||||
"follow": null,
|
||||
"foundation": null,
|
||||
"general": null,
|
||||
"goal": null,
|
||||
"groupCreated": null,
|
||||
"in": null,
|
||||
"joinLeaveButton": {
|
||||
"iAmMember": null,
|
||||
"join": null,
|
||||
"pendingMember": null
|
||||
"leave": null,
|
||||
"pendingMember": null,
|
||||
"tooltip": null
|
||||
},
|
||||
"labelSlug": null,
|
||||
"leaveModal": {
|
||||
"confirmButton": null,
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"memberRemoved": null,
|
||||
"members": null,
|
||||
"membersAdministrationList": {
|
||||
"avatar": null,
|
||||
"name": null,
|
||||
"roleInGroup": null,
|
||||
"slug": null
|
||||
},
|
||||
"membersCount": null,
|
||||
"membersListTitle": null
|
||||
"membersListTitle": null,
|
||||
"membersListTitleNotAllowedSeeingGroupMembers": null,
|
||||
"modal": {
|
||||
"cancel": null,
|
||||
"confirm": null,
|
||||
"confirmAddGroupMemberText": null,
|
||||
"confirmAddGroupMemberTitle": null
|
||||
},
|
||||
"myGroups": null,
|
||||
"name": null,
|
||||
"radius": null,
|
||||
"removeMember": null,
|
||||
"removeMemberButton": null,
|
||||
"role": null,
|
||||
"roles": {
|
||||
"admin": null,
|
||||
"owner": null,
|
||||
"pending": null,
|
||||
"usual": null
|
||||
},
|
||||
"save": null,
|
||||
"type": null,
|
||||
"types": {
|
||||
"closed": null,
|
||||
"hidden": null,
|
||||
"public": null
|
||||
},
|
||||
"typesOptions": {
|
||||
"closed": null,
|
||||
"hidden": null,
|
||||
"public": null
|
||||
},
|
||||
"update": null,
|
||||
"updatedGroup": null
|
||||
},
|
||||
"hashtags-filter": {
|
||||
"clearSearch": "Réinitialiser la recherche",
|
||||
@ -308,9 +569,13 @@
|
||||
},
|
||||
"header": {
|
||||
"avatarMenu": {
|
||||
"button": {
|
||||
"tooltip": null
|
||||
},
|
||||
"chats": "Chats",
|
||||
"groups": "Groupes",
|
||||
"map": "Carte",
|
||||
"myProfile": null,
|
||||
"notifications": "Notifications"
|
||||
},
|
||||
"chats": {
|
||||
@ -330,6 +595,18 @@
|
||||
"change-filter-settings": "Modifiez les paramètres de filtrage pour obtenir plus de résultats.",
|
||||
"no-results": "Pas de contribution trouvée."
|
||||
},
|
||||
"invite-codes": {
|
||||
"button": {
|
||||
"tooltip": null
|
||||
},
|
||||
"copy-code": null,
|
||||
"copy-success": null,
|
||||
"not-available": null,
|
||||
"your-code": null
|
||||
},
|
||||
"localeSwitch": {
|
||||
"tooltip": null
|
||||
},
|
||||
"login": {
|
||||
"email": "Votre mail",
|
||||
"failure": "Adresse mail ou mot de passe incorrect.",
|
||||
@ -340,6 +617,7 @@
|
||||
"moreInfo": "Qu'est-ce que {APPLICATION_NAME}?",
|
||||
"moreInfoHint": "à la page de présentation",
|
||||
"no-account": "Vous n'avez pas de compte?",
|
||||
"no-cookie": null,
|
||||
"password": "Votre mot de passe",
|
||||
"register": "S'inscrire",
|
||||
"success": "Vous êtes connecté!"
|
||||
@ -349,6 +627,33 @@
|
||||
"questions": "Des questions ou des préoccupations, envoyez un mail à",
|
||||
"title": "{APPLICATION_NAME} est en maintenance"
|
||||
},
|
||||
"map": {
|
||||
"alertMessage": null,
|
||||
"legend": {
|
||||
"event": null,
|
||||
"group": null,
|
||||
"theUser": null,
|
||||
"user": null
|
||||
},
|
||||
"markerTypes": {
|
||||
"event": null,
|
||||
"group": null,
|
||||
"theUser": null,
|
||||
"user": null
|
||||
},
|
||||
"pageTitle": null,
|
||||
"styles": {
|
||||
"dark": null,
|
||||
"outdoors": null,
|
||||
"satellite": null,
|
||||
"streets": null
|
||||
}
|
||||
},
|
||||
"modals": {
|
||||
"deleteUser": {
|
||||
"created": null
|
||||
}
|
||||
},
|
||||
"moderation": {
|
||||
"name": "Modération",
|
||||
"reports": {
|
||||
@ -431,20 +736,45 @@
|
||||
"pageLink": "Toutes les notifications",
|
||||
"post": "Post",
|
||||
"reason": {
|
||||
"changed_group_member_role": null,
|
||||
"commented_on_post": "Commenté sur votre post…",
|
||||
"mentioned_in_comment": "Vous a mentionné dans un commentaire…",
|
||||
"mentioned_in_post": "Vous a mentionné dans un post…"
|
||||
"mentioned_in_post": "Vous a mentionné dans un post…",
|
||||
"removed_user_from_group": null,
|
||||
"user_joined_group": null,
|
||||
"user_left_group": null
|
||||
},
|
||||
"title": "Notifications",
|
||||
"user": "Utilisateur"
|
||||
},
|
||||
"post": {
|
||||
"comment": {
|
||||
"reply": null,
|
||||
"submit": "Commenté",
|
||||
"submitted": "Commentaire soumis",
|
||||
"updated": "Changements sauvegardés"
|
||||
},
|
||||
"createNewEvent": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"createNewPost": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"edited": "édité",
|
||||
"editPost": {
|
||||
"event": null,
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"event": null,
|
||||
"menu": {
|
||||
"delete": "Supprimer le Post",
|
||||
"edit": "Modifier le Post",
|
||||
@ -457,6 +787,20 @@
|
||||
"pinned": "Annonce",
|
||||
"takeAction": {
|
||||
"name": "Passez à l'action"
|
||||
},
|
||||
"viewEvent": {
|
||||
"eventEnd": null,
|
||||
"eventIsOnline": null,
|
||||
"eventLocationName": null,
|
||||
"eventStart": null,
|
||||
"eventVenue": null,
|
||||
"title": null
|
||||
},
|
||||
"viewPost": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
}
|
||||
},
|
||||
"profile": {
|
||||
@ -473,7 +817,6 @@
|
||||
"title": "Invitez quelqu'un à {APPLICATION_NAME}!"
|
||||
},
|
||||
"memberSince": "Membre depuis",
|
||||
"name": "Mon profil",
|
||||
"network": {
|
||||
"andMore": "et {number} plus…",
|
||||
"followedBy": "est suivi par:",
|
||||
@ -561,12 +904,19 @@
|
||||
},
|
||||
"search": {
|
||||
"failed": "Rien trouvé",
|
||||
"for": null,
|
||||
"heading": {
|
||||
"Group": null,
|
||||
"Post": "Posts",
|
||||
"Tag": null,
|
||||
"User": "Utilisateurs"
|
||||
},
|
||||
"hint": "Qu'est-ce que vous cherchez? Utiliser !… pour des posts, @… pour des membres, #… pour des hashtag.",
|
||||
"placeholder": "Rechercher"
|
||||
"no-results": null,
|
||||
"page": null,
|
||||
"placeholder": "Rechercher",
|
||||
"results": null,
|
||||
"title": null
|
||||
},
|
||||
"settings": {
|
||||
"blocked-users": {
|
||||
@ -579,6 +929,8 @@
|
||||
"empty": "Jusqu'à présent, vous n'avez bloqué personne.",
|
||||
"explanation": {
|
||||
"closing": "Ceci devrait être suffisant pour le moment afin que les utilisateurs bloqués ne puissent plus vous déranger.",
|
||||
"commenting-disabled": null,
|
||||
"commenting-explanation": null,
|
||||
"intro": "Si vous avez bloqué un autre utilisateur, voici ce qui se passe:",
|
||||
"notifications": "Les utilisateurs bloqués ne recevront plus de notifications s'ils sont mentionnés dans vos postes.",
|
||||
"their-perspective": "Vice versa: la personne bloquée ne verra plus non plus vos postes dans son fil d'actualités.",
|
||||
@ -592,6 +944,7 @@
|
||||
"data": {
|
||||
"labelBio": "À propos de vous",
|
||||
"labelCity": "Votre ville ou région",
|
||||
"labelCityHint": null,
|
||||
"labelName": "Votre nom",
|
||||
"labelSlug": "Votre nom d'utilisateur unique",
|
||||
"name": "Vos données",
|
||||
@ -601,13 +954,19 @@
|
||||
"deleteUserAccount": {
|
||||
"accountDescription": "Sachez que vos postes et commentaires sont importants pour notre communauté. Si vous voulez quand même les supprimer, vous devez les marquer ci-dessous.",
|
||||
"accountWarning": "Vous NE POUVEZ PAS GÉRER et NE POUVEZ PAS RECOUVRIR votre compte, vos messages ou vos commentaires après avoir supprimé votre compte!",
|
||||
"accountWarningAdmin": null,
|
||||
"accountWarningIsAdmin": null,
|
||||
"commentedCount": "Supprimer mes {count} commentaires",
|
||||
"confirmDeleting": null,
|
||||
"contributionsCount": "Supprimer mes {count} postes",
|
||||
"infoAdmin": null,
|
||||
"name": "Supprimer un compte utilisateur",
|
||||
"pleaseConfirm": "Action destructive! Saisissez “{confirm}” pour confirmer.",
|
||||
"success": "Compte supprimer avec succès!"
|
||||
},
|
||||
"download": {
|
||||
"description": null,
|
||||
"json": null,
|
||||
"name": "Télécharger les données"
|
||||
},
|
||||
"email": {
|
||||
@ -653,7 +1012,30 @@
|
||||
"languages": {
|
||||
"name": "Langues"
|
||||
},
|
||||
"muted-users": {
|
||||
"columns": {
|
||||
"name": null,
|
||||
"slug": null,
|
||||
"unmute": null
|
||||
},
|
||||
"empty": null,
|
||||
"explanation": {
|
||||
"intro": null,
|
||||
"search": null,
|
||||
"your-perspective": null
|
||||
},
|
||||
"how-to": null,
|
||||
"mute": null,
|
||||
"name": null,
|
||||
"unmute": null,
|
||||
"unmuted": null
|
||||
},
|
||||
"name": "Paramètres",
|
||||
"notifications": {
|
||||
"name": null,
|
||||
"send-email-notifications": null,
|
||||
"success-update": null
|
||||
},
|
||||
"organizations": {
|
||||
"name": "Mes organisations"
|
||||
},
|
||||
@ -683,6 +1065,13 @@
|
||||
"name": "Sécurité"
|
||||
},
|
||||
"social-media": {
|
||||
"add-new-link": null,
|
||||
"delete-modal": {
|
||||
"confirm-button": null,
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"edit-link": null,
|
||||
"name": "Médias sociaux",
|
||||
"placeholder": "Ajouter une URL pour les médias sociaux",
|
||||
"requireUnique": "Vous avez déjà ajouté cette URL",
|
||||
@ -707,6 +1096,7 @@
|
||||
"contact": "Contacter",
|
||||
"data-privacy": "Protection des données",
|
||||
"director": "Directeur Général",
|
||||
"donate": null,
|
||||
"error-occurred": "Une erreur s'est produite.",
|
||||
"faq": "FAQ",
|
||||
"germany": "Allemagne",
|
||||
@ -714,6 +1104,7 @@
|
||||
"made": "Fabriqué avec ❤️",
|
||||
"register": "Numéro de registre",
|
||||
"responsible": "Responsable selon § 55 Abs. 2 RStV (Allemagne)",
|
||||
"support": null,
|
||||
"taxident": "Numéro d'identification à la taxe sur la valeur ajoutée selon § 27 a de la loi sur la taxe sur la valeur ajoutée (Allemagne)",
|
||||
"termsAndConditions": "Conditions générales",
|
||||
"thanks": "Merci!",
|
||||
|
||||
@ -6,7 +6,8 @@
|
||||
"edit": "Modifica",
|
||||
"loading": "Caricamento in corso",
|
||||
"loadMore": "Carica di più",
|
||||
"save": "Salva"
|
||||
"save": "Salva",
|
||||
"saveCategories": null
|
||||
},
|
||||
"admin": {
|
||||
"categories": {
|
||||
@ -30,6 +31,7 @@
|
||||
"goal": "Donazioni mensili necessarie",
|
||||
"name": "Info donazioni",
|
||||
"progress": "Donazioni raccolte finora",
|
||||
"showDonationsCheckboxLabel": null,
|
||||
"successfulUpdate": "Informazioni sulle donazioni aggiornate con successo!"
|
||||
},
|
||||
"hashtags": {
|
||||
@ -57,17 +59,13 @@
|
||||
"settings": {
|
||||
"name": "Impostazioni"
|
||||
},
|
||||
"tags": {
|
||||
"name": "Tag",
|
||||
"tagCount": "Messaggi",
|
||||
"tagCountUnique": "Utenti"
|
||||
},
|
||||
"users": {
|
||||
"empty": null,
|
||||
"form": {
|
||||
"placeholder": null
|
||||
},
|
||||
"name": "Utenti",
|
||||
"roleChanged": null,
|
||||
"table": {
|
||||
"columns": {
|
||||
"createdAt": null,
|
||||
@ -80,6 +78,31 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"chat": {
|
||||
"addRoomHeadline": null,
|
||||
"cancelSelectMessage": null,
|
||||
"conversationStarted": null,
|
||||
"isOnline": null,
|
||||
"isTyping": null,
|
||||
"lastSeen": null,
|
||||
"messageDeleted": null,
|
||||
"messagesEmpty": null,
|
||||
"newMessages": null,
|
||||
"page": {
|
||||
"headline": null
|
||||
},
|
||||
"roomEmpty": null,
|
||||
"roomsEmpty": null,
|
||||
"search": null,
|
||||
"typeMessage": null,
|
||||
"userProfileButton": {
|
||||
"label": null,
|
||||
"tooltip": null
|
||||
}
|
||||
},
|
||||
"client-only": {
|
||||
"loading": null
|
||||
},
|
||||
"code-of-conduct": {
|
||||
"subheader": null
|
||||
},
|
||||
@ -87,8 +110,6 @@
|
||||
"content": {
|
||||
"unavailable-placeholder": null
|
||||
},
|
||||
"delete": null,
|
||||
"edit": null,
|
||||
"edited": null,
|
||||
"menu": {
|
||||
"delete": null,
|
||||
@ -117,11 +138,20 @@
|
||||
"validations": {
|
||||
"categories": null,
|
||||
"email": null,
|
||||
"eventLocationNameLength": null,
|
||||
"eventLocationNameNotEmpty": null,
|
||||
"eventVenueLength": null,
|
||||
"eventVenueNotEmpty": null,
|
||||
"url": null
|
||||
},
|
||||
"versus": "Verso"
|
||||
},
|
||||
"components": {
|
||||
"dateTimeRange": {
|
||||
"hourMinute": null,
|
||||
"monthDay": null,
|
||||
"yearMonthDay": null
|
||||
},
|
||||
"password-reset": {
|
||||
"change-password": {
|
||||
"error": "Modifica della password non riuscita. Forse il codice di sicurezza non era corretto?",
|
||||
@ -139,21 +169,62 @@
|
||||
},
|
||||
"registration": {
|
||||
"create-user-account": {
|
||||
"buttonTitle": null,
|
||||
"error": null,
|
||||
"help": null,
|
||||
"recieveCommunicationAsEmailsEtcConfirmed": null,
|
||||
"success": null,
|
||||
"termsAndCondsEtcConfirmed": null,
|
||||
"title": null
|
||||
},
|
||||
"email-nonce": {
|
||||
"email": {
|
||||
"buttonTitle": {
|
||||
"resend": null,
|
||||
"send": null,
|
||||
"skipResend": null
|
||||
},
|
||||
"form": {
|
||||
"sendEmailAgain": null,
|
||||
"success": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"email-display": {
|
||||
"warningFormat": null,
|
||||
"warningUndef": null,
|
||||
"yourEmail": null
|
||||
},
|
||||
"email-nonce": {
|
||||
"buttonTitle": null,
|
||||
"form": {
|
||||
"click-next": null,
|
||||
"description": null,
|
||||
"next": null,
|
||||
"nonce": null,
|
||||
"validations": {
|
||||
"length": null
|
||||
"error": null,
|
||||
"length": null,
|
||||
"success": null
|
||||
}
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"invite-code": {
|
||||
"buttonTitle": null,
|
||||
"form": {
|
||||
"description": null,
|
||||
"invite-code": null,
|
||||
"next": null,
|
||||
"validations": {
|
||||
"error": null,
|
||||
"length": null,
|
||||
"success": null
|
||||
}
|
||||
}
|
||||
},
|
||||
"no-public-registrstion": {
|
||||
"title": null
|
||||
},
|
||||
"signup": {
|
||||
"form": {
|
||||
"data-privacy": null,
|
||||
@ -171,31 +242,57 @@
|
||||
}
|
||||
},
|
||||
"contribution": {
|
||||
"amount-clicks": null,
|
||||
"amount-comments": null,
|
||||
"amount-shouts": null,
|
||||
"amount-views": null,
|
||||
"categories": {
|
||||
"infoSelectedNoOfMaxCategories": null
|
||||
},
|
||||
"category": {
|
||||
"description": {
|
||||
"body-and-excercise": null,
|
||||
"children": null,
|
||||
"culture": null,
|
||||
"economy": null,
|
||||
"energy": null,
|
||||
"finance": null,
|
||||
"health": null,
|
||||
"home": null,
|
||||
"it-and-media": null,
|
||||
"law": null,
|
||||
"miscellaneous": null,
|
||||
"mobility": null,
|
||||
"nature": null,
|
||||
"networking": null,
|
||||
"peace": null,
|
||||
"politics": null,
|
||||
"psyche": null,
|
||||
"science": null,
|
||||
"spirituality": null
|
||||
},
|
||||
"name": {
|
||||
"animal-protection": null,
|
||||
"art-culture-sport": null,
|
||||
"consumption-sustainability": null,
|
||||
"cooperation-development": null,
|
||||
"democracy-politics": null,
|
||||
"economy-finances": null,
|
||||
"education-sciences": null,
|
||||
"energy-technology": null,
|
||||
"environment-nature": null,
|
||||
"freedom-of-speech": null,
|
||||
"global-peace-nonviolence": null,
|
||||
"happiness-values": null,
|
||||
"health-wellbeing": null,
|
||||
"human-rights-justice": null,
|
||||
"it-internet-data-privacy": null,
|
||||
"just-for-fun": null
|
||||
"body-and-excercise": null,
|
||||
"children": null,
|
||||
"culture": null,
|
||||
"economy": null,
|
||||
"energy": null,
|
||||
"finance": null,
|
||||
"health": null,
|
||||
"home": null,
|
||||
"it-and-media": null,
|
||||
"law": null,
|
||||
"miscellaneous": null,
|
||||
"mobility": null,
|
||||
"nature": null,
|
||||
"networking": null,
|
||||
"peace": null,
|
||||
"politics": null,
|
||||
"psyche": null,
|
||||
"science": null,
|
||||
"spirituality": null
|
||||
}
|
||||
},
|
||||
"delete": null,
|
||||
"edit": null,
|
||||
"emotions-label": {
|
||||
"angry": null,
|
||||
"cry": null,
|
||||
@ -203,17 +300,33 @@
|
||||
"happy": null,
|
||||
"surprised": null
|
||||
},
|
||||
"filterALL": null,
|
||||
"filterFollow": null,
|
||||
"filterMasonryGrid": {
|
||||
"myFriends": null,
|
||||
"myGroups": null,
|
||||
"myTopics": null,
|
||||
"noFilter": null,
|
||||
"onlyArticles": null,
|
||||
"onlyEvents": null
|
||||
},
|
||||
"filterMyGroups": null,
|
||||
"inappropriatePicture": null,
|
||||
"languageSelectLabel": null,
|
||||
"languageSelectText": null,
|
||||
"newEvent": null,
|
||||
"newPost": null,
|
||||
"success": null,
|
||||
"teaserImage": {
|
||||
"cropImage": null,
|
||||
"cropperConfirm": "Confermare",
|
||||
"errors": {
|
||||
"aspect-ratio-too-small": null,
|
||||
"unSupported-file-format": null
|
||||
},
|
||||
"supportedFormats": "Inserisci un'immagine in formato file JPG, PNG o GIF!"
|
||||
},
|
||||
"title": null
|
||||
"title": null,
|
||||
"visibleOnlyForMembersOfGroup": null
|
||||
},
|
||||
"delete": {
|
||||
"cancel": null,
|
||||
@ -267,43 +380,187 @@
|
||||
"addLetter": null,
|
||||
"noHashtagsFound": null
|
||||
},
|
||||
"legend": {
|
||||
"bold": null,
|
||||
"heading3": null,
|
||||
"heading4": null,
|
||||
"italic": null,
|
||||
"legendTitle": null,
|
||||
"link": null,
|
||||
"orderedList": null,
|
||||
"paragraph": null,
|
||||
"quote": null,
|
||||
"ruler": null,
|
||||
"underline": null,
|
||||
"unorderedList": null
|
||||
},
|
||||
"mention": {
|
||||
"noUsersFound": null
|
||||
},
|
||||
"placeholder": null
|
||||
},
|
||||
"error-pages": {
|
||||
"403-default": null,
|
||||
"404-default": null,
|
||||
"500-default": null,
|
||||
"503-default": null,
|
||||
"back-to-index": null,
|
||||
"cannot-edit-post": null,
|
||||
"default": null,
|
||||
"group-not-found": null,
|
||||
"post-not-found": null,
|
||||
"profile-not-found": null
|
||||
},
|
||||
"filter-menu": {
|
||||
"all": null,
|
||||
"article": null,
|
||||
"categories": null,
|
||||
"creationDate": null,
|
||||
"deleteFilter": null,
|
||||
"emotions": null,
|
||||
"ended": {
|
||||
"all": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"onlyEnded": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
}
|
||||
},
|
||||
"event": null,
|
||||
"eventsBy": null,
|
||||
"eventsEnded": null,
|
||||
"filter-by": null,
|
||||
"following": null,
|
||||
"following-title": null,
|
||||
"languages": null,
|
||||
"my-groups": null,
|
||||
"order": {
|
||||
"last": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"newest": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"next": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"oldest": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
}
|
||||
}
|
||||
},
|
||||
"order-by": null,
|
||||
"post-type": null,
|
||||
"save": {
|
||||
"error": null,
|
||||
"success": null
|
||||
},
|
||||
"startDate": null
|
||||
},
|
||||
"followButton": {
|
||||
"follow": null,
|
||||
"following": null
|
||||
},
|
||||
"group": {
|
||||
"actionRadii": {
|
||||
"continental": null,
|
||||
"global": null,
|
||||
"interplanetary": null,
|
||||
"national": null,
|
||||
"regional": null
|
||||
},
|
||||
"actionRadius": null,
|
||||
"addMemberToGroup": null,
|
||||
"addMemberToGroupSuccess": null,
|
||||
"addUser": null,
|
||||
"addUserNoOptions": null,
|
||||
"addUserPlaceholder": null,
|
||||
"allGroups": null,
|
||||
"categories": null,
|
||||
"categoriesTitle": null,
|
||||
"changeMemberRole": null,
|
||||
"contentMenu": {
|
||||
"visitGroupPage": null
|
||||
},
|
||||
"createNewGroup": {
|
||||
"title": null,
|
||||
"tooltip": null
|
||||
},
|
||||
"description": null,
|
||||
"editGroupSettings": {
|
||||
"groupName": null,
|
||||
"title": null
|
||||
},
|
||||
"errors": {
|
||||
"userAlreadyMember": null
|
||||
},
|
||||
"follow": null,
|
||||
"foundation": null,
|
||||
"general": null,
|
||||
"goal": null,
|
||||
"groupCreated": null,
|
||||
"in": null,
|
||||
"joinLeaveButton": {
|
||||
"iAmMember": null,
|
||||
"join": null,
|
||||
"pendingMember": null
|
||||
"leave": null,
|
||||
"pendingMember": null,
|
||||
"tooltip": null
|
||||
},
|
||||
"labelSlug": null,
|
||||
"leaveModal": {
|
||||
"confirmButton": null,
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"memberRemoved": null,
|
||||
"members": null,
|
||||
"membersAdministrationList": {
|
||||
"avatar": null,
|
||||
"name": null,
|
||||
"roleInGroup": null,
|
||||
"slug": null
|
||||
},
|
||||
"membersCount": null,
|
||||
"membersListTitle": null
|
||||
"membersListTitle": null,
|
||||
"membersListTitleNotAllowedSeeingGroupMembers": null,
|
||||
"modal": {
|
||||
"cancel": null,
|
||||
"confirm": null,
|
||||
"confirmAddGroupMemberText": null,
|
||||
"confirmAddGroupMemberTitle": null
|
||||
},
|
||||
"myGroups": null,
|
||||
"name": null,
|
||||
"radius": null,
|
||||
"removeMember": null,
|
||||
"removeMemberButton": null,
|
||||
"role": null,
|
||||
"roles": {
|
||||
"admin": null,
|
||||
"owner": null,
|
||||
"pending": null,
|
||||
"usual": null
|
||||
},
|
||||
"save": null,
|
||||
"type": null,
|
||||
"types": {
|
||||
"closed": null,
|
||||
"hidden": null,
|
||||
"public": null
|
||||
},
|
||||
"typesOptions": {
|
||||
"closed": null,
|
||||
"hidden": null,
|
||||
"public": null
|
||||
},
|
||||
"update": null,
|
||||
"updatedGroup": null
|
||||
},
|
||||
"hashtags-filter": {
|
||||
"clearSearch": null,
|
||||
@ -312,8 +569,13 @@
|
||||
},
|
||||
"header": {
|
||||
"avatarMenu": {
|
||||
"button": {
|
||||
"tooltip": null
|
||||
},
|
||||
"chats": "Chat",
|
||||
"groups": "Gruppi",
|
||||
"map": null,
|
||||
"myProfile": null,
|
||||
"notifications": "Notifiche"
|
||||
},
|
||||
"chats": {
|
||||
@ -322,6 +584,9 @@
|
||||
"groups": {
|
||||
"tooltip": "Gruppi"
|
||||
},
|
||||
"map": {
|
||||
"tooltip": null
|
||||
},
|
||||
"notifications": {
|
||||
"tooltip": "Notifiche"
|
||||
}
|
||||
@ -330,6 +595,18 @@
|
||||
"change-filter-settings": null,
|
||||
"no-results": null
|
||||
},
|
||||
"invite-codes": {
|
||||
"button": {
|
||||
"tooltip": null
|
||||
},
|
||||
"copy-code": null,
|
||||
"copy-success": null,
|
||||
"not-available": null,
|
||||
"your-code": null
|
||||
},
|
||||
"localeSwitch": {
|
||||
"tooltip": null
|
||||
},
|
||||
"login": {
|
||||
"email": "La tua email",
|
||||
"failure": null,
|
||||
@ -340,6 +617,7 @@
|
||||
"moreInfo": "Che cosa è {APPLICATION_NAME}?",
|
||||
"moreInfoHint": null,
|
||||
"no-account": null,
|
||||
"no-cookie": null,
|
||||
"password": "La tua password",
|
||||
"register": null,
|
||||
"success": null
|
||||
@ -349,16 +627,98 @@
|
||||
"questions": null,
|
||||
"title": null
|
||||
},
|
||||
"map": {
|
||||
"alertMessage": null,
|
||||
"legend": {
|
||||
"event": null,
|
||||
"group": null,
|
||||
"theUser": null,
|
||||
"user": null
|
||||
},
|
||||
"markerTypes": {
|
||||
"event": null,
|
||||
"group": null,
|
||||
"theUser": null,
|
||||
"user": null
|
||||
},
|
||||
"pageTitle": null,
|
||||
"styles": {
|
||||
"dark": null,
|
||||
"outdoors": null,
|
||||
"satellite": null,
|
||||
"streets": null
|
||||
}
|
||||
},
|
||||
"modals": {
|
||||
"deleteUser": {
|
||||
"created": null
|
||||
}
|
||||
},
|
||||
"moderation": {
|
||||
"name": null,
|
||||
"reports": {
|
||||
"createdAt": null,
|
||||
"author": null,
|
||||
"content": null,
|
||||
"decideButton": null,
|
||||
"decided": null,
|
||||
"decideModal": {
|
||||
"cancel": null,
|
||||
"Comment": {
|
||||
"disable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"enable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
}
|
||||
},
|
||||
"Post": {
|
||||
"disable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"enable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
}
|
||||
},
|
||||
"submit": null,
|
||||
"User": {
|
||||
"disable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"enable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
}
|
||||
}
|
||||
},
|
||||
"decision": null,
|
||||
"DecisionSuccess": null,
|
||||
"disabled": null,
|
||||
"disabledAt": null,
|
||||
"disabledBy": null,
|
||||
"empty": null,
|
||||
"enabled": null,
|
||||
"enabledAt": null,
|
||||
"enabledBy": null,
|
||||
"filterLabel": {
|
||||
"all": null,
|
||||
"closed": null,
|
||||
"reviewed": null,
|
||||
"unreviewed": null
|
||||
},
|
||||
"moreDetails": null,
|
||||
"name": null,
|
||||
"noDecision": null,
|
||||
"numberOfUsers": null,
|
||||
"previousDecision": null,
|
||||
"reasonCategory": null,
|
||||
"reasonDescription": null,
|
||||
"reporter": null,
|
||||
"reportedOn": null,
|
||||
"status": null,
|
||||
"submitter": null
|
||||
}
|
||||
},
|
||||
@ -371,24 +731,50 @@
|
||||
"read": null,
|
||||
"unread": null
|
||||
},
|
||||
"group": null,
|
||||
"markAllAsRead": "Segna tutti come letti",
|
||||
"pageLink": "Tutte le notifiche",
|
||||
"post": null,
|
||||
"reason": {
|
||||
"changed_group_member_role": null,
|
||||
"commented_on_post": null,
|
||||
"mentioned_in_comment": null,
|
||||
"mentioned_in_post": null
|
||||
"mentioned_in_post": null,
|
||||
"removed_user_from_group": null,
|
||||
"user_joined_group": null,
|
||||
"user_left_group": null
|
||||
},
|
||||
"title": null,
|
||||
"user": null
|
||||
},
|
||||
"post": {
|
||||
"comment": {
|
||||
"reply": null,
|
||||
"submit": null,
|
||||
"submitted": null,
|
||||
"updated": null
|
||||
},
|
||||
"createNewEvent": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"createNewPost": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"edited": null,
|
||||
"editPost": {
|
||||
"event": null,
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"event": null,
|
||||
"menu": {
|
||||
"delete": null,
|
||||
"edit": null,
|
||||
@ -401,6 +787,20 @@
|
||||
"pinned": null,
|
||||
"takeAction": {
|
||||
"name": "Agire"
|
||||
},
|
||||
"viewEvent": {
|
||||
"eventEnd": null,
|
||||
"eventIsOnline": null,
|
||||
"eventLocationName": null,
|
||||
"eventStart": null,
|
||||
"eventVenue": null,
|
||||
"title": null
|
||||
},
|
||||
"viewPost": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
}
|
||||
},
|
||||
"profile": {
|
||||
@ -417,7 +817,6 @@
|
||||
"title": null
|
||||
},
|
||||
"memberSince": "Membro dal",
|
||||
"name": "Il mio profilo",
|
||||
"network": {
|
||||
"andMore": null,
|
||||
"followedBy": null,
|
||||
@ -505,32 +904,69 @@
|
||||
},
|
||||
"search": {
|
||||
"failed": "Non è stato trovato nulla",
|
||||
"for": null,
|
||||
"heading": {
|
||||
"Group": null,
|
||||
"Post": null,
|
||||
"Tag": null,
|
||||
"User": null
|
||||
},
|
||||
"hint": "Cosa state cercando? Usate !... per i post, @... per gli utenti, #... per gli hashtag.",
|
||||
"placeholder": "Ricerca"
|
||||
"no-results": null,
|
||||
"page": null,
|
||||
"placeholder": "Ricerca",
|
||||
"results": null,
|
||||
"title": null
|
||||
},
|
||||
"settings": {
|
||||
"blocked-users": {
|
||||
"block": null,
|
||||
"columns": {
|
||||
"name": null,
|
||||
"slug": null,
|
||||
"unblock": null
|
||||
},
|
||||
"empty": null,
|
||||
"explanation": {
|
||||
"closing": null,
|
||||
"commenting-disabled": null,
|
||||
"commenting-explanation": null,
|
||||
"intro": null,
|
||||
"notifications": null,
|
||||
"their-perspective": null,
|
||||
"your-perspective": null
|
||||
},
|
||||
"how-to": null,
|
||||
"name": null,
|
||||
"unblock": null,
|
||||
"unblocked": null
|
||||
},
|
||||
"data": {
|
||||
"labelBio": "Su di te",
|
||||
"labelCity": "La tua città o regione",
|
||||
"labelCityHint": null,
|
||||
"labelName": "Nome",
|
||||
"labelSlug": null,
|
||||
"name": "I tuoi dati",
|
||||
"namePlaceholder": "Anonymous",
|
||||
"success": null
|
||||
},
|
||||
"delete": {
|
||||
"name": "Elimina Account"
|
||||
},
|
||||
"deleteUserAccount": {
|
||||
"accountDescription": "Essere consapevoli che i tuoi post e commenti sono importanti per la nostra comunità. Se cancelli il tuo account utente, tutto scomparirà per sempre - e sarebbe un vero peccato!",
|
||||
"accountWarning": "Attenzione! Tu NON PUOI GESTIRE e NON PUOI RECUPERARE il tuo account, i tuoi messaggi o commenti dopo aver cancellato il tuo account!",
|
||||
"accountWarningAdmin": null,
|
||||
"accountWarningIsAdmin": null,
|
||||
"commentedCount": "Cancella i miei {count} commenti",
|
||||
"confirmDeleting": null,
|
||||
"contributionsCount": "Cancellare i miei {count} messaggi",
|
||||
"infoAdmin": null,
|
||||
"name": "Cancellare l'account utente",
|
||||
"pleaseConfirm": "Azione distruttiva! Digita “{confirm}” per confermare.",
|
||||
"success": "Account eliminato con successo!"
|
||||
},
|
||||
"download": {
|
||||
"description": null,
|
||||
"json": null,
|
||||
"name": "Scaricamento dati"
|
||||
},
|
||||
"email": {
|
||||
@ -595,6 +1031,11 @@
|
||||
"unmuted": null
|
||||
},
|
||||
"name": "Impostazioni",
|
||||
"notifications": {
|
||||
"name": null,
|
||||
"send-email-notifications": null,
|
||||
"success-update": null
|
||||
},
|
||||
"organizations": {
|
||||
"name": "Mie organizzazioni"
|
||||
},
|
||||
@ -624,6 +1065,13 @@
|
||||
"name": "Sicurezza"
|
||||
},
|
||||
"social-media": {
|
||||
"add-new-link": null,
|
||||
"delete-modal": {
|
||||
"confirm-button": null,
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"edit-link": null,
|
||||
"name": null,
|
||||
"placeholder": null,
|
||||
"requireUnique": null,
|
||||
@ -648,6 +1096,7 @@
|
||||
"contact": "Contatto",
|
||||
"data-privacy": "protezione dei dati",
|
||||
"director": "Direttore Generale",
|
||||
"donate": null,
|
||||
"error-occurred": null,
|
||||
"faq": null,
|
||||
"germany": "Germania",
|
||||
@ -655,6 +1104,7 @@
|
||||
"made": "Con ❤️ fatto",
|
||||
"register": "numero di registro",
|
||||
"responsible": "Responsabile ai sensi del § 55 Abs. 2 RStV (Germania)",
|
||||
"support": null,
|
||||
"taxident": "Numero di identificazione dell'imposta sul valore aggiunto ai sensi del § 27 a Legge sull'imposta sul valore aggiunto (Germania)",
|
||||
"termsAndConditions": null,
|
||||
"thanks": null,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -6,7 +6,8 @@
|
||||
"edit": "Editar",
|
||||
"loading": "Carregando",
|
||||
"loadMore": "Carregar mais",
|
||||
"save": "Salvar"
|
||||
"save": "Salvar",
|
||||
"saveCategories": null
|
||||
},
|
||||
"admin": {
|
||||
"categories": {
|
||||
@ -30,6 +31,7 @@
|
||||
"goal": "Doações mensais necessárias",
|
||||
"name": "Informações sobre Doações",
|
||||
"progress": "Doações arrecadadas até o momento",
|
||||
"showDonationsCheckboxLabel": null,
|
||||
"successfulUpdate": "Informações sobre doações atualizadas com sucesso!"
|
||||
},
|
||||
"hashtags": {
|
||||
@ -63,6 +65,7 @@
|
||||
"placeholder": "e-mail, nome ou descrição"
|
||||
},
|
||||
"name": "Usuários",
|
||||
"roleChanged": null,
|
||||
"table": {
|
||||
"columns": {
|
||||
"createdAt": "Criado em",
|
||||
@ -75,56 +78,34 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"code-of-conduct": {
|
||||
"consequences": {
|
||||
"description": "Se um membro da comunidade apresentar um comportamento inaceitável, os operadores, moderadores e administradores responsáveis da rede podem tomar medidas adequadas, incluindo, entre outras:",
|
||||
"list": {
|
||||
"0": "Pedido de suspensão imediata de uma conduta inaceitável",
|
||||
"1": "Bloquear ou excluir comentários",
|
||||
"2": "Exclusão temporária da respectiva publicação ou contribuição",
|
||||
"3": "Bloquear ou eliminar conteúdo",
|
||||
"4": "Retirada temporária de permissão de escrita",
|
||||
"5": "Exclusão temporária da rede",
|
||||
"6": "Exclusão definitiva da rede",
|
||||
"7": "Violações da lei alemã podem ser denunciadas"
|
||||
},
|
||||
"title": "Consequências de um comportamento inaceitável"
|
||||
"chat": {
|
||||
"addRoomHeadline": null,
|
||||
"cancelSelectMessage": null,
|
||||
"conversationStarted": null,
|
||||
"isOnline": null,
|
||||
"isTyping": null,
|
||||
"lastSeen": null,
|
||||
"messageDeleted": null,
|
||||
"messagesEmpty": null,
|
||||
"newMessages": null,
|
||||
"page": {
|
||||
"headline": null
|
||||
},
|
||||
"expected-behaviour": {
|
||||
"description": "Os seguintes comportamentos são esperados e solicitados a todos os membros da comunidade:",
|
||||
"list": {
|
||||
"0": "Exercitar ponderação e respeito no seu discurso e ações.",
|
||||
"1": "Tente a colaboração antes do conflito.",
|
||||
"2": "Evite comportamentos e discursos humilhantes, discriminatórios ou assediadores.",
|
||||
"3": "Esteja atento ao que o rodeia e aos outros participantes. Alerte os líderes comunitários se você perceber uma situação perigosa, alguém em perigo ou violações deste Código de Conduta, mesmo que pareçam inconsequentes."
|
||||
},
|
||||
"title": "Comportamentos esperados"
|
||||
},
|
||||
"get-help": "Se você for vítima ou testemunhar um comportamento inaceitável, ou tiver qualquer outra preocupação, por favor notifique um organizador da comunidade o mais rápido possível e inclua o link ou mencione o conteúdo correspondente:",
|
||||
"preamble": {
|
||||
"description": "A {APPLICATION_NAME} é uma rede de conhecimento e ação social sem fins lucrativos da próxima geração. Feito por pessoas - para pessoas. Open Source, justo e transparente. Para uma mudança local e global positiva em todas as áreas da vida. Redesenhamos completamente a troca pública de conhecimentos, idéias e projetos. As funções da {APPLICATION_NAME} reúnem as pessoas - offline e online - para que possamos fazer do mundo um lugar melhor.",
|
||||
"title": "Introdução"
|
||||
},
|
||||
"purpose": {
|
||||
"description": "Com este código de conduta, regulamentamos os princípios essenciais para o comportamento em nossa rede social. A Carta dos Direitos Humanos das Nações Unidas é a nossa orientação e forma o coração da nossa compreensão dos valores. O código de conduta serve como princípios orientadores para a nossa aparência pessoal e interação uns com os outros. Qualquer pessoa ativa como usuário da {APPLICATION_NAME} Network, que escreve artigos, comentários ou se conecta com outros usuários, incluindo aqueles fora da rede, reconhece estas regras de conduta como obrigatórias.",
|
||||
"title": "Propósito"
|
||||
},
|
||||
"subheader": "para a rede social da {ORGANIZATION_NAME}",
|
||||
"unacceptable-behaviour": {
|
||||
"description": "Os seguintes comportamentos são inaceitáveis dentro da nossa comunidade:",
|
||||
"list": {
|
||||
"0": "Mensagens, comentários, afirmações ou insultos discriminatórios, particularmente aqueles relacionados a gênero, orientação sexual, raça, religião, orientação política ou filosófica ou deficiência.",
|
||||
"1": "Publicar ou vincular material claramente pornográfico.",
|
||||
"2": "Glorificação ou banalização de atos de violência cruel ou desumana.",
|
||||
"3": "A divulgação de informações pessoais de terceiros sem o seu consentimento ou ameaça de (\"doxing\").",
|
||||
"4": "Intimidação intencional, assédio ou perseguição.",
|
||||
"5": "Publicidade de produtos e serviços com intenção comercial.",
|
||||
"6": "Comportamento criminoso ou violação da lei alemã.",
|
||||
"7": "Apoiar ou incentivar tal conduta."
|
||||
},
|
||||
"title": "Comportamentos Inaceitáveis"
|
||||
"roomEmpty": null,
|
||||
"roomsEmpty": null,
|
||||
"search": null,
|
||||
"typeMessage": null,
|
||||
"userProfileButton": {
|
||||
"label": null,
|
||||
"tooltip": null
|
||||
}
|
||||
},
|
||||
"client-only": {
|
||||
"loading": null
|
||||
},
|
||||
"code-of-conduct": {
|
||||
"subheader": "para a rede social da {ORGANIZATION_NAME}"
|
||||
},
|
||||
"comment": {
|
||||
"content": {
|
||||
"unavailable-placeholder": "…esse comentário não está mais disponível"
|
||||
@ -157,11 +138,20 @@
|
||||
"validations": {
|
||||
"categories": "devem ser seleccionadas, no mínimo uma e, no máximo três categorias",
|
||||
"email": "deve ser um endereço de e-mail válido",
|
||||
"eventLocationNameLength": null,
|
||||
"eventLocationNameNotEmpty": null,
|
||||
"eventVenueLength": null,
|
||||
"eventVenueNotEmpty": null,
|
||||
"url": "deve ser uma URL válida"
|
||||
},
|
||||
"versus": "Contra"
|
||||
},
|
||||
"components": {
|
||||
"dateTimeRange": {
|
||||
"hourMinute": null,
|
||||
"monthDay": null,
|
||||
"yearMonthDay": null
|
||||
},
|
||||
"password-reset": {
|
||||
"change-password": {
|
||||
"error": "A alteração da sua senha falhou. Talvez o código de segurança não estava correto?",
|
||||
@ -179,21 +169,62 @@
|
||||
},
|
||||
"registration": {
|
||||
"create-user-account": {
|
||||
"buttonTitle": null,
|
||||
"error": "Nenhuma conta de usuário pode ser criada!",
|
||||
"help": " Talvez a confirmação tenha sido inválida? Em caso de problemas, sinta-se à vontade para pedir ajuda, enviando um e-mail para:",
|
||||
"recieveCommunicationAsEmailsEtcConfirmed": null,
|
||||
"success": "A sua conta foi criada!",
|
||||
"termsAndCondsEtcConfirmed": null,
|
||||
"title": "Criar uma conta de usuário"
|
||||
},
|
||||
"email-nonce": {
|
||||
"email": {
|
||||
"buttonTitle": {
|
||||
"resend": null,
|
||||
"send": null,
|
||||
"skipResend": null
|
||||
},
|
||||
"form": {
|
||||
"sendEmailAgain": null,
|
||||
"success": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"email-display": {
|
||||
"warningFormat": null,
|
||||
"warningUndef": null,
|
||||
"yourEmail": null
|
||||
},
|
||||
"email-nonce": {
|
||||
"buttonTitle": null,
|
||||
"form": {
|
||||
"click-next": null,
|
||||
"description": "Abra a sua caixa de entrada e digite o código que lhe enviamos.",
|
||||
"next": "Continue",
|
||||
"nonce": "Digite seu código",
|
||||
"validations": {
|
||||
"length": "deve ter {nonceLength} caracteres"
|
||||
"error": null,
|
||||
"length": "deve ter {nonceLength} caracteres",
|
||||
"success": null
|
||||
}
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"invite-code": {
|
||||
"buttonTitle": null,
|
||||
"form": {
|
||||
"description": null,
|
||||
"invite-code": null,
|
||||
"next": null,
|
||||
"validations": {
|
||||
"error": null,
|
||||
"length": null,
|
||||
"success": null
|
||||
}
|
||||
}
|
||||
},
|
||||
"no-public-registrstion": {
|
||||
"title": null
|
||||
},
|
||||
"signup": {
|
||||
"form": {
|
||||
"data-privacy": "Eu li e entendi o Política de Privacidade.",
|
||||
@ -211,27 +242,55 @@
|
||||
}
|
||||
},
|
||||
"contribution": {
|
||||
"amount-clicks": null,
|
||||
"amount-comments": null,
|
||||
"amount-shouts": null,
|
||||
"amount-views": null,
|
||||
"categories": {
|
||||
"infoSelectedNoOfMaxCategories": "{chosen} of {max} categorias selecionadas"
|
||||
},
|
||||
"category": {
|
||||
"description": {
|
||||
"body-and-excercise": null,
|
||||
"children": null,
|
||||
"culture": null,
|
||||
"economy": null,
|
||||
"energy": null,
|
||||
"finance": null,
|
||||
"health": null,
|
||||
"home": null,
|
||||
"it-and-media": null,
|
||||
"law": null,
|
||||
"miscellaneous": null,
|
||||
"mobility": null,
|
||||
"nature": null,
|
||||
"networking": null,
|
||||
"peace": null,
|
||||
"politics": null,
|
||||
"psyche": null,
|
||||
"science": null,
|
||||
"spirituality": null
|
||||
},
|
||||
"name": {
|
||||
"animal-protection": "Proteção Animal",
|
||||
"art-culture-sport": "Arte, Cultura e Esporte",
|
||||
"consumption-sustainability": "Consumo e Sustentabilidade",
|
||||
"cooperation-development": "Cooperação e Desenvolvimento",
|
||||
"democracy-politics": "Democracia e Política",
|
||||
"economy-finances": "Economia e Finanças",
|
||||
"education-sciences": "Educação e Ciências",
|
||||
"energy-technology": "Energia e tecnologia",
|
||||
"environment-nature": "Meio Ambiente e Natureza",
|
||||
"freedom-of-speech": "Liberdade de expressão",
|
||||
"global-peace-nonviolence": "Paz Mundial e Não-Violência",
|
||||
"happiness-values": "Felicidade e Valores",
|
||||
"health-wellbeing": "Saúde e Bem-estar",
|
||||
"human-rights-justice": "Direitos Humanos e Justiça",
|
||||
"it-internet-data-privacy": "TI, Internet e Privacidade de Dados",
|
||||
"just-for-fun": "Só por diversão"
|
||||
"body-and-excercise": null,
|
||||
"children": null,
|
||||
"culture": null,
|
||||
"economy": null,
|
||||
"energy": null,
|
||||
"finance": null,
|
||||
"health": null,
|
||||
"home": null,
|
||||
"it-and-media": null,
|
||||
"law": null,
|
||||
"miscellaneous": null,
|
||||
"mobility": null,
|
||||
"nature": null,
|
||||
"networking": null,
|
||||
"peace": null,
|
||||
"politics": null,
|
||||
"psyche": null,
|
||||
"science": null,
|
||||
"spirituality": null
|
||||
}
|
||||
},
|
||||
"emotions-label": {
|
||||
@ -241,17 +300,33 @@
|
||||
"happy": "Feliz",
|
||||
"surprised": "Surpreso"
|
||||
},
|
||||
"filterALL": "Ver todas as contribuições",
|
||||
"filterFollow": "Filtrar contribuições de usuários que eu sigo",
|
||||
"filterMasonryGrid": {
|
||||
"myFriends": null,
|
||||
"myGroups": null,
|
||||
"myTopics": null,
|
||||
"noFilter": null,
|
||||
"onlyArticles": null,
|
||||
"onlyEvents": null
|
||||
},
|
||||
"filterMyGroups": null,
|
||||
"inappropriatePicture": null,
|
||||
"languageSelectLabel": "Idioma",
|
||||
"languageSelectText": "Selecionar Idioma",
|
||||
"newEvent": null,
|
||||
"newPost": "Criar uma nova publicação",
|
||||
"success": "Salvo!",
|
||||
"teaserImage": {
|
||||
"cropImage": null,
|
||||
"cropperConfirm": "Confirmar",
|
||||
"errors": {
|
||||
"aspect-ratio-too-small": null,
|
||||
"unSupported-file-format": null
|
||||
},
|
||||
"supportedFormats": "Insira uma imagem do formato JPG, PNG ou GIF!"
|
||||
},
|
||||
"title": "Título"
|
||||
"title": "Título",
|
||||
"visibleOnlyForMembersOfGroup": null
|
||||
},
|
||||
"delete": {
|
||||
"cancel": "Cancelar",
|
||||
@ -305,43 +380,187 @@
|
||||
"addLetter": "Digite uma letra",
|
||||
"noHashtagsFound": "Nenhuma hashtag encontrada"
|
||||
},
|
||||
"legend": {
|
||||
"bold": null,
|
||||
"heading3": null,
|
||||
"heading4": null,
|
||||
"italic": null,
|
||||
"legendTitle": null,
|
||||
"link": null,
|
||||
"orderedList": null,
|
||||
"paragraph": null,
|
||||
"quote": null,
|
||||
"ruler": null,
|
||||
"underline": null,
|
||||
"unorderedList": null
|
||||
},
|
||||
"mention": {
|
||||
"noUsersFound": "Nenhum usuário encontrado"
|
||||
},
|
||||
"placeholder": " Escreva algo inspirador…"
|
||||
},
|
||||
"error-pages": {
|
||||
"403-default": null,
|
||||
"404-default": null,
|
||||
"500-default": null,
|
||||
"503-default": null,
|
||||
"back-to-index": null,
|
||||
"cannot-edit-post": null,
|
||||
"default": null,
|
||||
"group-not-found": null,
|
||||
"post-not-found": null,
|
||||
"profile-not-found": null
|
||||
},
|
||||
"filter-menu": {
|
||||
"all": "Todos",
|
||||
"article": null,
|
||||
"categories": "Categorias de Conteúdo",
|
||||
"creationDate": null,
|
||||
"deleteFilter": null,
|
||||
"emotions": "Emoções",
|
||||
"ended": {
|
||||
"all": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"onlyEnded": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
}
|
||||
},
|
||||
"event": null,
|
||||
"eventsBy": null,
|
||||
"eventsEnded": null,
|
||||
"filter-by": "Filtrar por ...",
|
||||
"following": "Usuários que eu sigo",
|
||||
"following-title": null,
|
||||
"languages": "Idiomas",
|
||||
"my-groups": null,
|
||||
"order": {
|
||||
"last": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"newest": {
|
||||
"hint": null,
|
||||
"label": "Mais recentes"
|
||||
},
|
||||
"next": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"oldest": {
|
||||
"hint": null,
|
||||
"label": "Mais antigos"
|
||||
}
|
||||
}
|
||||
},
|
||||
"order-by": null,
|
||||
"post-type": null,
|
||||
"save": {
|
||||
"error": null,
|
||||
"success": null
|
||||
},
|
||||
"startDate": null
|
||||
},
|
||||
"followButton": {
|
||||
"follow": "Seguir",
|
||||
"following": "Seguindo"
|
||||
},
|
||||
"group": {
|
||||
"actionRadii": {
|
||||
"continental": null,
|
||||
"global": null,
|
||||
"interplanetary": null,
|
||||
"national": null,
|
||||
"regional": null
|
||||
},
|
||||
"actionRadius": null,
|
||||
"addMemberToGroup": null,
|
||||
"addMemberToGroupSuccess": null,
|
||||
"addUser": null,
|
||||
"addUserNoOptions": null,
|
||||
"addUserPlaceholder": null,
|
||||
"allGroups": null,
|
||||
"categories": null,
|
||||
"categoriesTitle": null,
|
||||
"changeMemberRole": null,
|
||||
"contentMenu": {
|
||||
"visitGroupPage": null
|
||||
},
|
||||
"createNewGroup": {
|
||||
"title": null,
|
||||
"tooltip": null
|
||||
},
|
||||
"description": null,
|
||||
"editGroupSettings": {
|
||||
"groupName": null,
|
||||
"title": null
|
||||
},
|
||||
"errors": {
|
||||
"userAlreadyMember": null
|
||||
},
|
||||
"follow": null,
|
||||
"foundation": null,
|
||||
"general": null,
|
||||
"goal": null,
|
||||
"groupCreated": null,
|
||||
"in": null,
|
||||
"joinLeaveButton": {
|
||||
"iAmMember": null,
|
||||
"join": null,
|
||||
"pendingMember": null
|
||||
"leave": null,
|
||||
"pendingMember": null,
|
||||
"tooltip": null
|
||||
},
|
||||
"labelSlug": null,
|
||||
"leaveModal": {
|
||||
"confirmButton": null,
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"memberRemoved": null,
|
||||
"members": null,
|
||||
"membersAdministrationList": {
|
||||
"avatar": null,
|
||||
"name": null,
|
||||
"roleInGroup": null,
|
||||
"slug": null
|
||||
},
|
||||
"membersCount": null,
|
||||
"membersListTitle": null
|
||||
"membersListTitle": null,
|
||||
"membersListTitleNotAllowedSeeingGroupMembers": null,
|
||||
"modal": {
|
||||
"cancel": null,
|
||||
"confirm": null,
|
||||
"confirmAddGroupMemberText": null,
|
||||
"confirmAddGroupMemberTitle": null
|
||||
},
|
||||
"myGroups": null,
|
||||
"name": null,
|
||||
"radius": null,
|
||||
"removeMember": null,
|
||||
"removeMemberButton": null,
|
||||
"role": null,
|
||||
"roles": {
|
||||
"admin": null,
|
||||
"owner": null,
|
||||
"pending": null,
|
||||
"usual": null
|
||||
},
|
||||
"save": null,
|
||||
"type": null,
|
||||
"types": {
|
||||
"closed": null,
|
||||
"hidden": null,
|
||||
"public": null
|
||||
},
|
||||
"typesOptions": {
|
||||
"closed": null,
|
||||
"hidden": null,
|
||||
"public": null
|
||||
},
|
||||
"update": null,
|
||||
"updatedGroup": null
|
||||
},
|
||||
"hashtags-filter": {
|
||||
"clearSearch": "Limpar pesquisa",
|
||||
@ -350,8 +569,13 @@
|
||||
},
|
||||
"header": {
|
||||
"avatarMenu": {
|
||||
"button": {
|
||||
"tooltip": null
|
||||
},
|
||||
"chats": "Chats",
|
||||
"groups": "Grupos",
|
||||
"map": null,
|
||||
"myProfile": null,
|
||||
"notifications": "Notificações"
|
||||
},
|
||||
"chats": {
|
||||
@ -360,6 +584,9 @@
|
||||
"groups": {
|
||||
"tooltip": "Grupos"
|
||||
},
|
||||
"map": {
|
||||
"tooltip": null
|
||||
},
|
||||
"notifications": {
|
||||
"tooltip": "Notificações"
|
||||
}
|
||||
@ -368,6 +595,18 @@
|
||||
"change-filter-settings": "Altere suas configurações de filtro para obter mais resultados.",
|
||||
"no-results": "Nenhuma contribuição encontrada."
|
||||
},
|
||||
"invite-codes": {
|
||||
"button": {
|
||||
"tooltip": null
|
||||
},
|
||||
"copy-code": null,
|
||||
"copy-success": null,
|
||||
"not-available": null,
|
||||
"your-code": null
|
||||
},
|
||||
"localeSwitch": {
|
||||
"tooltip": null
|
||||
},
|
||||
"login": {
|
||||
"email": "Seu email",
|
||||
"failure": "Endereço de e-mail ou senha incorretos.",
|
||||
@ -378,6 +617,7 @@
|
||||
"moreInfo": "O que é a {APPLICATION_NAME}?",
|
||||
"moreInfoHint": "para a página de apresentação",
|
||||
"no-account": "Ainda não tem uma conta?",
|
||||
"no-cookie": null,
|
||||
"password": "Sua senha",
|
||||
"register": "Cadastrar-se",
|
||||
"success": "Você está conectado!"
|
||||
@ -387,14 +627,98 @@
|
||||
"questions": "Qualquer dúvida, envie um e-mail para",
|
||||
"title": "{APPLICATION_NAME} está em manutenção"
|
||||
},
|
||||
"map": {
|
||||
"alertMessage": null,
|
||||
"legend": {
|
||||
"event": null,
|
||||
"group": null,
|
||||
"theUser": null,
|
||||
"user": null
|
||||
},
|
||||
"markerTypes": {
|
||||
"event": null,
|
||||
"group": null,
|
||||
"theUser": null,
|
||||
"user": null
|
||||
},
|
||||
"pageTitle": null,
|
||||
"styles": {
|
||||
"dark": null,
|
||||
"outdoors": null,
|
||||
"satellite": null,
|
||||
"streets": null
|
||||
}
|
||||
},
|
||||
"modals": {
|
||||
"deleteUser": {
|
||||
"created": null
|
||||
}
|
||||
},
|
||||
"moderation": {
|
||||
"name": "Moderação",
|
||||
"reports": {
|
||||
"author": null,
|
||||
"content": null,
|
||||
"decideButton": null,
|
||||
"decided": null,
|
||||
"decideModal": {
|
||||
"cancel": null,
|
||||
"Comment": {
|
||||
"disable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"enable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
}
|
||||
},
|
||||
"Post": {
|
||||
"disable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"enable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
}
|
||||
},
|
||||
"submit": null,
|
||||
"User": {
|
||||
"disable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"enable": {
|
||||
"message": null,
|
||||
"title": null
|
||||
}
|
||||
}
|
||||
},
|
||||
"decision": null,
|
||||
"DecisionSuccess": null,
|
||||
"disabled": null,
|
||||
"disabledAt": null,
|
||||
"disabledBy": "desativado por",
|
||||
"empty": "Parabéns, nada a moderar.",
|
||||
"enabled": null,
|
||||
"enabledAt": null,
|
||||
"enabledBy": null,
|
||||
"filterLabel": {
|
||||
"all": null,
|
||||
"closed": null,
|
||||
"reviewed": null,
|
||||
"unreviewed": null
|
||||
},
|
||||
"moreDetails": null,
|
||||
"name": "Denúncias",
|
||||
"noDecision": null,
|
||||
"numberOfUsers": null,
|
||||
"previousDecision": null,
|
||||
"reasonCategory": "Categoria",
|
||||
"reasonDescription": "Descrição",
|
||||
"reportedOn": null,
|
||||
"status": null,
|
||||
"submitter": "denunciado por"
|
||||
}
|
||||
},
|
||||
@ -407,24 +731,50 @@
|
||||
"read": "Lido",
|
||||
"unread": "Não lido"
|
||||
},
|
||||
"group": null,
|
||||
"markAllAsRead": "Marcar todas como lidas",
|
||||
"pageLink": "Todas as notificações",
|
||||
"post": "Post",
|
||||
"reason": {
|
||||
"changed_group_member_role": null,
|
||||
"commented_on_post": "Comentou no seu post …",
|
||||
"mentioned_in_comment": "Mentionou você em um comentário …",
|
||||
"mentioned_in_post": "Mencinou você em um post …"
|
||||
"mentioned_in_post": "Mencinou você em um post …",
|
||||
"removed_user_from_group": null,
|
||||
"user_joined_group": null,
|
||||
"user_left_group": null
|
||||
},
|
||||
"title": "Notificações",
|
||||
"user": "Usuário"
|
||||
},
|
||||
"post": {
|
||||
"comment": {
|
||||
"reply": null,
|
||||
"submit": "Commentar",
|
||||
"submitted": "Comentário Enviado",
|
||||
"updated": "Alterações salvas"
|
||||
},
|
||||
"createNewEvent": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"createNewPost": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"edited": "editado",
|
||||
"editPost": {
|
||||
"event": null,
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"event": null,
|
||||
"menu": {
|
||||
"delete": "Excluir publicação",
|
||||
"edit": "Editar publicação",
|
||||
@ -437,6 +787,20 @@
|
||||
"pinned": "Anúncio",
|
||||
"takeAction": {
|
||||
"name": "Tomar uma ação"
|
||||
},
|
||||
"viewEvent": {
|
||||
"eventEnd": null,
|
||||
"eventIsOnline": null,
|
||||
"eventLocationName": null,
|
||||
"eventStart": null,
|
||||
"eventVenue": null,
|
||||
"title": null
|
||||
},
|
||||
"viewPost": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
}
|
||||
},
|
||||
"profile": {
|
||||
@ -453,7 +817,6 @@
|
||||
"title": "Convidar alguém para {APPLICATION_NAME}!"
|
||||
},
|
||||
"memberSince": "Membro desde",
|
||||
"name": "Meu perfil",
|
||||
"network": {
|
||||
"andMore": "e {number} mais …",
|
||||
"followedBy": "é seguido por:",
|
||||
@ -541,8 +904,19 @@
|
||||
},
|
||||
"search": {
|
||||
"failed": "Nada encontrado",
|
||||
"for": null,
|
||||
"heading": {
|
||||
"Group": null,
|
||||
"Post": null,
|
||||
"Tag": null,
|
||||
"User": null
|
||||
},
|
||||
"hint": "O que você está buscando? Use !... para postagens, @... para usuários, #... para hashtags.",
|
||||
"placeholder": "Buscar"
|
||||
"no-results": null,
|
||||
"page": null,
|
||||
"placeholder": "Buscar",
|
||||
"results": null,
|
||||
"title": null
|
||||
},
|
||||
"settings": {
|
||||
"blocked-users": {
|
||||
@ -555,6 +929,8 @@
|
||||
"empty": "Até agora, você não bloqueou ninguém.",
|
||||
"explanation": {
|
||||
"closing": "Isso deve ser suficiente por enquanto para que os usuários bloqueados não possam mais incomodá-lo.",
|
||||
"commenting-disabled": null,
|
||||
"commenting-explanation": null,
|
||||
"intro": "Se outro usuário foi bloqueado por você, isto é o que acontece:",
|
||||
"notifications": "Usuários bloqueados não receberão mais notificações se forem mencionados em suas mensagens.",
|
||||
"their-perspective": "Vice versa: A pessoa bloqueada também não verá mais suas mensagens em seu feed de notícias.",
|
||||
@ -568,6 +944,7 @@
|
||||
"data": {
|
||||
"labelBio": "Sobre você",
|
||||
"labelCity": "Sua cidade ou estado",
|
||||
"labelCityHint": null,
|
||||
"labelName": "Seu nome",
|
||||
"labelSlug": "Seu nome de usuário exclusivo",
|
||||
"name": "Seus dados",
|
||||
@ -577,13 +954,19 @@
|
||||
"deleteUserAccount": {
|
||||
"accountDescription": "Esteja ciente de que o suas Publicações e Comentários são importantes para a nossa comunidade. Se você ainda optar por excluí-los, você tem que marcá-los abaixo.",
|
||||
"accountWarning": "Você NÃO PODE GERENCIAR e NÃO PODE RECUPERAR sua conta, Publicações, ou Comentários após excluir sua conta!",
|
||||
"accountWarningAdmin": null,
|
||||
"accountWarningIsAdmin": null,
|
||||
"commentedCount": "Deletar meus {count} comentários",
|
||||
"confirmDeleting": null,
|
||||
"contributionsCount": "Deletar minhas {count} publicações",
|
||||
"infoAdmin": null,
|
||||
"name": "Deletar dados",
|
||||
"pleaseConfirm": "Ação destrutiva! Digitar “{confirm}” para confirmar.",
|
||||
"success": "Conta eliminada com sucesso!"
|
||||
},
|
||||
"download": {
|
||||
"description": null,
|
||||
"json": null,
|
||||
"name": "Baixar dados"
|
||||
},
|
||||
"email": {
|
||||
@ -629,7 +1012,30 @@
|
||||
"languages": {
|
||||
"name": "Idiomas"
|
||||
},
|
||||
"muted-users": {
|
||||
"columns": {
|
||||
"name": null,
|
||||
"slug": null,
|
||||
"unmute": null
|
||||
},
|
||||
"empty": null,
|
||||
"explanation": {
|
||||
"intro": null,
|
||||
"search": null,
|
||||
"your-perspective": null
|
||||
},
|
||||
"how-to": null,
|
||||
"mute": null,
|
||||
"name": null,
|
||||
"unmute": null,
|
||||
"unmuted": null
|
||||
},
|
||||
"name": "Configurações",
|
||||
"notifications": {
|
||||
"name": null,
|
||||
"send-email-notifications": null,
|
||||
"success-update": null
|
||||
},
|
||||
"organizations": {
|
||||
"name": "Minhas Organizações"
|
||||
},
|
||||
@ -659,6 +1065,13 @@
|
||||
"name": "Segurança"
|
||||
},
|
||||
"social-media": {
|
||||
"add-new-link": null,
|
||||
"delete-modal": {
|
||||
"confirm-button": null,
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"edit-link": null,
|
||||
"name": "Mídias sociais",
|
||||
"placeholder": "Sua url de mídia social",
|
||||
"requireUnique": "Você já adicionou esta url",
|
||||
@ -683,6 +1096,7 @@
|
||||
"contact": "Contato",
|
||||
"data-privacy": "Proteção de Dados",
|
||||
"director": "Diretor Administrativo",
|
||||
"donate": null,
|
||||
"error-occurred": "Ocorreu um erro.",
|
||||
"faq": "FAQ",
|
||||
"germany": "Alemanha",
|
||||
@ -690,6 +1104,7 @@
|
||||
"made": "Feito com ❤️",
|
||||
"register": "número de registo",
|
||||
"responsible": "Responsável segundo § 55 Abs. 2 RStV (Alemanha) ",
|
||||
"support": null,
|
||||
"taxident": "Número de identificação do imposto sobre o valor acrescentado de acordo com o § 27 da Lei do Imposto sobre o Valor Acrescentado (Alemanha)",
|
||||
"termsAndConditions": "Termos e Condições",
|
||||
"thanks": "Obrigado(a)!",
|
||||
|
||||
@ -6,7 +6,8 @@
|
||||
"edit": "Редактировать",
|
||||
"loading": "загрузка",
|
||||
"loadMore": "Загрузить ещё",
|
||||
"save": "Сохранить"
|
||||
"save": "Сохранить",
|
||||
"saveCategories": null
|
||||
},
|
||||
"admin": {
|
||||
"categories": {
|
||||
@ -30,6 +31,7 @@
|
||||
"goal": "Необходимы ежемесячные пожертвования",
|
||||
"name": "Информация о пожертвованиях",
|
||||
"progress": "Пожертвования собраны",
|
||||
"showDonationsCheckboxLabel": null,
|
||||
"successfulUpdate": "Информация о пожертвованиях успешно обновлена!"
|
||||
},
|
||||
"hashtags": {
|
||||
@ -63,6 +65,7 @@
|
||||
"placeholder": "Электронная почта, имя или описание"
|
||||
},
|
||||
"name": "Пользователи",
|
||||
"roleChanged": null,
|
||||
"table": {
|
||||
"columns": {
|
||||
"createdAt": "Дата создания",
|
||||
@ -75,6 +78,31 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"chat": {
|
||||
"addRoomHeadline": null,
|
||||
"cancelSelectMessage": null,
|
||||
"conversationStarted": null,
|
||||
"isOnline": null,
|
||||
"isTyping": null,
|
||||
"lastSeen": null,
|
||||
"messageDeleted": null,
|
||||
"messagesEmpty": null,
|
||||
"newMessages": null,
|
||||
"page": {
|
||||
"headline": null
|
||||
},
|
||||
"roomEmpty": null,
|
||||
"roomsEmpty": null,
|
||||
"search": null,
|
||||
"typeMessage": null,
|
||||
"userProfileButton": {
|
||||
"label": null,
|
||||
"tooltip": null
|
||||
}
|
||||
},
|
||||
"client-only": {
|
||||
"loading": null
|
||||
},
|
||||
"code-of-conduct": {
|
||||
"subheader": "социальной сети {ORGANIZATION_NAME}"
|
||||
},
|
||||
@ -110,11 +138,20 @@
|
||||
"validations": {
|
||||
"categories": "Выберите от одной то трех категорий",
|
||||
"email": "должен быть корректный адрес электронной почты",
|
||||
"eventLocationNameLength": null,
|
||||
"eventLocationNameNotEmpty": null,
|
||||
"eventVenueLength": null,
|
||||
"eventVenueNotEmpty": null,
|
||||
"url": "должен быть корректный URL"
|
||||
},
|
||||
"versus": "Против"
|
||||
},
|
||||
"components": {
|
||||
"dateTimeRange": {
|
||||
"hourMinute": null,
|
||||
"monthDay": null,
|
||||
"yearMonthDay": null
|
||||
},
|
||||
"password-reset": {
|
||||
"change-password": {
|
||||
"error": "Смена пароля не удалась. Может быть, код безопасности был неправильным?",
|
||||
@ -132,21 +169,62 @@
|
||||
},
|
||||
"registration": {
|
||||
"create-user-account": {
|
||||
"buttonTitle": null,
|
||||
"error": "Не удалось создать учетную запись!",
|
||||
"help": "Может быть, подтверждение было недействительным? В случае возникновения проблем, не стесняйтесь обращаться за помощью, отправив нам письмо по электронной почте:",
|
||||
"recieveCommunicationAsEmailsEtcConfirmed": null,
|
||||
"success": "Учетная запись успешно создана!",
|
||||
"termsAndCondsEtcConfirmed": null,
|
||||
"title": "Создать учетную запись"
|
||||
},
|
||||
"email-nonce": {
|
||||
"email": {
|
||||
"buttonTitle": {
|
||||
"resend": null,
|
||||
"send": null,
|
||||
"skipResend": null
|
||||
},
|
||||
"form": {
|
||||
"sendEmailAgain": null,
|
||||
"success": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"email-display": {
|
||||
"warningFormat": null,
|
||||
"warningUndef": null,
|
||||
"yourEmail": null
|
||||
},
|
||||
"email-nonce": {
|
||||
"buttonTitle": null,
|
||||
"form": {
|
||||
"click-next": null,
|
||||
"description": "Откройте папку \\\"Входящие\\\" и введите код из сообщения.",
|
||||
"next": "Продолжить",
|
||||
"nonce": "Введите код",
|
||||
"validations": {
|
||||
"length": "длина должна быть {nonceLength} символов"
|
||||
"error": null,
|
||||
"length": "длина должна быть {nonceLength} символов",
|
||||
"success": null
|
||||
}
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"invite-code": {
|
||||
"buttonTitle": null,
|
||||
"form": {
|
||||
"description": null,
|
||||
"invite-code": null,
|
||||
"next": null,
|
||||
"validations": {
|
||||
"error": null,
|
||||
"length": null,
|
||||
"success": null
|
||||
}
|
||||
}
|
||||
},
|
||||
"no-public-registrstion": {
|
||||
"title": null
|
||||
},
|
||||
"signup": {
|
||||
"form": {
|
||||
"data-privacy": "Я прочитал и понял Заявление о конфиденциальности",
|
||||
@ -164,27 +242,55 @@
|
||||
}
|
||||
},
|
||||
"contribution": {
|
||||
"amount-clicks": null,
|
||||
"amount-comments": null,
|
||||
"amount-shouts": null,
|
||||
"amount-views": null,
|
||||
"categories": {
|
||||
"infoSelectedNoOfMaxCategories": "Выбрано {chosen} из {max} категорий"
|
||||
},
|
||||
"category": {
|
||||
"description": {
|
||||
"body-and-excercise": null,
|
||||
"children": null,
|
||||
"culture": null,
|
||||
"economy": null,
|
||||
"energy": null,
|
||||
"finance": null,
|
||||
"health": null,
|
||||
"home": null,
|
||||
"it-and-media": null,
|
||||
"law": null,
|
||||
"miscellaneous": null,
|
||||
"mobility": null,
|
||||
"nature": null,
|
||||
"networking": null,
|
||||
"peace": null,
|
||||
"politics": null,
|
||||
"psyche": null,
|
||||
"science": null,
|
||||
"spirituality": null
|
||||
},
|
||||
"name": {
|
||||
"animal-protection": "Защита животных",
|
||||
"art-culture-sport": "Искусство, культура и спорт",
|
||||
"consumption-sustainability": "Потребление и стабильность",
|
||||
"cooperation-development": "Сотрудничество и развитие",
|
||||
"democracy-politics": "Демократия и политика",
|
||||
"economy-finances": "Экономика и финансы",
|
||||
"education-sciences": "Образование и наука",
|
||||
"energy-technology": "Энергия и технологии",
|
||||
"environment-nature": "Окружающая среда и природа",
|
||||
"freedom-of-speech": "Свобода слова",
|
||||
"global-peace-nonviolence": "Глобальный мир и борьба с насилием",
|
||||
"happiness-values": "Счастье и ценности",
|
||||
"health-wellbeing": "Здоровье и благополучие",
|
||||
"human-rights-justice": "Права человека и справедливость",
|
||||
"it-internet-data-privacy": "ИТ, интернет и конфиденциальность",
|
||||
"just-for-fun": "Просто для удовольствия"
|
||||
"body-and-excercise": null,
|
||||
"children": null,
|
||||
"culture": null,
|
||||
"economy": null,
|
||||
"energy": null,
|
||||
"finance": null,
|
||||
"health": null,
|
||||
"home": null,
|
||||
"it-and-media": null,
|
||||
"law": null,
|
||||
"miscellaneous": null,
|
||||
"mobility": null,
|
||||
"nature": null,
|
||||
"networking": null,
|
||||
"peace": null,
|
||||
"politics": null,
|
||||
"psyche": null,
|
||||
"science": null,
|
||||
"spirituality": null
|
||||
}
|
||||
},
|
||||
"emotions-label": {
|
||||
@ -194,18 +300,33 @@
|
||||
"happy": "Счастлив",
|
||||
"surprised": "Удивлен"
|
||||
},
|
||||
"filterALL": "Просмотреть все посты",
|
||||
"filterFollow": "Показать сообщения пользователей, на которых я подписан",
|
||||
"filterMasonryGrid": {
|
||||
"myFriends": null,
|
||||
"myGroups": null,
|
||||
"myTopics": null,
|
||||
"noFilter": null,
|
||||
"onlyArticles": null,
|
||||
"onlyEvents": null
|
||||
},
|
||||
"filterMyGroups": null,
|
||||
"inappropriatePicture": "Эта картинка может быть неуместным для некоторых людей.",
|
||||
"languageSelectLabel": "Язык",
|
||||
"languageSelectText": "Выберите язык",
|
||||
"newEvent": null,
|
||||
"newPost": "Создать пост",
|
||||
"success": "Сохранено!",
|
||||
"teaserImage": {
|
||||
"cropImage": null,
|
||||
"cropperConfirm": "Подтвердить",
|
||||
"errors": {
|
||||
"aspect-ratio-too-small": null,
|
||||
"unSupported-file-format": null
|
||||
},
|
||||
"supportedFormats": "Вставьте изображение файла формата JPG, PNG или GIF!"
|
||||
},
|
||||
"title": "Заголовок"
|
||||
"title": "Заголовок",
|
||||
"visibleOnlyForMembersOfGroup": null
|
||||
},
|
||||
"delete": {
|
||||
"cancel": "Отменить",
|
||||
@ -286,41 +407,160 @@
|
||||
"back-to-index": "Обратно в индекс страницы",
|
||||
"cannot-edit-post": "Этот пост нельзя редактировать",
|
||||
"default": "Произошла ошибка.",
|
||||
"group-not-found": null,
|
||||
"post-not-found": "Этот пост не удалось найти",
|
||||
"profile-not-found": "Этот профиль не удалось найти"
|
||||
},
|
||||
"filter-menu": {
|
||||
"all": "Все",
|
||||
"article": null,
|
||||
"categories": "Категории",
|
||||
"creationDate": null,
|
||||
"deleteFilter": null,
|
||||
"emotions": "",
|
||||
"ended": {
|
||||
"all": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"onlyEnded": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
}
|
||||
},
|
||||
"event": null,
|
||||
"eventsBy": null,
|
||||
"eventsEnded": null,
|
||||
"filter-by": "Другие фильтры ...",
|
||||
"following": "Мои подписки",
|
||||
"following-title": null,
|
||||
"languages": "Языки",
|
||||
"my-groups": null,
|
||||
"order": {
|
||||
"last": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"newest": {
|
||||
"hint": null,
|
||||
"label": "Сначала новые"
|
||||
},
|
||||
"next": {
|
||||
"hint": null,
|
||||
"label": null
|
||||
},
|
||||
"oldest": {
|
||||
"hint": null,
|
||||
"label": "Сначала старые"
|
||||
}
|
||||
}
|
||||
},
|
||||
"order-by": null,
|
||||
"post-type": null,
|
||||
"save": {
|
||||
"error": null,
|
||||
"success": null
|
||||
},
|
||||
"startDate": null
|
||||
},
|
||||
"followButton": {
|
||||
"follow": "Подписаться",
|
||||
"following": "Вы подписаны"
|
||||
},
|
||||
"group": {
|
||||
"actionRadii": {
|
||||
"continental": null,
|
||||
"global": null,
|
||||
"interplanetary": null,
|
||||
"national": null,
|
||||
"regional": null
|
||||
},
|
||||
"actionRadius": null,
|
||||
"addMemberToGroup": null,
|
||||
"addMemberToGroupSuccess": null,
|
||||
"addUser": null,
|
||||
"addUserNoOptions": null,
|
||||
"addUserPlaceholder": null,
|
||||
"allGroups": null,
|
||||
"categories": null,
|
||||
"categoriesTitle": null,
|
||||
"changeMemberRole": null,
|
||||
"contentMenu": {
|
||||
"visitGroupPage": null
|
||||
},
|
||||
"createNewGroup": {
|
||||
"title": null,
|
||||
"tooltip": null
|
||||
},
|
||||
"description": null,
|
||||
"editGroupSettings": {
|
||||
"groupName": null,
|
||||
"title": null
|
||||
},
|
||||
"errors": {
|
||||
"userAlreadyMember": null
|
||||
},
|
||||
"follow": null,
|
||||
"foundation": null,
|
||||
"general": null,
|
||||
"goal": null,
|
||||
"groupCreated": null,
|
||||
"in": null,
|
||||
"joinLeaveButton": {
|
||||
"iAmMember": null,
|
||||
"join": null,
|
||||
"pendingMember": null
|
||||
"leave": null,
|
||||
"pendingMember": null,
|
||||
"tooltip": null
|
||||
},
|
||||
"labelSlug": null,
|
||||
"leaveModal": {
|
||||
"confirmButton": null,
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"memberRemoved": null,
|
||||
"members": null,
|
||||
"membersAdministrationList": {
|
||||
"avatar": null,
|
||||
"name": null,
|
||||
"roleInGroup": null,
|
||||
"slug": null
|
||||
},
|
||||
"membersCount": null,
|
||||
"membersListTitle": null
|
||||
"membersListTitle": null,
|
||||
"membersListTitleNotAllowedSeeingGroupMembers": null,
|
||||
"modal": {
|
||||
"cancel": null,
|
||||
"confirm": null,
|
||||
"confirmAddGroupMemberText": null,
|
||||
"confirmAddGroupMemberTitle": null
|
||||
},
|
||||
"myGroups": null,
|
||||
"name": null,
|
||||
"radius": null,
|
||||
"removeMember": null,
|
||||
"removeMemberButton": null,
|
||||
"role": null,
|
||||
"roles": {
|
||||
"admin": null,
|
||||
"owner": null,
|
||||
"pending": null,
|
||||
"usual": null
|
||||
},
|
||||
"save": null,
|
||||
"type": null,
|
||||
"types": {
|
||||
"closed": null,
|
||||
"hidden": null,
|
||||
"public": null
|
||||
},
|
||||
"typesOptions": {
|
||||
"closed": null,
|
||||
"hidden": null,
|
||||
"public": null
|
||||
},
|
||||
"update": null,
|
||||
"updatedGroup": null
|
||||
},
|
||||
"hashtags-filter": {
|
||||
"clearSearch": "Очистить поиск",
|
||||
@ -329,8 +569,13 @@
|
||||
},
|
||||
"header": {
|
||||
"avatarMenu": {
|
||||
"button": {
|
||||
"tooltip": null
|
||||
},
|
||||
"chats": "Чаты",
|
||||
"groups": "Группы",
|
||||
"map": null,
|
||||
"myProfile": null,
|
||||
"notifications": "Уведомления"
|
||||
},
|
||||
"chats": {
|
||||
@ -339,6 +584,9 @@
|
||||
"groups": {
|
||||
"tooltip": "Группы"
|
||||
},
|
||||
"map": {
|
||||
"tooltip": null
|
||||
},
|
||||
"notifications": {
|
||||
"tooltip": "Уведомления"
|
||||
}
|
||||
@ -347,6 +595,18 @@
|
||||
"change-filter-settings": "Измените настройки фильтра, чтобы получить больше результатов.",
|
||||
"no-results": "Посты не найдены."
|
||||
},
|
||||
"invite-codes": {
|
||||
"button": {
|
||||
"tooltip": null
|
||||
},
|
||||
"copy-code": null,
|
||||
"copy-success": null,
|
||||
"not-available": null,
|
||||
"your-code": null
|
||||
},
|
||||
"localeSwitch": {
|
||||
"tooltip": null
|
||||
},
|
||||
"login": {
|
||||
"email": "Электронная почта",
|
||||
"failure": "Неверный адрес электронной почты или пароль.",
|
||||
@ -357,6 +617,7 @@
|
||||
"moreInfo": "Что такое {APPLICATION_NAME}?",
|
||||
"moreInfoHint": "на страницу проекта",
|
||||
"no-account": "У вас нет аккаунта?",
|
||||
"no-cookie": null,
|
||||
"password": "Пароль",
|
||||
"register": "Зарегистрируйтесь",
|
||||
"success": "Вы вошли в систему!"
|
||||
@ -366,6 +627,33 @@
|
||||
"questions": "Любые вопросы или сообщения о проблемах отправляйте на электронную почту",
|
||||
"title": "{APPLICATION_NAME} на техническом обслуживании"
|
||||
},
|
||||
"map": {
|
||||
"alertMessage": null,
|
||||
"legend": {
|
||||
"event": null,
|
||||
"group": null,
|
||||
"theUser": null,
|
||||
"user": null
|
||||
},
|
||||
"markerTypes": {
|
||||
"event": null,
|
||||
"group": null,
|
||||
"theUser": null,
|
||||
"user": null
|
||||
},
|
||||
"pageTitle": null,
|
||||
"styles": {
|
||||
"dark": null,
|
||||
"outdoors": null,
|
||||
"satellite": null,
|
||||
"streets": null
|
||||
}
|
||||
},
|
||||
"modals": {
|
||||
"deleteUser": {
|
||||
"created": null
|
||||
}
|
||||
},
|
||||
"moderation": {
|
||||
"name": "Модерация",
|
||||
"reports": {
|
||||
@ -443,13 +731,18 @@
|
||||
"read": "Прочитанные",
|
||||
"unread": "Непрочитанные"
|
||||
},
|
||||
"group": null,
|
||||
"markAllAsRead": "Отметить все как прочитанное",
|
||||
"pageLink": "Все уведомления",
|
||||
"post": "Пост",
|
||||
"reason": {
|
||||
"changed_group_member_role": null,
|
||||
"commented_on_post": "Комментарий к посту...",
|
||||
"mentioned_in_comment": "Упоминание в комментарии....",
|
||||
"mentioned_in_post": "Упоминание в посте...."
|
||||
"mentioned_in_post": "Упоминание в посте....",
|
||||
"removed_user_from_group": null,
|
||||
"user_joined_group": null,
|
||||
"user_left_group": null
|
||||
},
|
||||
"title": "Уведомления",
|
||||
"user": "Пользователь"
|
||||
@ -461,7 +754,27 @@
|
||||
"submitted": "Комментарий отправлен",
|
||||
"updated": "Изменения сохраненные"
|
||||
},
|
||||
"createNewEvent": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"createNewPost": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"edited": "Изменен",
|
||||
"editPost": {
|
||||
"event": null,
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
},
|
||||
"event": null,
|
||||
"menu": {
|
||||
"delete": "Удалить пост",
|
||||
"edit": "Редактировать пост",
|
||||
@ -474,6 +787,20 @@
|
||||
"pinned": "Объявление",
|
||||
"takeAction": {
|
||||
"name": "Действовать"
|
||||
},
|
||||
"viewEvent": {
|
||||
"eventEnd": null,
|
||||
"eventIsOnline": null,
|
||||
"eventLocationName": null,
|
||||
"eventStart": null,
|
||||
"eventVenue": null,
|
||||
"title": null
|
||||
},
|
||||
"viewPost": {
|
||||
"forGroup": {
|
||||
"title": null
|
||||
},
|
||||
"title": null
|
||||
}
|
||||
},
|
||||
"profile": {
|
||||
@ -490,7 +817,6 @@
|
||||
"title": "Пригласите кого-нибудь в {APPLICATION_NAME}!"
|
||||
},
|
||||
"memberSince": "Участник с",
|
||||
"name": "Мой профиль",
|
||||
"network": {
|
||||
"andMore": "и ещё {number} человек... ::: и ещё {number} человека... ::: и ещё {number} человек...",
|
||||
"followedBy": "ваши подписчики:",
|
||||
@ -578,12 +904,19 @@
|
||||
},
|
||||
"search": {
|
||||
"failed": "Ничего не найдено",
|
||||
"for": null,
|
||||
"heading": {
|
||||
"Group": null,
|
||||
"Post": "Посты",
|
||||
"Tag": null,
|
||||
"User": "Пользователи"
|
||||
},
|
||||
"hint": "Что вы хотите найти? Используйте !... для постов, @... для пользователей, #... для хэштегов.",
|
||||
"placeholder": "Поиск"
|
||||
"no-results": null,
|
||||
"page": null,
|
||||
"placeholder": "Поиск",
|
||||
"results": null,
|
||||
"title": null
|
||||
},
|
||||
"settings": {
|
||||
"blocked-users": {
|
||||
@ -611,6 +944,7 @@
|
||||
"data": {
|
||||
"labelBio": "О себе",
|
||||
"labelCity": "Город или регион",
|
||||
"labelCityHint": null,
|
||||
"labelName": "Имя",
|
||||
"labelSlug": "Уникальное имя пользователя",
|
||||
"name": "Персональные данные",
|
||||
@ -620,13 +954,19 @@
|
||||
"deleteUserAccount": {
|
||||
"accountDescription": "Обратите внимание, что ваши посты и комментарии важны для сообщества. Если вы все равно хотите их удалить, то вы должны отметить соответствующие опции ниже.",
|
||||
"accountWarning": "Вы <b>НЕ СМОЖЕТЕ</b> восстановить свой аккаунт, посты или комментарии после удаления.",
|
||||
"accountWarningAdmin": null,
|
||||
"accountWarningIsAdmin": null,
|
||||
"commentedCount": "Удалить мои комментарии: {count}",
|
||||
"confirmDeleting": null,
|
||||
"contributionsCount": "Удалить мои посты: {count}",
|
||||
"infoAdmin": null,
|
||||
"name": "Удалить данные",
|
||||
"pleaseConfirm": "<b class='is-danger'>Разрушительное действие!</b> Введите <b>{confirm}</b> для подтверждения.",
|
||||
"success": "Аккаунт успешно удален!"
|
||||
},
|
||||
"download": {
|
||||
"description": null,
|
||||
"json": null,
|
||||
"name": "Скачать данные"
|
||||
},
|
||||
"email": {
|
||||
@ -691,6 +1031,11 @@
|
||||
"unmuted": "{name} будет снова включен"
|
||||
},
|
||||
"name": "Настройки",
|
||||
"notifications": {
|
||||
"name": null,
|
||||
"send-email-notifications": null,
|
||||
"success-update": null
|
||||
},
|
||||
"organizations": {
|
||||
"name": "Мои организации"
|
||||
},
|
||||
@ -720,6 +1065,13 @@
|
||||
"name": "Безопасность"
|
||||
},
|
||||
"social-media": {
|
||||
"add-new-link": null,
|
||||
"delete-modal": {
|
||||
"confirm-button": null,
|
||||
"message": null,
|
||||
"title": null
|
||||
},
|
||||
"edit-link": null,
|
||||
"name": "Социальные Медиа",
|
||||
"placeholder": "Ссылка на профиль социальной сети",
|
||||
"requireUnique": "Ссылка уже существует",
|
||||
@ -744,6 +1096,7 @@
|
||||
"contact": "Контакт",
|
||||
"data-privacy": "Конфиденциальность",
|
||||
"director": "Управляющий директор",
|
||||
"donate": null,
|
||||
"error-occurred": "Произошла ошибка.",
|
||||
"faq": "ЧаВо (FAQ)",
|
||||
"germany": "Германия",
|
||||
@ -751,6 +1104,7 @@
|
||||
"made": "Сделано с ❤️",
|
||||
"register": "Регистрационный номер",
|
||||
"responsible": "ответственный за содержание этой страницы (§ 55 Abs. 2 RStV)",
|
||||
"support": null,
|
||||
"taxident": "UST-ID. в соответствии с §27a Закона о налоге с продаж Германии:",
|
||||
"termsAndConditions": "Условия и положения",
|
||||
"thanks": "Спасибо!",
|
||||
|
||||
@ -15,6 +15,7 @@
|
||||
"generate": "cross-env NODE_OPTIONS=--openssl-legacy-provider nuxt generate",
|
||||
"lint": "eslint --ext .js,.vue .",
|
||||
"locales": "../scripts/translations/missing-keys.sh && ../scripts/translations/sort.sh",
|
||||
"locales:normalize": "../scripts/translations/normalize.sh",
|
||||
"precommit": "yarn lint",
|
||||
"test": "cross-env NODE_ENV=test jest --coverage --forceExit --detectOpenHandles",
|
||||
"test:unit:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --no-cache --runInBand"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user