@uzum-tech/ui 1.11.2 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +10829 -6652
- package/dist/index.prod.js +4 -4
- package/es/_internal/icons/BurgerMenuIcon.d.ts +2 -0
- package/es/_internal/icons/BurgerMenuIcon.js +4 -0
- package/es/_internal/icons/Logout.d.ts +2 -0
- package/es/_internal/icons/Logout.js +4 -0
- package/es/_internal/icons/OzbekFlag.d.ts +2 -0
- package/es/_internal/icons/OzbekFlag.js +15 -0
- package/es/_internal/icons/RussiaFlag.d.ts +2 -0
- package/es/_internal/icons/RussiaFlag.js +11 -0
- package/es/_internal/icons/SendFilled.d.ts +2 -0
- package/es/_internal/icons/SendFilled.js +9 -0
- package/es/_internal/icons/index.d.ts +5 -0
- package/es/_internal/icons/index.js +5 -0
- package/es/_styles/common/dark.js +1 -1
- package/es/_styles/common/light.d.ts +1 -0
- package/es/_styles/common/light.js +1 -1
- package/es/chat/src/Chat.d.ts +464 -83
- package/es/chat/src/Chat.js +17 -2
- package/es/chat/src/ChatListItems.d.ts +497 -94
- package/es/chat/src/ChatListItems.js +1 -1
- package/es/chat/src/ChatMessages.d.ts +501 -94
- package/es/chat/src/ChatMessages.js +115 -22
- package/es/chat/src/ChatParts/MainArea.d.ts +7 -3
- package/es/chat/src/ChatParts/MainArea.js +110 -14
- package/es/chat/src/ChatParts/Sidebar.d.ts +64 -11
- package/es/chat/src/interface.d.ts +18 -0
- package/es/chat/src/interface.js +6 -0
- package/es/chat/src/styles/index.cssr.js +22 -1
- package/es/chat/styles/dark.d.ts +41 -8
- package/es/chat/styles/dark.js +6 -2
- package/es/chat/styles/light.d.ts +42 -8
- package/es/chat/styles/light.js +7 -2
- package/es/components.d.ts +3 -0
- package/es/components.js +3 -0
- package/es/config-provider/src/internal-interface.d.ts +17 -0
- package/es/dialog/src/DialogProvider.d.ts +2 -0
- package/es/form/src/FormItemCol.d.ts +2 -2
- package/es/form/src/FormItemGridItem.d.ts +2 -2
- package/es/form/src/FormItemRow.d.ts +1 -1
- package/es/grid/src/Grid.d.ts +1 -1
- package/es/grid/src/GridItem.d.ts +2 -2
- package/es/header/demos/mock.d.ts +2 -0
- package/es/header/demos/mock.js +235 -0
- package/es/header/index.d.ts +12 -0
- package/es/header/index.js +10 -0
- package/es/header/src/Header.d.ts +604 -0
- package/es/header/src/Header.js +320 -0
- package/es/header/src/HeaderActions.d.ts +120 -0
- package/es/header/src/HeaderActions.js +166 -0
- package/es/header/src/HeaderDesktopLayout.d.ts +25 -0
- package/es/header/src/HeaderDesktopLayout.js +24 -0
- package/es/header/src/HeaderMobileLayout.d.ts +25 -0
- package/es/header/src/HeaderMobileLayout.js +21 -0
- package/es/header/src/HeaderNavigation.d.ts +128 -0
- package/es/header/src/HeaderNavigation.js +172 -0
- package/es/header/src/HeaderSearchDesktop.d.ts +79 -0
- package/es/header/src/HeaderSearchDesktop.js +77 -0
- package/es/header/src/HeaderSearchMobile.d.ts +73 -0
- package/es/header/src/HeaderSearchMobile.js +126 -0
- package/es/header/src/HeaderSearchResults.d.ts +81 -0
- package/es/header/src/HeaderSearchResults.js +74 -0
- package/es/header/src/constants.d.ts +1 -0
- package/es/header/src/constants.js +1 -0
- package/es/header/src/interface.d.ts +58 -0
- package/es/header/src/interface.js +1 -0
- package/es/header/src/mobile/HeaderMobile.d.ts +218 -0
- package/es/header/src/mobile/HeaderMobile.js +241 -0
- package/es/header/src/styles/index.cssr.d.ts +6 -0
- package/es/header/src/styles/index.cssr.js +519 -0
- package/es/header/src/utils.d.ts +12 -0
- package/es/header/src/utils.js +47 -0
- package/es/header/styles/dark.d.ts +36 -0
- package/es/header/styles/dark.js +9 -0
- package/es/header/styles/index.d.ts +3 -0
- package/es/header/styles/index.js +2 -0
- package/es/header/styles/light.d.ts +72 -0
- package/es/header/styles/light.js +45 -0
- package/es/icon/src/Icon.d.ts +3 -0
- package/es/icon/src/Icon.js +3 -2
- package/es/icon-bar/index.d.ts +4 -0
- package/es/icon-bar/index.js +2 -0
- package/es/icon-bar/src/IconBar.d.ts +175 -0
- package/es/icon-bar/src/IconBar.js +57 -0
- package/es/icon-bar/src/IconBarItem.d.ts +163 -0
- package/es/icon-bar/src/IconBarItem.js +50 -0
- package/es/icon-bar/src/styles/index.cssr.d.ts +2 -0
- package/es/icon-bar/src/styles/index.cssr.js +62 -0
- package/es/icon-bar/styles/dark.d.ts +3 -0
- package/es/icon-bar/styles/dark.js +8 -0
- package/es/icon-bar/styles/index.d.ts +3 -0
- package/es/icon-bar/styles/index.js +2 -0
- package/es/icon-bar/styles/light.d.ts +19 -0
- package/es/icon-bar/styles/light.js +23 -0
- package/es/locales/common/arDZ.js +11 -1
- package/es/locales/common/deDE.js +11 -1
- package/es/locales/common/enGB.js +11 -1
- package/es/locales/common/enUS.d.ts +10 -0
- package/es/locales/common/enUS.js +11 -1
- package/es/locales/common/eo.js +11 -1
- package/es/locales/common/esAR.js +11 -1
- package/es/locales/common/faIR.js +11 -1
- package/es/locales/common/frFR.js +11 -1
- package/es/locales/common/idID.js +11 -1
- package/es/locales/common/itIT.js +11 -1
- package/es/locales/common/jaJP.js +11 -1
- package/es/locales/common/koKR.js +11 -1
- package/es/locales/common/nbNO.js +11 -1
- package/es/locales/common/nlNL.js +11 -1
- package/es/locales/common/plPL.js +11 -1
- package/es/locales/common/ptBR.js +11 -1
- package/es/locales/common/ruRU.js +11 -1
- package/es/locales/common/skSK.js +11 -1
- package/es/locales/common/svSE.js +11 -1
- package/es/locales/common/thTH.js +11 -1
- package/es/locales/common/trTR.js +11 -1
- package/es/locales/common/ukUA.js +11 -1
- package/es/locales/common/viVN.js +11 -1
- package/es/locales/common/zhCN.js +11 -1
- package/es/locales/common/zhTW.js +11 -1
- package/es/qr-code/index.d.ts +2 -0
- package/es/qr-code/index.js +1 -0
- package/es/qr-code/src/QrCode.d.ts +171 -0
- package/es/qr-code/src/QrCode.js +229 -0
- package/es/qr-code/src/qrcodegen.d.ts +95 -0
- package/es/qr-code/src/qrcodegen.js +949 -0
- package/es/qr-code/src/styles/index.cssr.d.ts +2 -0
- package/es/qr-code/src/styles/index.cssr.js +8 -0
- package/es/qr-code/styles/dark.d.ts +3 -0
- package/es/qr-code/styles/dark.js +11 -0
- package/es/qr-code/styles/index.d.ts +3 -0
- package/es/qr-code/styles/index.js +2 -0
- package/es/qr-code/styles/light.d.ts +9 -0
- package/es/qr-code/styles/light.js +12 -0
- package/es/theme-editor/src/ThemeEditor.d.ts +1 -0
- package/es/themes/dark.js +7 -1
- package/es/themes/light.js +7 -1
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_internal/icons/BurgerMenuIcon.d.ts +2 -0
- package/lib/_internal/icons/BurgerMenuIcon.js +6 -0
- package/lib/_internal/icons/Logout.d.ts +2 -0
- package/lib/_internal/icons/Logout.js +6 -0
- package/lib/_internal/icons/OzbekFlag.d.ts +2 -0
- package/lib/_internal/icons/OzbekFlag.js +17 -0
- package/lib/_internal/icons/RussiaFlag.d.ts +2 -0
- package/lib/_internal/icons/RussiaFlag.js +13 -0
- package/lib/_internal/icons/SendFilled.d.ts +2 -0
- package/lib/_internal/icons/SendFilled.js +11 -0
- package/lib/_internal/icons/index.d.ts +5 -0
- package/lib/_internal/icons/index.js +11 -1
- package/lib/_styles/common/dark.js +1 -1
- package/lib/_styles/common/light.d.ts +1 -0
- package/lib/_styles/common/light.js +1 -1
- package/lib/chat/src/Chat.d.ts +464 -83
- package/lib/chat/src/Chat.js +17 -2
- package/lib/chat/src/ChatListItems.d.ts +497 -94
- package/lib/chat/src/ChatListItems.js +1 -1
- package/lib/chat/src/ChatMessages.d.ts +501 -94
- package/lib/chat/src/ChatMessages.js +113 -20
- package/lib/chat/src/ChatParts/MainArea.d.ts +7 -3
- package/lib/chat/src/ChatParts/MainArea.js +108 -12
- package/lib/chat/src/ChatParts/Sidebar.d.ts +64 -11
- package/lib/chat/src/interface.d.ts +18 -0
- package/lib/chat/src/interface.js +7 -1
- package/lib/chat/src/styles/index.cssr.js +22 -1
- package/lib/chat/styles/dark.d.ts +41 -8
- package/lib/chat/styles/dark.js +6 -2
- package/lib/chat/styles/light.d.ts +42 -8
- package/lib/chat/styles/light.js +7 -2
- package/lib/components.d.ts +3 -0
- package/lib/components.js +3 -0
- package/lib/config-provider/src/internal-interface.d.ts +17 -0
- package/lib/dialog/src/DialogProvider.d.ts +2 -0
- package/lib/form/src/FormItemCol.d.ts +2 -2
- package/lib/form/src/FormItemGridItem.d.ts +2 -2
- package/lib/form/src/FormItemRow.d.ts +1 -1
- package/lib/grid/src/Grid.d.ts +1 -1
- package/lib/grid/src/GridItem.d.ts +2 -2
- package/lib/header/demos/mock.d.ts +2 -0
- package/lib/header/demos/mock.js +238 -0
- package/lib/header/index.d.ts +12 -0
- package/lib/header/index.js +48 -0
- package/lib/header/src/Header.d.ts +604 -0
- package/lib/header/src/Header.js +349 -0
- package/lib/header/src/HeaderActions.d.ts +120 -0
- package/lib/header/src/HeaderActions.js +172 -0
- package/lib/header/src/HeaderDesktopLayout.d.ts +25 -0
- package/lib/header/src/HeaderDesktopLayout.js +27 -0
- package/lib/header/src/HeaderMobileLayout.d.ts +25 -0
- package/lib/header/src/HeaderMobileLayout.js +24 -0
- package/lib/header/src/HeaderNavigation.d.ts +128 -0
- package/lib/header/src/HeaderNavigation.js +175 -0
- package/lib/header/src/HeaderSearchDesktop.d.ts +79 -0
- package/lib/header/src/HeaderSearchDesktop.js +83 -0
- package/lib/header/src/HeaderSearchMobile.d.ts +73 -0
- package/lib/header/src/HeaderSearchMobile.js +132 -0
- package/lib/header/src/HeaderSearchResults.d.ts +81 -0
- package/lib/header/src/HeaderSearchResults.js +77 -0
- package/lib/header/src/constants.d.ts +1 -0
- package/lib/header/src/constants.js +4 -0
- package/lib/header/src/interface.d.ts +58 -0
- package/lib/header/src/interface.js +2 -0
- package/lib/header/src/mobile/HeaderMobile.d.ts +218 -0
- package/lib/header/src/mobile/HeaderMobile.js +244 -0
- package/lib/header/src/styles/index.cssr.d.ts +6 -0
- package/lib/header/src/styles/index.cssr.js +525 -0
- package/lib/header/src/utils.d.ts +12 -0
- package/lib/header/src/utils.js +58 -0
- package/lib/header/styles/dark.d.ts +36 -0
- package/lib/header/styles/dark.js +11 -0
- package/lib/header/styles/index.d.ts +3 -0
- package/lib/header/styles/index.js +10 -0
- package/lib/header/styles/light.d.ts +72 -0
- package/lib/header/styles/light.js +49 -0
- package/lib/icon/src/Icon.d.ts +3 -0
- package/lib/icon/src/Icon.js +3 -2
- package/lib/icon-bar/index.d.ts +4 -0
- package/lib/icon-bar/index.js +12 -0
- package/lib/icon-bar/src/IconBar.d.ts +175 -0
- package/lib/icon-bar/src/IconBar.js +63 -0
- package/lib/icon-bar/src/IconBarItem.d.ts +163 -0
- package/lib/icon-bar/src/IconBarItem.js +56 -0
- package/lib/icon-bar/src/styles/index.cssr.d.ts +2 -0
- package/lib/icon-bar/src/styles/index.cssr.js +67 -0
- package/lib/icon-bar/styles/dark.d.ts +3 -0
- package/lib/icon-bar/styles/dark.js +10 -0
- package/lib/icon-bar/styles/index.d.ts +3 -0
- package/lib/icon-bar/styles/index.js +10 -0
- package/lib/icon-bar/styles/light.d.ts +19 -0
- package/lib/icon-bar/styles/light.js +27 -0
- package/lib/locales/common/arDZ.js +11 -1
- package/lib/locales/common/deDE.js +11 -1
- package/lib/locales/common/enGB.js +11 -1
- package/lib/locales/common/enUS.d.ts +10 -0
- package/lib/locales/common/enUS.js +11 -1
- package/lib/locales/common/eo.js +11 -1
- package/lib/locales/common/esAR.js +11 -1
- package/lib/locales/common/faIR.js +11 -1
- package/lib/locales/common/frFR.js +11 -1
- package/lib/locales/common/idID.js +11 -1
- package/lib/locales/common/itIT.js +11 -1
- package/lib/locales/common/jaJP.js +11 -1
- package/lib/locales/common/koKR.js +11 -1
- package/lib/locales/common/nbNO.js +11 -1
- package/lib/locales/common/nlNL.js +11 -1
- package/lib/locales/common/plPL.js +11 -1
- package/lib/locales/common/ptBR.js +11 -1
- package/lib/locales/common/ruRU.js +11 -1
- package/lib/locales/common/skSK.js +11 -1
- package/lib/locales/common/svSE.js +11 -1
- package/lib/locales/common/thTH.js +11 -1
- package/lib/locales/common/trTR.js +11 -1
- package/lib/locales/common/ukUA.js +11 -1
- package/lib/locales/common/viVN.js +11 -1
- package/lib/locales/common/zhCN.js +11 -1
- package/lib/locales/common/zhTW.js +11 -1
- package/lib/qr-code/index.d.ts +2 -0
- package/lib/qr-code/index.js +9 -0
- package/lib/qr-code/src/QrCode.d.ts +171 -0
- package/lib/qr-code/src/QrCode.js +235 -0
- package/lib/qr-code/src/qrcodegen.d.ts +95 -0
- package/lib/qr-code/src/qrcodegen.js +950 -0
- package/lib/qr-code/src/styles/index.cssr.d.ts +2 -0
- package/lib/qr-code/src/styles/index.cssr.js +13 -0
- package/lib/qr-code/styles/dark.d.ts +3 -0
- package/lib/qr-code/styles/dark.js +13 -0
- package/lib/qr-code/styles/index.d.ts +3 -0
- package/lib/qr-code/styles/index.js +10 -0
- package/lib/qr-code/styles/light.d.ts +9 -0
- package/lib/qr-code/styles/light.js +14 -0
- package/lib/theme-editor/src/ThemeEditor.d.ts +1 -0
- package/lib/themes/dark.js +7 -1
- package/lib/themes/light.js +7 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/volar.d.ts +166 -153
- package/web-types.json +854 -2
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
const cssr_1 = require("../../../_utils/cssr");
|
|
7
|
+
// vars
|
|
8
|
+
// '--u-bezier'
|
|
9
|
+
// '--u-icon-bar-item-size'
|
|
10
|
+
// '--u-icon-bar-item-color'
|
|
11
|
+
// '--u-icon-bar-item-icon-size'
|
|
12
|
+
// '--u-icon-bar-item-label-color'
|
|
13
|
+
// '--u-icon-bar-item-label-size-hover'
|
|
14
|
+
// '--u-icon-bar-item-label-color-hover'
|
|
15
|
+
// '--u-icon-bar-item-color-hover'
|
|
16
|
+
// '--u-icon-bar-item-box-shadow'
|
|
17
|
+
// '--u-icon-bar-item-span'
|
|
18
|
+
// '--u-icon-bar-cols'
|
|
19
|
+
exports.default = (0, cssr_1.c)([(0, cssr_1.cB)('icon-bar', `
|
|
20
|
+
justify-content: space-between !important;
|
|
21
|
+
grid-template-columns: repeat(var(--u-icon-bar-cols), var(--u-icon-bar-item-size)) !important;
|
|
22
|
+
`), (0, cssr_1.cB)('icon-bar-item-wrapper', `
|
|
23
|
+
display: flex;
|
|
24
|
+
flex-direction: column;
|
|
25
|
+
align-items: center;
|
|
26
|
+
cursor: pointer;
|
|
27
|
+
gap: var(--u-icon-bar-item-gap);
|
|
28
|
+
grid-column: span var(--u-icon-bar-item-span)
|
|
29
|
+
`, [(0, cssr_1.cB)('icon-bar-item', `
|
|
30
|
+
width: 100%;
|
|
31
|
+
height: var(--u-icon-bar-item-size);
|
|
32
|
+
background-color: var(--u-icon-bar-item-color);
|
|
33
|
+
border-radius: 16px;
|
|
34
|
+
display: flex;
|
|
35
|
+
align-items: center;
|
|
36
|
+
box-sizing: border-box;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
box-shadow: var(--u-icon-bar-item-box-shadow);
|
|
39
|
+
transition:
|
|
40
|
+
background-color .3s var(--u-bezier),
|
|
41
|
+
transform .3s var(--u-bezier);
|
|
42
|
+
`, [(0, cssr_1.cE)('icon', `
|
|
43
|
+
width: var(--u-icon-bar-item-icon-size);
|
|
44
|
+
height: var(--u-icon-bar-item-icon-size);
|
|
45
|
+
display: flex;
|
|
46
|
+
align-items: center;
|
|
47
|
+
justify-content: center;
|
|
48
|
+
& > * {
|
|
49
|
+
width: 100%;
|
|
50
|
+
height: 100%;
|
|
51
|
+
}
|
|
52
|
+
`)]), (0, cssr_1.cE)('label', `
|
|
53
|
+
color: var(--u-icon-bar-item-label-color);
|
|
54
|
+
font-weight: 400;
|
|
55
|
+
text-align: center;
|
|
56
|
+
transition:
|
|
57
|
+
font-size .2s var(--u-bezier),
|
|
58
|
+
color .2s var(--u-bezier),
|
|
59
|
+
font-weight .2s var(--u-bezier);
|
|
60
|
+
`), (0, cssr_1.c)('&:hover', [(0, cssr_1.cB)('icon-bar-item', `
|
|
61
|
+
background-color: var(--u-icon-bar-item-color-hover);
|
|
62
|
+
transform: scale(1.04);
|
|
63
|
+
`), (0, cssr_1.cE)('label', `
|
|
64
|
+
font-size: var(--u-icon-bar-item-label-size-hover);
|
|
65
|
+
color: var(--u-icon-bar-item-label-color-hover);
|
|
66
|
+
font-weight: 500;
|
|
67
|
+
`)])])]);
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const common_1 = require("../../_styles/common");
|
|
4
|
+
const light_1 = require("./light");
|
|
5
|
+
const iconBarDark = {
|
|
6
|
+
name: 'IconBar',
|
|
7
|
+
common: common_1.commonDark,
|
|
8
|
+
self: light_1.self
|
|
9
|
+
};
|
|
10
|
+
exports.default = iconBarDark;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.iconBarLight = exports.iconBarDark = void 0;
|
|
7
|
+
var dark_1 = require("./dark");
|
|
8
|
+
Object.defineProperty(exports, "iconBarDark", { enumerable: true, get: function () { return __importDefault(dark_1).default; } });
|
|
9
|
+
var light_1 = require("./light");
|
|
10
|
+
Object.defineProperty(exports, "iconBarLight", { enumerable: true, get: function () { return __importDefault(light_1).default; } });
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { ThemeCommonVars } from '../../_styles/common';
|
|
2
|
+
import type { Theme } from '../../_mixins';
|
|
3
|
+
export declare const self: (vars: ThemeCommonVars) => {
|
|
4
|
+
itemSize: string;
|
|
5
|
+
color: string;
|
|
6
|
+
colorHover: string;
|
|
7
|
+
itemGap: string;
|
|
8
|
+
iconSize: string;
|
|
9
|
+
labelColor: string;
|
|
10
|
+
labelSizeHover: string;
|
|
11
|
+
labelColorHover: string;
|
|
12
|
+
boxShadow: string;
|
|
13
|
+
span: number;
|
|
14
|
+
cols: number;
|
|
15
|
+
};
|
|
16
|
+
export type IconBarThemeVars = ReturnType<typeof self>;
|
|
17
|
+
declare const iconBarLight: Theme<'IconBar', IconBarThemeVars>;
|
|
18
|
+
export default iconBarLight;
|
|
19
|
+
export type IconBarTheme = typeof iconBarLight;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.self = void 0;
|
|
4
|
+
const common_1 = require("../../_styles/common");
|
|
5
|
+
const self = (vars) => {
|
|
6
|
+
const { elementsPrimary, elementsTertiary, brandSecondary400, fontHeadingSmall, transparencySecondary } = vars;
|
|
7
|
+
return {
|
|
8
|
+
itemSize: '200px',
|
|
9
|
+
color: elementsTertiary,
|
|
10
|
+
colorHover: brandSecondary400,
|
|
11
|
+
itemGap: '16px',
|
|
12
|
+
iconSize: '120px',
|
|
13
|
+
labelColor: elementsPrimary,
|
|
14
|
+
labelSizeHover: fontHeadingSmall,
|
|
15
|
+
labelColorHover: elementsPrimary,
|
|
16
|
+
boxShadow: `0 1px 2px ${transparencySecondary}`, // TODO use shadow from variables after it will be added in design
|
|
17
|
+
span: 1,
|
|
18
|
+
cols: 6
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
exports.self = self;
|
|
22
|
+
const iconBarLight = {
|
|
23
|
+
name: 'IconBar',
|
|
24
|
+
common: common_1.commonLight,
|
|
25
|
+
self: exports.self
|
|
26
|
+
};
|
|
27
|
+
exports.default = iconBarLight;
|
|
@@ -133,7 +133,17 @@ const arDZ = {
|
|
|
133
133
|
closeButtonText: 'Close chat',
|
|
134
134
|
shareButtonTooltip: 'Share chat',
|
|
135
135
|
profileButtonTooltip: 'View profile',
|
|
136
|
-
unreadNotificationText: 'new messages'
|
|
136
|
+
unreadNotificationText: 'new messages',
|
|
137
|
+
editText: 'Edit',
|
|
138
|
+
copyText: 'Copy',
|
|
139
|
+
deleteText: 'Delete',
|
|
140
|
+
editingTitle: 'Editing'
|
|
141
|
+
},
|
|
142
|
+
Header: {
|
|
143
|
+
desktopSearchTitle: 'Search',
|
|
144
|
+
searchPlaceholder: 'Search the site',
|
|
145
|
+
primaryActionText: 'Become a client',
|
|
146
|
+
secondaryActionText: 'Go to the application'
|
|
137
147
|
}
|
|
138
148
|
};
|
|
139
149
|
exports.default = arDZ;
|
|
@@ -133,7 +133,17 @@ const deDE = {
|
|
|
133
133
|
closeButtonText: 'Close chat',
|
|
134
134
|
shareButtonTooltip: 'Share chat',
|
|
135
135
|
profileButtonTooltip: 'View profile',
|
|
136
|
-
unreadNotificationText: 'new messages'
|
|
136
|
+
unreadNotificationText: 'new messages',
|
|
137
|
+
editText: 'Edit',
|
|
138
|
+
copyText: 'Copy',
|
|
139
|
+
deleteText: 'Delete',
|
|
140
|
+
editingTitle: 'Editing'
|
|
141
|
+
},
|
|
142
|
+
Header: {
|
|
143
|
+
desktopSearchTitle: 'Search',
|
|
144
|
+
searchPlaceholder: 'Search the site',
|
|
145
|
+
primaryActionText: 'Become a client',
|
|
146
|
+
secondaryActionText: 'Go to the application'
|
|
137
147
|
}
|
|
138
148
|
};
|
|
139
149
|
exports.default = deDE;
|
|
@@ -134,7 +134,17 @@ const enGB = {
|
|
|
134
134
|
closeButtonText: 'Close chat',
|
|
135
135
|
shareButtonTooltip: 'Share chat',
|
|
136
136
|
profileButtonTooltip: 'View profile',
|
|
137
|
-
unreadNotificationText: 'new messages'
|
|
137
|
+
unreadNotificationText: 'new messages',
|
|
138
|
+
editText: 'Edit',
|
|
139
|
+
copyText: 'Copy',
|
|
140
|
+
deleteText: 'Delete',
|
|
141
|
+
editingTitle: 'Editing'
|
|
142
|
+
},
|
|
143
|
+
Header: {
|
|
144
|
+
desktopSearchTitle: 'Search',
|
|
145
|
+
searchPlaceholder: 'Search the site',
|
|
146
|
+
primaryActionText: 'Become a client',
|
|
147
|
+
secondaryActionText: 'Go to the application'
|
|
138
148
|
}
|
|
139
149
|
};
|
|
140
150
|
exports.default = enGB;
|
|
@@ -132,6 +132,16 @@ declare const enUS: {
|
|
|
132
132
|
shareButtonTooltip: string;
|
|
133
133
|
profileButtonTooltip: string;
|
|
134
134
|
unreadNotificationText: string;
|
|
135
|
+
editText: string;
|
|
136
|
+
copyText: string;
|
|
137
|
+
deleteText: string;
|
|
138
|
+
editingTitle: string;
|
|
139
|
+
};
|
|
140
|
+
Header: {
|
|
141
|
+
desktopSearchTitle: string;
|
|
142
|
+
searchPlaceholder: string;
|
|
143
|
+
primaryActionText: string;
|
|
144
|
+
secondaryActionText: string;
|
|
135
145
|
};
|
|
136
146
|
};
|
|
137
147
|
export type ULocale = typeof enUS;
|
|
@@ -134,7 +134,17 @@ const enUS = {
|
|
|
134
134
|
closeButtonText: 'Close chat',
|
|
135
135
|
shareButtonTooltip: 'Share chat',
|
|
136
136
|
profileButtonTooltip: 'View profile',
|
|
137
|
-
unreadNotificationText: 'new messages'
|
|
137
|
+
unreadNotificationText: 'new messages',
|
|
138
|
+
editText: 'Edit',
|
|
139
|
+
copyText: 'Copy',
|
|
140
|
+
deleteText: 'Delete',
|
|
141
|
+
editingTitle: 'Editing'
|
|
142
|
+
},
|
|
143
|
+
Header: {
|
|
144
|
+
desktopSearchTitle: 'Search',
|
|
145
|
+
searchPlaceholder: 'Search the site',
|
|
146
|
+
primaryActionText: 'Become a client',
|
|
147
|
+
secondaryActionText: 'Go to the application'
|
|
138
148
|
}
|
|
139
149
|
};
|
|
140
150
|
exports.default = enUS;
|
package/lib/locales/common/eo.js
CHANGED
|
@@ -135,7 +135,17 @@ const eo = {
|
|
|
135
135
|
closeButtonText: 'Close chat',
|
|
136
136
|
shareButtonTooltip: 'Share chat',
|
|
137
137
|
profileButtonTooltip: 'View profile',
|
|
138
|
-
unreadNotificationText: 'new messages'
|
|
138
|
+
unreadNotificationText: 'new messages',
|
|
139
|
+
editText: 'Edit',
|
|
140
|
+
copyText: 'Copy',
|
|
141
|
+
deleteText: 'Delete',
|
|
142
|
+
editingTitle: 'Editing'
|
|
143
|
+
},
|
|
144
|
+
Header: {
|
|
145
|
+
desktopSearchTitle: 'Search',
|
|
146
|
+
searchPlaceholder: 'Search the site',
|
|
147
|
+
primaryActionText: 'Become a client',
|
|
148
|
+
secondaryActionText: 'Go to the application'
|
|
139
149
|
}
|
|
140
150
|
};
|
|
141
151
|
exports.default = eo;
|
|
@@ -137,7 +137,17 @@ const esAR = {
|
|
|
137
137
|
closeButtonText: 'Close chat',
|
|
138
138
|
shareButtonTooltip: 'Share chat',
|
|
139
139
|
profileButtonTooltip: 'View profile',
|
|
140
|
-
unreadNotificationText: 'new messages'
|
|
140
|
+
unreadNotificationText: 'new messages',
|
|
141
|
+
editText: 'Edit',
|
|
142
|
+
copyText: 'Copy',
|
|
143
|
+
deleteText: 'Delete',
|
|
144
|
+
editingTitle: 'Editing'
|
|
145
|
+
},
|
|
146
|
+
Header: {
|
|
147
|
+
desktopSearchTitle: 'Search',
|
|
148
|
+
searchPlaceholder: 'Search the site',
|
|
149
|
+
primaryActionText: 'Become a client',
|
|
150
|
+
secondaryActionText: 'Go to the application'
|
|
141
151
|
}
|
|
142
152
|
};
|
|
143
153
|
exports.default = esAR;
|
|
@@ -133,7 +133,17 @@ const faIR = {
|
|
|
133
133
|
closeButtonText: 'Close chat',
|
|
134
134
|
shareButtonTooltip: 'Share chat',
|
|
135
135
|
profileButtonTooltip: 'View profile',
|
|
136
|
-
unreadNotificationText: 'new messages'
|
|
136
|
+
unreadNotificationText: 'new messages',
|
|
137
|
+
editText: 'Edit',
|
|
138
|
+
copyText: 'Copy',
|
|
139
|
+
deleteText: 'Delete',
|
|
140
|
+
editingTitle: 'Editing'
|
|
141
|
+
},
|
|
142
|
+
Header: {
|
|
143
|
+
desktopSearchTitle: 'Search',
|
|
144
|
+
searchPlaceholder: 'Search the site',
|
|
145
|
+
primaryActionText: 'Become a client',
|
|
146
|
+
secondaryActionText: 'Go to the application'
|
|
137
147
|
}
|
|
138
148
|
};
|
|
139
149
|
exports.default = faIR;
|
|
@@ -133,7 +133,17 @@ const frFR = {
|
|
|
133
133
|
closeButtonText: 'Close chat',
|
|
134
134
|
shareButtonTooltip: 'Share chat',
|
|
135
135
|
profileButtonTooltip: 'View profile',
|
|
136
|
-
unreadNotificationText: 'new messages'
|
|
136
|
+
unreadNotificationText: 'new messages',
|
|
137
|
+
editText: 'Edit',
|
|
138
|
+
copyText: 'Copy',
|
|
139
|
+
deleteText: 'Delete',
|
|
140
|
+
editingTitle: 'Editing'
|
|
141
|
+
},
|
|
142
|
+
Header: {
|
|
143
|
+
desktopSearchTitle: 'Search',
|
|
144
|
+
searchPlaceholder: 'Search the site',
|
|
145
|
+
primaryActionText: 'Become a client',
|
|
146
|
+
secondaryActionText: 'Go to the application'
|
|
137
147
|
}
|
|
138
148
|
};
|
|
139
149
|
exports.default = frFR;
|
|
@@ -137,7 +137,17 @@ const idID = {
|
|
|
137
137
|
closeButtonText: 'Close chat',
|
|
138
138
|
shareButtonTooltip: 'Share chat',
|
|
139
139
|
profileButtonTooltip: 'View profile',
|
|
140
|
-
unreadNotificationText: 'new messages'
|
|
140
|
+
unreadNotificationText: 'new messages',
|
|
141
|
+
editText: 'Edit',
|
|
142
|
+
copyText: 'Copy',
|
|
143
|
+
deleteText: 'Delete',
|
|
144
|
+
editingTitle: 'Editing'
|
|
145
|
+
},
|
|
146
|
+
Header: {
|
|
147
|
+
desktopSearchTitle: 'Search',
|
|
148
|
+
searchPlaceholder: 'Search the site',
|
|
149
|
+
primaryActionText: 'Become a client',
|
|
150
|
+
secondaryActionText: 'Go to the application'
|
|
141
151
|
}
|
|
142
152
|
};
|
|
143
153
|
exports.default = idID;
|
|
@@ -136,7 +136,17 @@ const itIT = {
|
|
|
136
136
|
closeButtonText: 'Close chat',
|
|
137
137
|
shareButtonTooltip: 'Share chat',
|
|
138
138
|
profileButtonTooltip: 'View profile',
|
|
139
|
-
unreadNotificationText: 'new messages'
|
|
139
|
+
unreadNotificationText: 'new messages',
|
|
140
|
+
editText: 'Edit',
|
|
141
|
+
copyText: 'Copy',
|
|
142
|
+
deleteText: 'Delete',
|
|
143
|
+
editingTitle: 'Editing'
|
|
144
|
+
},
|
|
145
|
+
Header: {
|
|
146
|
+
desktopSearchTitle: 'Search',
|
|
147
|
+
searchPlaceholder: 'Search the site',
|
|
148
|
+
primaryActionText: 'Become a client',
|
|
149
|
+
secondaryActionText: 'Go to the application'
|
|
140
150
|
}
|
|
141
151
|
};
|
|
142
152
|
exports.default = itIT;
|
|
@@ -136,7 +136,17 @@ const jaJP = {
|
|
|
136
136
|
closeButtonText: 'Close chat',
|
|
137
137
|
shareButtonTooltip: 'Share chat',
|
|
138
138
|
profileButtonTooltip: 'View profile',
|
|
139
|
-
unreadNotificationText: 'new messages'
|
|
139
|
+
unreadNotificationText: 'new messages',
|
|
140
|
+
editText: 'Edit',
|
|
141
|
+
copyText: 'Copy',
|
|
142
|
+
deleteText: 'Delete',
|
|
143
|
+
editingTitle: 'Editing'
|
|
144
|
+
},
|
|
145
|
+
Header: {
|
|
146
|
+
desktopSearchTitle: 'Search',
|
|
147
|
+
searchPlaceholder: 'Search the site',
|
|
148
|
+
primaryActionText: 'Become a client',
|
|
149
|
+
secondaryActionText: 'Go to the application'
|
|
140
150
|
}
|
|
141
151
|
};
|
|
142
152
|
exports.default = jaJP;
|
|
@@ -136,7 +136,17 @@ const koKR = {
|
|
|
136
136
|
closeButtonText: 'Close chat',
|
|
137
137
|
shareButtonTooltip: 'Share chat',
|
|
138
138
|
profileButtonTooltip: 'View profile',
|
|
139
|
-
unreadNotificationText: 'new messages'
|
|
139
|
+
unreadNotificationText: 'new messages',
|
|
140
|
+
editText: 'Edit',
|
|
141
|
+
copyText: 'Copy',
|
|
142
|
+
deleteText: 'Delete',
|
|
143
|
+
editingTitle: 'Editing'
|
|
144
|
+
},
|
|
145
|
+
Header: {
|
|
146
|
+
desktopSearchTitle: 'Search',
|
|
147
|
+
searchPlaceholder: 'Search the site',
|
|
148
|
+
primaryActionText: 'Become a client',
|
|
149
|
+
secondaryActionText: 'Go to the application'
|
|
140
150
|
}
|
|
141
151
|
};
|
|
142
152
|
exports.default = koKR;
|
|
@@ -137,7 +137,17 @@ const nbNO = {
|
|
|
137
137
|
closeButtonText: 'Close chat',
|
|
138
138
|
shareButtonTooltip: 'Share chat',
|
|
139
139
|
profileButtonTooltip: 'View profile',
|
|
140
|
-
unreadNotificationText: 'new messages'
|
|
140
|
+
unreadNotificationText: 'new messages',
|
|
141
|
+
editText: 'Edit',
|
|
142
|
+
copyText: 'Copy',
|
|
143
|
+
deleteText: 'Delete',
|
|
144
|
+
editingTitle: 'Editing'
|
|
145
|
+
},
|
|
146
|
+
Header: {
|
|
147
|
+
desktopSearchTitle: 'Search',
|
|
148
|
+
searchPlaceholder: 'Search the site',
|
|
149
|
+
primaryActionText: 'Become a client',
|
|
150
|
+
secondaryActionText: 'Go to the application'
|
|
141
151
|
}
|
|
142
152
|
};
|
|
143
153
|
exports.default = nbNO;
|
|
@@ -135,7 +135,17 @@ const nlNL = {
|
|
|
135
135
|
closeButtonText: 'Close chat',
|
|
136
136
|
shareButtonTooltip: 'Share chat',
|
|
137
137
|
profileButtonTooltip: 'View profile',
|
|
138
|
-
unreadNotificationText: 'new messages'
|
|
138
|
+
unreadNotificationText: 'new messages',
|
|
139
|
+
editText: 'Edit',
|
|
140
|
+
copyText: 'Copy',
|
|
141
|
+
deleteText: 'Delete',
|
|
142
|
+
editingTitle: 'Editing'
|
|
143
|
+
},
|
|
144
|
+
Header: {
|
|
145
|
+
desktopSearchTitle: 'Search',
|
|
146
|
+
searchPlaceholder: 'Search the site',
|
|
147
|
+
primaryActionText: 'Become a client',
|
|
148
|
+
secondaryActionText: 'Go to the application'
|
|
139
149
|
}
|
|
140
150
|
};
|
|
141
151
|
exports.default = nlNL;
|
|
@@ -136,7 +136,17 @@ const plPL = {
|
|
|
136
136
|
closeButtonText: 'Close chat',
|
|
137
137
|
shareButtonTooltip: 'Share chat',
|
|
138
138
|
profileButtonTooltip: 'View profile',
|
|
139
|
-
unreadNotificationText: 'new messages'
|
|
139
|
+
unreadNotificationText: 'new messages',
|
|
140
|
+
editText: 'Edit',
|
|
141
|
+
copyText: 'Copy',
|
|
142
|
+
deleteText: 'Delete',
|
|
143
|
+
editingTitle: 'Editing'
|
|
144
|
+
},
|
|
145
|
+
Header: {
|
|
146
|
+
desktopSearchTitle: 'Search',
|
|
147
|
+
searchPlaceholder: 'Search the site',
|
|
148
|
+
primaryActionText: 'Become a client',
|
|
149
|
+
secondaryActionText: 'Go to the application'
|
|
140
150
|
}
|
|
141
151
|
};
|
|
142
152
|
exports.default = plPL;
|
|
@@ -133,7 +133,17 @@ const ptBR = {
|
|
|
133
133
|
closeButtonText: 'Close chat',
|
|
134
134
|
shareButtonTooltip: 'Share chat',
|
|
135
135
|
profileButtonTooltip: 'View profile',
|
|
136
|
-
unreadNotificationText: 'new messages'
|
|
136
|
+
unreadNotificationText: 'new messages',
|
|
137
|
+
editText: 'Edit',
|
|
138
|
+
copyText: 'Copy',
|
|
139
|
+
deleteText: 'Delete',
|
|
140
|
+
editingTitle: 'Editing'
|
|
141
|
+
},
|
|
142
|
+
Header: {
|
|
143
|
+
desktopSearchTitle: 'Search',
|
|
144
|
+
searchPlaceholder: 'Search the site',
|
|
145
|
+
primaryActionText: 'Become a client',
|
|
146
|
+
secondaryActionText: 'Go to the application'
|
|
137
147
|
}
|
|
138
148
|
};
|
|
139
149
|
exports.default = ptBR;
|
|
@@ -138,7 +138,17 @@ const ruRu = {
|
|
|
138
138
|
closeButtonText: 'Завершить чат',
|
|
139
139
|
shareButtonTooltip: 'Поделиться чатом',
|
|
140
140
|
profileButtonTooltip: 'Просмотреть профиль',
|
|
141
|
-
unreadNotificationText: 'новых сообщений'
|
|
141
|
+
unreadNotificationText: 'новых сообщений',
|
|
142
|
+
editText: 'Редактировать',
|
|
143
|
+
copyText: 'Скопировать',
|
|
144
|
+
deleteText: 'Удалить',
|
|
145
|
+
editingTitle: 'Редактирование'
|
|
146
|
+
},
|
|
147
|
+
Header: {
|
|
148
|
+
desktopSearchTitle: 'Поиск',
|
|
149
|
+
searchPlaceholder: 'Поиск по сайту',
|
|
150
|
+
primaryActionText: 'Стать клиентом',
|
|
151
|
+
secondaryActionText: 'Перейти в приложение'
|
|
142
152
|
}
|
|
143
153
|
};
|
|
144
154
|
exports.default = ruRu;
|
|
@@ -137,7 +137,17 @@ const skSK = {
|
|
|
137
137
|
closeButtonText: 'Close chat',
|
|
138
138
|
shareButtonTooltip: 'Share chat',
|
|
139
139
|
profileButtonTooltip: 'View profile',
|
|
140
|
-
unreadNotificationText: 'new messages'
|
|
140
|
+
unreadNotificationText: 'new messages',
|
|
141
|
+
editText: 'Edit',
|
|
142
|
+
copyText: 'Copy',
|
|
143
|
+
deleteText: 'Delete',
|
|
144
|
+
editingTitle: 'Editing'
|
|
145
|
+
},
|
|
146
|
+
Header: {
|
|
147
|
+
desktopSearchTitle: 'Search',
|
|
148
|
+
searchPlaceholder: 'Search the site',
|
|
149
|
+
primaryActionText: 'Become a client',
|
|
150
|
+
secondaryActionText: 'Go to the application'
|
|
141
151
|
}
|
|
142
152
|
};
|
|
143
153
|
exports.default = skSK;
|
|
@@ -133,7 +133,17 @@ const svSE = {
|
|
|
133
133
|
closeButtonText: 'Close chat',
|
|
134
134
|
shareButtonTooltip: 'Share chat',
|
|
135
135
|
profileButtonTooltip: 'View profile',
|
|
136
|
-
unreadNotificationText: 'new messages'
|
|
136
|
+
unreadNotificationText: 'new messages',
|
|
137
|
+
editText: 'Edit',
|
|
138
|
+
copyText: 'Copy',
|
|
139
|
+
deleteText: 'Delete',
|
|
140
|
+
editingTitle: 'Editing'
|
|
141
|
+
},
|
|
142
|
+
Header: {
|
|
143
|
+
desktopSearchTitle: 'Search',
|
|
144
|
+
searchPlaceholder: 'Search the site',
|
|
145
|
+
primaryActionText: 'Become a client',
|
|
146
|
+
secondaryActionText: 'Go to the application'
|
|
137
147
|
}
|
|
138
148
|
};
|
|
139
149
|
exports.default = svSE;
|
|
@@ -137,7 +137,17 @@ const thTH = {
|
|
|
137
137
|
closeButtonText: 'Close chat',
|
|
138
138
|
shareButtonTooltip: 'Share chat',
|
|
139
139
|
profileButtonTooltip: 'View profile',
|
|
140
|
-
unreadNotificationText: 'new messages'
|
|
140
|
+
unreadNotificationText: 'new messages',
|
|
141
|
+
editText: 'Edit',
|
|
142
|
+
copyText: 'Copy',
|
|
143
|
+
deleteText: 'Delete',
|
|
144
|
+
editingTitle: 'Editing'
|
|
145
|
+
},
|
|
146
|
+
Header: {
|
|
147
|
+
desktopSearchTitle: 'Search',
|
|
148
|
+
searchPlaceholder: 'Search the site',
|
|
149
|
+
primaryActionText: 'Become a client',
|
|
150
|
+
secondaryActionText: 'Go to the application'
|
|
141
151
|
}
|
|
142
152
|
};
|
|
143
153
|
exports.default = thTH;
|
|
@@ -134,7 +134,17 @@ const trTR = {
|
|
|
134
134
|
closeButtonText: 'Close chat',
|
|
135
135
|
shareButtonTooltip: 'Share chat',
|
|
136
136
|
profileButtonTooltip: 'View profile',
|
|
137
|
-
unreadNotificationText: 'new messages'
|
|
137
|
+
unreadNotificationText: 'new messages',
|
|
138
|
+
editText: 'Edit',
|
|
139
|
+
copyText: 'Copy',
|
|
140
|
+
deleteText: 'Delete',
|
|
141
|
+
editingTitle: 'Editing'
|
|
142
|
+
},
|
|
143
|
+
Header: {
|
|
144
|
+
desktopSearchTitle: 'Search',
|
|
145
|
+
searchPlaceholder: 'Search the site',
|
|
146
|
+
primaryActionText: 'Become a client',
|
|
147
|
+
secondaryActionText: 'Go to the application'
|
|
138
148
|
}
|
|
139
149
|
};
|
|
140
150
|
exports.default = trTR;
|
|
@@ -134,7 +134,17 @@ const ukUA = {
|
|
|
134
134
|
closeButtonText: 'Close chat',
|
|
135
135
|
shareButtonTooltip: 'Share chat',
|
|
136
136
|
profileButtonTooltip: 'View profile',
|
|
137
|
-
unreadNotificationText: 'new messages'
|
|
137
|
+
unreadNotificationText: 'new messages',
|
|
138
|
+
editText: 'Edit',
|
|
139
|
+
copyText: 'Copy',
|
|
140
|
+
deleteText: 'Delete',
|
|
141
|
+
editingTitle: 'Editing'
|
|
142
|
+
},
|
|
143
|
+
Header: {
|
|
144
|
+
desktopSearchTitle: 'Search',
|
|
145
|
+
searchPlaceholder: 'Search the site',
|
|
146
|
+
primaryActionText: 'Become a client',
|
|
147
|
+
secondaryActionText: 'Go to the application'
|
|
138
148
|
}
|
|
139
149
|
};
|
|
140
150
|
exports.default = ukUA;
|
|
@@ -133,7 +133,17 @@ const viVN = {
|
|
|
133
133
|
closeButtonText: 'Close chat',
|
|
134
134
|
shareButtonTooltip: 'Share chat',
|
|
135
135
|
profileButtonTooltip: 'View profile',
|
|
136
|
-
unreadNotificationText: 'new messages'
|
|
136
|
+
unreadNotificationText: 'new messages',
|
|
137
|
+
editText: 'Edit',
|
|
138
|
+
copyText: 'Copy',
|
|
139
|
+
deleteText: 'Delete',
|
|
140
|
+
editingTitle: 'Editing'
|
|
141
|
+
},
|
|
142
|
+
Header: {
|
|
143
|
+
desktopSearchTitle: 'Search',
|
|
144
|
+
searchPlaceholder: 'Search the site',
|
|
145
|
+
primaryActionText: 'Become a client',
|
|
146
|
+
secondaryActionText: 'Go to the application'
|
|
137
147
|
}
|
|
138
148
|
};
|
|
139
149
|
exports.default = viVN;
|
|
@@ -133,7 +133,17 @@ const zhCN = {
|
|
|
133
133
|
closeButtonText: 'Close chat',
|
|
134
134
|
shareButtonTooltip: 'Share chat',
|
|
135
135
|
profileButtonTooltip: 'View profile',
|
|
136
|
-
unreadNotificationText: 'new messages'
|
|
136
|
+
unreadNotificationText: 'new messages',
|
|
137
|
+
editText: 'Edit',
|
|
138
|
+
copyText: 'Copy',
|
|
139
|
+
deleteText: 'Delete',
|
|
140
|
+
editingTitle: 'Editing'
|
|
141
|
+
},
|
|
142
|
+
Header: {
|
|
143
|
+
desktopSearchTitle: 'Search',
|
|
144
|
+
searchPlaceholder: 'Search the site',
|
|
145
|
+
primaryActionText: 'Become a client',
|
|
146
|
+
secondaryActionText: 'Go to the application'
|
|
137
147
|
}
|
|
138
148
|
};
|
|
139
149
|
exports.default = zhCN;
|