@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/lv.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Notīrīt meklēšanu"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Treknraksts"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Saraksts"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Samazināt atkāpi"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Palielināt atkāpi"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Slīpraksts"
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" : "Saite"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Numurēts saraksts"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Teksta formatēšana"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Pasvītrot"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "sazinieties ar atbalsta dienestu"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Papildu darbības"
198
234
  }
199
- }
235
+ }
package/locales/mi.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Maama te rapu"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Taekaha"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Rārangi matā"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Whakaiti Nuku"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Whakanuia nuku"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Tītaha"
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" : "Hono"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Rarangi tau"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Whakahōputu Kuputuhi"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Tāraro"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "whakapā ki te kapa tautoko."
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Ngā mahi tāpiri"
198
234
  }
199
- }
235
+ }
package/locales/ms.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Kosongkan carian"
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" : "Senarai peluru"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Kurangkan inden"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Tingkatkan inden"
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" : "Pautan"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Senarai bernombor"
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" : "hubungi bahagian sokongan"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Tindakan tambahan"
198
234
  }
199
- }
235
+ }
package/locales/nb.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Fjern søk"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Fet"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Punktliste"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Reduser innrykk"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Øk innrykk"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Kursiv"
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" : "Lenke"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Nummerert liste"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Tekstformatering"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Understrek"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "kontakt kundestøtten"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Ytterligere handlinger"
198
234
  }
199
- }
235
+ }
package/locales/nl.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Zoekopdracht wissen"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Vetgedrukt"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Lijst met opsommingstekens"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Inspringing verkleinen"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Inspringing vergroten"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Cursief"
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" : "Genummerde lijst"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Text formatting"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Onderstrepen"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "neem contact op met de ondersteuning"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Meer acties"
198
234
  }
199
- }
235
+ }
package/locales/pl.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Wyczyść wyszukiwanie"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Pogrubienie"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Lista wypunktowana"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Zmniejsz wcięcie"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Zwiększ wcięcie"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Kursywa"
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" : "Lista numerowana"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Formatowanie tekstu"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Podkreślenie"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "skontaktuj się z działem wsparcia"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Dodatkowe działania"
198
234
  }
199
- }
235
+ }
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Limpar pesquisa"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Negrito"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Lista de marcadores"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Diminuir recuo"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Aumentar recuo"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Itálico"
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" : "Lista numerada"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Formatação de texto"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Sublinhado"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "entre em contato com o suporte"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Mais ações"
198
234
  }
199
- }
235
+ }
package/locales/pt.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Limpar pesquisa"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Negrito"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Lista de marcadores"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Diminuir recuo"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Aumentar recuo"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Itálico"
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" : "Hiperligação"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Lista numerada"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Formatação de texto"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Sublinhado"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "entre em contato com o suporte"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Mais ações"
198
234
  }
199
- }
235
+ }
package/locales/ro.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Ștergere căutare"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Aldine"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Listă cu marcatori"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Micșorează indentarea"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Mărește indentarea"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Cursive"
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" : "Listă numerotată"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Formatarea textului"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Subliniere"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "contactați asistența"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Acțiuni suplimentare"
198
234
  }
199
- }
235
+ }
package/locales/ru.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/sk.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Zmazať vyhľadávanie"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Tučné"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Odrážkový zoznam"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Zmenšiť odsadenie"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Zväčšiť odsadenie"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Kurzíva"
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" : "Odkaz"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Číslovaný zoznam"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Formátovanie textu"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Podčiarknutie"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "sa obráťte na podporu,"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Ďalšie činnosti"
198
234
  }
199
- }
235
+ }
package/locales/sr.json CHANGED
@@ -85,6 +85,42 @@
85
85
  "description" : "Label for the clear search button",
86
86
  "message" : "Obriši pretragu"
87
87
  },
88
+ "kz.rte.bold" : {
89
+ "description" : "Label for the \"Bold\" button in a text editor",
90
+ "message" : "Podebljano"
91
+ },
92
+ "kz.rte.bullet_list" : {
93
+ "description" : "Label for the \"Bullet list\" button in a text editor",
94
+ "message" : "Lista sa znakovima nabrajanja"
95
+ },
96
+ "kz.rte.decrease_indent" : {
97
+ "description" : "Label for the \"Decrease indent\" button in a text editor",
98
+ "message" : "Smanji uvlačenje"
99
+ },
100
+ "kz.rte.increase_indent" : {
101
+ "description" : "Label for the \"Increase indent\" button in a text editor",
102
+ "message" : "Povećaj uvlačenje"
103
+ },
104
+ "kz.rte.italic" : {
105
+ "description" : "Label for the \"Italic\" button in a text editor",
106
+ "message" : "Kurziv"
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" : "Veza"
111
+ },
112
+ "kz.rte.numbered_list" : {
113
+ "description" : "Label for the \"Numbered list\" button in a text editor",
114
+ "message" : "Numerisana lista"
115
+ },
116
+ "kz.rte.toolbar.aria_label" : {
117
+ "description" : "Label for the text formatting toolbar in a Rich Text Editor",
118
+ "message" : "Formatiranje teksta"
119
+ },
120
+ "kz.rte.underline" : {
121
+ "description" : "Label for the \"Underline\" button in a text editor",
122
+ "message" : "Podvučeno"
123
+ },
88
124
  "kzErrorPage" : {
89
125
  "description" : "Label for contact button",
90
126
  "message" : "kontaktirajte podršku"
@@ -196,4 +232,4 @@
196
232
  "description" : "Label for a dropdown menu holding additional actions",
197
233
  "message" : "Dodatne radnje"
198
234
  }
199
- }
235
+ }