refactor: Follow up fix types in localization files
This commit is contained in:
parent
1e708e02de
commit
34912595a9
5 changed files with 175 additions and 83 deletions
|
|
@ -2605,7 +2605,7 @@
|
||||||
"@notifyMeFor": {},
|
"@notifyMeFor": {},
|
||||||
"presencesToggle": "Mostrar mensajes de estado de otros usuarios",
|
"presencesToggle": "Mostrar mensajes de estado de otros usuarios",
|
||||||
"@presencesToggle": {
|
"@presencesToggle": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"placeCall": "Llamar",
|
"placeCall": "Llamar",
|
||||||
|
|
@ -2624,9 +2624,11 @@
|
||||||
"@invalidInput": {},
|
"@invalidInput": {},
|
||||||
"wrongPinEntered": "¡Pin erróneo! Vuelve a intenrarlo en {seconds} segundos...",
|
"wrongPinEntered": "¡Pin erróneo! Vuelve a intenrarlo en {seconds} segundos...",
|
||||||
"@wrongPinEntered": {
|
"@wrongPinEntered": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"seconds": {}
|
"seconds": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"decline": "Declinar",
|
"decline": "Declinar",
|
||||||
|
|
@ -2635,9 +2637,11 @@
|
||||||
"@thisDevice": {},
|
"@thisDevice": {},
|
||||||
"minimumPowerLevel": "{level} es el nivel mínimo.",
|
"minimumPowerLevel": "{level} es el nivel mínimo.",
|
||||||
"@minimumPowerLevel": {
|
"@minimumPowerLevel": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"level": {}
|
"level": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"verifyOtherDevice": "🔐 Verificar otro dispositivo",
|
"verifyOtherDevice": "🔐 Verificar otro dispositivo",
|
||||||
|
|
@ -2646,9 +2650,11 @@
|
||||||
"@chatPermissionsDescription": {},
|
"@chatPermissionsDescription": {},
|
||||||
"updateInstalled": "¡🎉 Actualización {version} instalada!",
|
"updateInstalled": "¡🎉 Actualización {version} instalada!",
|
||||||
"@updateInstalled": {
|
"@updateInstalled": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"version": {}
|
"version": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"changelog": "Cambios",
|
"changelog": "Cambios",
|
||||||
|
|
@ -2659,16 +2665,20 @@
|
||||||
"@invite": {},
|
"@invite": {},
|
||||||
"searchIn": "Buscar en chat \"{chat}\"...",
|
"searchIn": "Buscar en chat \"{chat}\"...",
|
||||||
"@searchIn": {
|
"@searchIn": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"chat": {}
|
"chat": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"appWantsToUseForLogin": "Usar '{server}' para entrar",
|
"appWantsToUseForLogin": "Usar '{server}' para entrar",
|
||||||
"@appWantsToUseForLogin": {
|
"@appWantsToUseForLogin": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"server": {}
|
"server": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"appWantsToUseForLoginDescription": "Por la presente permites a la app y web compartir información sobre ti.",
|
"appWantsToUseForLoginDescription": "Por la presente permites a la app y web compartir información sobre ti.",
|
||||||
|
|
@ -2691,20 +2701,24 @@
|
||||||
"@openLinkInBrowser": {},
|
"@openLinkInBrowser": {},
|
||||||
"presenceStyle": "Presencia:",
|
"presenceStyle": "Presencia:",
|
||||||
"@presenceStyle": {
|
"@presenceStyle": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
"youInvitedToBy": "📩 Te han invitado con un enlace a:\n{alias}",
|
"youInvitedToBy": "📩 Te han invitado con un enlace a:\n{alias}",
|
||||||
"@youInvitedToBy": {
|
"@youInvitedToBy": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"alias": {}
|
"alias": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"signInWith": "Entrar con {provider}",
|
"signInWith": "Entrar con {provider}",
|
||||||
"@signInWith": {
|
"@signInWith": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"provider": {}
|
"provider": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"setTheme": "Poner tema:",
|
"setTheme": "Poner tema:",
|
||||||
|
|
@ -2807,9 +2821,11 @@
|
||||||
"@notificationRuleServerAclDescription": {},
|
"@notificationRuleServerAclDescription": {},
|
||||||
"unknownPushRule": "Regla de notificación desconocida '{rule}'",
|
"unknownPushRule": "Regla de notificación desconocida '{rule}'",
|
||||||
"@unknownPushRule": {
|
"@unknownPushRule": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"rule": {}
|
"rule": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deletePushRuleCanNotBeUndone": "Si eliminas este ajuste de notificación, esto no se puede deshacer.",
|
"deletePushRuleCanNotBeUndone": "Si eliminas este ajuste de notificación, esto no se puede deshacer.",
|
||||||
|
|
@ -2820,7 +2836,9 @@
|
||||||
"@serverLimitReached": {
|
"@serverLimitReached": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"seconds": {}
|
"seconds": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"groupCanBeFoundViaSearch": "Los grupos se pueden encontrar buscando",
|
"groupCanBeFoundViaSearch": "Los grupos se pueden encontrar buscando",
|
||||||
|
|
@ -2835,15 +2853,19 @@
|
||||||
"@setWallpaper": {},
|
"@setWallpaper": {},
|
||||||
"sendImages": "Envío de la imagen {count}",
|
"sendImages": "Envío de la imagen {count}",
|
||||||
"@sendImages": {
|
"@sendImages": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"count": {}
|
"count": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"invitedBy": "📩 Invitado por {user}",
|
"invitedBy": "📩 Invitado por {user}",
|
||||||
"@invitedBy": {
|
"@invitedBy": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"user": {}
|
"user": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"usersMustKnock": "Los usuarios han de avisar",
|
"usersMustKnock": "Los usuarios han de avisar",
|
||||||
|
|
@ -2856,9 +2878,11 @@
|
||||||
"@hidePresences": {},
|
"@hidePresences": {},
|
||||||
"fileIsTooBigForServer": "¡No se pudo mandar! El servidor solamente permite adjuntos de hasta {max}.",
|
"fileIsTooBigForServer": "¡No se pudo mandar! El servidor solamente permite adjuntos de hasta {max}.",
|
||||||
"@fileIsTooBigForServer": {
|
"@fileIsTooBigForServer": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"max": {}
|
"max": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"jumpToLastReadMessage": "Saltar al último mensaje leído",
|
"jumpToLastReadMessage": "Saltar al último mensaje leído",
|
||||||
|
|
@ -2877,16 +2901,20 @@
|
||||||
"@formattedMessagesDescription": {},
|
"@formattedMessagesDescription": {},
|
||||||
"userLevel": "{level} - Usuario",
|
"userLevel": "{level} - Usuario",
|
||||||
"@userLevel": {
|
"@userLevel": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"level": {}
|
"level": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"completedKeyVerification": "{sender} completó la verificación de clave",
|
"completedKeyVerification": "{sender} completó la verificación de clave",
|
||||||
"@completedKeyVerification": {
|
"@completedKeyVerification": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"sender": {}
|
"sender": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sendingAttachment": "Enviando adjunto...",
|
"sendingAttachment": "Enviando adjunto...",
|
||||||
|
|
@ -2907,9 +2935,11 @@
|
||||||
"@knocking": {},
|
"@knocking": {},
|
||||||
"chatCanBeDiscoveredViaSearchOnServer": "El chat se puede descubrir buscando en {server}",
|
"chatCanBeDiscoveredViaSearchOnServer": "El chat se puede descubrir buscando en {server}",
|
||||||
"@chatCanBeDiscoveredViaSearchOnServer": {
|
"@chatCanBeDiscoveredViaSearchOnServer": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"server": {}
|
"server": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"searchChatsRooms": "Buscar #chats, @usuarios...",
|
"searchChatsRooms": "Buscar #chats, @usuarios...",
|
||||||
|
|
@ -2932,34 +2962,46 @@
|
||||||
"@initAppError": {},
|
"@initAppError": {},
|
||||||
"sessionLostBody": "Se perdió tu sesión. Por favor, informa de este error a los desarrolladores en {url}. El mensaje de error es: {error}",
|
"sessionLostBody": "Se perdió tu sesión. Por favor, informa de este error a los desarrolladores en {url}. El mensaje de error es: {error}",
|
||||||
"@sessionLostBody": {
|
"@sessionLostBody": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"url": {},
|
"url": {
|
||||||
"error": {}
|
"type": "String"
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"unreadChatsInApp": "{appname}: {unread} chats no leídos",
|
"unreadChatsInApp": "{appname}: {unread} chats no leídos",
|
||||||
"@unreadChatsInApp": {
|
"@unreadChatsInApp": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"appname": {},
|
"appname": {
|
||||||
"unread": {}
|
"type": "String"
|
||||||
|
},
|
||||||
|
"unread": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"restricted": "Restringido",
|
"restricted": "Restringido",
|
||||||
"@restricted": {},
|
"@restricted": {},
|
||||||
"requestedKeyVerification": "{sender} ha pedido verificación de clave",
|
"requestedKeyVerification": "{sender} ha pedido verificación de clave",
|
||||||
"@requestedKeyVerification": {
|
"@requestedKeyVerification": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"sender": {}
|
"sender": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"adminLevel": "{level} - Administrador",
|
"adminLevel": "{level} - Administrador",
|
||||||
"@adminLevel": {
|
"@adminLevel": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"level": {}
|
"level": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"changeGeneralChatSettings": "Cambiar los ajustes generales de chat",
|
"changeGeneralChatSettings": "Cambiar los ajustes generales de chat",
|
||||||
|
|
@ -2976,8 +3018,12 @@
|
||||||
"@sendingAttachmentCountOfCount": {
|
"@sendingAttachmentCountOfCount": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"index": {},
|
"index": {
|
||||||
"length": {}
|
"type": "int"
|
||||||
|
},
|
||||||
|
"length": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"compressVideo": "Comprimiendo vídeo...",
|
"compressVideo": "Comprimiendo vídeo...",
|
||||||
|
|
@ -3008,9 +3054,11 @@
|
||||||
"@passwordRecoverySettings": {},
|
"@passwordRecoverySettings": {},
|
||||||
"acceptedKeyVerification": "{sender} aceptó la verificación de clave",
|
"acceptedKeyVerification": "{sender} aceptó la verificación de clave",
|
||||||
"@acceptedKeyVerification": {
|
"@acceptedKeyVerification": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"sender": {}
|
"sender": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"stickers": "Pegatinas",
|
"stickers": "Pegatinas",
|
||||||
|
|
@ -3047,18 +3095,26 @@
|
||||||
"@leaveEmptyToClearStatus": {},
|
"@leaveEmptyToClearStatus": {},
|
||||||
"databaseBuildErrorBody": "No pude crear la base de datos SQlite. La app intenta usar la base de datos heredada por ahora. Por favor, informa de este error a los desarrolladores en {url}. El mensaje de error es: {error}",
|
"databaseBuildErrorBody": "No pude crear la base de datos SQlite. La app intenta usar la base de datos heredada por ahora. Por favor, informa de este error a los desarrolladores en {url}. El mensaje de error es: {error}",
|
||||||
"@databaseBuildErrorBody": {
|
"@databaseBuildErrorBody": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"url": {},
|
"url": {
|
||||||
"error": {}
|
"type": "String"
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"restoreSessionBody": "La app ahora trata de recuperar tu sesión de la copia de seguridad. Por favor, informa de este error a los desarrolladores en {url}. El mensaje de error es: {error}",
|
"restoreSessionBody": "La app ahora trata de recuperar tu sesión de la copia de seguridad. Por favor, informa de este error a los desarrolladores en {url}. El mensaje de error es: {error}",
|
||||||
"@restoreSessionBody": {
|
"@restoreSessionBody": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"url": {},
|
"url": {
|
||||||
"error": {}
|
"type": "String"
|
||||||
|
},
|
||||||
|
"error": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"sendReadReceipts": "Mandar recibos de lectura",
|
"sendReadReceipts": "Mandar recibos de lectura",
|
||||||
|
|
@ -3073,9 +3129,11 @@
|
||||||
"@verifyOtherDeviceDescription": {},
|
"@verifyOtherDeviceDescription": {},
|
||||||
"canceledKeyVerification": "{sender} canceló la verificación de clave",
|
"canceledKeyVerification": "{sender} canceló la verificación de clave",
|
||||||
"@canceledKeyVerification": {
|
"@canceledKeyVerification": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"sender": {}
|
"sender": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"commandHint_unignore": "No ignorar la ID de matrix dada",
|
"commandHint_unignore": "No ignorar la ID de matrix dada",
|
||||||
|
|
@ -3084,16 +3142,18 @@
|
||||||
"@noDatabaseEncryption": {},
|
"@noDatabaseEncryption": {},
|
||||||
"startedKeyVerification": "{sender} ha comenzado verificación de clave",
|
"startedKeyVerification": "{sender} ha comenzado verificación de clave",
|
||||||
"@startedKeyVerification": {
|
"@startedKeyVerification": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"sender": {}
|
"sender": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"discover": "Descubrir",
|
"discover": "Descubrir",
|
||||||
"@discover": {},
|
"@discover": {},
|
||||||
"thereAreCountUsersBlocked": "Ahora mismo, hay {count} usuarios bloqueados.",
|
"thereAreCountUsersBlocked": "Ahora mismo, hay {count} usuarios bloqueados.",
|
||||||
"@thereAreCountUsersBlocked": {
|
"@thereAreCountUsersBlocked": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"count": {}
|
"count": {}
|
||||||
},
|
},
|
||||||
"commandHint_ignore": "Ignorar la ID de matrix dada",
|
"commandHint_ignore": "Ignorar la ID de matrix dada",
|
||||||
|
|
@ -3106,9 +3166,11 @@
|
||||||
"@kickUserDescription": {},
|
"@kickUserDescription": {},
|
||||||
"fileHasBeenSavedAt": "Archivo guardado en {path}",
|
"fileHasBeenSavedAt": "Archivo guardado en {path}",
|
||||||
"@fileHasBeenSavedAt": {
|
"@fileHasBeenSavedAt": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"path": {}
|
"path": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"markAsUnread": "Marcar no leído",
|
"markAsUnread": "Marcar no leído",
|
||||||
|
|
@ -3153,14 +3215,16 @@
|
||||||
"@verifyOtherUser": {},
|
"@verifyOtherUser": {},
|
||||||
"isReadyForKeyVerification": "{sender} está preparado para verificación de clave",
|
"isReadyForKeyVerification": "{sender} está preparado para verificación de clave",
|
||||||
"@isReadyForKeyVerification": {
|
"@isReadyForKeyVerification": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"sender": {}
|
"sender": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"goToSpace": "Ir al espacio: {space}",
|
"goToSpace": "Ir al espacio: {space}",
|
||||||
"@goToSpace": {
|
"@goToSpace": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"space": {}
|
"space": {}
|
||||||
},
|
},
|
||||||
"oneOfYourDevicesIsNotVerified": "Uno de tus dispositivos no está verificado",
|
"oneOfYourDevicesIsNotVerified": "Uno de tus dispositivos no está verificado",
|
||||||
|
|
@ -3189,9 +3253,11 @@
|
||||||
"@profileNotFound": {},
|
"@profileNotFound": {},
|
||||||
"synchronizingPleaseWaitCounter": " Sincronizando… ({percentage}%)",
|
"synchronizingPleaseWaitCounter": " Sincronizando… ({percentage}%)",
|
||||||
"@synchronizingPleaseWaitCounter": {
|
"@synchronizingPleaseWaitCounter": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"percentage": {}
|
"percentage": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"reportErrorDescription": "😭 Oh, no. Algo ha salido mal. Si quieres, puedes informar de este fallo a los desarrolladores.",
|
"reportErrorDescription": "😭 Oh, no. Algo ha salido mal. Si quieres, puedes informar de este fallo a los desarrolladores.",
|
||||||
|
|
@ -3199,7 +3265,9 @@
|
||||||
"hasKnocked": "🚪 {user} ha avisado",
|
"hasKnocked": "🚪 {user} ha avisado",
|
||||||
"@hasKnocked": {
|
"@hasKnocked": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"user": {}
|
"user": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"noBackupWarning": "¡Cuidado! Si no se habilita la copia de seguridad del chat, perderás acceso a tus mensajes cifrados. Se recomienda encarecidamente habilitar la copia de seguridad del chat antes de salir.",
|
"noBackupWarning": "¡Cuidado! Si no se habilita la copia de seguridad del chat, perderás acceso a tus mensajes cifrados. Se recomienda encarecidamente habilitar la copia de seguridad del chat antes de salir.",
|
||||||
|
|
@ -3207,7 +3275,9 @@
|
||||||
"userWouldLikeToChangeTheChat": "{user} quiere unirse al chat.",
|
"userWouldLikeToChangeTheChat": "{user} quiere unirse al chat.",
|
||||||
"@userWouldLikeToChangeTheChat": {
|
"@userWouldLikeToChangeTheChat": {
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"user": {}
|
"user": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"yourGlobalUserIdIs": "Tu id de usuario global es: ",
|
"yourGlobalUserIdIs": "Tu id de usuario global es: ",
|
||||||
|
|
@ -3226,9 +3296,11 @@
|
||||||
"@noContactInformationProvided": {},
|
"@noContactInformationProvided": {},
|
||||||
"noUsersFoundWithQuery": "Desgraciadamente, no se encontró ningún usuario con \"{query}\". Por favor, revisa si cometiste un error.",
|
"noUsersFoundWithQuery": "Desgraciadamente, no se encontró ningún usuario con \"{query}\". Por favor, revisa si cometiste un error.",
|
||||||
"@noUsersFoundWithQuery": {
|
"@noUsersFoundWithQuery": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"query": {}
|
"query": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"changeTheVisibilityOfChatHistory": "Cambiar la visibilidad de la historia de chat",
|
"changeTheVisibilityOfChatHistory": "Cambiar la visibilidad de la historia de chat",
|
||||||
|
|
@ -3237,9 +3309,11 @@
|
||||||
"@doesNotSeemToBeAValidHomeserver": {},
|
"@doesNotSeemToBeAValidHomeserver": {},
|
||||||
"moderatorLevel": "{level} - Moderador",
|
"moderatorLevel": "{level} - Moderador",
|
||||||
"@moderatorLevel": {
|
"@moderatorLevel": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"level": {}
|
"level": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"homeserverDescription": "Todos tus datos se guardan en el homeserver, como en un proveedor de correo electrónico. Puedes elegir el homeserver que quieres usar, a la par que te puedes comunicar con todos. Más en https://matrix.org.",
|
"homeserverDescription": "Todos tus datos se guardan en el homeserver, como en un proveedor de correo electrónico. Puedes elegir el homeserver que quieres usar, a la par que te puedes comunicar con todos. Más en https://matrix.org.",
|
||||||
|
|
@ -3252,9 +3326,11 @@
|
||||||
"@appIntroduction": {},
|
"@appIntroduction": {},
|
||||||
"forwardMessageTo": "¿Reenviar mensaje a {roomName}?",
|
"forwardMessageTo": "¿Reenviar mensaje a {roomName}?",
|
||||||
"@forwardMessageTo": {
|
"@forwardMessageTo": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"roomName": {}
|
"roomName": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"previous": "Anterior",
|
"previous": "Anterior",
|
||||||
|
|
|
||||||
|
|
@ -3290,9 +3290,11 @@
|
||||||
"@notificationRuleServerAclDescription": {},
|
"@notificationRuleServerAclDescription": {},
|
||||||
"unknownPushRule": "Regra push descoñecida '{rule}'",
|
"unknownPushRule": "Regra push descoñecida '{rule}'",
|
||||||
"@unknownPushRule": {
|
"@unknownPushRule": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"rule": {}
|
"rule": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deletePushRuleCanNotBeUndone": "Se omites este axuste de notificacións non poderás desfacer a acción.",
|
"deletePushRuleCanNotBeUndone": "Se omites este axuste de notificacións non poderás desfacer a acción.",
|
||||||
|
|
@ -3325,9 +3327,11 @@
|
||||||
"@notificationRuleMemberEventDescription": {},
|
"@notificationRuleMemberEventDescription": {},
|
||||||
"synchronizingPleaseWaitCounter": " Sincronizando…({percentage}%)",
|
"synchronizingPleaseWaitCounter": " Sincronizando…({percentage}%)",
|
||||||
"@synchronizingPleaseWaitCounter": {
|
"@synchronizingPleaseWaitCounter": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"percentage": {}
|
"percentage": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2989,8 +2989,12 @@
|
||||||
"@sendingAttachmentCountOfCount": {
|
"@sendingAttachmentCountOfCount": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"index": {},
|
"index": {
|
||||||
"length": {}
|
"type": "int"
|
||||||
|
},
|
||||||
|
"length": {
|
||||||
|
"type": "int"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -3276,9 +3276,11 @@
|
||||||
"@notificationRuleServerAclDescription": {},
|
"@notificationRuleServerAclDescription": {},
|
||||||
"unknownPushRule": "Aturan dorongan '{rule}' tidak diketahui",
|
"unknownPushRule": "Aturan dorongan '{rule}' tidak diketahui",
|
||||||
"@unknownPushRule": {
|
"@unknownPushRule": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"rule": {}
|
"rule": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"deletePushRuleCanNotBeUndone": "Jika kamu menghapus pengaturan notifikasi ini, maka tidak dapat diurungkan.",
|
"deletePushRuleCanNotBeUndone": "Jika kamu menghapus pengaturan notifikasi ini, maka tidak dapat diurungkan.",
|
||||||
|
|
@ -3301,9 +3303,11 @@
|
||||||
"@shareKeysWith": {},
|
"@shareKeysWith": {},
|
||||||
"synchronizingPleaseWaitCounter": " Sinkronisasi… ({percentage}%)",
|
"synchronizingPleaseWaitCounter": " Sinkronisasi… ({percentage}%)",
|
||||||
"@synchronizingPleaseWaitCounter": {
|
"@synchronizingPleaseWaitCounter": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"percentage": {}
|
"percentage": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"shareKeysWithDescription": "Perangkat apa saja yang dipercayai supaya mereka bisa membaca bersama dengan pesanmu dalam obrolan terenkripsi?",
|
"shareKeysWithDescription": "Perangkat apa saja yang dipercayai supaya mereka bisa membaca bersama dengan pesanmu dalam obrolan terenkripsi?",
|
||||||
|
|
@ -3318,9 +3322,11 @@
|
||||||
"@otherPartyNotLoggedIn": {},
|
"@otherPartyNotLoggedIn": {},
|
||||||
"appWantsToUseForLogin": "Gunakan '{server}' untuk masuk",
|
"appWantsToUseForLogin": "Gunakan '{server}' untuk masuk",
|
||||||
"@appWantsToUseForLogin": {
|
"@appWantsToUseForLogin": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"server": {}
|
"server": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"appWantsToUseForLoginDescription": "Anda memperbolehkan aplikasi dan situs web membagikan informasi tentang Anda.",
|
"appWantsToUseForLoginDescription": "Anda memperbolehkan aplikasi dan situs web membagikan informasi tentang Anda.",
|
||||||
|
|
|
||||||
|
|
@ -3210,9 +3210,11 @@
|
||||||
"@crossVerifiedDevices": {},
|
"@crossVerifiedDevices": {},
|
||||||
"appWantsToUseForLogin": "Використати '{server}', щоб увійти",
|
"appWantsToUseForLogin": "Використати '{server}', щоб увійти",
|
||||||
"@appWantsToUseForLogin": {
|
"@appWantsToUseForLogin": {
|
||||||
"type": "text",
|
"type": "String",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"server": {}
|
"server": {
|
||||||
|
"type": "String"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"appWantsToUseForLoginDescription": "Цим ви дозволяєте застосунку та вебсайту ділитися інформацією про вас.",
|
"appWantsToUseForLoginDescription": "Цим ви дозволяєте застосунку та вебсайту ділитися інформацією про вас.",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue