@box/threaded-annotations 1.85.0 → 1.85.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/i18n/bn-IN.js +1 -2
- package/dist/i18n/bn-IN.properties +6 -4
- package/dist/i18n/da-DK.js +1 -2
- package/dist/i18n/da-DK.properties +6 -4
- package/dist/i18n/de-DE.js +1 -2
- package/dist/i18n/de-DE.properties +6 -4
- package/dist/i18n/en-AU.js +1 -2
- package/dist/i18n/en-AU.properties +6 -4
- package/dist/i18n/en-CA.js +1 -2
- package/dist/i18n/en-CA.properties +6 -4
- package/dist/i18n/en-GB.js +1 -2
- package/dist/i18n/en-GB.properties +6 -4
- package/dist/i18n/en-x-pseudo.js +43 -44
- package/dist/i18n/en-x-pseudo.properties +47 -45
- package/dist/i18n/es-419.js +1 -2
- package/dist/i18n/es-419.properties +6 -4
- package/dist/i18n/es-ES.js +1 -2
- package/dist/i18n/es-ES.properties +6 -4
- package/dist/i18n/fi-FI.js +1 -2
- package/dist/i18n/fi-FI.properties +6 -4
- package/dist/i18n/fr-CA.js +1 -2
- package/dist/i18n/fr-CA.properties +6 -4
- package/dist/i18n/fr-FR.js +1 -2
- package/dist/i18n/fr-FR.properties +6 -4
- package/dist/i18n/hi-IN.js +1 -2
- package/dist/i18n/hi-IN.properties +6 -4
- package/dist/i18n/it-IT.js +1 -2
- package/dist/i18n/it-IT.properties +6 -4
- package/dist/i18n/ja-JP.js +1 -2
- package/dist/i18n/ja-JP.properties +6 -4
- package/dist/i18n/ko-KR.js +1 -2
- package/dist/i18n/ko-KR.properties +6 -4
- package/dist/i18n/nb-NO.js +1 -2
- package/dist/i18n/nb-NO.properties +6 -4
- package/dist/i18n/nl-NL.js +1 -2
- package/dist/i18n/nl-NL.properties +6 -4
- package/dist/i18n/pl-PL.js +1 -2
- package/dist/i18n/pl-PL.properties +6 -4
- package/dist/i18n/pt-BR.js +1 -2
- package/dist/i18n/pt-BR.properties +6 -4
- package/dist/i18n/ru-RU.js +1 -2
- package/dist/i18n/ru-RU.properties +6 -4
- package/dist/i18n/sv-SE.js +1 -2
- package/dist/i18n/sv-SE.properties +6 -4
- package/dist/i18n/tr-TR.js +1 -2
- package/dist/i18n/tr-TR.properties +6 -4
- package/dist/i18n/zh-CN.js +1 -2
- package/dist/i18n/zh-CN.properties +6 -4
- package/dist/i18n/zh-TW.js +1 -2
- package/dist/i18n/zh-TW.properties +6 -4
- package/package.json +11 -11
package/dist/i18n/es-ES.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Texto del mensaje",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Anular",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "Avatar del usuario",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Botón Ver perfil de usuario"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "¿Desea eliminar este comentario y las respuestas? Esta acción no se puede deshacer."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Botón Ver perfil de usuario"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Mensaje de
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = Página {number}
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Botón Cancelar eliminación
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = Eliminar
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Botón Eliminar
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = Anular
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = ¿Desea eliminar este comentario?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = ¿Desea eliminar este comentario y las respuestas? Esta acción no se puede deshacer.
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Confirmación de eliminación
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = Edición
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = Se ha eliminado
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = Responder
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Botón Responder
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Resolver
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Mensaje de estado de resolución
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Botón Resp
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Mención del usuario
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Texto del mensaje
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Anular
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = Avatar del usuario
|
package/dist/i18n/fi-FI.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Viestin teksti",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Poista ratkaisu",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "Käyttäjän avatar",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Tarkastele käyttäjäprofiilia -painike"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Poistetaanko tämä kommentti ja vastaukset? Tätä toimintoa ei voi kumota."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Tarkastele käyttäjäprofiilia -painike"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Huomautusvi
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = Sivu {number}
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Peruuta poisto -painike
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = Poista
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Poista-painike
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = Peruuta
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Haluatko poistaa tämän kommentin?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Poistetaanko tämä kommentti ja vastaukset? Tätä toimintoa ei voi kumota.
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Poista vahvistus
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = Muokkaa
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = Alkuperäinen s
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = Vastaus
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Vastaa-painike
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Ratkaise
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Ratkaisun tilaviesti
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Vastaa-pain
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Käyttäjän maininta
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Viestin teksti
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Poista ratkaisu
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = Käyttäjän avatar
|
package/dist/i18n/fr-CA.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Texte du message",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Non résolu",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "Avatar d'utilisateur",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Afficher le profil de l'utilisateur"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Supprimer ce commentaire et ces réponses ? Cette action est irréversible."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Afficher le profil de l'utilisateur"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Message d'a
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = Page {number}
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Bouton Annuler la suppression
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = Supprimer
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Bouton supprimer
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = Annuler
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Voulez-vous supprimer ce commentaire ?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Supprimer ce commentaire et ces réponses ? Cette action est irréversible.
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Confirmation de la suppression
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = Modifier
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = Le contenu d’
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = Répondre
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Bouton Répondre
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Résolu
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Message de statut de résolution
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Bouton Rép
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Mention de l'utilisateur
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Texte du message
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Non résolu
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = Avatar d'utilisateur
|
package/dist/i18n/fr-FR.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Texte du message",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Non résolu",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "Avatar d'utilisateur",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Afficher le profil de l'utilisateur"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Supprimer ce commentaire et ces réponses ? Cette action est irréversible."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Afficher le profil de l'utilisateur"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Message d'a
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = Page {number}
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Bouton Annuler la suppression
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = Supprimer
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Bouton supprimer
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = Annuler
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Voulez-vous supprimer ce commentaire ?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Supprimer ce commentaire et ces réponses ? Cette action est irréversible.
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Confirmation de la suppression
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = Modifier
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = Le contenu d’
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = Répondre
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Bouton Répondre
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Résolu
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Message de statut de résolution
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Bouton Rép
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Mention de l'utilisateur
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Texte du message
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Non résolu
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = Avatar d'utilisateur
|
package/dist/i18n/hi-IN.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "संदेश पाठ",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "हल न करें",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "उपयोगकर्ता अवतार",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "उपयोगकर्ता प्रोफ़ाइल देखें बटन"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "इस टिप्पणी और उत्तरों को हटाएं? इस कार्रवाई को पूर्ववत नहीं किया जा सकता।"
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "उपयोगकर्ता प्रोफ़ाइल देखें बटन"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = टिप
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = पेज {number}
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = रद्द करें हटाएं बटन
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = हटाएं
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = हटाएं
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = रद्द करें
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = क्या आप इस टिप्पणी को हटाना चाहते हैं?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = इस टिप्पणी और उत्तरों को हटाएं? इस कार्रवाई को पूर्ववत नहीं किया जा सकता।
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = हटाने का पुष्टिकरण
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = संपादित करें
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = मूल क
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = जवाब दें
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = उत्तर दें बटन
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = हल करें
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = रिज़ॉल्यूशन स्टेटस मैसेज
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = उत्
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = उपयोगकर्ता का उल्लेख करें
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = संदेश पाठ
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = हल न करें
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = उपयोगकर्ता अवतार
|
package/dist/i18n/it-IT.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Testo del messaggio",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Annulla risoluzione",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "Avatar utente",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Pulsante Visualizza il profilo utente"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Vuoi eliminare il commento e le risposte? L’azione non può essere annullata."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Pulsante Visualizza il profilo utente"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Messaggio d
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = Pagina {number}
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Pulsante Annulla eliminazione
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = Elimina
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Pulsante Elimina
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = Annulla
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Vuoi eliminare questo commento?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Vuoi eliminare il commento e le risposte? L’azione non può essere annullata.
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Conferma eliminazione
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = Modifica
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = Il contenuto or
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = Rispondi
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Pulsante Rispondi
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Risolvi
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Messaggio sullo stato della risoluzione
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Pulsante Ri
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Menzione utente
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Testo del messaggio
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Annulla risoluzione
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = Avatar utente
|
package/dist/i18n/ja-JP.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "メッセージテキスト",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "未対応",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "ユーザーのアバター",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "ユーザープロフィールを表示するボタン"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "このコメントと返信を削除しますか? この操作は元に戻せません。"
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "ユーザープロフィールを表示するボタン"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = 注釈メ
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = {number}ページ
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = [削除をキャンセル] ボタン
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = 削除
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = [削除] ボタ
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = キャンセル
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = このコメントを削除しますか?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = このコメントと返信を削除しますか? この操作は元に戻せません。
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = 削除の確認
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = 編集
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = Original conten
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = 返信
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = [返信] ボタン
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = 対応済み
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = 対応済みステータスのメッセージ
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = 返信ボ
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = ユーザーメンション
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = メッセージテキスト
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = 未対応
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = ユーザーのアバター
|
package/dist/i18n/ko-KR.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "메시지 텍스트",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "미해결",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "사용자 아바타",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "사용자 프로필 보기 버튼"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "이 코멘트와 답글을 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "사용자 프로필 보기 버튼"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = 주석 메
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = {number}페이지
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = 삭제 취소 버튼
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = 삭제
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = 삭제 버튼
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = 취소
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = 이 코멘트를 삭제하시겠습니까?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = 이 코멘트와 답글을 삭제하시겠습니까? 이 작업은 되돌릴 수 없습니다.
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = 삭제 확인
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = 편집
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = 원본 콘텐
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = 답글
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = 답글 버튼
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = 해결
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = 해결 상태 메시지
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = 답글 버
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = 사용자 멘션
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = 메시지 텍스트
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = 미해결
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = 사용자 아바타
|
package/dist/i18n/nb-NO.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Meldingstekst",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Uavklar",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "Brukeravatar",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Vis brukerprofil-knapp"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Vil du slette denne kommentaren og svar? Denne handlingen kan ikke angres."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Vis brukerprofil-knapp"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Merknadsmel
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = Side {number}
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Avbryt slett-knapp
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = Slett
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Slett-knapp
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = Avbryt
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Vil du slette denne kommentaren?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Vil du slette denne kommentaren og svar? Denne handlingen kan ikke angres.
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Bekreftelse på sletting
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = Rediger
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = Opprinnelig inn
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = Svar
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Svar-knapp
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Avklar
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Melding om løsningsstatus
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Svar-knapp
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Brukerhenvisning
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Meldingstekst
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Uavklar
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = Brukeravatar
|
package/dist/i18n/nl-NL.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Berichttekst",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Oplossing ongedaan maken",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "Avatar van de gebruiker",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Knop Gebruikersprofiel bekijken"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Deze opmerking en antwoorden verwijderen? Deze actie kan niet ongedaan worden gemaakt."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Knop Gebruikersprofiel bekijken"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Aantekening
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = Pagina {number}
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Knop Verwijdering annuleren
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = Verwijderen
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Knop Verwijderen
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = Annuleren
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Wil je deze opmerking verwijderen?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Deze opmerking en antwoorden verwijderen? Deze actie kan niet ongedaan worden gemaakt.
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Bevestiging verwijderen
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = Bewerken
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = Oorspronkelijke
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = Beantwoorden
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Knop Beantwoorden
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Oplossen
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Statusbericht oplossing
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Knop Beantw
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Gebruikersvermelding
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Berichttekst
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Oplossing ongedaan maken
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = Avatar van de gebruiker
|
package/dist/i18n/pl-PL.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Tekst wiadomości",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Anuluj rozstrzygnięcie",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "Awatar użytkownika",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Przycisk wyświetlania profilu użytkownika"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Usunąć ten komentarz i odpowiedzi? Nie można cofnąć tego działania."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Przycisk wyświetlania profilu użytkownika"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Komunikat u
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = Strona {number}
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Przycisk anulowania usuwania
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = Usuń
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Przycisk usuwani
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = Anuluj
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Czy chcesz usunąć ten komentarz?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Usunąć ten komentarz i odpowiedzi? Nie można cofnąć tego działania.
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Potwierdzenie usunięcia
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = Edytuj
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = Oryginalna zawa
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = Odpowiedz
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Przycisk odpowiedzi
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Rozstrzygnij
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Wiadomość o statusie rozwiązania
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Przycisk od
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Wspomnienie użytkownika
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Tekst wiadomości
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Anuluj rozstrzygnięcie
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = Awatar użytkownika
|
package/dist/i18n/pt-BR.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Texto da mensagem",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Não resolver",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "Avatar do usuário",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Botão Visualizar perfil do usuário"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Excluir este comentário e respostas? Essa ação não pode ser desfeita."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Botão Visualizar perfil do usuário"
|
|
47
46
|
}
|
|
@@ -6,6 +6,8 @@ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = Mensagem de
|
|
|
6
6
|
groupSharedFeatures.threadedAnnotations.annotationPage = Página {number}
|
|
7
7
|
# Aria label for cancel delete button
|
|
8
8
|
groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = Botão Cancelar exclusão
|
|
9
|
+
# Copy link option in message context menu
|
|
10
|
+
groupSharedFeatures.threadedAnnotations.copyLink = Copy link
|
|
9
11
|
# Delete button text
|
|
10
12
|
groupSharedFeatures.threadedAnnotations.delete = Excluir
|
|
11
13
|
# Aria label for delete button
|
|
@@ -14,10 +16,10 @@ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = Botão Excluir
|
|
|
14
16
|
groupSharedFeatures.threadedAnnotations.deleteCancel = Cancelar
|
|
15
17
|
# Confirmation text asking user if they want to delete a comment
|
|
16
18
|
groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = Você deseja excluir esse comentário?
|
|
17
|
-
# Confirmation text asking user if they want to delete a comment and its replies
|
|
18
|
-
groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion = Excluir este comentário e respostas? Essa ação não pode ser desfeita.
|
|
19
19
|
# Aria label for delete confirmation popover
|
|
20
20
|
groupSharedFeatures.threadedAnnotations.deleteConfirmation = Confirmação de exclusão
|
|
21
|
+
# Confirmation text asking the user if they want to delete a thread. `type` is `annotation` or `comment`; `hasReplies` is `true` or `false`.
|
|
22
|
+
groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
|
|
21
23
|
# Edit option in message context menu
|
|
22
24
|
groupSharedFeatures.threadedAnnotations.edit = Editar
|
|
23
25
|
# Button text to hide replies in threaded annotations
|
|
@@ -64,7 +66,7 @@ groupSharedFeatures.threadedAnnotations.originalContentDeleted = O conteúdo ori
|
|
|
64
66
|
groupSharedFeatures.threadedAnnotations.reply = Responder
|
|
65
67
|
# Aria label for the reply button that opens the message editor
|
|
66
68
|
groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = Botão Responder
|
|
67
|
-
# Aria label for resolve button
|
|
69
|
+
# Aria label and tooltip content for the resolve button
|
|
68
70
|
groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = Resolver
|
|
69
71
|
# Aria label for the resolution status message container
|
|
70
72
|
groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = Mensagem de status de resolução
|
|
@@ -78,7 +80,7 @@ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = Botão Resp
|
|
|
78
80
|
groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = Menção do usuário
|
|
79
81
|
# Aria label for message text content
|
|
80
82
|
groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = Texto da mensagem
|
|
81
|
-
# Aria label for unresolve button
|
|
83
|
+
# Aria label and tooltip content for the unresolve button
|
|
82
84
|
groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = Não resolver
|
|
83
85
|
# Alt text for user avatar image
|
|
84
86
|
groupSharedFeatures.threadedAnnotations.userAvatar = Avatar do usuário
|
package/dist/i18n/ru-RU.js
CHANGED
|
@@ -42,6 +42,5 @@ export default {
|
|
|
42
42
|
"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "Текст сообщения",
|
|
43
43
|
"groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "Отменить разрешение",
|
|
44
44
|
"groupSharedFeatures.threadedAnnotations.userAvatar": "Аватар пользователя",
|
|
45
|
-
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Кнопка просмотра профиля пользователя"
|
|
46
|
-
"groupSharedFeatures.threadedAnnotations.deleteCommentWithRepliesQuestion": "Удалить этот комментарий и ответы? Это действие невозможно отменить."
|
|
45
|
+
"groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "Кнопка просмотра профиля пользователя"
|
|
47
46
|
}
|