@kaizen/components 2.0.5 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/src/RichTextEditor/RichTextEditor/RichTextEditor.cjs +9 -24
- package/dist/cjs/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss.cjs +1 -1
- package/dist/cjs/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.cjs +51 -0
- package/dist/cjs/src/RichTextEditor/RichTextEditor/utils/controlmap.cjs +44 -10
- package/dist/cjs/src/RichTextEditor/utils/core/hooks/useRichTextEditor.cjs +17 -20
- package/dist/cjs/src/SingleSelect/SingleSelect.cjs +2 -0
- package/dist/cjs/src/Tile/InformationTile/InformationTile.cjs +2 -0
- package/dist/cjs/src/Tile/MultiActionTile/MultiActionTile.cjs +2 -0
- package/dist/cjs/src/Tile/TileGrid/TileGrid.cjs +2 -0
- package/dist/esm/src/RichTextEditor/RichTextEditor/RichTextEditor.mjs +10 -25
- package/dist/esm/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss.mjs +1 -1
- package/dist/esm/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.mjs +43 -0
- package/dist/esm/src/RichTextEditor/RichTextEditor/utils/controlmap.mjs +44 -10
- package/dist/esm/src/RichTextEditor/utils/core/hooks/useRichTextEditor.mjs +18 -21
- package/dist/esm/src/SingleSelect/SingleSelect.mjs +2 -0
- package/dist/esm/src/Tile/InformationTile/InformationTile.mjs +2 -0
- package/dist/esm/src/Tile/MultiActionTile/MultiActionTile.mjs +2 -0
- package/dist/esm/src/Tile/TileGrid/TileGrid.mjs +2 -0
- package/dist/styles.css +7 -12
- package/dist/types/RichTextEditor/RichTextEditor/RichTextEditor.d.ts +2 -2
- package/dist/types/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.d.ts +12 -0
- package/dist/types/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/index.d.ts +1 -0
- package/dist/types/RichTextEditor/RichTextEditor/utils/controlmap.d.ts +1 -1
- package/dist/types/SingleSelect/SingleSelect.d.ts +2 -0
- package/dist/types/Tile/InformationTile/InformationTile.d.ts +2 -0
- package/dist/types/Tile/MultiActionTile/MultiActionTile.d.ts +2 -0
- package/dist/types/Tile/TileGrid/TileGrid.d.ts +2 -0
- package/locales/ar.json +37 -1
- package/locales/bg.json +37 -1
- package/locales/cs.json +37 -1
- package/locales/cy.json +37 -1
- package/locales/da.json +37 -1
- package/locales/de.json +37 -1
- package/locales/el.json +37 -1
- package/locales/en-GB.json +37 -1
- package/locales/en.json +37 -1
- package/locales/es-419.json +37 -1
- package/locales/es.json +37 -1
- package/locales/et.json +37 -1
- package/locales/fi.json +37 -1
- package/locales/fr-CA.json +37 -1
- package/locales/fr.json +37 -1
- package/locales/he.json +37 -1
- package/locales/hi.json +37 -1
- package/locales/ht.json +37 -1
- package/locales/hu.json +37 -1
- package/locales/id.json +37 -1
- package/locales/it.json +37 -1
- package/locales/ja.json +37 -1
- package/locales/km-KH.json +37 -1
- package/locales/ko.json +37 -1
- package/locales/lt.json +37 -1
- package/locales/lv.json +37 -1
- package/locales/mi.json +37 -1
- package/locales/ms.json +37 -1
- package/locales/nb.json +37 -1
- package/locales/nl.json +37 -1
- package/locales/pl.json +37 -1
- package/locales/pt-BR.json +37 -1
- package/locales/pt.json +37 -1
- package/locales/ro.json +37 -1
- package/locales/ru.json +37 -1
- package/locales/si-LK.json +37 -1
- package/locales/sk.json +37 -1
- package/locales/sr.json +37 -1
- package/locales/sv.json +37 -1
- package/locales/th.json +37 -1
- package/locales/tl.json +37 -1
- package/locales/tr.json +37 -1
- package/locales/uk.json +37 -1
- package/locales/vi.json +37 -1
- package/locales/zh-TW.json +37 -1
- package/locales/zh.json +37 -1
- package/package.json +1 -1
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.module.scss +8 -20
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.spec.tsx +4 -4
- package/src/RichTextEditor/RichTextEditor/RichTextEditor.tsx +12 -30
- package/src/RichTextEditor/RichTextEditor/subcomponents/Toolbar/Toolbar.module.scss +0 -1
- package/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.tsx +62 -0
- package/src/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/index.ts +1 -0
- package/src/RichTextEditor/RichTextEditor/utils/controlmap.tsx +46 -9
- package/src/RichTextEditor/utils/commands/fixtures/data.json +1 -1
- package/src/RichTextEditor/utils/commands/listIsActive.spec.ts +2 -2
- package/src/RichTextEditor/utils/core/hooks/useRichTextEditor.spec.tsx +11 -0
- package/src/RichTextEditor/utils/core/hooks/useRichTextEditor.ts +17 -21
- package/src/SingleSelect/SingleSelect.tsx +2 -0
- package/src/SingleSelect/_docs/SingleSelect--api-specification.mdx +4 -2
- package/src/SingleSelect/_docs/SingleSelect--usage-guidelines.mdx +10 -2
- package/src/SingleSelect/_docs/SingleSelect.stickersheet.stories.tsx +1 -1
- package/src/SingleSelect/_docs/SingleSelect.stories.tsx +1 -1
- package/src/Tile/InformationTile/InformationTile.tsx +2 -0
- package/src/Tile/InformationTile/_docs/InformationTile.mdx +3 -1
- package/src/Tile/InformationTile/_docs/InformationTile.stickersheet.stories.tsx +1 -1
- package/src/Tile/InformationTile/_docs/InformationTile.stories.tsx +1 -1
- package/src/Tile/MultiActionTile/MultiActionTile.tsx +2 -0
- package/src/Tile/MultiActionTile/_docs/MultiActionTile.mdx +3 -1
- package/src/Tile/MultiActionTile/_docs/MultiActionTile.stickersheet.stories.tsx +1 -1
- package/src/Tile/MultiActionTile/_docs/MultiActionTile.stories.tsx +1 -1
- package/src/Tile/TileGrid/TileGrid.tsx +2 -0
- package/src/Tile/TileGrid/_docs/TileGrid.mdx +3 -1
- package/src/Tile/TileGrid/_docs/TileGrid.stickersheet.stories.tsx +1 -1
- package/src/Tile/TileGrid/_docs/TileGrid.stories.tsx +1 -1
|
@@ -4,6 +4,8 @@ import classnames from 'classnames';
|
|
|
4
4
|
import styles from './TileGrid.module.scss.mjs';
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
|
+
* @deprecated TileGrid is deprecated in v3 and will be removed in v4.
|
|
8
|
+
*
|
|
7
9
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3079077889/Tile#TileGrid Guidance} |
|
|
8
10
|
* {@link https://cultureamp.design/storybook/?path=/docs/components-tiles-tilegrid--docs Storybook}
|
|
9
11
|
*/
|
package/dist/styles.css
CHANGED
|
@@ -8094,7 +8094,6 @@
|
|
|
8094
8094
|
@layer kz-components {
|
|
8095
8095
|
.Toolbar-module_toolbar__ooRzV {
|
|
8096
8096
|
display: block;
|
|
8097
|
-
border-bottom: 2px solid var(--color-gray-500, #878792);
|
|
8098
8097
|
}
|
|
8099
8098
|
}
|
|
8100
8099
|
/** THIS IS AN AUTOGENERATED FILE **/
|
|
@@ -8250,6 +8249,9 @@
|
|
|
8250
8249
|
margin-bottom: var(--spacing-6, 0.375rem);
|
|
8251
8250
|
display: inline-block;
|
|
8252
8251
|
}
|
|
8252
|
+
.RichTextEditor-module_toolbarWrapper__wkBl- {
|
|
8253
|
+
border-bottom: inherit;
|
|
8254
|
+
}
|
|
8253
8255
|
/* stylelint-disable no-descending-specificity */
|
|
8254
8256
|
.RichTextEditor-module_editorWrapper__5q3mG {
|
|
8255
8257
|
position: relative;
|
|
@@ -8262,23 +8264,16 @@
|
|
|
8262
8264
|
.RichTextEditor-module_editorWrapper__5q3mG:hover, .RichTextEditor-module_editorWrapper__5q3mG:focus-within {
|
|
8263
8265
|
border-color: var(--color-gray-600, #524e56);
|
|
8264
8266
|
}
|
|
8265
|
-
.RichTextEditor-module_editorWrapper__5q3mG
|
|
8266
|
-
border-color: var(--color-gray-600, #524e56);
|
|
8267
|
-
}
|
|
8268
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8,
|
|
8269
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8 .RichTextEditor-module_toolbar__ceLvw {
|
|
8267
|
+
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8 {
|
|
8270
8268
|
border-color: var(--color-red-500, #c93b55);
|
|
8271
8269
|
}
|
|
8272
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover
|
|
8273
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover .RichTextEditor-module_toolbar__ceLvw {
|
|
8270
|
+
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_error__Xugz8:hover {
|
|
8274
8271
|
border-color: var(--color-red-600, #a82433);
|
|
8275
8272
|
}
|
|
8276
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6
|
|
8277
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6 .RichTextEditor-module_toolbar__ceLvw {
|
|
8273
|
+
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6 {
|
|
8278
8274
|
border-color: var(--color-yellow-600, #c68600);
|
|
8279
8275
|
}
|
|
8280
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover
|
|
8281
|
-
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover .RichTextEditor-module_toolbar__ceLvw {
|
|
8276
|
+
.RichTextEditor-module_editorWrapper__5q3mG.RichTextEditor-module_caution__6q0z6:hover {
|
|
8282
8277
|
border-color: var(--color-yellow-700, #876400);
|
|
8283
8278
|
}
|
|
8284
8279
|
.RichTextEditor-module_editor__pVKqW.RichTextEditor-module_rows1__DDEf4 > .ProseMirror {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { type HTMLAttributes, type ReactNode } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import type { OverrideClassName } from "../../types/OverrideClassName";
|
|
3
|
+
import type { EditorContentArray, EditorRows, ToolbarItems } from '../types';
|
|
4
4
|
import { ProseMirrorState } from '../utils/prosemirror';
|
|
5
5
|
type BaseRichTextEditorProps = {
|
|
6
6
|
id?: string;
|
package/dist/types/RichTextEditor/RichTextEditor/subcomponents/ToolbarControls/ToolbarControls.d.ts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { ToolbarItems } from '../../../types';
|
|
2
|
+
import type { CommandOrTransaction } from '../../../utils/core';
|
|
3
|
+
import type { ProseMirrorModel, ProseMirrorState } from '../../../utils/prosemirror';
|
|
4
|
+
type ToolbarControlsProps = {
|
|
5
|
+
editorId: string;
|
|
6
|
+
controls?: ToolbarItems[];
|
|
7
|
+
editorState: ProseMirrorState.EditorState;
|
|
8
|
+
schema: ProseMirrorModel.Schema<any, any>;
|
|
9
|
+
dispatchTransaction: (commandOrTransaction: CommandOrTransaction) => void;
|
|
10
|
+
};
|
|
11
|
+
export declare const ToolbarControls: ({ editorId, controls, editorState, schema, dispatchTransaction, }: ToolbarControlsProps) => JSX.Element | null;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './ToolbarControls';
|
|
@@ -9,5 +9,5 @@ type ToolbarControl = {
|
|
|
9
9
|
action: ProseMirrorState.Command;
|
|
10
10
|
};
|
|
11
11
|
/** Builds an array of object used to map control configuration to rte toolbar buttons */
|
|
12
|
-
export declare const
|
|
12
|
+
export declare const useControlMap: (schema: ProseMirrorModel.Schema, editorState: ProseMirrorState.EditorState, controls?: ToolbarItems[]) => ToolbarControl[][];
|
|
13
13
|
export {};
|
|
@@ -57,6 +57,8 @@ export type SingleSelectProps<Option extends SingleSelectOption = SingleSelectOp
|
|
|
57
57
|
onSelectionChange?: (key: Key) => void;
|
|
58
58
|
} & OverrideClassName<Omit<AriaSelectProps<Option>, OmittedAriaSelectProps>>;
|
|
59
59
|
/**
|
|
60
|
+
* @deprecated SingleSelect is deprecated in v3 and will be replaced in v4.
|
|
61
|
+
*
|
|
60
62
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3081896474/Select Guidance} |
|
|
61
63
|
* {@link https://cultureamp.design/?path=/docs/components-select--docs Storybook}
|
|
62
64
|
*/
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { type GenericTileProps } from '../subcomponents/GenericTile';
|
|
2
2
|
export type InformationTileProps = GenericTileProps;
|
|
3
3
|
/**
|
|
4
|
+
* @deprecated InformationTile is deprecated in v3 and will be removed in v4.
|
|
5
|
+
*
|
|
4
6
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3079077889/Tile#InformationTile%3A Guidance} |
|
|
5
7
|
* {@link https://cultureamp.design/?path=/docs/components-tiles-informationtile--docs Storybook}
|
|
6
8
|
*/
|
|
@@ -4,6 +4,8 @@ export type MultiActionTileProps = {
|
|
|
4
4
|
secondaryAction?: TileAction;
|
|
5
5
|
} & Omit<GenericTileProps, 'footer'>;
|
|
6
6
|
/**
|
|
7
|
+
* @deprecated MultiActionTile is deprecated in v3 and will be removed in v4.
|
|
8
|
+
*
|
|
7
9
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3079077889/Tile#MultiActionTile.1 Guidance} |
|
|
8
10
|
* {@link https://cultureamp.design/?path=/docs/components-tiles-multiactiontile--docs Storybook}
|
|
9
11
|
*/
|
|
@@ -8,6 +8,8 @@ export interface TileGridProps extends OverrideClassName<HTMLAttributes<HTMLULis
|
|
|
8
8
|
children: TileElement[] | TileElement;
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
|
+
* @deprecated TileGrid is deprecated in v3 and will be removed in v4.
|
|
12
|
+
*
|
|
11
13
|
* {@link https://cultureamp.atlassian.net/wiki/spaces/DesignSystem/pages/3079077889/Tile#TileGrid Guidance} |
|
|
12
14
|
* {@link https://cultureamp.design/storybook/?path=/docs/components-tiles-tilegrid--docs Storybook}
|
|
13
15
|
*/
|
package/locales/ar.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/bg.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/cs.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "Vymazat hledání"
|
|
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" : "Seznam s odrážkami"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "Zmenšit odsazení"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Zvětšit odsazení"
|
|
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ý seznam"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "Formátování textu"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "Podtržení"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "kontaktovat podporu"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Další akce"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/cy.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "Clirio chwiliad"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "Trwm"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "Rhestr bwledi"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "Lleihau'r mewnoliad"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Cynyddu'r mewnoliad"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "Italig"
|
|
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" : "Dolen"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "Rhestr wedi'i rhifo"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "Fformatio testun"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "Tanlinellu"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "cysylltu â chymorth"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Gweithredoedd ychwanegol"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/da.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "Ryd søgning"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "Fed"
|
|
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" : "Reducer indrykning"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Forøg indrykning"
|
|
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" : "Link"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "Nummereret 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" : "Understreg"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "kontakt support"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Yderligere handlinger"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/de.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "Suche löschen"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "Fett"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "Aufzählungsliste"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "Einzug verkleinern"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Einzug vergrößern"
|
|
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" : "Link"
|
|
111
|
+
},
|
|
112
|
+
"kz.rte.numbered_list" : {
|
|
113
|
+
"description" : "Label for the \"Numbered list\" button in a text editor",
|
|
114
|
+
"message" : "Nummerierte Liste"
|
|
115
|
+
},
|
|
116
|
+
"kz.rte.toolbar.aria_label" : {
|
|
117
|
+
"description" : "Label for the text formatting toolbar in a Rich Text Editor",
|
|
118
|
+
"message" : "Textformatierung"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "Unterstreichen"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "Support kontaktieren"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Zusätzliche Maßnahmen"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/el.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/en-GB.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "Clear search"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "Bold"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "Bullet list"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "Decrease indent"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Increase indent"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "Italic"
|
|
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" : "Numbered list"
|
|
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" : "Underline"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "contact support"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Additional actions"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|
package/locales/en.json
CHANGED
|
@@ -86,6 +86,42 @@
|
|
|
86
86
|
"description": "Label for the clear search button",
|
|
87
87
|
"message": "Clear search"
|
|
88
88
|
},
|
|
89
|
+
"kz.rte.bold": {
|
|
90
|
+
"description": "Label for the \"Bold\" button in a text editor",
|
|
91
|
+
"message": "Bold"
|
|
92
|
+
},
|
|
93
|
+
"kz.rte.bullet_list": {
|
|
94
|
+
"description": "Label for the \"Bullet list\" button in a text editor",
|
|
95
|
+
"message": "Bullet list"
|
|
96
|
+
},
|
|
97
|
+
"kz.rte.decrease_indent": {
|
|
98
|
+
"description": "Label for the \"Decrease indent\" button in a text editor",
|
|
99
|
+
"message": "Decrease indent"
|
|
100
|
+
},
|
|
101
|
+
"kz.rte.increase_indent": {
|
|
102
|
+
"description": "Label for the \"Increase indent\" button in a text editor",
|
|
103
|
+
"message": "Increase indent"
|
|
104
|
+
},
|
|
105
|
+
"kz.rte.italic": {
|
|
106
|
+
"description": "Label for the \"Italic\" button in a text editor",
|
|
107
|
+
"message": "Italic"
|
|
108
|
+
},
|
|
109
|
+
"kz.rte.link": {
|
|
110
|
+
"description": "Label for the \"Link\" button in a text editor that allows the creation of hyperlinks in the text",
|
|
111
|
+
"message": "Link"
|
|
112
|
+
},
|
|
113
|
+
"kz.rte.numbered_list": {
|
|
114
|
+
"description": "Label for the \"Numbered list\" button in a text editor",
|
|
115
|
+
"message": "Numbered list"
|
|
116
|
+
},
|
|
117
|
+
"kz.rte.toolbar.aria_label": {
|
|
118
|
+
"description": "Label for the text formatting toolbar in a Rich Text Editor",
|
|
119
|
+
"message": "Text formatting"
|
|
120
|
+
},
|
|
121
|
+
"kz.rte.underline": {
|
|
122
|
+
"description": "Label for the \"Underline\" button in a text editor",
|
|
123
|
+
"message": "Underline"
|
|
124
|
+
},
|
|
89
125
|
"kzErrorPage": {
|
|
90
126
|
"description": "Label for contact button",
|
|
91
127
|
"message": "Contact support"
|
|
@@ -197,4 +233,4 @@
|
|
|
197
233
|
"description": "Label for a dropdown menu holding additional actions",
|
|
198
234
|
"message": "Additional actions"
|
|
199
235
|
}
|
|
200
|
-
}
|
|
236
|
+
}
|
package/locales/es-419.json
CHANGED
|
@@ -85,6 +85,42 @@
|
|
|
85
85
|
"description" : "Label for the clear search button",
|
|
86
86
|
"message" : "Borrar búsqueda"
|
|
87
87
|
},
|
|
88
|
+
"kz.rte.bold" : {
|
|
89
|
+
"description" : "Label for the \"Bold\" button in a text editor",
|
|
90
|
+
"message" : "Negritas"
|
|
91
|
+
},
|
|
92
|
+
"kz.rte.bullet_list" : {
|
|
93
|
+
"description" : "Label for the \"Bullet list\" button in a text editor",
|
|
94
|
+
"message" : "Lista de viñetas"
|
|
95
|
+
},
|
|
96
|
+
"kz.rte.decrease_indent" : {
|
|
97
|
+
"description" : "Label for the \"Decrease indent\" button in a text editor",
|
|
98
|
+
"message" : "Disminuir sangrado"
|
|
99
|
+
},
|
|
100
|
+
"kz.rte.increase_indent" : {
|
|
101
|
+
"description" : "Label for the \"Increase indent\" button in a text editor",
|
|
102
|
+
"message" : "Aumentar sangría"
|
|
103
|
+
},
|
|
104
|
+
"kz.rte.italic" : {
|
|
105
|
+
"description" : "Label for the \"Italic\" button in a text editor",
|
|
106
|
+
"message" : "Itálicas"
|
|
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" : "Enlace"
|
|
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" : "Formato de texto"
|
|
119
|
+
},
|
|
120
|
+
"kz.rte.underline" : {
|
|
121
|
+
"description" : "Label for the \"Underline\" button in a text editor",
|
|
122
|
+
"message" : "Subrayar"
|
|
123
|
+
},
|
|
88
124
|
"kzErrorPage" : {
|
|
89
125
|
"description" : "Label for contact button",
|
|
90
126
|
"message" : "contacte al servicio de asistencia"
|
|
@@ -196,4 +232,4 @@
|
|
|
196
232
|
"description" : "Label for a dropdown menu holding additional actions",
|
|
197
233
|
"message" : "Acciones adicionales"
|
|
198
234
|
}
|
|
199
|
-
}
|
|
235
|
+
}
|