@box/metadata-editor 0.46.1 → 0.47.0

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 (51) hide show
  1. package/i18n/bn-IN.js +2 -3
  2. package/i18n/bn-IN.properties +18 -2
  3. package/i18n/da-DK.js +6 -7
  4. package/i18n/da-DK.properties +18 -2
  5. package/i18n/de-DE.js +6 -7
  6. package/i18n/de-DE.properties +18 -2
  7. package/i18n/en-AU.js +1 -2
  8. package/i18n/en-AU.properties +18 -2
  9. package/i18n/en-CA.js +1 -2
  10. package/i18n/en-CA.properties +18 -2
  11. package/i18n/en-GB.js +1 -2
  12. package/i18n/en-GB.properties +18 -2
  13. package/i18n/en-x-pseudo.js +90 -91
  14. package/i18n/en-x-pseudo.properties +99 -83
  15. package/i18n/es-419.js +5 -6
  16. package/i18n/es-419.properties +18 -2
  17. package/i18n/es-ES.js +5 -6
  18. package/i18n/es-ES.properties +18 -2
  19. package/i18n/fi-FI.js +6 -7
  20. package/i18n/fi-FI.properties +18 -2
  21. package/i18n/fr-CA.js +6 -7
  22. package/i18n/fr-CA.properties +18 -2
  23. package/i18n/fr-FR.js +6 -7
  24. package/i18n/fr-FR.properties +18 -2
  25. package/i18n/hi-IN.js +6 -7
  26. package/i18n/hi-IN.properties +18 -2
  27. package/i18n/it-IT.js +6 -7
  28. package/i18n/it-IT.properties +18 -2
  29. package/i18n/ja-JP.js +7 -8
  30. package/i18n/ja-JP.properties +19 -3
  31. package/i18n/ko-KR.js +6 -7
  32. package/i18n/ko-KR.properties +18 -2
  33. package/i18n/nb-NO.js +6 -7
  34. package/i18n/nb-NO.properties +18 -2
  35. package/i18n/nl-NL.js +6 -7
  36. package/i18n/nl-NL.properties +18 -2
  37. package/i18n/pl-PL.js +6 -7
  38. package/i18n/pl-PL.properties +18 -2
  39. package/i18n/pt-BR.js +6 -7
  40. package/i18n/pt-BR.properties +18 -2
  41. package/i18n/ru-RU.js +6 -7
  42. package/i18n/ru-RU.properties +18 -2
  43. package/i18n/sv-SE.js +6 -7
  44. package/i18n/sv-SE.properties +18 -2
  45. package/i18n/tr-TR.js +6 -7
  46. package/i18n/tr-TR.properties +18 -2
  47. package/i18n/zh-CN.js +6 -7
  48. package/i18n/zh-CN.properties +18 -2
  49. package/i18n/zh-TW.js +6 -7
  50. package/i18n/zh-TW.properties +18 -2
  51. package/package.json +2 -2
