@nmorph/nmorph-ui-kit 1.0.36 → 1.0.38

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.
@@ -0,0 +1,40 @@
1
+ export default {
2
+ NmorphSwitch: {
3
+ on: 'Вкл',
4
+ off: 'Выкл',
5
+ },
6
+ NmorphCalendar: {
7
+ sun: 'Вс',
8
+ mon: 'Пн',
9
+ tue: 'Вт',
10
+ wed: 'Ср',
11
+ thu: 'Чт',
12
+ fri: 'Пт',
13
+ sat: 'Сб',
14
+ jan: 'Январь',
15
+ feb: 'Февраль',
16
+ mar: 'Март',
17
+ apr: 'Апрель',
18
+ may: 'Май',
19
+ jun: 'Июнь',
20
+ jul: 'Июль',
21
+ aug: 'Август',
22
+ sep: 'Сентябрь',
23
+ oct: 'Октябрь',
24
+ nov: 'Ноябрь',
25
+ dec: 'Декабрь',
26
+ },
27
+ NmorphDatePicker: {
28
+ pickADate: 'Выберите дату',
29
+ },
30
+ NmorphImage: {
31
+ loadingText: 'Загрузка ...',
32
+ loadFailedText: 'Не удалось загрузить изображение',
33
+ },
34
+ NmorphSelect: {
35
+ noElementPlaceholder: 'Выберите значение',
36
+ },
37
+ NmorphFileUpload: {
38
+ selectFile: 'Выберите файл',
39
+ },
40
+ };
@@ -1,45 +1,3 @@
1
1
  import { TranslateType } from '../../../types';
2
2
 
3
- export declare const zh: {
4
- sun: string;
5
- mon: string;
6
- tue: string;
7
- wed: string;
8
- thu: string;
9
- fri: string;
10
- sat: string;
11
- jan: string;
12
- feb: string;
13
- mar: string;
14
- apr: string;
15
- may: string;
16
- jun: string;
17
- jul: string;
18
- aug: string;
19
- sep: string;
20
- oct: string;
21
- nov: string;
22
- dec: string;
23
- };
24
- export declare const ru: {
25
- sun: string;
26
- mon: string;
27
- tue: string;
28
- wed: string;
29
- thu: string;
30
- fri: string;
31
- sat: string;
32
- jan: string;
33
- feb: string;
34
- mar: string;
35
- apr: string;
36
- may: string;
37
- jun: string;
38
- jul: string;
39
- aug: string;
40
- sep: string;
41
- oct: string;
42
- nov: string;
43
- dec: string;
44
- };
45
3
  export declare const translate: TranslateType;
@@ -3,5 +3,4 @@ export * from './types/index.ts';
3
3
  export * from './outside-hooks';
4
4
  export * from './outside-utils';
5
5
  export * from './components';
6
- export { ru } from './locales/ru.ts';
7
6
  export declare const NmorphLibrary: ObjectPlugin<any[]>;
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@nmorph/nmorph-ui-kit",
3
3
  "type": "module",
4
4
  "private": false,
5
- "version": "1.0.36",
5
+ "version": "1.0.38",
6
6
  "license": "MIT",
7
7
  "engines": {
8
8
  "node": "18.13.0",
@@ -1,2 +0,0 @@
1
- export { default as en } from './en';
2
- export { default as zh } from './zh';
@@ -1,3 +0,0 @@
1
- import { TranslateMessages } from '../main';
2
-
3
- export declare const ru: TranslateMessages;