@box/threaded-annotations 1.85.2 → 1.89.1

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.
Files changed (74) hide show
  1. package/dist/chunks/message-footer.js +58 -38
  2. package/dist/chunks/messages-view.js +48 -42
  3. package/dist/chunks/threaded-annotations2.js +39 -30
  4. package/dist/esm/lib/components/v2/message-editor/message-editor.js +2 -2
  5. package/dist/esm/lib/components/v2/message-header/message-header.js +4 -3
  6. package/dist/esm/lib/components/v2/text-message/messages.js +4 -0
  7. package/dist/esm/lib/components/v2/text-message/text-message.js +64 -54
  8. package/dist/esm/lib/v2/test-utils/mocks/mock-messages.js +2 -2
  9. package/dist/esm/lib/v2/threaded-annotations-context.js +31 -19
  10. package/dist/esm/lib/v2/threaded-annotations.js +0 -1
  11. package/dist/i18n/bn-IN.js +1 -0
  12. package/dist/i18n/bn-IN.properties +2 -0
  13. package/dist/i18n/da-DK.js +1 -0
  14. package/dist/i18n/da-DK.properties +2 -0
  15. package/dist/i18n/de-DE.js +1 -0
  16. package/dist/i18n/de-DE.properties +2 -0
  17. package/dist/i18n/en-AU.js +1 -0
  18. package/dist/i18n/en-AU.properties +2 -0
  19. package/dist/i18n/en-CA.js +1 -0
  20. package/dist/i18n/en-CA.properties +2 -0
  21. package/dist/i18n/en-GB.js +1 -0
  22. package/dist/i18n/en-GB.properties +2 -0
  23. package/dist/i18n/en-US.js +1 -0
  24. package/dist/i18n/en-US.properties +2 -0
  25. package/dist/i18n/en-x-pseudo.js +44 -43
  26. package/dist/i18n/en-x-pseudo.properties +45 -43
  27. package/dist/i18n/es-419.js +1 -0
  28. package/dist/i18n/es-419.properties +2 -0
  29. package/dist/i18n/es-ES.js +1 -0
  30. package/dist/i18n/es-ES.properties +2 -0
  31. package/dist/i18n/fi-FI.js +1 -0
  32. package/dist/i18n/fi-FI.properties +2 -0
  33. package/dist/i18n/fr-CA.js +1 -0
  34. package/dist/i18n/fr-CA.properties +2 -0
  35. package/dist/i18n/fr-FR.js +1 -0
  36. package/dist/i18n/fr-FR.properties +2 -0
  37. package/dist/i18n/hi-IN.js +1 -0
  38. package/dist/i18n/hi-IN.properties +2 -0
  39. package/dist/i18n/it-IT.js +1 -0
  40. package/dist/i18n/it-IT.properties +2 -0
  41. package/dist/i18n/ja-JP.js +1 -0
  42. package/dist/i18n/ja-JP.properties +2 -0
  43. package/dist/i18n/json/src/lib/components/v2/text-message/messages.json +1 -1
  44. package/dist/i18n/ko-KR.js +1 -0
  45. package/dist/i18n/ko-KR.properties +2 -0
  46. package/dist/i18n/nb-NO.js +1 -0
  47. package/dist/i18n/nb-NO.properties +2 -0
  48. package/dist/i18n/nl-NL.js +1 -0
  49. package/dist/i18n/nl-NL.properties +2 -0
  50. package/dist/i18n/pl-PL.js +1 -0
  51. package/dist/i18n/pl-PL.properties +2 -0
  52. package/dist/i18n/pt-BR.js +1 -0
  53. package/dist/i18n/pt-BR.properties +2 -0
  54. package/dist/i18n/ru-RU.js +1 -0
  55. package/dist/i18n/ru-RU.properties +2 -0
  56. package/dist/i18n/sv-SE.js +1 -0
  57. package/dist/i18n/sv-SE.properties +2 -0
  58. package/dist/i18n/tr-TR.js +1 -0
  59. package/dist/i18n/tr-TR.properties +2 -0
  60. package/dist/i18n/zh-CN.js +1 -0
  61. package/dist/i18n/zh-CN.properties +2 -0
  62. package/dist/i18n/zh-TW.js +1 -0
  63. package/dist/i18n/zh-TW.properties +2 -0
  64. package/dist/styles/message-footer.css +1 -1
  65. package/dist/styles/messages-view.css +1 -1
  66. package/dist/types/lib/components/v2/messages-view/messages-view.d.ts +6 -2
  67. package/dist/types/lib/components/v2/text-message/messages.d.ts +5 -0
  68. package/dist/types/lib/components/v2/text-message/subcomponents/message-footer.d.ts +3 -1
  69. package/dist/types/lib/components/v2/text-message/text-message.d.ts +6 -2
  70. package/dist/types/lib/v2/stories/shared.d.ts +1 -0
  71. package/dist/types/lib/v2/threaded-annotations-context.d.ts +19 -3
  72. package/dist/types/lib/v2/threaded-annotations.d.ts +14 -2
  73. package/dist/types/lib/v2/types/message-types.d.ts +2 -0
  74. package/package.json +12 -12
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Bekræft sletning
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Rediger
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Skjul svar
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Löschbestätigung",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Bearbeiten",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Antworten ausblenden",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "Als gelöst markiert",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Abbrechen",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Löschbestätigung
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Bearbeiten
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Antworten ausblenden
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Delete confirmation",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Edit",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Hide replies",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marked as resolved",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Cancel",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Delete confirmation
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Edit
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Hide replies
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Delete confirmation",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Edit",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Hide replies",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marked as resolved",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Cancel",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Delete confirmation
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Edit
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Hide replies
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Delete confirmation",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Edit",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Hide replies",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marked as resolved",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Cancel",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Delete confirmation
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Edit
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Hide replies
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Delete confirmation",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Edit",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Hide replies",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marked as resolved",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Cancel",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Delete confirmation
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Edit
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Hide replies
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -1,46 +1,47 @@
1
1
  export default {
2
- "boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "⟦萬萬萬萬萬 Ŧĥŗėάďèď åйňøτατîóʼn 國國國國國⟧",
3
- "groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "⟦萬萬萬萬萬 Ąйńóťâτϊóň mêşśäġё 國國國國國⟧",
4
- "groupSharedFeatures.threadedAnnotations.annotationPage": "⟦萬萬 Pαĝέ {number} 國國⟧",
5
- "groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "⟦萬萬萬萬萬 Ćåήсęļ ďěľèťε ьűťťοη 國國國國國⟧",
6
- "groupSharedFeatures.threadedAnnotations.copyLink": "⟦萬萬 ĆόΡў ļĩňк 國國⟧",
7
- "groupSharedFeatures.threadedAnnotations.delete": "⟦萬 Ďëľєτĕ 國⟧",
8
- "groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "⟦萬萬萬 Ďěľёťε вüτŧōň 國國國⟧",
9
- "groupSharedFeatures.threadedAnnotations.deleteCancel": "⟦萬 Ćåпćёļ 國⟧",
10
- "groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "⟦萬萬萬萬萬萬萬萬萬萬 Ðö ỳóû ώąлŧ ťо ďěļèτě ţħįѕ çømmέŋţ? 國國國國國國國國國國⟧",
11
- "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "⟦萬萬萬萬萬 Ďеľěţе ċοŋƒįŗmäτίóи 國國國國國⟧",
12
- "groupSharedFeatures.threadedAnnotations.deleteQuestion": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďеĺęţē τħіś {type, select, annotation {âлηŏτãŧîøʼn} other {ćômmέńτ}}{hasReplies, select, true { άлď яēΡļîēѕ} other {}}? Ŧĥϊş âĉťіôń ćåйьĕ ũлďòņє. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
13
- "groupSharedFeatures.threadedAnnotations.edit": "⟦萬 Έďìť 國⟧",
14
- "groupSharedFeatures.threadedAnnotations.hideReplies": "⟦萬萬萬 Ήιďě ѓēΡľіёѕ 國國國⟧",
15
- "groupSharedFeatures.threadedAnnotations.markedAsResolved": "⟦萬萬萬萬萬 māѓķěď âş гёŝōľνёď 國國國國國⟧",
16
- "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "⟦萬 Çáлċёľ 國⟧",
17
- "groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "⟦萬萬萬 Ĉăňĉεľ ьµŧτōи 國國國⟧",
2
+ "boxui.threadedAnnotations.threadedAnnotationsAriaLabel": "⟦萬萬萬萬萬 Ťĥŕėąďêď ăňлŏţāτîōй 國國國國國⟧",
3
+ "groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel": "⟦萬萬萬萬萬 Άŋπõτãŧïόπ mêѕśåğë 國國國國國⟧",
4
+ "groupSharedFeatures.threadedAnnotations.annotationPage": "⟦萬萬 Pãğĕ {number} 國國⟧",
5
+ "groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel": "⟦萬萬萬萬萬 Čąʼnčеĺ ďёľëτé ьûŧťòη 國國國國國⟧",
6
+ "groupSharedFeatures.threadedAnnotations.copyLink": "⟦萬萬 ĈόΡў ľĭήĸ 國國⟧",
7
+ "groupSharedFeatures.threadedAnnotations.delete": "⟦萬 Ďęļęťё 國⟧",
8
+ "groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel": "⟦萬萬萬 Ðεļęŧė вũτţóή 國國國⟧",
9
+ "groupSharedFeatures.threadedAnnotations.deleteCancel": "⟦萬 Ćǻпсėĺ 國⟧",
10
+ "groupSharedFeatures.threadedAnnotations.deleteCommentQuestion": "⟦萬萬萬萬萬萬萬萬萬萬 Ðŏ Уσũ ẁäлτ ŧö ďέļèτé ţĥįś çōmméňŧ? 國國國國國國國國國國⟧",
11
+ "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "⟦萬萬萬萬萬 Ďėļêţе çóлƒīѓmαťíöл 國國國國國⟧",
12
+ "groupSharedFeatures.threadedAnnotations.deleteQuestion": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðέļέŧê ţнîś {type, select, annotation {άлńòτąţϊóή} other {ĉòmmèńť}}{hasReplies, select, true { αʼnď гêΡĺīēş} other {}}? Ťнĩѕ āćŧĭôŋ çãńье ũňďοπε. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
13
+ "groupSharedFeatures.threadedAnnotations.edit": "⟦萬 Ěďįŧ 國⟧",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "⟦萬萬 (Ēďïţéď) 國國⟧",
15
+ "groupSharedFeatures.threadedAnnotations.hideReplies": "⟦萬萬萬 Ήϊďê ŕĕΡļīεş 國國國⟧",
16
+ "groupSharedFeatures.threadedAnnotations.markedAsResolved": "⟦萬萬萬萬萬 mǻґкėď αş ґèŝôľνèď 國國國國國⟧",
17
+ "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "⟦萬 Ĉǻй¢ėļ 國⟧",
18
+ "groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel": "⟦萬萬萬 Çăпсεĺ ьμŧŧøʼn 國國國⟧",
18
19
  "groupSharedFeatures.threadedAnnotations.messageEditor.characterCount": "⟦萬萬萬 {count}/{maxCount} 國國國⟧",
19
- "groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ύóцг ćσmmеήţ ίŝ {excess, plural, one {# ćнαгãċťεŗ} other {# čĥαŕαĉťėŗş}} ŧŏø ĺôňġ 國國國國國國國國國國國國國國國國國國⟧",
20
- "groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "⟦萬萬萬萬 Мéѕşåġé ěďíτōŕ 國國國國⟧",
21
- "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "⟦萬萬萬萬萬萬萬 Μèŝśǻĝė ïņΡúť Ρľǻĉéнóľďεг 國國國國國國國⟧",
22
- "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "⟦萬萬萬萬萬 Ŵгїŧě à ćοmměńτ őґ 國國國國國⟧",
23
- "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "⟦萬萬萬萬 Ẁгíŧє â яεΡľγ οґ 國國國國⟧",
24
- "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "⟦萬萬 ťό méʼnţĩόй 國國⟧",
25
- "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "⟦萬萬萬萬萬萬萬萬萬 Ļěάνё â ćōmmêņť οґ @ ŧο mєňŧĭοň 國國國國國國國國國⟧",
26
- "groupSharedFeatures.threadedAnnotations.messageEditor.post": "⟦萬 Pοśŧ 國⟧",
27
- "groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "⟦萬萬萬 Pôşť ьŭτţöл 國國國⟧",
28
- "groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "⟦萬萬 Ŀóάďīпġ... 國國⟧",
29
- "groupSharedFeatures.threadedAnnotations.messageEditor.save": "⟦萬 Ѕåνė 國⟧",
30
- "groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "⟦萬萬 Ŝáνїʼnĝ... 國國⟧",
31
- "groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "⟦萬萬萬萬萬萬萬萬萬 Μèşŝǻĝе ёďìŧóѓ şċѓøļļ čòʼnţàĩπēř 國國國國國國國國國⟧",
32
- "groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "⟦萬萬萬萬萬 Μòŗé ōΡŧįòлş вμŧŧοʼn 國國國國國⟧",
33
- "groupSharedFeatures.threadedAnnotations.originalContentDeleted": "⟦萬萬萬萬萬萬萬萬 Ôŗϊĝíŋăľ ĉőŋţėητ щàś ďèĺеτěď 國國國國國國國國⟧",
34
- "groupSharedFeatures.threadedAnnotations.reply": "⟦萬 ЯėΡļУ 國⟧",
35
- "groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "⟦萬萬萬 ŘęΡľý ьůţťоň 國國國⟧",
36
- "groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "⟦萬萬 Яèşŏļνē 國國⟧",
37
- "groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "⟦萬萬萬萬萬萬萬 Яęśŏļũţíòņ ѕţâŧūş mεѕśάĝë 國國國國國國國⟧",
38
- "groupSharedFeatures.threadedAnnotations.showMoreReplies": "⟦萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {# mояē гεΡľỳ} other {# mоґè гєΡĺĩέś}} 國國國國國國國國國國國⟧",
39
- "groupSharedFeatures.threadedAnnotations.showReplies": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 {number, plural, one {Ŝħŏẁ # ŗеΡľỳ} other {Şĥόŵ # mόŕέ ŗέΡĺîëŝ}} 國國國國國國國國國國國國國⟧",
40
- "groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "⟦萬萬萬 ЃéΡĺУ вцτţøπ 國國國⟧",
41
- "groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "⟦萬萬萬 Ùŝег męŋťϊőņ 國國國⟧",
42
- "groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "⟦萬萬萬 Μєŝśãğē ťėхŧ 國國國⟧",
43
- "groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "⟦萬萬 Ũпřёŝőľνè 國國⟧",
44
- "groupSharedFeatures.threadedAnnotations.userAvatar": "⟦萬萬萬 Ŭŝéŗ άνǻταг 國國國⟧",
45
- "groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "⟦萬萬萬萬萬萬萬 Vïέŵ üśèг Ρгòƒįľé ьųţťоʼn 國國國國國國國⟧"
20
+ "groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ỳòŭř çοmmėʼnŧ îŝ {excess, plural, one {# сĥâгǻ¢τěг} other {# ćĥäгąçţеяŝ}} ťŏō ĺσпġ 國國國國國國國國國國國國國國國國國國⟧",
21
+ "groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel": "⟦萬萬萬萬 Мèѕśǻğě ëďïţòř 國國國國⟧",
22
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel": "⟦萬萬萬萬萬萬萬 Мĕşѕáĝе ιňΡμţ Ρľάĉēĥóľďεг 國國國國國國國⟧",
23
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix": "⟦萬萬萬萬萬 Ẃŗìŧе ă соmmėпŧ ŏѓ 國國國國國⟧",
24
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply": "⟦萬萬萬萬 Щґϊťε ă ґεΡĺγ òґ 國國國國⟧",
25
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix": "⟦萬萬 ťό měńţîόπ 國國⟧",
26
+ "groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted": "⟦萬萬萬萬萬萬萬萬萬 Ĺėάνė ǻ сømmēπτ оґ @ ŧŏ mêńţīŏп 國國國國國國國國國⟧",
27
+ "groupSharedFeatures.threadedAnnotations.messageEditor.post": "⟦萬 Pøŝţ 國⟧",
28
+ "groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel": "⟦萬萬萬 Pоśŧ ьůŧţŏņ 國國國⟧",
29
+ "groupSharedFeatures.threadedAnnotations.messageEditor.postLoading": "⟦萬萬 Ļσǻďίηğ... 國國⟧",
30
+ "groupSharedFeatures.threadedAnnotations.messageEditor.save": "⟦萬 Şàνē 國⟧",
31
+ "groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading": "⟦萬萬 Ŝãνīńĝ... 國國⟧",
32
+ "groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel": "⟦萬萬萬萬萬萬萬萬萬 Меѕşãġĕ ėďϊťŏř ş¢ґôļľ ĉöŋτáїňéґ 國國國國國國國國國⟧",
33
+ "groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel": "⟦萬萬萬萬萬 Мōгë ôΡŧíôпş ьцŧţõл 國國國國國⟧",
34
+ "groupSharedFeatures.threadedAnnotations.originalContentDeleted": "⟦萬萬萬萬萬萬萬萬 Οґīĝιиάľ ċøňτέπτ щåѕ ďëľéτεď 國國國國國國國國⟧",
35
+ "groupSharedFeatures.threadedAnnotations.reply": "⟦萬 ŔĕΡĺγ 國⟧",
36
+ "groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel": "⟦萬萬萬 ŖėΡļý ьųťτŏη 國國國⟧",
37
+ "groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel": "⟦萬萬 Ѓěşοľνĕ 國國⟧",
38
+ "groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel": "⟦萬萬萬萬萬萬萬 Яεŝõľũŧιøʼn ŝŧαţùś mëśşâĝę 國國國國國國國⟧",
39
+ "groupSharedFeatures.threadedAnnotations.showMoreReplies": "⟦萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {# møŗє ŕęΡļŷ} other {# mõгė ґеΡļīεѕ}} 國國國國國國國國國國國⟧",
40
+ "groupSharedFeatures.threadedAnnotations.showReplies": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 {number, plural, one {Şħόώ # ѓєΡľý} other {Ѕнσẃ # mοŕē гéΡĺīėś}} 國國國國國國國國國國國國國⟧",
41
+ "groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel": "⟦萬萬萬 ЃεΡĺý вůťţòʼn 國國國⟧",
42
+ "groupSharedFeatures.threadedAnnotations.textMentionAriaLabel": "⟦萬萬萬 Ûŝěґ méňτïоη 國國國⟧",
43
+ "groupSharedFeatures.threadedAnnotations.textMessageAriaLabel": "⟦萬萬萬 Мéśşāğе ťëם 國國國⟧",
44
+ "groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel": "⟦萬萬 Ùηŗёѕöĺνè 國國⟧",
45
+ "groupSharedFeatures.threadedAnnotations.userAvatar": "⟦萬萬萬 Ùşєř ăναţαŕ 國國國⟧",
46
+ "groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel": "⟦萬萬萬萬萬萬萬 Vієώ ûşėŕ Ρгóƒιļε ьůťţôй 國國國國國國國⟧"
46
47
  }
@@ -1,88 +1,90 @@
1
1
  # Aria label for the threaded annotations container button
2
- boxui.threadedAnnotations.threadedAnnotationsAriaLabel = ⟦萬萬萬萬萬 Ŧĥŗėάďèď åйňøτατîóʼn 國國國國國⟧
2
+ boxui.threadedAnnotations.threadedAnnotationsAriaLabel = ⟦萬萬萬萬萬 Ťĥŕėąďêď ăňлŏţāτîōй 國國國國國⟧
3
3
  # Aria label for annotation message container
4
- groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = ⟦萬萬萬萬萬 Ąйńóťâτϊóň mêşśäġё 國國國國國⟧
4
+ groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel = ⟦萬萬萬萬萬 Άŋπõτãŧïόπ mêѕśåğë 國國國國國⟧
5
5
  # Label showing the page number of an annotation target
6
- groupSharedFeatures.threadedAnnotations.annotationPage = ⟦萬萬 Pαĝέ {number} 國國⟧
6
+ groupSharedFeatures.threadedAnnotations.annotationPage = ⟦萬萬 Pãğĕ {number} 國國⟧
7
7
  # Aria label for cancel delete button
8
- groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = ⟦萬萬萬萬萬 Ćåήсęļ ďěľèťε ьűťťοη 國國國國國⟧
8
+ groupSharedFeatures.threadedAnnotations.cancelDeleteButtonAriaLabel = ⟦萬萬萬萬萬 Čąʼnčеĺ ďёľëτé ьûŧťòη 國國國國國⟧
9
9
  # Copy link option in message context menu
10
- groupSharedFeatures.threadedAnnotations.copyLink = ⟦萬萬 ĆόΡў ļĩňк 國國⟧
10
+ groupSharedFeatures.threadedAnnotations.copyLink = ⟦萬萬 ĈόΡў ľĭήĸ 國國⟧
11
11
  # Delete button text
12
- groupSharedFeatures.threadedAnnotations.delete = ⟦萬 Ďëľєτĕ 國⟧
12
+ groupSharedFeatures.threadedAnnotations.delete = ⟦萬 Ďęļęťё 國⟧
13
13
  # Aria label for delete button
14
- groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = ⟦萬萬萬 Ďěľёťε вüτŧōň 國國國⟧
14
+ groupSharedFeatures.threadedAnnotations.deleteButtonAriaLabel = ⟦萬萬萬 Ðεļęŧė вũτţóή 國國國⟧
15
15
  # Cancel button text for delete confirmation dialog
16
- groupSharedFeatures.threadedAnnotations.deleteCancel = ⟦萬 Ćåпćёļ 國⟧
16
+ groupSharedFeatures.threadedAnnotations.deleteCancel = ⟦萬 Ćǻпсėĺ 國⟧
17
17
  # Confirmation text asking user if they want to delete a comment
18
- groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = ⟦萬萬萬萬萬萬萬萬萬萬 Ðö ỳóû ώąлŧ ťо ďěļèτě ţħįѕ çømmέŋţ? 國國國國國國國國國國⟧
18
+ groupSharedFeatures.threadedAnnotations.deleteCommentQuestion = ⟦萬萬萬萬萬萬萬萬萬萬 Ðŏ Уσũ ẁäлτ ŧö ďέļèτé ţĥįś çōmméňŧ? 國國國國國國國國國國⟧
19
19
  # Aria label for delete confirmation popover
20
- groupSharedFeatures.threadedAnnotations.deleteConfirmation = ⟦萬萬萬萬萬 Ďеľěţе ċοŋƒįŗmäτίóи 國國國國國⟧
20
+ groupSharedFeatures.threadedAnnotations.deleteConfirmation = ⟦萬萬萬萬萬 Ďėļêţе çóлƒīѓmαťíöл 國國國國國⟧
21
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 = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ďеĺęţē τħіś {type, select, annotation {âлηŏτãŧîøʼn} other {ćômmέńτ}}{hasReplies, select, true { άлď яēΡļîēѕ} other {}}? Ŧĥϊş âĉťіôń ćåйьĕ ũлďòņє. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
22
+ groupSharedFeatures.threadedAnnotations.deleteQuestion = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ðέļέŧê ţнîś {type, select, annotation {άлńòτąţϊóή} other {ĉòmmèńť}}{hasReplies, select, true { αʼnď гêΡĺīēş} other {}}? Ťнĩѕ āćŧĭôŋ çãńье ũňďοπε. 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧
23
23
  # Edit option in message context menu
24
- groupSharedFeatures.threadedAnnotations.edit = ⟦萬 Έďìť 國⟧
24
+ groupSharedFeatures.threadedAnnotations.edit = ⟦萬 Ěďįŧ 國⟧
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = ⟦萬萬 (Ēďïţéď) 國國⟧
25
27
  # Button text to hide replies in threaded annotations
26
- groupSharedFeatures.threadedAnnotations.hideReplies = ⟦萬萬萬 Ήιďě ѓēΡľіёѕ 國國國⟧
28
+ groupSharedFeatures.threadedAnnotations.hideReplies = ⟦萬萬萬 Ήϊďê ŕĕΡļīεş 國國國⟧
27
29
  # Text shown after the author name when a comment thread is marked as resolved
28
- groupSharedFeatures.threadedAnnotations.markedAsResolved = ⟦萬萬萬萬萬 māѓķěď âş гёŝōľνёď 國國國國國⟧
30
+ groupSharedFeatures.threadedAnnotations.markedAsResolved = ⟦萬萬萬萬萬 mǻґкėď αş ґèŝôľνèď 國國國國國⟧
29
31
  # Cancel button text for message editor
30
- groupSharedFeatures.threadedAnnotations.messageEditor.cancel = ⟦萬 Çáлċёľ 國⟧
32
+ groupSharedFeatures.threadedAnnotations.messageEditor.cancel = ⟦萬 Ĉǻй¢ėļ 國⟧
31
33
  # Aria label for the cancel button in message editor
32
- groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = ⟦萬萬萬 Ĉăňĉεľ ьµŧτōи 國國國⟧
34
+ groupSharedFeatures.threadedAnnotations.messageEditor.cancelButtonAriaLabel = ⟦萬萬萬 Çăпсεĺ ьμŧŧøʼn 國國國⟧
33
35
  # Character count display showing current count and maximum allowed
34
36
  groupSharedFeatures.threadedAnnotations.messageEditor.characterCount = ⟦萬萬萬 {count}/{maxCount} 國國國⟧
35
37
  # Screen reader alert and tooltip text shown when character limit is exceeded
36
- groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ύóцг ćσmmеήţ ίŝ {excess, plural, one {# ćнαгãċťεŗ} other {# čĥαŕαĉťėŗş}} ŧŏø ĺôňġ 國國國國國國國國國國國國國國國國國國⟧
38
+ groupSharedFeatures.threadedAnnotations.messageEditor.characterLimitExceeded = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ỳòŭř çοmmėʼnŧ îŝ {excess, plural, one {# сĥâгǻ¢τěг} other {# ćĥäгąçţеяŝ}} ťŏō ĺσпġ 國國國國國國國國國國國國國國國國國國⟧
37
39
  # Aria label for the rich text editor content area
38
- groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = ⟦萬萬萬萬 Мéѕşåġé ěďíτōŕ 國國國國⟧
40
+ groupSharedFeatures.threadedAnnotations.messageEditor.editorContentAriaLabel = ⟦萬萬萬萬 Мèѕśǻğě ëďïţòř 國國國國⟧
39
41
  # Aria label for message editor placeholder
40
- groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = ⟦萬萬萬萬萬萬萬 Μèŝśǻĝė ïņΡúť Ρľǻĉéнóľďεг 國國國國國國國⟧
42
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderAriaLabel = ⟦萬萬萬萬萬萬萬 Мĕşѕáĝе ιňΡμţ Ρľάĉēĥóľďεг 國國國國國國國⟧
41
43
  # First part of placeholder text before @ symbol
42
- groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = ⟦萬萬萬萬萬 Ŵгїŧě à ćοmměńτ őґ 國國國國國⟧
44
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefix = ⟦萬萬萬萬萬 Ẃŗìŧе ă соmmėпŧ ŏѓ 國國國國國⟧
43
45
  # First part of placeholder text before @ symbol for reply
44
- groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = ⟦萬萬萬萬 Ẁгíŧє â яεΡľγ οґ 國國國國⟧
46
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderPrefixReply = ⟦萬萬萬萬 Щґϊťε ă ґεΡĺγ òґ 國國國國⟧
45
47
  # Last part of placeholder text after @ symbol
46
- groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = ⟦萬萬 ťό méʼnţĩόй 國國⟧
48
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderSuffix = ⟦萬萬 ťό měńţîόπ 國國⟧
47
49
  # Placeholder text for uplifted message editor
48
- groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = ⟦萬萬萬萬萬萬萬萬萬 Ļěάνё â ćōmmêņť οґ @ ŧο mєňŧĭοň 國國國國國國國國國⟧
50
+ groupSharedFeatures.threadedAnnotations.messageEditor.placeholderUplifted = ⟦萬萬萬萬萬萬萬萬萬 Ĺėάνė ǻ сømmēπτ оґ @ ŧŏ mêńţīŏп 國國國國國國國國國⟧
49
51
  # Post button text for message editor
50
- groupSharedFeatures.threadedAnnotations.messageEditor.post = ⟦萬 Pοśŧ 國⟧
52
+ groupSharedFeatures.threadedAnnotations.messageEditor.post = ⟦萬 Pøŝţ 國⟧
51
53
  # Aria label for the post button in message editor
52
- groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = ⟦萬萬萬 Pôşť ьŭτţöл 國國國⟧
54
+ groupSharedFeatures.threadedAnnotations.messageEditor.postButtonAriaLabel = ⟦萬萬萬 Pоśŧ ьůŧţŏņ 國國國⟧
53
55
  # Aria label for post button loading state
54
- groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = ⟦萬萬 Ŀóάďīпġ... 國國⟧
56
+ groupSharedFeatures.threadedAnnotations.messageEditor.postLoading = ⟦萬萬 Ļσǻďίηğ... 國國⟧
55
57
  # Save button text for message editor
56
- groupSharedFeatures.threadedAnnotations.messageEditor.save = ⟦萬 Ѕåνė 國⟧
58
+ groupSharedFeatures.threadedAnnotations.messageEditor.save = ⟦萬 Şàνē 國⟧
57
59
  # Aria label for save button loading state
58
- groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = ⟦萬萬 Ŝáνїʼnĝ... 國國⟧
60
+ groupSharedFeatures.threadedAnnotations.messageEditor.saveLoading = ⟦萬萬 Ŝãνīńĝ... 國國⟧
59
61
  # Aria label for the scrollable message editor content container
60
- groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = ⟦萬萬萬萬萬萬萬萬萬 Μèşŝǻĝе ёďìŧóѓ şċѓøļļ čòʼnţàĩπēř 國國國國國國國國國⟧
62
+ groupSharedFeatures.threadedAnnotations.messageEditor.scrollContainerAriaLabel = ⟦萬萬萬萬萬萬萬萬萬 Меѕşãġĕ ėďϊťŏř ş¢ґôļľ ĉöŋτáїňéґ 國國國國國國國國國⟧
61
63
  # Aria label for more options button in annotation message
62
- groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = ⟦萬萬萬萬萬 Μòŗé ōΡŧįòлş вμŧŧοʼn 國國國國國⟧
64
+ groupSharedFeatures.threadedAnnotations.moreOptionsAriaLabel = ⟦萬萬萬萬萬 Мōгë ôΡŧíôпş ьцŧţõл 國國國國國⟧
63
65
  # Tooltip shown when the annotation badge refers to deleted content
64
- groupSharedFeatures.threadedAnnotations.originalContentDeleted = ⟦萬萬萬萬萬萬萬萬 Ôŗϊĝíŋăľ ĉőŋţėητ щàś ďèĺеτěď 國國國國國國國國⟧
66
+ groupSharedFeatures.threadedAnnotations.originalContentDeleted = ⟦萬萬萬萬萬萬萬萬 Οґīĝιиάľ ċøňτέπτ щåѕ ďëľéτεď 國國國國國國國國⟧
65
67
  # Reply button text to start composing a reply
66
- groupSharedFeatures.threadedAnnotations.reply = ⟦萬 ЯėΡļУ 國⟧
68
+ groupSharedFeatures.threadedAnnotations.reply = ⟦萬 ŔĕΡĺγ 國⟧
67
69
  # Aria label for the reply button that opens the message editor
68
- groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = ⟦萬萬萬 ŘęΡľý ьůţťоň 國國國⟧
70
+ groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel = ⟦萬萬萬 ŖėΡļý ьųťτŏη 國國國⟧
69
71
  # Aria label and tooltip content for the resolve button
70
- groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = ⟦萬萬 Яèşŏļνē 國國⟧
72
+ groupSharedFeatures.threadedAnnotations.resolveButtonAriaLabel = ⟦萬萬 Ѓěşοľνĕ 國國⟧
71
73
  # Aria label for the resolution status message container
72
- groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = ⟦萬萬萬萬萬萬萬 Яęśŏļũţíòņ ѕţâŧūş mεѕśάĝë 國國國國國國國⟧
74
+ groupSharedFeatures.threadedAnnotations.resolvedStateAriaLabel = ⟦萬萬萬萬萬萬萬 Яεŝõľũŧιøʼn ŝŧαţùś mëśşâĝę 國國國國國國國⟧
73
75
  # Button text to show more replies with count
74
- groupSharedFeatures.threadedAnnotations.showMoreReplies = ⟦萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {# mояē гεΡľỳ} other {# mоґè гєΡĺĩέś}} 國國國國國國國國國國國⟧
76
+ groupSharedFeatures.threadedAnnotations.showMoreReplies = ⟦萬萬萬萬萬萬萬萬萬萬萬 {count, plural, one {# møŗє ŕęΡļŷ} other {# mõгė ґеΡļīεѕ}} 國國國國國國國國國國國⟧
75
77
  # Button text to show replies with count
76
- groupSharedFeatures.threadedAnnotations.showReplies = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 {number, plural, one {Ŝħŏẁ # ŗеΡľỳ} other {Şĥόŵ # mόŕέ ŗέΡĺîëŝ}} 國國國國國國國國國國國國國⟧
78
+ groupSharedFeatures.threadedAnnotations.showReplies = ⟦萬萬萬萬萬萬萬萬萬萬萬萬萬 {number, plural, one {Şħόώ # ѓєΡľý} other {Ѕнσẃ # mοŕē гéΡĺīėś}} 國國國國國國國國國國國國國⟧
77
79
  # Aria label for the reply button
78
- groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = ⟦萬萬萬 ЃéΡĺУ вцτţøπ 國國國⟧
80
+ groupSharedFeatures.threadedAnnotations.showRepliesButtonAriaLabel = ⟦萬萬萬 ЃεΡĺý вůťţòʼn 國國國⟧
79
81
  # Aria label for user mention links
80
- groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = ⟦萬萬萬 Ùŝег męŋťϊőņ 國國國⟧
82
+ groupSharedFeatures.threadedAnnotations.textMentionAriaLabel = ⟦萬萬萬 Ûŝěґ méňτïоη 國國國⟧
81
83
  # Aria label for message text content
82
- groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = ⟦萬萬萬 Μєŝśãğē ťėхŧ 國國國⟧
84
+ groupSharedFeatures.threadedAnnotations.textMessageAriaLabel = ⟦萬萬萬 Мéśşāğе ťëם 國國國⟧
83
85
  # Aria label and tooltip content for the unresolve button
84
- groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = ⟦萬萬 Ũпřёŝőľνè 國國⟧
86
+ groupSharedFeatures.threadedAnnotations.unresolveButtonAriaLabel = ⟦萬萬 Ùηŗёѕöĺνè 國國⟧
85
87
  # Alt text for user avatar image
86
- groupSharedFeatures.threadedAnnotations.userAvatar = ⟦萬萬萬 Ŭŝéŗ άνǻταг 國國國⟧
88
+ groupSharedFeatures.threadedAnnotations.userAvatar = ⟦萬萬萬 Ùşєř ăναţαŕ 國國國⟧
87
89
  # Aria label for clickable user avatar button
88
- groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = ⟦萬萬萬萬萬萬萬 Vïέŵ üśèг Ρгòƒįľé ьųţťоʼn 國國國國國國國⟧
90
+ groupSharedFeatures.threadedAnnotations.userAvatarButtonAriaLabel = ⟦萬萬萬萬萬萬萬 Vієώ ûşėŕ Ρгóƒιļε ьůťţôй 國國國國國國國⟧
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Confirmación de eliminación",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Edición",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Ocultar respuestas",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marcado como resuelto",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Anular",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Confirmación de el
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Edición
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Ocultar respuestas
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Confirmación de eliminación",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Edición",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Ocultar respuestas",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marcado como resuelto",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Anular",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Confirmación de el
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Edición
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Ocultar respuestas
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Poista vahvistus",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Muokkaa",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Piilota vastaukset",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "merkitty ratkaistuksi",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Peruuta",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Poista vahvistus
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Muokkaa
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Piilota vastaukset
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Confirmation de la suppression",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Modifier",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Masquer les réponses",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marqué en tant que résolu",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Annuler",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Confirmation de la
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Modifier
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Masquer les réponses
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Confirmation de la suppression",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Modifier",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Masquer les réponses",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "marqué en tant que résolu",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Annuler",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Confirmation de la
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Modifier
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Masquer les réponses
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "हटाने का पुष्टिकरण",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "संपादित करें",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "जवाबों को छिपाएं",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "हल किए गए के रूप में चिह्नित किया गया",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "रद्द करें",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = हटाने क
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = संपादित करें
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = जवाबों को छिपाएं
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Conferma eliminazione",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Modifica",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Nascondi risposte",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "ha contrassegnato l’elemento come risolto",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Annulla",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Conferma eliminazio
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Modifica
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Nascondi risposte
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "削除の確認",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "編集",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "返信を非表示",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "が対応済みとしてマーク済み",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "キャンセル",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = 削除の確認
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = 編集
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = 返信を非表示
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -1 +1 @@
1
- [{"id":"groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel","description":"Aria label for annotation message container","defaultMessage":"Annotation message"},{"id":"groupSharedFeatures.threadedAnnotations.reply","description":"Reply button text to start composing a reply","defaultMessage":"Reply"},{"id":"groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel","description":"Aria label for the reply button that opens the message editor","defaultMessage":"Reply button"},{"id":"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel","description":"Aria label for message text content","defaultMessage":"Message text"}]
1
+ [{"id":"groupSharedFeatures.threadedAnnotations.annotationMessageAriaLabel","description":"Aria label for annotation message container","defaultMessage":"Annotation message"},{"id":"groupSharedFeatures.threadedAnnotations.edited","description":"Indicator shown next to the timestamp when a message has been edited","defaultMessage":"(Edited)"},{"id":"groupSharedFeatures.threadedAnnotations.reply","description":"Reply button text to start composing a reply","defaultMessage":"Reply"},{"id":"groupSharedFeatures.threadedAnnotations.replyButtonAriaLabel","description":"Aria label for the reply button that opens the message editor","defaultMessage":"Reply button"},{"id":"groupSharedFeatures.threadedAnnotations.textMessageAriaLabel","description":"Aria label for message text content","defaultMessage":"Message text"}]
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "삭제 확인",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "편집",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "답글 숨기기",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "해결된 상태로 표시됨",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "취소",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = 삭제 확인
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = 편집
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = 답글 숨기기
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Bekreftelse på sletting",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Rediger",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Skjul svar",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "merket som løst",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Avbryt",
@@ -22,6 +22,8 @@ groupSharedFeatures.threadedAnnotations.deleteConfirmation = Bekreftelse på sle
22
22
  groupSharedFeatures.threadedAnnotations.deleteQuestion = Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.
23
23
  # Edit option in message context menu
24
24
  groupSharedFeatures.threadedAnnotations.edit = Rediger
25
+ # Indicator shown next to the timestamp when a message has been edited
26
+ groupSharedFeatures.threadedAnnotations.edited = (Edited)
25
27
  # Button text to hide replies in threaded annotations
26
28
  groupSharedFeatures.threadedAnnotations.hideReplies = Skjul svar
27
29
  # Text shown after the author name when a comment thread is marked as resolved
@@ -11,6 +11,7 @@ export default {
11
11
  "groupSharedFeatures.threadedAnnotations.deleteConfirmation": "Bevestiging verwijderen",
12
12
  "groupSharedFeatures.threadedAnnotations.deleteQuestion": "Delete this {type, select, annotation {annotation} other {comment}}{hasReplies, select, true { and replies} other {}}? This action can't be undone.",
13
13
  "groupSharedFeatures.threadedAnnotations.edit": "Bewerken",
14
+ "groupSharedFeatures.threadedAnnotations.edited": "(Edited)",
14
15
  "groupSharedFeatures.threadedAnnotations.hideReplies": "Reacties verbergen",
15
16
  "groupSharedFeatures.threadedAnnotations.markedAsResolved": "gemarkeerd als opgelost",
16
17
  "groupSharedFeatures.threadedAnnotations.messageEditor.cancel": "Annuleren",