package/i18n/bn-IN.js CHANGED
@@ -39,7 +39,7 @@ export default {
39
39
  "metadataEditor.addMetadataTemplate.trigger.label": "টেমপ্লেট যোগ করুন",
40
40
  "metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI suggestion:",
41
41
  "metadataEditor.aiSuggestionField.aiSuggestionOptions": "Options",
42
- "metadataEditor.aiSuggestionField.appendLabel": "Append",
42
+ "metadataEditor.aiSuggestionField.appendLabel": "সংযুক্ত করুন",
43
43
  "metadataEditor.aiSuggestionField.clearAndReplaceLabel": "Clear and Replace",
44
44
  "metadataEditor.aiSuggestionField.ignoreLabel": "Ignore",
45
45
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "আপনি কি সত্যিই \"{templateName}\" মেটাডেটা টেমপ্লেট এবং এই ফাইল থেকে এটির সব মান মুছে ফেলতে চান?",
@@ -88,6 +88,5 @@ export default {
88
88
  "metadataEditor.unsavedChangesModal.saveAndContinueCTA": "সেভ করুন এবং চালিয়ে যান",
89
89
  "metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "খালি মান লুকান",
90
90
  "metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "খালি মান দেখান",
91
- "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "কাস্টম মেটাডেটা",
92
- "comboboxWithApiPagination.apiError": "ফলাফল লোড করা যায়নি। আবার চেষ্টা করতে ক্লিক করুন।"
91
+ "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "কাস্টম মেটাডেটা"
93
92
  }
@@ -1,5 +1,11 @@
1
- # Error message displayed as combobox item when an API failed and the suggestions could not load
2
- comboboxWithApiPagination.apiError = ফলাফল লোড করা যায়নি। আবার চেষ্টা করতে ক্লিক করুন।
1
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
2
+ comboboxWithApiPagination.clearButtonAriaLabel = Clear input and selection
3
+ # Error message displayed resembling button that calls to action to reload the results
4
+ comboboxWithApiPagination.errorAction = Reload
5
+ # Aria-label text for the error icon in the loading results error message
6
+ comboboxWithApiPagination.errorIconLabel = Error
7
+ # Error message displayed as inline notice that informs the user that the options failed to load
8
+ comboboxWithApiPagination.errorMessage = Failed to load options
3
9
  # Visually hidden aria-label text for the loading spinner
4
10
  comboboxWithApiPagination.loadingAriaLabel = লোড করা হচ্ছে...
5
11
  # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
@@ -68,6 +74,16 @@ metadataEditor.addMetadataTemplate.customMetadataName = কাস্টম ম
68
74
  metadataEditor.addMetadataTemplate.search.placeholder = টেমপ্লেট খুঁজুন
69
75
  # Call to encourage user to add metadata templates
70
76
  metadataEditor.addMetadataTemplate.trigger.label = টেমপ্লেট যোগ করুন
77
+ # Label for value suggested by Box AI
78
+ metadataEditor.aiSuggestionField.aiSuggestionCaption = Box AI suggestion:
79
+ # Aria-label for AI suggestion options
80
+ metadataEditor.aiSuggestionField.aiSuggestionOptions = Options
81
+ # Label for appending the AI suggestion
82
+ metadataEditor.aiSuggestionField.appendLabel = সংযুক্ত করুন
83
+ # Label for clearing the current value and applying the AI suggestion
84
+ metadataEditor.aiSuggestionField.clearAndReplaceLabel = Clear and Replace
85
+ # Label for ignoring the AI suggestion
86
+ metadataEditor.aiSuggestionField.ignoreLabel = Ignore
71
87
  # Paragraph asking user are they sure that they want to delete the template
72
88
  metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = আপনি কি সত্যিই "{templateName}" মেটাডেটা টেমপ্লেট এবং এই ফাইল থেকে এটির সব মান মুছে ফেলতে চান?
73
89
  # Label informing how to confirm deletion of the template
package/i18n/da-DK.js CHANGED
@@ -1,8 +1,8 @@
1
1
  export default {
2
- "comboboxWithApiPagination.clearButtonAriaLabel": "Clear input and selection",
3
- "comboboxWithApiPagination.errorAction": "Reload",
4
- "comboboxWithApiPagination.errorIconLabel": "Error",
5
- "comboboxWithApiPagination.errorMessage": "Failed to load options",
2
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Ryd input og udvælgelse",
3
+ "comboboxWithApiPagination.errorAction": "Genindlæs",
4
+ "comboboxWithApiPagination.errorIconLabel": "Fejl",
5
+ "comboboxWithApiPagination.errorMessage": "Kunne ikke indlæse indstillinger",
6
6
  "comboboxWithApiPagination.loadingAriaLabel": "Indlæser...",
7
7
  "comboboxWithApiPagination.loadingMoreAriaLabel": "Indlæser mere...",
8
8
  "comboboxWithApiPagination.noResults": "Ingen resultater fundet",
@@ -39,7 +39,7 @@ export default {
39
39
  "metadataEditor.addMetadataTemplate.trigger.label": "Tilføj skabelon",
40
40
  "metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI suggestion:",
41
41
  "metadataEditor.aiSuggestionField.aiSuggestionOptions": "Options",
42
- "metadataEditor.aiSuggestionField.appendLabel": "Append",
42
+ "metadataEditor.aiSuggestionField.appendLabel": "Tilføj",
43
43
  "metadataEditor.aiSuggestionField.clearAndReplaceLabel": "Clear and Replace",
44
44
  "metadataEditor.aiSuggestionField.ignoreLabel": "Ignore",
45
45
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Er du sikker på, at du vil slette \"{templateName}\" metadataskabelon og alle dens værdier fra denne fil?",
@@ -88,6 +88,5 @@ export default {
88
88
  "metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Gem og Fortsæt",
89
89
  "metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Skjul tomme værdier",
90
90
  "metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Vis tomme værdier",
91
- "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Brugerdefineret metadata",
92
- "comboboxWithApiPagination.apiError": "Kunne ikke indlæse resultater. Klik for at prøve igen."
91
+ "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Brugerdefineret metadata"
93
92
  }
@@ -1,5 +1,11 @@
1
- # Error message displayed as combobox item when an API failed and the suggestions could not load
2
- comboboxWithApiPagination.apiError = Kunne ikke indlæse resultater. Klik for at prøve igen.
1
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
2
+ comboboxWithApiPagination.clearButtonAriaLabel = Ryd input og udvælgelse
3
+ # Error message displayed resembling button that calls to action to reload the results
4
+ comboboxWithApiPagination.errorAction = Genindlæs
5
+ # Aria-label text for the error icon in the loading results error message
6
+ comboboxWithApiPagination.errorIconLabel = Fejl
7
+ # Error message displayed as inline notice that informs the user that the options failed to load
8
+ comboboxWithApiPagination.errorMessage = Kunne ikke indlæse indstillinger
3
9
  # Visually hidden aria-label text for the loading spinner
4
10
  comboboxWithApiPagination.loadingAriaLabel = Indlæser...
5
11
  # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
@@ -68,6 +74,16 @@ metadataEditor.addMetadataTemplate.customMetadataName = Brugerdefineret metadata
68
74
  metadataEditor.addMetadataTemplate.search.placeholder = Søg efter skabeloner
69
75
  # Call to encourage user to add metadata templates
70
76
  metadataEditor.addMetadataTemplate.trigger.label = Tilføj skabelon
77
+ # Label for value suggested by Box AI
78
+ metadataEditor.aiSuggestionField.aiSuggestionCaption = Box AI suggestion:
79
+ # Aria-label for AI suggestion options
80
+ metadataEditor.aiSuggestionField.aiSuggestionOptions = Options
81
+ # Label for appending the AI suggestion
82
+ metadataEditor.aiSuggestionField.appendLabel = Tilføj
83
+ # Label for clearing the current value and applying the AI suggestion
84
+ metadataEditor.aiSuggestionField.clearAndReplaceLabel = Clear and Replace
85
+ # Label for ignoring the AI suggestion
86
+ metadataEditor.aiSuggestionField.ignoreLabel = Ignore
71
87
  # Paragraph asking user are they sure that they want to delete the template
72
88
  metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Er du sikker på, at du vil slette "{templateName}" metadataskabelon og alle dens værdier fra denne fil?
73
89
  # Label informing how to confirm deletion of the template
package/i18n/de-DE.js CHANGED
@@ -1,8 +1,8 @@
1
1
  export default {
2
- "comboboxWithApiPagination.clearButtonAriaLabel": "Clear input and selection",
3
- "comboboxWithApiPagination.errorAction": "Reload",
4
- "comboboxWithApiPagination.errorIconLabel": "Error",
5
- "comboboxWithApiPagination.errorMessage": "Failed to load options",
2
+ "comboboxWithApiPagination.clearButtonAriaLabel": "Eingabe und Auswahl löschen",
3
+ "comboboxWithApiPagination.errorAction": "Neu laden",
4
+ "comboboxWithApiPagination.errorIconLabel": "Fehler",
5
+ "comboboxWithApiPagination.errorMessage": "Optionen konnten nicht geladen werden",
6
6
  "comboboxWithApiPagination.loadingAriaLabel": "Laden …",
7
7
  "comboboxWithApiPagination.loadingMoreAriaLabel": "Mehr wird geladen ...",
8
8
  "comboboxWithApiPagination.noResults": "Keine Ergebnisse gefunden",
@@ -39,7 +39,7 @@ export default {
39
39
  "metadataEditor.addMetadataTemplate.trigger.label": "Vorlage hinzufügen",
40
40
  "metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI suggestion:",
41
41
  "metadataEditor.aiSuggestionField.aiSuggestionOptions": "Options",
42
- "metadataEditor.aiSuggestionField.appendLabel": "Append",
42
+ "metadataEditor.aiSuggestionField.appendLabel": "Anfügen",
43
43
  "metadataEditor.aiSuggestionField.clearAndReplaceLabel": "Clear and Replace",
44
44
  "metadataEditor.aiSuggestionField.ignoreLabel": "Ignore",
45
45
  "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "Möchten Sie die Metadaten-Vorlage „{templateName}“ und alle ihre Werte aus dieser Datei wirklich löschen?",
@@ -88,6 +88,5 @@ export default {
88
88
  "metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Speichern und fortfahren",
89
89
  "metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Leere Werte ausblenden",
90
90
  "metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Leere Werte anzeigen",
91
- "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Benutzerdefinierte Metadaten",
92
- "comboboxWithApiPagination.apiError": "Ergebnisse konnten nicht geladen werden. Klicken Sie auf den Link, um es erneut zu versuchen."
91
+ "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Benutzerdefinierte Metadaten"
93
92
  }
@@ -1,5 +1,11 @@
1
- # Error message displayed as combobox item when an API failed and the suggestions could not load
2
- comboboxWithApiPagination.apiError = Ergebnisse konnten nicht geladen werden. Klicken Sie auf den Link, um es erneut zu versuchen.
1
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
2
+ comboboxWithApiPagination.clearButtonAriaLabel = Eingabe und Auswahl löschen
3
+ # Error message displayed resembling button that calls to action to reload the results
4
+ comboboxWithApiPagination.errorAction = Neu laden
5
+ # Aria-label text for the error icon in the loading results error message
6
+ comboboxWithApiPagination.errorIconLabel = Fehler
7
+ # Error message displayed as inline notice that informs the user that the options failed to load
8
+ comboboxWithApiPagination.errorMessage = Optionen konnten nicht geladen werden
3
9
  # Visually hidden aria-label text for the loading spinner
4
10
  comboboxWithApiPagination.loadingAriaLabel = Laden …
5
11
  # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
@@ -68,6 +74,16 @@ metadataEditor.addMetadataTemplate.customMetadataName = Selbst definierte Metada
68
74
  metadataEditor.addMetadataTemplate.search.placeholder = Suchvorlagen
69
75
  # Call to encourage user to add metadata templates
70
76
  metadataEditor.addMetadataTemplate.trigger.label = Vorlage hinzufügen
77
+ # Label for value suggested by Box AI
78
+ metadataEditor.aiSuggestionField.aiSuggestionCaption = Box AI suggestion:
79
+ # Aria-label for AI suggestion options
80
+ metadataEditor.aiSuggestionField.aiSuggestionOptions = Options
81
+ # Label for appending the AI suggestion
82
+ metadataEditor.aiSuggestionField.appendLabel = Anfügen
83
+ # Label for clearing the current value and applying the AI suggestion
84
+ metadataEditor.aiSuggestionField.clearAndReplaceLabel = Clear and Replace
85
+ # Label for ignoring the AI suggestion
86
+ metadataEditor.aiSuggestionField.ignoreLabel = Ignore
71
87
  # Paragraph asking user are they sure that they want to delete the template
72
88
  metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Möchten Sie die Metadaten-Vorlage „{templateName}“ und alle ihre Werte aus dieser Datei wirklich löschen?
73
89
  # Label informing how to confirm deletion of the template
package/i18n/en-AU.js CHANGED
@@ -88,6 +88,5 @@ export default {
88
88
  "metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Save and Continue",
89
89
  "metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Hide empty values",
90
90
  "metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Show empty values",
91
- "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Custom Metadata",
92
- "comboboxWithApiPagination.apiError": "Couldn't load results. Click to try again."
91
+ "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Custom Metadata"
93
92
  }
@@ -1,5 +1,11 @@
1
- # Error message displayed as combobox item when an API failed and the suggestions could not load
2
- comboboxWithApiPagination.apiError = Couldn't load results. Click to try again.
1
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
2
+ comboboxWithApiPagination.clearButtonAriaLabel = Clear input and selection
3
+ # Error message displayed resembling button that calls to action to reload the results
4
+ comboboxWithApiPagination.errorAction = Reload
5
+ # Aria-label text for the error icon in the loading results error message
6
+ comboboxWithApiPagination.errorIconLabel = Error
7
+ # Error message displayed as inline notice that informs the user that the options failed to load
8
+ comboboxWithApiPagination.errorMessage = Failed to load options
3
9
  # Visually hidden aria-label text for the loading spinner
4
10
  comboboxWithApiPagination.loadingAriaLabel = Loading...
5
11
  # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
@@ -68,6 +74,16 @@ metadataEditor.addMetadataTemplate.customMetadataName = Custom Metadata
68
74
  metadataEditor.addMetadataTemplate.search.placeholder = Search templates
69
75
  # Call to encourage user to add metadata templates
70
76
  metadataEditor.addMetadataTemplate.trigger.label = Add template
77
+ # Label for value suggested by Box AI
78
+ metadataEditor.aiSuggestionField.aiSuggestionCaption = Box AI suggestion:
79
+ # Aria-label for AI suggestion options
80
+ metadataEditor.aiSuggestionField.aiSuggestionOptions = Options
81
+ # Label for appending the AI suggestion
82
+ metadataEditor.aiSuggestionField.appendLabel = Append
83
+ # Label for clearing the current value and applying the AI suggestion
84
+ metadataEditor.aiSuggestionField.clearAndReplaceLabel = Clear and Replace
85
+ # Label for ignoring the AI suggestion
86
+ metadataEditor.aiSuggestionField.ignoreLabel = Ignore
71
87
  # Paragraph asking user are they sure that they want to delete the template
72
88
  metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Are you sure you want to delete the "{templateName}" Metadata template, and all of its values from this file?
73
89
  # Label informing how to confirm deletion of the template
package/i18n/en-CA.js CHANGED
@@ -88,6 +88,5 @@ export default {
88
88
  "metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Save and Continue",
89
89
  "metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Hide empty values",
90
90
  "metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Show empty values",
91
- "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Custom Metadata",
92
- "comboboxWithApiPagination.apiError": "Couldn't load results. Click to try again."
91
+ "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Custom Metadata"
93
92
  }
@@ -1,5 +1,11 @@
1
- # Error message displayed as combobox item when an API failed and the suggestions could not load
2
- comboboxWithApiPagination.apiError = Couldn't load results. Click to try again.
1
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
2
+ comboboxWithApiPagination.clearButtonAriaLabel = Clear input and selection
3
+ # Error message displayed resembling button that calls to action to reload the results
4
+ comboboxWithApiPagination.errorAction = Reload
5
+ # Aria-label text for the error icon in the loading results error message
6
+ comboboxWithApiPagination.errorIconLabel = Error
7
+ # Error message displayed as inline notice that informs the user that the options failed to load
8
+ comboboxWithApiPagination.errorMessage = Failed to load options
3
9
  # Visually hidden aria-label text for the loading spinner
4
10
  comboboxWithApiPagination.loadingAriaLabel = Loading...
5
11
  # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
@@ -68,6 +74,16 @@ metadataEditor.addMetadataTemplate.customMetadataName = Custom Metadata
68
74
  metadataEditor.addMetadataTemplate.search.placeholder = Search templates
69
75
  # Call to encourage user to add metadata templates
70
76
  metadataEditor.addMetadataTemplate.trigger.label = Add template
77
+ # Label for value suggested by Box AI
78
+ metadataEditor.aiSuggestionField.aiSuggestionCaption = Box AI suggestion:
79
+ # Aria-label for AI suggestion options
80
+ metadataEditor.aiSuggestionField.aiSuggestionOptions = Options
81
+ # Label for appending the AI suggestion
82
+ metadataEditor.aiSuggestionField.appendLabel = Append
83
+ # Label for clearing the current value and applying the AI suggestion
84
+ metadataEditor.aiSuggestionField.clearAndReplaceLabel = Clear and Replace
85
+ # Label for ignoring the AI suggestion
86
+ metadataEditor.aiSuggestionField.ignoreLabel = Ignore
71
87
  # Paragraph asking user are they sure that they want to delete the template
72
88
  metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Are you sure you want to delete the "{templateName}" Metadata template, and all of its values from this file?
73
89
  # Label informing how to confirm deletion of the template
package/i18n/en-GB.js CHANGED
@@ -88,6 +88,5 @@ export default {
88
88
  "metadataEditor.unsavedChangesModal.saveAndContinueCTA": "Save and Continue",
89
89
  "metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "Hide empty values",
90
90
  "metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "Show empty values",
91
- "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Custom Metadata",
92
- "comboboxWithApiPagination.apiError": "Couldn't load results. Click to try again."
91
+ "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "Custom Metadata"
93
92
  }
@@ -1,5 +1,11 @@
1
- # Error message displayed as combobox item when an API failed and the suggestions could not load
2
- comboboxWithApiPagination.apiError = Couldn't load results. Click to try again.
1
+ # Aria label for the clear button visible at the end of the combobox. When clicked, it will clear all text in the input, as well as the current selection.
2
+ comboboxWithApiPagination.clearButtonAriaLabel = Clear input and selection
3
+ # Error message displayed resembling button that calls to action to reload the results
4
+ comboboxWithApiPagination.errorAction = Reload
5
+ # Aria-label text for the error icon in the loading results error message
6
+ comboboxWithApiPagination.errorIconLabel = Error
7
+ # Error message displayed as inline notice that informs the user that the options failed to load
8
+ comboboxWithApiPagination.errorMessage = Failed to load options
3
9
  # Visually hidden aria-label text for the loading spinner
4
10
  comboboxWithApiPagination.loadingAriaLabel = Loading...
5
11
  # Visually hidden aria-label text for the loading spinner show when loading more results from infinite scrolling list
@@ -68,6 +74,16 @@ metadataEditor.addMetadataTemplate.customMetadataName = Custom Metadata
68
74
  metadataEditor.addMetadataTemplate.search.placeholder = Search templates
69
75
  # Call to encourage user to add metadata templates
70
76
  metadataEditor.addMetadataTemplate.trigger.label = Add template
77
+ # Label for value suggested by Box AI
78
+ metadataEditor.aiSuggestionField.aiSuggestionCaption = Box AI suggestion:
79
+ # Aria-label for AI suggestion options
80
+ metadataEditor.aiSuggestionField.aiSuggestionOptions = Options
81
+ # Label for appending the AI suggestion
82
+ metadataEditor.aiSuggestionField.appendLabel = Append
83
+ # Label for clearing the current value and applying the AI suggestion
84
+ metadataEditor.aiSuggestionField.clearAndReplaceLabel = Clear and Replace
85
+ # Label for ignoring the AI suggestion
86
+ metadataEditor.aiSuggestionField.ignoreLabel = Ignore
71
87
  # Paragraph asking user are they sure that they want to delete the template
72
88
  metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph = Are you sure you want to delete the "{templateName}" Metadata template, and all of its values from this file?
73
89
  # Label informing how to confirm deletion of the template
@@ -1,93 +1,92 @@
1
1
  export default {
2
- "comboboxWithApiPagination.clearButtonAriaLabel": "Clear input and selection",
3
- "comboboxWithApiPagination.errorAction": "Reload",
4
- "comboboxWithApiPagination.errorIconLabel": "Error",
5
- "comboboxWithApiPagination.errorMessage": "Failed to load options",
6
- "comboboxWithApiPagination.loadingAriaLabel": "⟦萬萬 Ĺóàďîиĝ... 國國⟧",
7
- "comboboxWithApiPagination.loadingMoreAriaLabel": "⟦萬萬萬萬 Ŀøãďīлğ môгė... 國國國國⟧",
8
- "comboboxWithApiPagination.noResults": "⟦萬萬萬萬 Иó řêŝùļťş ƒōùиď 國國國國⟧",
9
- "groupSharedFeatures.metadataEditor.loading": "⟦萬萬 ĺóάďιпğ 國國⟧",
10
- "groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "⟦萬萬萬萬萬萬萬 Ĕŋτεѓ á ďǻŧĕ àƒţея {date} 國國國國國國國⟧",
11
- "groupSharedFeatures.metadataEditor.metadataEditorFields.append": "⟦萬 ĀΡΡĕήď 國⟧",
12
- "groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError": "⟦萬萬萬萬萬萬萬 Èņτеŗ ā ďąţê ьéƒôґë {date} 國國國國國國國⟧",
13
- "groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace": "⟦萬萬萬萬萬 Çľёåґ Âľľ & ҐéΡļά¢ε 國國國國國⟧",
14
- "groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate": "⟦萬萬萬萬萬 Çľëãѓ ŝеĺėċτеď ďãτе 國國國國國⟧",
15
- "groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue": "⟦萬萬萬萬萬 Ϊήνǻļĩď ƒįéĺď νàļúê 國國國國國⟧",
16
- "groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder": "⟦萬萬萬萬 Śêľεсţ νåľűē(ş) 國國國國⟧",
17
- "groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Τĥєяê åяé πő ãťťŕìвцτεŝ īл ŧĥĩŝ ţêmΡĺàτë. 國國國國國國國國國國國國⟧",
18
- "groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel": "⟦萬萬萬萬萬萬萬萬 ŐΡéή ċăļëňďàг ťŏ Ρι¢к å ďαŧε 國國國國國國國國⟧",
19
- "groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered": "⟦萬萬萬萬 Ŗеmõνє Ěπŧėŕεď 國國國國⟧",
20
- "groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered": "⟦萬萬萬萬 ЯеΡľάсê Èпťέŕεď 國國國國⟧",
21
- "groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate": "⟦萬萬萬萬 Ѕёĺëćť ŧĥē ďåťе 國國國國⟧",
22
- "groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder": "⟦萬萬萬萬 Ŝëĺё¢ť ä νàľŭè 國國國國⟧",
23
- "groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder": "⟦萬萬 Śęţ Văļŭè 國國⟧",
24
- "groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth": "⟦萬萬萬萬萬 Şẃîţċħ τó ŋē×ţ móйţħ 國國國國國⟧",
25
- "groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth": "⟦萬萬萬萬萬萬萬 Şώìτçħ ţσ Ρřéνїόũŝ mőņτĥ 國國國國國國國⟧",
26
- "groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "⟦萬萬萬萬萬萬萬萬 Ťöĝġľě ūΡďãŧé mόďê şεĺêçτοѓ 國國國國國國國國⟧",
27
- "groupSharedFeatures.metadataEditor.metadataEditorFields.with": "⟦萬 Щιτħ 國⟧",
28
- "groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "⟦ Àďď ⟧",
29
- "groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "⟦萬 Ćãη¢ėĺ 國⟧",
30
- "groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "⟦萬 Ĉľσŝé 國⟧",
31
- "groupSharedFeatures.metadataEditor.metadataTemplateSelector.header": "⟦萬萬萬萬萬萬萬 Ŝēľéčτ Мёŧàďāťα ΤěmΡľâŧє 國國國國國國國⟧",
32
- "groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel": "⟦萬 Čľέàŕ 國⟧",
33
- "groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel": "⟦萬萬萬萬萬 Ŝέǻяċĥ αľļ ťèmΡĺāτéś 國國國國國⟧",
34
- "groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "⟦萬萬萬萬萬 Śеąŗçĥ âĺļ ťеmΡļãτéŝ 國國國國國⟧",
35
- "groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "⟦萬萬萬萬萬 Şëļèĉŧ á ΤёmΡľǻţĕ 國國國國國⟧",
36
- "groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ċôůľď ήóτ ļøαď ţέmΡĺáţĕѕ. Ťŕý åğäìи ļãţéŕ 國國國國國國國國國國國國⟧",
37
- "metadataEditor.addMetadataTemplate.customMetadataName": "⟦萬萬萬萬 Čũŝţôm Μĕŧãďατǻ 國國國國⟧",
38
- "metadataEditor.addMetadataTemplate.search.placeholder": "⟦萬萬萬萬 Ѕёàяçн ţęmΡļāţėѕ 國國國國⟧",
39
- "metadataEditor.addMetadataTemplate.trigger.label": "⟦萬萬萬 Άďď τёmΡĺäŧє 國國國⟧",
40
- "metadataEditor.aiSuggestionField.aiSuggestionCaption": "Box AI suggestion:",
41
- "metadataEditor.aiSuggestionField.aiSuggestionOptions": "Options",
42
- "metadataEditor.aiSuggestionField.appendLabel": "Append",
43
- "metadataEditor.aiSuggestionField.clearAndReplaceLabel": "Clear and Replace",
44
- "metadataEditor.aiSuggestionField.ignoreLabel": "Ignore",
45
- "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Αŗё ŷòù ѕüґê ÿòũ ẁäπţ ťò ďεļëτê ţĥė \"{templateName}\" Мēτåďāτα ťеmΡĺäτê, áйď åľĺ ôƒ ιτŝ νåľųеş ƒŗõm ťнįŝ ƒįľê? 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
46
- "metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel": "⟦萬萬萬萬萬萬 ŦўΡε \"{templateName}\" ŧő čöήƒíŗm 國國國國國國⟧",
47
- "metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Óπ¢ė ďëľέťєď, Μėταďãτα νąĺūĕś ĉāńήõţ вê ґёѕŧοгéď. 國國國國國國國國國國國國國國⟧",
48
- "metadataEditor.editInstance.deleteConfirmationModal.cancelButton": "⟦萬 Ċáйçêļ 國⟧",
49
- "metadataEditor.editInstance.deleteConfirmationModal.confirmButton": "⟦萬萬 Čöпƒįгm 國國⟧",
50
- "metadataEditor.editInstance.deleteConfirmationModal.customMedatata": "⟦萬萬萬萬 Ćцŝτőm Μėτàďáŧα 國國國國⟧",
51
- "metadataEditor.editInstance.deleteConfirmationModal.dismissButton": "⟦萬萬 Ďĩśmіśѕ 國國⟧",
52
- "metadataEditor.editInstance.deleteConfirmationModal.header": "⟦萬萬萬萬 Ďéļεŧę \"{templateName}\" 國國國國⟧",
53
- "metadataEditor.fileLevel.emptyState.boxAiEnabled.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ūşě ťнέ Ρõŵęŕ öƒ Βòх ÄÎ ţο qůìĉкľУ ćåΡţūŗё ďö¢ůměπť mέţàďāţã, ωїτĥ ĕνёŗ-įŋсяēǻşїйġ âćсŭгąċŷ. 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
54
- "metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "⟦萬萬萬萬萬萬萬萬 Âúτõƒϊľļ Μëτãďάťą ẃïťн ßö× ΑÍ 國國國國國國國國⟧",
55
- "metadataEditor.fileLevel.emptyState.default.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Ãďď Мĕţάďãťâ ŧό Уøμѓ ƒîľë ŧô śùΡΡόѓτ ьùşίηëşŝ øΡĕŕāτϊσňş, ώŏґĸƒļøώŝ, ǻňď mőŕє! 國國國國國國國國國國國國國國國國國國國國國國國⟧",
56
- "metadataEditor.fileLevel.emptyState.default.heading": "⟦萬萬萬萬萬萬 Äďď Μеťāďâτà ŢєmΡľαŧěŝ 國國國國國國⟧",
57
- "metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel": "⟦萬萬萬 Čľêãя ѕέǻř¢ħ 國國國⟧",
58
- "metadataEditor.filterDropdownMenuSearch.noResultsFound": "⟦萬萬萬萬 Ŋο řêśůļťѕ ƒøųлď 國國國國⟧",
59
- "metadataEditor.instanceLevel.emptyState.emptyValues.Cta": "⟦萬萬萬萬 Ŝėє єmΡťỳ νǻľųĕŝ 國國國國⟧",
60
- "metadataEditor.instanceLevel.emptyState.heading": "⟦萬萬萬萬萬萬萬萬 Ťнїŝ τêmΡľăťê ħàş ŋо νάļцėś 國國國國國國國國⟧",
61
- "metadataEditor.instanceLevel.emptyState.noAttributes.heading": "⟦萬萬萬萬萬萬萬萬萬 Ţĥìѕ ťęmΡľâťë ħáś лő äţτŗĩьцťёś 國國國國國國國國國⟧",
62
- "metadataEditor.instanceLevel.emptyState.noEmptyValues.body": "⟦萬萬萬萬萬萬萬萬 Ťнíѕ τèmΡļąτе ħàś ňο νāľúéś 國國國國國國國國⟧",
63
- "metadataEditor.managerLevel.emptyState.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Βŕоŵşê σя şėāřсħ ƒôя ýσűŗ ìţêmŝ ťó αΡΡļỳ ãʼnď еďϊŧ mëţäďāτă 國國國國國國國國國國國國國國國國國⟧",
64
- "metadataEditor.managerLevel.emptyState.heading": "⟦萬萬萬萬萬萬萬 ÅΡΡľУ Мęŧáďǻťά ΤєmΡľáťéѕ 國國國國國國國⟧",
65
- "metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA": "⟦ Äďď ⟧",
66
- "metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel": "⟦萬萬萬萬 Ąŧŧŕίьùţέ Ŋâmě 國國國國⟧",
67
- "metadataEditor.metadataEditor.customIntanceNewField.cancelCTA": "⟦萬 Ćăπ¢ëĺ 國⟧",
68
- "metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey": "⟦萬萬萬萬萬 Ќëỳ âĺŗèąďỳ ёхìşτś. 國國國國國⟧",
69
- "metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey": "⟦萬萬萬萬萬萬萬萬 Κėўş çάňйσŧ ьêĝіη ωìţн ã $. 國國國國國國國國⟧",
70
- "metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder": "⟦萬萬萬萬萬 ë.ğ. Øŕďёґ Ñúmвёѓ 國國國國國⟧",
71
- "metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired": "⟦萬萬萬萬 Ќεý ϊŝ гέqùіŗёď 國國國國⟧",
72
- "metadataEditor.metadataEditor.customIntanceNewField.valueLabel": "⟦萬 Vąľűє 國⟧",
73
- "metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder": "⟦萬萬 ε.ğ. 42 國國⟧",
74
- "metadataEditor.metadataInstanceEditor.customInstance.addAttribute": "⟦萬萬萬萬 + Ąďď Åτţяιьµţê 國國國國⟧",
75
- "metadataEditor.metadataInstanceEditor.customInstance.removeAttribute": "⟦萬 Ŕémőνè 國⟧",
76
- "metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder": "⟦萬萬 Ѕëţ νâļùё 國國⟧",
77
- "metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton": "⟦萬 Čäπĉєļ 國⟧",
78
- "metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton": "⟦萬 Ðεĺέţë 國⟧",
79
- "metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel": "⟦萬萬 Ŀσâďιлġ... 國國⟧",
80
- "metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton": "⟦萬 Śåνе 國⟧",
81
- "metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton": "⟦萬萬 Âŭτőƒīļľ 國國⟧",
82
- "metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle": "⟦萬萬萬萬 Ċúśτöm Μëţǻďąţą 國國國國⟧",
83
- "metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel": "⟦萬萬 Ĺόāďїηğ... 國國⟧",
84
- "metadataEditor.unsavedChangesModal.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Мēťãďàτā ŧєmΡľăτέ(ŝ) ĥανέ űňśåνёď ċнáʼnġêѕ. Ήσẁ ẃòűĺď ŷöů ĺïкę τó Ρѓóčĕēď? 國國國國國國國國國國國國國國國國國國國國國⟧",
85
- "metadataEditor.unsavedChangesModal.closeLabel": "⟦萬 Ĉļόѕě 國⟧",
86
- "metadataEditor.unsavedChangesModal.dismissCTA": "⟦萬 Ćāп¢éľ 國⟧",
87
- "metadataEditor.unsavedChangesModal.header": "⟦萬萬萬萬 Űņѕåνеď Çнαŋĝêş 國國國國⟧",
88
- "metadataEditor.unsavedChangesModal.saveAndContinueCTA": "⟦萬萬萬萬萬 Ŝăνę άйď Çőητíήµę 國國國國國⟧",
89
- "metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "⟦萬萬萬萬萬 Ĥîďé êmΡťỳ νàļùèѕ 國國國國國⟧",
90
- "metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "⟦萬萬萬萬萬 Şĥоω єmΡτў νãľũέş 國國國國國⟧",
91
- "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "⟦萬萬萬萬 Čűśτőm Μéŧαďäŧä 國國國國⟧",
92
- "comboboxWithApiPagination.apiError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Čσцĺďň'ţ ļøàď яēśũļŧŝ. Çĺїćκ ťŏ τґŷ ãĝàĭή. 國國國國國國國國國國國國⟧"
2
+ "comboboxWithApiPagination.clearButtonAriaLabel": "⟦萬萬萬萬萬萬萬 Ćĺéąŕ ìňΡůţ ąņď ѕεļέсτīŏй 國國國國國國國⟧",
3
+ "comboboxWithApiPagination.errorAction": "⟦萬 Řёľôåď 國⟧",
4
+ "comboboxWithApiPagination.errorIconLabel": "⟦萬 Ěяŕóг 國⟧",
5
+ "comboboxWithApiPagination.errorMessage": "⟦萬萬萬萬萬萬 ₣ǻїľєď ťö ļοăď ôΡτįσйś 國國國國國國⟧",
6
+ "comboboxWithApiPagination.loadingAriaLabel": "⟦萬萬 Ĺòăďĩηğ... 國國⟧",
7
+ "comboboxWithApiPagination.loadingMoreAriaLabel": "⟦萬萬萬萬 Ľόαďĩηĝ mŏгę... 國國國國⟧",
8
+ "comboboxWithApiPagination.noResults": "⟦萬萬萬萬 Νō ґęşűļτş ƒøúņď 國國國國⟧",
9
+ "groupSharedFeatures.metadataEditor.loading": "⟦萬萬 ĺòàďιлğ 國國⟧",
10
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.afterDateValidationError": "⟦萬萬萬萬萬萬萬 Єʼnτєґ α ďâŧê áƒτег {date} 國國國國國國國⟧",
11
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.append": "⟦萬 ÄΡΡéиď 國⟧",
12
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.beforeDateValidationError": "⟦萬萬萬萬萬萬萬 Ęпţέŕ ǻ ďăŧë ьėƒόřĕ {date} 國國國國國國國⟧",
13
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.clearAndReplace": "⟦萬萬萬萬萬 Čľεâґ Áļļ & ŔéΡľàсě 國國國國國⟧",
14
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.clearSelectedDate": "⟦萬萬萬萬萬 Ćĺέāŕ ѕέļèćŧéď ďąτĕ 國國國國國⟧",
15
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.floatFieldInvalidValue": "⟦萬萬萬萬萬 Íήνâĺîď ƒíęĺď νäľцε 國國國國國⟧",
16
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.multiselectPlaceholder": "⟦萬萬萬萬 Ŝëļεċŧ νâļũé(ś) 國國國國⟧",
17
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.noTemplateAtributesError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ťħêŗе ăřĕ ʼnó äŧŧŗïьūτėş ïŋ τĥïŝ ţеmΡĺâţе. 國國國國國國國國國國國國⟧",
18
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.openCalendarLabel": "⟦萬萬萬萬萬萬萬萬 ΌΡėй ċàļēиďäя τö Ριċκ â ďåτė 國國國國國國國國⟧",
19
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.removeEntered": "⟦萬萬萬萬 Γĕmòνе Епŧĕѓěď 國國國國⟧",
20
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.replaceEntered": "⟦萬萬萬萬 ЯёΡľáсę Ēňţёѓēď 國國國國⟧",
21
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.selectDate": "⟦萬萬萬萬 Ŝέľє¢ŧ ŧĥě ďαŧё 國國國國⟧",
22
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.selectValuePlaceholder": "⟦萬萬萬萬 Śёļėсŧ ã νąľцě 國國國國⟧",
23
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.setValuePlaceholder": "⟦萬萬 Şęţ Vαĺũε 國國⟧",
24
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.switchToNextMonth": "⟦萬萬萬萬萬 Şώіŧčĥ το ńêхť møпťĥ 國國國國國⟧",
25
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.switchToPreviousMonth": "⟦萬萬萬萬萬萬萬 Şшïŧĉн τŏ Ρřèνíòúѕ mőŋťħ 國國國國國國國⟧",
26
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.toggleUpdateModeSelectiorAriaLabel": "⟦萬萬萬萬萬萬萬萬 Ťöġġļę úΡďâţė mőďė śęľéĉţôŗ 國國國國國國國國⟧",
27
+ "groupSharedFeatures.metadataEditor.metadataEditorFields.with": "⟦萬 Ẃíťн 國⟧",
28
+ "groupSharedFeatures.metadataEditor.metadataTemplateSelector.add": "⟦ Ąďď ⟧",
29
+ "groupSharedFeatures.metadataEditor.metadataTemplateSelector.cancel": "⟦萬 Ċαň¢єļ 國⟧",
30
+ "groupSharedFeatures.metadataEditor.metadataTemplateSelector.close": "⟦萬 Ćľόşē 國⟧",
31
+ "groupSharedFeatures.metadataEditor.metadataTemplateSelector.header": "⟦萬萬萬萬萬萬萬 Ŝέľęçŧ Μèţăďãťă ŦεmΡļáťє 國國國國國國國⟧",
32
+ "groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputClearAriaLabel": "⟦萬 Ćļєǻŕ 國⟧",
33
+ "groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputIconAriaLabel": "⟦萬萬萬萬萬 Śеąř¢ħ ąĺľ ţēmΡĺąťέś 國國國國國⟧",
34
+ "groupSharedFeatures.metadataEditor.metadataTemplateSelector.searchInputPlaceholder": "⟦萬萬萬萬萬 Ŝєāřçħ άľļ τêmΡļăτеś 國國國國國⟧",
35
+ "groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplate": "⟦萬萬萬萬萬 Ѕёļє¢ŧ â ŢέmΡĺàτе 國國國國國⟧",
36
+ "groupSharedFeatures.metadataEditor.metadataTemplateSelector.selectTemplateError": "⟦萬萬萬萬萬萬萬萬萬萬萬萬 Ćòùĺď ήôτ ľóąď ťėmΡĺãţěş. Ţґỳ ǻġāįņ ľáţεґ 國國國國國國國國國國國國⟧",
37
+ "metadataEditor.addMetadataTemplate.customMetadataName": "⟦萬萬萬萬 Çŭśťσm Мēŧàďǻţā 國國國國⟧",
38
+ "metadataEditor.addMetadataTemplate.search.placeholder": "⟦萬萬萬萬 Ŝêάŕсĥ ŧêmΡļαţėѕ 國國國國⟧",
39
+ "metadataEditor.addMetadataTemplate.trigger.label": "⟦萬萬萬 Åďď ţĕmΡļäťè 國國國⟧",
40
+ "metadataEditor.aiSuggestionField.aiSuggestionCaption": "⟦萬萬萬萬萬 Βôх ÄĬ ѕúĝğèśŧîôń: 國國國國國⟧",
41
+ "metadataEditor.aiSuggestionField.aiSuggestionOptions": "⟦萬萬 ÔΡťіøήş 國國⟧",
42
+ "metadataEditor.aiSuggestionField.appendLabel": "⟦萬 ÂΡΡèлď 國⟧",
43
+ "metadataEditor.aiSuggestionField.clearAndReplaceLabel": "⟦萬萬萬萬萬 Çļёάѓ áήď ҐέΡľǻсë 國國國國國⟧",
44
+ "metadataEditor.aiSuggestionField.ignoreLabel": "⟦萬 Ìġńоřě 國⟧",
45
+ "metadataEditor.editInstance.deleteConfirmationModal.body.firstParagraph": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Āŗє γоū śũяё γőŭ ŵāŋŧ ťο ďêļêŧê ťħе \"{templateName}\" Мęτáďâťá ŧëmΡĺάţε, åňď äĺĺ öƒ îţѕ νâĺūёŝ ƒřôm ţħĭŝ ƒіļе? 國國國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
46
+ "metadataEditor.editInstance.deleteConfirmationModal.body.inputFieldLabel": "⟦萬萬萬萬萬萬 ŦУΡê \"{templateName}\" ŧό çоŋƒĩгm 國國國國國國⟧",
47
+ "metadataEditor.editInstance.deleteConfirmationModal.body.secondParagraph": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Øňċè ďēĺêţéď, Μëťãďâťă νǻľüëŝ çǻилŏτ вě ѓēŝτōгėď. 國國國國國國國國國國國國國國⟧",
48
+ "metadataEditor.editInstance.deleteConfirmationModal.cancelButton": "⟦萬 Ćâйçëļ 國⟧",
49
+ "metadataEditor.editInstance.deleteConfirmationModal.confirmButton": "⟦萬萬 Ćőйƒíяm 國國⟧",
50
+ "metadataEditor.editInstance.deleteConfirmationModal.customMedatata": "⟦萬萬萬萬 Ĉúŝτòm Мěŧάďãţά 國國國國⟧",
51
+ "metadataEditor.editInstance.deleteConfirmationModal.dismissButton": "⟦萬萬 Ðϊѕmïѕş 國國⟧",
52
+ "metadataEditor.editInstance.deleteConfirmationModal.header": "⟦萬萬萬萬 Ðēľĕťė \"{templateName}\" 國國國國⟧",
53
+ "metadataEditor.fileLevel.emptyState.boxAiEnabled.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Úŝė τħĕ Ρŏẃéŕ ŏƒ Бö× ĂÎ ťø qŭίсķĺγ сãΡťūŕè ďô¢ůmėňţ mёťãďάţα, ẃīťħ еνėѓ-îпċřęαŝϊņĝ ãćčŭяǻćý. 國國國國國國國國國國國國國國國國國國國國國國國國國國國⟧",
54
+ "metadataEditor.fileLevel.emptyState.boxAiEnabled.heading": "⟦萬萬萬萬萬萬萬萬 Àűŧòƒιĺľ Меťâďåτą ώĭτħ Βø× ĄĬ 國國國國國國國國⟧",
55
+ "metadataEditor.fileLevel.emptyState.default.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Åďď Мēŧăďàţâ ţο ŷŏüѓ ƒіļê ţō ѕùΡΡσяŧ вüŝϊŋëŝŝ ôΡěŕáťіøйś, шøѓķƒĺόŵś, äʼnď møґέ! 國國國國國國國國國國國國國國國國國國國國國國國⟧",
56
+ "metadataEditor.fileLevel.emptyState.default.heading": "⟦萬萬萬萬萬萬 Åďď Мĕţāďäτâ ŤεmΡļαťēś 國國國國國國⟧",
57
+ "metadataEditor.filterDropdownMenuSearch.iconButtonAriaLabel": "⟦萬萬萬 Ċĺєαѓ ѕєãŕ¢ĥ 國國國⟧",
58
+ "metadataEditor.filterDropdownMenuSearch.noResultsFound": "⟦萬萬萬萬 Ňо řēśµĺŧѕ ƒöûлď 國國國國⟧",
59
+ "metadataEditor.instanceLevel.emptyState.emptyValues.Cta": "⟦萬萬萬萬 Śėĕ ęmΡťý νăľùĕş 國國國國⟧",
60
+ "metadataEditor.instanceLevel.emptyState.heading": "⟦萬萬萬萬萬萬萬萬 Ŧĥĩş ťëmΡļąţё нäś лõ νάļųéş 國國國國國國國國⟧",
61
+ "metadataEditor.instanceLevel.emptyState.noAttributes.heading": "⟦萬萬萬萬萬萬萬萬萬 Ŧнíş ŧеmΡļǻţе нãş ńõ ãţŧŕїьųτеş 國國國國國國國國國⟧",
62
+ "metadataEditor.instanceLevel.emptyState.noEmptyValues.body": "⟦萬萬萬萬萬萬萬萬 Τĥïŝ ŧєmΡļąťë ĥãş лŏ νäĺüęş 國國國國國國國國⟧",
63
+ "metadataEditor.managerLevel.emptyState.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 βѓσщśĕ όŕ ѕĕăгćн ƒôŕ ÿοűѓ ϊťémŝ ŧò άΡΡľÿ àņď ёďîτ mеţäďàτą 國國國國國國國國國國國國國國國國國⟧",
64
+ "metadataEditor.managerLevel.emptyState.heading": "⟦萬萬萬萬萬萬萬 ΑΡΡļУ Μεŧàďǻťą ΤěmΡļαŧéŝ 國國國國國國國⟧",
65
+ "metadataEditor.metadataEditor.customIntanceNewField.addNewFieldCTA": "⟦ Αďď ⟧",
66
+ "metadataEditor.metadataEditor.customIntanceNewField.attributeNameLabel": "⟦萬萬萬萬 Âŧτŕїьúťę Νâmё 國國國國⟧",
67
+ "metadataEditor.metadataEditor.customIntanceNewField.cancelCTA": "⟦萬 Çâňĉέĺ 國⟧",
68
+ "metadataEditor.metadataEditor.customIntanceNewField.customErrorDuplicateKey": "⟦萬萬萬萬萬 Ќĕγ åľřёǻďý ё×íśţŝ. 國國國國國⟧",
69
+ "metadataEditor.metadataEditor.customIntanceNewField.customErrorInternalKey": "⟦萬萬萬萬萬萬萬萬 Ќęγş çαπпőţ ьēğίή ώίŧн â $. 國國國國國國國國⟧",
70
+ "metadataEditor.metadataEditor.customIntanceNewField.customKeyPlaceholder": "⟦萬萬萬萬萬 ë.ĝ. Òŕďēґ Йŭmвεř 國國國國國⟧",
71
+ "metadataEditor.metadataEditor.customIntanceNewField.keyFieldRequired": "⟦萬萬萬萬 ĶėУ ĭŝ ŗêqűířеď 國國國國⟧",
72
+ "metadataEditor.metadataEditor.customIntanceNewField.valueLabel": "⟦萬 Väļŭё 國⟧",
73
+ "metadataEditor.metadataEditor.customIntanceNewField.valuePlaceholder": "⟦萬萬 ё.ğ. 42 國國⟧",
74
+ "metadataEditor.metadataInstanceEditor.customInstance.addAttribute": "⟦萬萬萬萬 + Ǻďď Åτťřіьμτě 國國國國⟧",
75
+ "metadataEditor.metadataInstanceEditor.customInstance.removeAttribute": "⟦萬 Γêmόνê 國⟧",
76
+ "metadataEditor.metadataInstanceEditor.customInstance.setValuePlaceholder": "⟦萬萬 Ŝēť νâľűē 國國⟧",
77
+ "metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.cancelButton": "⟦萬 Čãňćèļ 國⟧",
78
+ "metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.deleteButton": "⟦萬 Ďěĺêτе 國⟧",
79
+ "metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.loadingAriaLabel": "⟦萬萬 Ľόàďĭηġ... 國國⟧",
80
+ "metadataEditor.metadataInstanceEditor.metadataInstanceFormFooter.saveButton": "⟦萬 Ѕανè 國⟧",
81
+ "metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.autofillButton": "⟦萬萬 Ăũťòƒïļļ 國國⟧",
82
+ "metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.customInstanceTitle": "⟦萬萬萬萬 Ċųşŧőm Μêťâďąťα 國國國國⟧",
83
+ "metadataEditor.metadataInstanceEditor.metadataInstanceFormHeader.loadingButtonAriaLabel": "⟦萬萬 Ľôąďιņġ... 國國⟧",
84
+ "metadataEditor.unsavedChangesModal.body": "⟦萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬萬 Мëŧåďāŧä ţèmΡľăţε(ś) ĥáνε ůлśâνęď сħάиğëş. Ήøщ ώõüĺď ŷôŭ ľíκё ŧõ Ρřόċєěď? 國國國國國國國國國國國國國國國國國國國國國⟧",
85
+ "metadataEditor.unsavedChangesModal.closeLabel": "⟦萬 Ĉĺοşє 國⟧",
86
+ "metadataEditor.unsavedChangesModal.dismissCTA": "⟦萬 Ċąпсєĺ 國⟧",
87
+ "metadataEditor.unsavedChangesModal.header": "⟦萬萬萬萬 Ųʼnŝǻνëď Ćħαńġеŝ 國國國國⟧",
88
+ "metadataEditor.unsavedChangesModal.saveAndContinueCTA": "⟦萬萬萬萬萬 Şäνę àήď Ćôήţīйμė 國國國國國⟧",
89
+ "metadataEditor.viewInstance.metadataInstanceFooter.hideEmptyValuesCTA": "⟦萬萬萬萬萬 Ħĩďě ēmΡŧУ νâĺùèś 國國國國國⟧",
90
+ "metadataEditor.viewInstance.metadataInstanceFooter.showEmptyValuesCTA": "⟦萬萬萬萬萬 Şнσẁ εmΡţŷ νǻļüęѕ 國國國國國⟧",
91
+ "metadataEditor.viewInstance.metadataInstanceHeader.customMetadataTitle": "⟦萬萬萬萬 Čμŝţöm Меτàďàŧá 國國國國⟧"
93
92
  }