@kaizen/components 2.0.5 → 2.0.6

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 (98) hide show
  1. package/dist/cjs/src/RichTextEditor/RichTextEditor/RichTextEditor.cjs +9 -24
  2. package/dist/cjs/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss.cjs +1 -1
  3. package/dist/cjs/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.cjs +51 -0
  4. package/dist/cjs/src/RichTextEditor/RichTextEditor/utils/controlmap.cjs +44 -10
  5. package/dist/cjs/src/SingleSelect/SingleSelect.cjs +2 -0
  6. package/dist/cjs/src/Tile/InformationTile/InformationTile.cjs +2 -0
  7. package/dist/cjs/src/Tile/MultiActionTile/MultiActionTile.cjs +2 -0
  8. package/dist/cjs/src/Tile/TileGrid/TileGrid.cjs +2 -0
  9. package/dist/esm/src/RichTextEditor/RichTextEditor/RichTextEditor.mjs +10 -25
  10. package/dist/esm/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss.mjs +1 -1
  11. package/dist/esm/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.mjs +43 -0
  12. package/dist/esm/src/RichTextEditor/RichTextEditor/utils/controlmap.mjs +44 -10
  13. package/dist/esm/src/SingleSelect/SingleSelect.mjs +2 -0
  14. package/dist/esm/src/Tile/InformationTile/InformationTile.mjs +2 -0
  15. package/dist/esm/src/Tile/MultiActionTile/MultiActionTile.mjs +2 -0
  16. package/dist/esm/src/Tile/TileGrid/TileGrid.mjs +2 -0
  17. package/dist/styles.css +7 -12
  18. package/dist/types/RichTextEditor/RichTextEditor/RichTextEditor.d.ts +2 -2
  19. package/dist/types/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.d.ts +12 -0
  20. package/dist/types/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/index.d.ts +1 -0
  21. package/dist/types/RichTextEditor/RichTextEditor/utils/controlmap.d.ts +1 -1
  22. package/dist/types/SingleSelect/SingleSelect.d.ts +2 -0
  23. package/dist/types/Tile/InformationTile/InformationTile.d.ts +2 -0
  24. package/dist/types/Tile/MultiActionTile/MultiActionTile.d.ts +2 -0
  25. package/dist/types/Tile/TileGrid/TileGrid.d.ts +2 -0
  26. package/locales/ar.json +37 -1
  27. package/locales/bg.json +37 -1
  28. package/locales/cs.json +37 -1
  29. package/locales/cy.json +37 -1
  30. package/locales/da.json +37 -1
  31. package/locales/de.json +37 -1
  32. package/locales/el.json +37 -1
  33. package/locales/en-GB.json +37 -1
  34. package/locales/en.json +37 -1
  35. package/locales/es-419.json +37 -1
  36. package/locales/es.json +37 -1
  37. package/locales/et.json +37 -1
  38. package/locales/fi.json +37 -1
  39. package/locales/fr-CA.json +37 -1
  40. package/locales/fr.json +37 -1
  41. package/locales/he.json +37 -1
  42. package/locales/hi.json +37 -1
  43. package/locales/ht.json +37 -1
  44. package/locales/hu.json +37 -1
  45. package/locales/id.json +37 -1
  46. package/locales/it.json +37 -1
  47. package/locales/ja.json +37 -1
  48. package/locales/km-KH.json +37 -1
  49. package/locales/ko.json +37 -1
  50. package/locales/lt.json +37 -1
  51. package/locales/lv.json +37 -1
  52. package/locales/mi.json +37 -1
  53. package/locales/ms.json +37 -1
  54. package/locales/nb.json +37 -1
  55. package/locales/nl.json +37 -1
  56. package/locales/pl.json +37 -1
  57. package/locales/pt-BR.json +37 -1
  58. package/locales/pt.json +37 -1
  59. package/locales/ro.json +37 -1
  60. package/locales/ru.json +37 -1
  61. package/locales/si-LK.json +37 -1
  62. package/locales/sk.json +37 -1
  63. package/locales/sr.json +37 -1
  64. package/locales/sv.json +37 -1
  65. package/locales/th.json +37 -1
  66. package/locales/tl.json +37 -1
  67. package/locales/tr.json +37 -1
  68. package/locales/uk.json +37 -1
  69. package/locales/vi.json +37 -1
  70. package/locales/zh-TW.json +37 -1
  71. package/locales/zh.json +37 -1
  72. package/package.json +1 -1
  73. package/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss +8 -20
  74. package/src/RichTextEditor/RichTextEditor/RichTextEditor.spec.tsx +4 -4
  75. package/src/RichTextEditor/RichTextEditor/RichTextEditor.tsx +12 -30
  76. package/src/RichTextEditor/RichTextEditor/subcomponents/Toolbar/Toolbar.module.scss +0 -1
  77. package/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.tsx +62 -0
  78. package/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/index.ts +1 -0
  79. package/src/RichTextEditor/RichTextEditor/utils/controlmap.tsx +46 -9
  80. package/src/RichTextEditor/utils/commands/fixtures/data.json +1 -1
  81. package/src/RichTextEditor/utils/commands/listIsActive.spec.ts +2 -2
  82. package/src/SingleSelect/SingleSelect.tsx +2 -0
  83. package/src/SingleSelect/_docs/SingleSelect--api-specification.mdx +4 -2
  84. package/src/SingleSelect/_docs/SingleSelect--usage-guidelines.mdx +10 -2
  85. package/src/SingleSelect/_docs/SingleSelect.stickersheet.stories.tsx +1 -1
  86. package/src/SingleSelect/_docs/SingleSelect.stories.tsx +1 -1
  87. package/src/Tile/InformationTile/InformationTile.tsx +2 -0
  88. package/src/Tile/InformationTile/_docs/InformationTile.mdx +3 -1
  89. package/src/Tile/InformationTile/_docs/InformationTile.stickersheet.stories.tsx +1 -1
  90. package/src/Tile/InformationTile/_docs/InformationTile.stories.tsx +1 -1
  91. package/src/Tile/MultiActionTile/MultiActionTile.tsx +2 -0
  92. package/src/Tile/MultiActionTile/_docs/MultiActionTile.mdx +3 -1
  93. package/src/Tile/MultiActionTile/_docs/MultiActionTile.stickersheet.stories.tsx +1 -1
  94. package/src/Tile/MultiActionTile/_docs/MultiActionTile.stories.tsx +1 -1
  95. package/src/Tile/TileGrid/TileGrid.tsx +2 -0
  96. package/src/Tile/TileGrid/_docs/TileGrid.mdx +3 -1
  97. package/src/Tile/TileGrid/_docs/TileGrid.stickersheet.stories.tsx +1 -1
  98. package/src/Tile/TileGrid/_docs/TileGrid.stories.tsx +1 -1
