@leandrosk/dashboard 3.5.7 → 3.5.9
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/plugin/constants.js +2 -0
- package/dist/vite/constants.d.ts +1 -1
- package/dist/vite/constants.js +1 -1
- package/package.json +1 -1
- package/src/i18n/common-strings.ts +3 -0
- package/src/i18n/locales/el.po +197 -181
- package/src/i18n/locales/en.po +121 -96
package/dist/plugin/constants.js
CHANGED
|
@@ -18,6 +18,7 @@ exports.defaultAvailableLanguages = [
|
|
|
18
18
|
'zh_Hant',
|
|
19
19
|
'bg',
|
|
20
20
|
'nl',
|
|
21
|
+
'el',
|
|
21
22
|
];
|
|
22
23
|
exports.defaultAvailableLocales = [
|
|
23
24
|
'en-US',
|
|
@@ -29,5 +30,6 @@ exports.defaultAvailableLocales = [
|
|
|
29
30
|
'pt-PT',
|
|
30
31
|
'bg_BG',
|
|
31
32
|
'nl-NL',
|
|
33
|
+
'el-GR',
|
|
32
34
|
];
|
|
33
35
|
exports.manageDashboardGlobalViews = new core_1.RwPermissionDefinition('DashboardGlobalViews');
|
package/dist/vite/constants.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { LanguageCode } from '@vendure/core';
|
|
2
|
-
export declare const defaultLanguage = LanguageCode.
|
|
2
|
+
export declare const defaultLanguage = LanguageCode.en;
|
|
3
3
|
export declare const defaultLocale: undefined;
|
|
4
4
|
export declare const defaultAvailableLanguages: LanguageCode[];
|
|
5
5
|
export declare const defaultAvailableLocales: string[];
|
package/dist/vite/constants.js
CHANGED
package/package.json
CHANGED
|
@@ -18,6 +18,7 @@ const commonI18nString = {
|
|
|
18
18
|
/* i18n*/ 'paymentState.Declined',
|
|
19
19
|
/* i18n*/ 'paymentState.Error',
|
|
20
20
|
/* i18n*/ 'paymentState.Cancelled',
|
|
21
|
+
/* i18n*/ 'paymentState.AwaitingPayment',
|
|
21
22
|
],
|
|
22
23
|
refundState: [
|
|
23
24
|
/* i18n*/ 'paymentState.Pending',
|
|
@@ -39,6 +40,8 @@ const commonI18nString = {
|
|
|
39
40
|
/* i18n*/ 'orderState.Modifying',
|
|
40
41
|
/* i18n*/ 'orderState.ArrangingAdditionalPayment',
|
|
41
42
|
/* i18n*/ 'orderState.Validating',
|
|
43
|
+
/* i18n*/ 'orderState.AwaitingPayment',
|
|
44
|
+
/* i18n*/ 'orderState.Complete',
|
|
42
45
|
],
|
|
43
46
|
refundReason: [
|
|
44
47
|
/* i18n*/ 'refundReason.CustomerRequest',
|