package/locales/fi.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Tyhjennä haku"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Lihavoitu"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Luettelo"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Pienennä sisennystä"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Lisää sisennystä"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Kursiivi"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "Linkki"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Numeroitu luettelo"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Tekstin muotoilu"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Alleviivaa"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "ota yhteyttä tukeen,"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Lisätoimet"
198
234
  }
199
- }
235
+ }
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Supprimer la recherche"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Gras"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Liste à puces"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Diminuer l’indentation"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Augmenter l’indentation"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Italique"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "Lien"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Liste numérotée"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Formatage du texte"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Souligner"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "Contactez l'assistance"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Actions supplémentaires"
198
234
  }
199
- }
235
+ }
package/locales/fr.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Effacer la recherche"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Gras"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Liste à puces"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Diminuer l’indentation"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Augmenter l’indentation"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Italique"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "Lien"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Liste numérotée"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Formatage du texte"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Souligner"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "contactez l'assistance"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Actions supplémentaires"
198
234
  }
199
- }
235
+ }
package/locales/he.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "ניקוי חיפוש"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "מודגש"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "רשימת תבליטים"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "הקטנת הזחה"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "הגדלת הזחה"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "נטוי"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "קישור"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "רשימה ממוספרת"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "עיצוב טקסט"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "קו תחתון"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "צור קשר עם צוות התמיכה"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "פעולות נוספות"
198
234
  }
199
- }
235
+ }
package/locales/hi.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "सर्च क्वेरी हटाएं"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "बोल्ड"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "बुलेट सूची"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "इंडेंट घटाओ"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "इंडेंट बढ़ाओ"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "इटैलिक"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "लिंक"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "क्रमांकित सूची"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "टेक्स्ट का फ़ॉर्मैट"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "रेखांकित करो"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "सहायता से संपर्क करें"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "अतिरिक्त कार्यवाईयां"
198
234
  }
199
- }
235
+ }
package/locales/ht.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Efase rechèch la"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Karaktè gra"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Lis ak pwen"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Diminye espas"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Ogmante espas"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Italik"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "Lyen"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Lis nimewote"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Fòma tèks"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Souliye"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "Kontakte sèvis sipò a"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Desizyon adisyonèl"
198
234
  }
199
- }
235
+ }
package/locales/hu.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Keresés törlése"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Félkövér"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Pontozott lista"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Behúzás csökkentése"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Behúzás növelése"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Dőlt"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "Hivatkozás"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Számozott lista"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Szövegformázás"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Aláhúzás"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "forduljon az ügyfélszolgálathoz."
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "További műveletek"
198
234
  }
199
- }
235
+ }
package/locales/id.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Hapus pencarian"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Tebal"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Daftar poin"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Kurangi indentasi"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Tambah indentasi"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Miring"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "Tautan"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Daftar bernomor"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Pemformatan teks"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Garis bawah"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "dukungan kontak"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Tindakan lain"
198
234
  }
199
- }
235
+ }
package/locales/it.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Cancella ricerca"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Grassetto"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Elenco puntato"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Riduci rientro"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Aumenta rientro"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Corsivo"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "Link"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Elenco numerato"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Formattazione testo"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Sottolinea"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "contatta l'assistenza"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Azioni aggiuntive"
198
234
  }
199
- }
235
+ }
package/locales/ja.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "検索をクリア"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "太字"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "箇条書きリスト"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "インデントを減らす"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "インデントを増やす"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "斜体"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "リンク"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "番号付きリスト"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "テキスト形式"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "下線"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "サポートまでご連絡ください"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "追加のアクション"
198
234
  }
199
- }
235
+ }
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "ជម្រះការស្វែងរក"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "ដិត"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "បញ្ជីមូលបញ្ចូល"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "បន្ថយការចូលបន្ទាត់"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "បង្កើនការចូលបន្ទាត់"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "អក្សរទ្រេត"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "តំណ"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "បញ្ជីមានបង់លេខ"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "ទ្រង់ទ្រាយអត្ថបទ"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "គូសបន្ទាត់ពីក្រោម"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "ទាក់ទងផ្នែកគាំទ្រ"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "សកម្មភាពបន្ថែម"
198
234
  }
199
- }
235
+ }
package/locales/ko.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "검색 지우기"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "굵게"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "글머리 기호 목록"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "들여쓰기 줄이기"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "들여쓰기 늘리기"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "이탤릭"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "링크"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "번호 목록"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "텍스트 서식 지정"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "밑줄"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "지원 센터에 문의하십시오."
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "추가 작업"
198
234
  }
199
- }
235
+ }
package/locales/lt.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Išvalyti paiešką"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Paryškintas tekstas"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Sąrašas su punktais"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Sumažinti įtrauką"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Padidinti įtrauką"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Kursyvas"
107
+ },
108
+ "kz.rte.link" : {
109
+ "description" : "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
110
+ "message" : "Nuoroda"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Numeruotas sąrašas"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Teksto formatavimas"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Pabraukimas"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "kreipkitės į pagalbos tarnybą"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Papildomi veiksmai"
198
234
  }
199
- }
235
+ }