pds-dev-kit-web 2.2.201 → 2.2.203
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.d.ts +2 -2
- package/dist/index.js +3 -2
- package/dist/src/common/services/i18n/resources/en.json +36 -0
- package/dist/src/common/services/i18n/resources/es.json +36 -0
- package/dist/src/common/services/i18n/resources/fil.json +36 -0
- package/dist/src/common/services/i18n/resources/index.d.ts +252 -0
- package/dist/src/common/services/i18n/resources/ja.json +36 -0
- package/dist/src/common/services/i18n/resources/ko.json +36 -0
- package/dist/src/common/services/i18n/resources/zh-cn.json +36 -0
- package/dist/src/common/services/i18n/resources/zh-tw.json +36 -0
- package/dist/src/common/utils/dateHelper.d.ts +3 -0
- package/dist/src/common/utils/dateHelper.js +37 -0
- package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.d.ts +12 -0
- package/dist/src/desktop/components/Calendar/AllDaySchedulesSection.js +134 -0
- package/dist/src/desktop/components/Calendar/Calendar.d.ts +4 -0
- package/dist/src/desktop/components/Calendar/Calendar.js +399 -0
- package/dist/src/desktop/components/Calendar/CalendarContext.d.ts +51 -0
- package/dist/src/desktop/components/Calendar/CalendarContext.js +76 -0
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.d.ts +7 -0
- package/dist/src/desktop/components/Calendar/CurrentTimeIndicator.js +48 -0
- package/dist/src/desktop/components/Calendar/DailyView.d.ts +2 -0
- package/dist/src/desktop/components/Calendar/DailyView.js +91 -0
- package/dist/src/desktop/components/Calendar/MonthlyView.d.ts +28 -0
- package/dist/src/desktop/components/Calendar/MonthlyView.js +381 -0
- package/dist/src/desktop/components/Calendar/MultiWeekSchedulesLayer.d.ts +21 -0
- package/dist/src/desktop/components/Calendar/MultiWeekSchedulesLayer.js +204 -0
- package/dist/src/desktop/components/Calendar/ScheduleItem.d.ts +25 -0
- package/dist/src/desktop/components/Calendar/ScheduleItem.js +56 -0
- package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.d.ts +12 -0
- package/dist/src/desktop/components/Calendar/TimeBasedScheduleItem.js +184 -0
- package/dist/src/desktop/components/Calendar/WeeklyView.d.ts +6 -0
- package/dist/src/desktop/components/Calendar/WeeklyView.js +114 -0
- package/dist/src/desktop/components/Calendar/YearlyView.d.ts +13 -0
- package/dist/src/desktop/components/Calendar/YearlyView.js +76 -0
- package/dist/src/desktop/components/Calendar/calendarUtils.d.ts +24 -0
- package/dist/src/desktop/components/Calendar/calendarUtils.js +87 -0
- package/dist/src/desktop/components/Calendar/constants.d.ts +1 -0
- package/dist/src/desktop/components/Calendar/constants.js +31 -0
- package/dist/src/desktop/components/Calendar/index.d.ts +14 -0
- package/dist/src/desktop/components/Calendar/index.js +42 -0
- package/dist/src/desktop/components/Calendar/timeFormatUtils.d.ts +16 -0
- package/dist/src/desktop/components/Calendar/timeFormatUtils.js +45 -0
- package/dist/src/desktop/components/Calendar/types.d.ts +61 -0
- package/dist/src/desktop/components/Calendar/types.js +2 -0
- package/dist/src/desktop/components/PriceTextField/PriceTextField.js +12 -10
- package/dist/src/desktop/components/index.d.ts +2 -1
- package/dist/src/desktop/components/index.js +3 -1
- package/dist/src/desktop/index.d.ts +1 -1
- package/dist/src/desktop/index.js +2 -1
- package/dist/src/mobile/components/PriceTextField/PriceTextField.js +12 -10
- package/package.json +1 -1
- package/release-note.md +2 -3
package/dist/index.d.ts
CHANGED
|
@@ -8,12 +8,12 @@ export { AdminListItemTransition, InputTransition, ButtonTransition } from './sr
|
|
|
8
8
|
export { Form };
|
|
9
9
|
import { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch } from './src/hybrid';
|
|
10
10
|
export { Divider, Icon, ImageView, LinearProgress, LottieIcon, Spacing, Switch };
|
|
11
|
-
import { LayoutWF, WFContainersBox, LayoutWH, WHContainersBox, LayoutWS, WSGlobalMenuContainer, WSContainersBox, LayoutWT, WTGlobalMenuContainer, WTContainersBox, D_AdminList, D_AdminListHeader, D_AdminListItem, D_BasicButtonGroup, D_BasicChatListItem, D_BasicFormGroup, D_BasicList, D_BasicListItem, D_BlogTextField, D_BodyTextGroup, D_BoxItem, D_Card, D_CardList, D_ChatBubbleListItem, D_ChatList, D_Checkbox, D_Chip, D_ContextMenu, D_ContextMenuItem, D_DesktopAlertDialog, D_DesktopHeaderBar, D_DesktopTabBar, D_Dropdown, D_DynamicDesktopNavBar, D_DynamicDesktopNavBarTemplates, D_EditApplyTextField, D_FilterBar, D_FloatingActionButton, D_Hero, D_HorizontalFormGroup, D_IconButton, D_ImageSlide, D_LottieReactionButton, D_MainButton, D_PageTitleTextGroup, D_Radio, D_ReactionButton, D_SegmentedButtonGroup, D_Select, D_Slider, D_Snackbar, D_StatusBlock, D_TextButton, D_PriceTextField, D_TextField, D_TextLabel, D_PriceTextLabel, D_UploadIconButton, D_UploadMainButton, D_UploadTextButton, D_UserDesktopNavBar, D_UserDesktopTabBar, D_UserDesktopSideTab, D_AnnotationSheet, D_ContentSheet, D_DesktopBasicModal, D_DesktopBasicModalWithTab, DesktopBasicModalWithTabInfoType, D_DesktopHeadlessModal, D_DesktopTutorialModal, DesktopTutorialModalInfoType, D_SectionSheet } from './src/desktop';
|
|
11
|
+
import { LayoutWF, WFContainersBox, LayoutWH, WHContainersBox, LayoutWS, WSGlobalMenuContainer, WSContainersBox, LayoutWT, WTGlobalMenuContainer, WTContainersBox, D_AdminList, D_AdminListHeader, D_AdminListItem, D_BasicButtonGroup, D_BasicChatListItem, D_BasicFormGroup, D_BasicList, D_BasicListItem, D_BlogTextField, D_BodyTextGroup, D_BoxItem, D_Card, D_CardList, D_ChatBubbleListItem, D_ChatList, D_Checkbox, D_Chip, D_ContextMenu, D_ContextMenuItem, D_DesktopAlertDialog, D_DesktopHeaderBar, D_DesktopTabBar, D_Dropdown, D_DynamicDesktopNavBar, D_DynamicDesktopNavBarTemplates, D_EditApplyTextField, D_FilterBar, D_FloatingActionButton, D_Hero, D_HorizontalFormGroup, D_IconButton, D_ImageSlide, D_LottieReactionButton, D_MainButton, D_PageTitleTextGroup, D_Radio, D_ReactionButton, D_SegmentedButtonGroup, D_Select, D_Slider, D_Snackbar, D_StatusBlock, D_TextButton, D_PriceTextField, D_TextField, D_TextLabel, D_PriceTextLabel, D_UploadIconButton, D_UploadMainButton, D_UploadTextButton, D_UserDesktopNavBar, D_UserDesktopTabBar, D_UserDesktopSideTab, D_AnnotationSheet, D_ContentSheet, D_DesktopBasicModal, D_DesktopBasicModalWithTab, DesktopBasicModalWithTabInfoType, D_DesktopHeadlessModal, D_DesktopTutorialModal, DesktopTutorialModalInfoType, D_SectionSheet, D_Calendar } from './src/desktop';
|
|
12
12
|
export { LayoutWF, WFContainersBox };
|
|
13
13
|
export { LayoutWH, WHContainersBox };
|
|
14
14
|
export { LayoutWS, WSGlobalMenuContainer, WSContainersBox };
|
|
15
15
|
export { LayoutWT, WTGlobalMenuContainer, WTContainersBox };
|
|
16
|
-
export { D_AdminList, D_AdminListHeader, D_AdminListItem, D_BasicButtonGroup, D_BasicChatListItem, D_BasicFormGroup, D_BasicList, D_BasicListItem, D_BlogTextField, D_BodyTextGroup, D_BoxItem, D_Card, D_CardList, D_ChatBubbleListItem, D_ChatList, D_Checkbox, D_Chip, D_ContextMenu, D_ContextMenuItem, D_DesktopAlertDialog, D_DesktopHeaderBar, D_DesktopTabBar, D_Dropdown, D_DynamicDesktopNavBar, D_DynamicDesktopNavBarTemplates, D_EditApplyTextField, D_FilterBar, D_FloatingActionButton, D_Hero, D_HorizontalFormGroup, D_IconButton, D_ImageSlide, D_LottieReactionButton, D_MainButton, D_PageTitleTextGroup, D_Radio, D_ReactionButton, D_SegmentedButtonGroup, D_Select, D_Slider, D_Snackbar, D_StatusBlock, D_TextButton, D_PriceTextField, D_TextField, D_TextLabel, D_PriceTextLabel, D_UploadIconButton, D_UploadMainButton, D_UploadTextButton, D_UserDesktopNavBar, D_UserDesktopTabBar, D_UserDesktopSideTab };
|
|
16
|
+
export { D_AdminList, D_AdminListHeader, D_AdminListItem, D_BasicButtonGroup, D_BasicChatListItem, D_BasicFormGroup, D_BasicList, D_BasicListItem, D_BlogTextField, D_BodyTextGroup, D_BoxItem, D_Card, D_CardList, D_ChatBubbleListItem, D_ChatList, D_Checkbox, D_Chip, D_ContextMenu, D_ContextMenuItem, D_DesktopAlertDialog, D_DesktopHeaderBar, D_DesktopTabBar, D_Dropdown, D_DynamicDesktopNavBar, D_DynamicDesktopNavBarTemplates, D_EditApplyTextField, D_FilterBar, D_FloatingActionButton, D_Hero, D_HorizontalFormGroup, D_IconButton, D_ImageSlide, D_LottieReactionButton, D_MainButton, D_PageTitleTextGroup, D_Radio, D_ReactionButton, D_SegmentedButtonGroup, D_Select, D_Slider, D_Snackbar, D_StatusBlock, D_TextButton, D_PriceTextField, D_TextField, D_TextLabel, D_PriceTextLabel, D_UploadIconButton, D_UploadMainButton, D_UploadTextButton, D_UserDesktopNavBar, D_UserDesktopTabBar, D_UserDesktopSideTab, D_Calendar };
|
|
17
17
|
export { D_AnnotationSheet, D_ContentSheet, D_DesktopBasicModal, D_DesktopBasicModalWithTab, D_DesktopHeadlessModal, D_DesktopTutorialModal, D_SectionSheet };
|
|
18
18
|
export type { DesktopBasicModalWithTabInfoType, DesktopTutorialModalInfoType };
|
|
19
19
|
import { LayoutMF, MFContainersBox, LayoutMM, MMNavigationContainer, MMContainersBox, LayoutMP, MPNavigationContainer, MPTabContainer, MPContainersBox, LayoutMS, MSNavigationContainer, MSContainersBox, M_BasicButtonGroup, M_BasicChatListItem, M_BasicFormGroup, M_BasicList, M_BasicListItem, M_BlogTextField, M_BodyTextGroup, M_BoxItem, M_Card, M_CardList, M_ChatBubbleListItem, M_ChatList, M_Checkbox, M_Chip, M_ContextMenu, M_ContextMenuItem, M_DatePicker, M_Dropdown, M_FloatingActionButton, M_HorizontalFormGroup, M_IconButton, M_ImageSlide, M_LottieReactionButton, M_MainButton, M_MobileAlertDialog, M_MobileHeaderBar, M_MobileTabBar, M_Radio, M_ReactionButton, M_SegmentedButtonGroup, M_Select, M_Slider, M_Snackbar, M_StatusBlock, M_TextButton, M_PriceTextField, M_TextField, M_TextLabel, M_PriceTextLabel, M_UploadIconButton, M_UploadMainButton, M_UploadTextButton, M_AnnotationSheet, M_ContentSheet, M_MobileBasicModal, M_SectionSheet } from './src/mobile';
|
package/dist/index.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.LayoutWF = exports.Switch = exports.Spacing = exports.LottieIcon = exports.LinearProgress = exports.ImageView = exports.Icon = exports.Divider = exports.Form = exports.ButtonTransition = exports.InputTransition = exports.AdminListItemTransition = exports.scaleBounceOutIncludeTranslate02 = exports.scaleBounceInIncludeTranslate02 = exports.scaleBounceOutIncludeTranslate = exports.scaleBounceInIncludeTranslate = exports.scaleBounceOut02 = exports.scaleBounceOut = exports.scaleBounceIn02 = exports.scaleBounceIn = exports.gelatine = exports.scaleDownIncludeTranslate = exports.scaleUpIncludeTranslate = exports.scaleDown = exports.scaleUp = exports.glow = exports.fadeOut = exports.fadeIn = exports.modalOverlayOffAni = exports.modalOverlayOnAni = exports.modalOffAni = exports.modalOnAni = exports.dialogOverlayOffAni = exports.dialogOverlayOnAni = exports.dialogOffAni = exports.dialogOnAni = exports.theme = exports.customTheme = exports.uiColors = exports.spacing = exports.boxShadow = exports.mobileEditorLineHeight = exports.mobileEditorFontSize = exports.mobileLineHeight = exports.mobileFontSize = exports.desktopEditorLineHeight = exports.desktopEditorFontSize = exports.desktopLineHeight = exports.desktopFontSize = exports.fontWeight = void 0;
|
|
4
4
|
exports.D_Snackbar = exports.D_Slider = exports.D_Select = exports.D_SegmentedButtonGroup = exports.D_ReactionButton = exports.D_Radio = exports.D_PageTitleTextGroup = exports.D_MainButton = exports.D_LottieReactionButton = exports.D_ImageSlide = exports.D_IconButton = exports.D_HorizontalFormGroup = exports.D_Hero = exports.D_FloatingActionButton = exports.D_FilterBar = exports.D_EditApplyTextField = exports.D_DynamicDesktopNavBarTemplates = exports.D_DynamicDesktopNavBar = exports.D_Dropdown = exports.D_DesktopTabBar = exports.D_DesktopHeaderBar = exports.D_DesktopAlertDialog = exports.D_ContextMenuItem = exports.D_ContextMenu = exports.D_Chip = exports.D_Checkbox = exports.D_ChatList = exports.D_ChatBubbleListItem = exports.D_CardList = exports.D_Card = exports.D_BoxItem = exports.D_BodyTextGroup = exports.D_BlogTextField = exports.D_BasicListItem = exports.D_BasicList = exports.D_BasicFormGroup = exports.D_BasicChatListItem = exports.D_BasicButtonGroup = exports.D_AdminListItem = exports.D_AdminListHeader = exports.D_AdminList = exports.WTContainersBox = exports.WTGlobalMenuContainer = exports.LayoutWT = exports.WSContainersBox = exports.WSGlobalMenuContainer = exports.LayoutWS = exports.WHContainersBox = exports.LayoutWH = exports.WFContainersBox = void 0;
|
|
5
|
-
exports.
|
|
6
|
-
exports.ToolBar = exports.BulkActionBar = exports.AdminListItem = exports.AdminListHeader = exports.AdminList = exports.DynamicLayout = exports.M_SectionSheet = exports.M_MobileBasicModal = exports.M_ContentSheet = exports.M_AnnotationSheet = exports.M_UploadTextButton = exports.M_UploadMainButton = exports.M_UploadIconButton = exports.M_PriceTextLabel = exports.M_TextLabel = exports.M_TextField = exports.M_PriceTextField = exports.M_TextButton = exports.M_StatusBlock = exports.M_Snackbar = exports.M_Slider = exports.M_Select = exports.M_SegmentedButtonGroup = exports.M_ReactionButton = exports.M_Radio = exports.M_MobileTabBar = exports.M_MobileHeaderBar = exports.M_MobileAlertDialog = exports.M_MainButton = exports.M_LottieReactionButton = exports.M_ImageSlide = exports.M_IconButton = exports.M_HorizontalFormGroup = void 0;
|
|
5
|
+
exports.M_Dropdown = exports.M_DatePicker = exports.M_ContextMenuItem = exports.M_ContextMenu = exports.M_Chip = exports.M_Checkbox = exports.M_ChatList = exports.M_ChatBubbleListItem = exports.M_CardList = exports.M_Card = exports.M_BoxItem = exports.M_BodyTextGroup = exports.M_BlogTextField = exports.M_BasicListItem = exports.M_BasicList = exports.M_BasicFormGroup = exports.M_BasicChatListItem = exports.M_BasicButtonGroup = exports.MSContainersBox = exports.MSNavigationContainer = exports.LayoutMS = exports.MPContainersBox = exports.MPTabContainer = exports.MPNavigationContainer = exports.LayoutMP = exports.MMContainersBox = exports.MMNavigationContainer = exports.LayoutMM = exports.MFContainersBox = exports.LayoutMF = exports.D_SectionSheet = exports.D_DesktopTutorialModal = exports.D_DesktopHeadlessModal = exports.D_DesktopBasicModalWithTab = exports.D_DesktopBasicModal = exports.D_ContentSheet = exports.D_AnnotationSheet = exports.D_Calendar = exports.D_UserDesktopSideTab = exports.D_UserDesktopTabBar = exports.D_UserDesktopNavBar = exports.D_UploadTextButton = exports.D_UploadMainButton = exports.D_UploadIconButton = exports.D_PriceTextLabel = exports.D_TextLabel = exports.D_TextField = exports.D_PriceTextField = exports.D_TextButton = exports.D_StatusBlock = void 0;
|
|
6
|
+
exports.ToolBar = exports.BulkActionBar = exports.AdminListItem = exports.AdminListHeader = exports.AdminList = exports.DynamicLayout = exports.M_SectionSheet = exports.M_MobileBasicModal = exports.M_ContentSheet = exports.M_AnnotationSheet = exports.M_UploadTextButton = exports.M_UploadMainButton = exports.M_UploadIconButton = exports.M_PriceTextLabel = exports.M_TextLabel = exports.M_TextField = exports.M_PriceTextField = exports.M_TextButton = exports.M_StatusBlock = exports.M_Snackbar = exports.M_Slider = exports.M_Select = exports.M_SegmentedButtonGroup = exports.M_ReactionButton = exports.M_Radio = exports.M_MobileTabBar = exports.M_MobileHeaderBar = exports.M_MobileAlertDialog = exports.M_MainButton = exports.M_LottieReactionButton = exports.M_ImageSlide = exports.M_IconButton = exports.M_HorizontalFormGroup = exports.M_FloatingActionButton = void 0;
|
|
7
7
|
/* eslint-disable import/order */
|
|
8
8
|
/* eslint-disable import/first */
|
|
9
9
|
// common
|
|
@@ -137,6 +137,7 @@ Object.defineProperty(exports, "D_DesktopBasicModalWithTab", { enumerable: true,
|
|
|
137
137
|
Object.defineProperty(exports, "D_DesktopHeadlessModal", { enumerable: true, get: function () { return desktop_1.D_DesktopHeadlessModal; } });
|
|
138
138
|
Object.defineProperty(exports, "D_DesktopTutorialModal", { enumerable: true, get: function () { return desktop_1.D_DesktopTutorialModal; } });
|
|
139
139
|
Object.defineProperty(exports, "D_SectionSheet", { enumerable: true, get: function () { return desktop_1.D_SectionSheet; } });
|
|
140
|
+
Object.defineProperty(exports, "D_Calendar", { enumerable: true, get: function () { return desktop_1.D_Calendar; } });
|
|
140
141
|
// mobile
|
|
141
142
|
var mobile_1 = require("./src/mobile");
|
|
142
143
|
Object.defineProperty(exports, "LayoutMF", { enumerable: true, get: function () { return mobile_1.LayoutMF; } });
|
|
@@ -34,6 +34,42 @@
|
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
36
|
"str_3893": "Sun",
|
|
37
|
+
"str_calendar_all_day": "All day",
|
|
38
|
+
"str_calendar_schedule_more": "{{count}} more",
|
|
39
|
+
"str_calendar_today": "Today",
|
|
40
|
+
"calendar_month_1": "Jan",
|
|
41
|
+
"calendar_month_2": "Feb",
|
|
42
|
+
"calendar_month_3": "Mar",
|
|
43
|
+
"calendar_month_4": "Apr",
|
|
44
|
+
"calendar_month_5": "May",
|
|
45
|
+
"calendar_month_6": "Jun",
|
|
46
|
+
"calendar_month_7": "Jul",
|
|
47
|
+
"calendar_month_8": "Aug",
|
|
48
|
+
"calendar_month_9": "Sep",
|
|
49
|
+
"calendar_month_10": "Oct",
|
|
50
|
+
"calendar_month_11": "Nov",
|
|
51
|
+
"calendar_month_12": "Dec",
|
|
52
|
+
"str_fm_datetime_am": "{{hour}} AM",
|
|
53
|
+
"str_fm_datetime_pm": "{{hour}} PM",
|
|
54
|
+
"calendar_duration_hour": " hour",
|
|
55
|
+
"calendar_duration_hours": " hours",
|
|
56
|
+
"str_fm_datetime_noon": "Noon",
|
|
57
|
+
"str_calendar_daily_header": "{{year}}.{{month}}.{{day}}",
|
|
58
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}} - {{endDay}}",
|
|
59
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}} - {{endMonth}} {{endDay}}",
|
|
60
|
+
"str_calendar_yearly_header": "{{year}}",
|
|
61
|
+
"str_calendar_monthly_header": "{{month}}.{{year}}",
|
|
62
|
+
"str_calendar_weekly_header": "{{month}}.{{year}}",
|
|
63
|
+
"calendar_view_monthly": "Monthly",
|
|
64
|
+
"calendar_view_weekly": "Weekly",
|
|
65
|
+
"calendar_view_daily": "Daily",
|
|
66
|
+
"calendar_view_yearly": "Yearly",
|
|
67
|
+
"calendar_date_format": "{{day}} ({{dayText}})",
|
|
68
|
+
"str_calendar_weekly_date": "{{month}}-{{date}} {{day}}",
|
|
69
|
+
"str_fm_year": "Year",
|
|
70
|
+
"str_fm_month": "Month",
|
|
71
|
+
"str_fm_day": "Day",
|
|
72
|
+
"str_fm_week": "Week",
|
|
37
73
|
"multilingual_settings": "Multilingual Settings",
|
|
38
74
|
"str_multilingual_ko": "Korean",
|
|
39
75
|
"str_multilingual_en": "English",
|
|
@@ -34,6 +34,42 @@
|
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
36
|
"str_3893": "Sun",
|
|
37
|
+
"str_calendar_all_day": "Todo el día",
|
|
38
|
+
"str_calendar_schedule_more": "{{count}} más",
|
|
39
|
+
"str_calendar_today": "Hoy",
|
|
40
|
+
"calendar_month_1": "Ene",
|
|
41
|
+
"calendar_month_2": "Feb",
|
|
42
|
+
"calendar_month_3": "Mar",
|
|
43
|
+
"calendar_month_4": "Abr",
|
|
44
|
+
"calendar_month_5": "May",
|
|
45
|
+
"calendar_month_6": "Jun",
|
|
46
|
+
"calendar_month_7": "Jul",
|
|
47
|
+
"calendar_month_8": "Ago",
|
|
48
|
+
"calendar_month_9": "Sep",
|
|
49
|
+
"calendar_month_10": "Oct",
|
|
50
|
+
"calendar_month_11": "Nov",
|
|
51
|
+
"calendar_month_12": "Dic",
|
|
52
|
+
"str_fm_datetime_am": "{{hour}} AM",
|
|
53
|
+
"str_fm_datetime_pm": "{{hour}} PM",
|
|
54
|
+
"calendar_duration_hour": " hora",
|
|
55
|
+
"calendar_duration_hours": " horas",
|
|
56
|
+
"str_fm_datetime_noon": "Mediodía",
|
|
57
|
+
"str_calendar_daily_header": "{{day}} de {{month}}, {{year}}",
|
|
58
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}} - {{endDay}}",
|
|
59
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}} - {{endMonth}} {{endDay}}",
|
|
60
|
+
"str_calendar_yearly_header": "{{year}}",
|
|
61
|
+
"str_calendar_monthly_header": "{{month}}.{{year}}",
|
|
62
|
+
"str_calendar_weekly_header": "{{month}}.{{year}}",
|
|
63
|
+
"calendar_view_monthly": "Mensual",
|
|
64
|
+
"calendar_view_weekly": "Semanal",
|
|
65
|
+
"calendar_view_daily": "Diario",
|
|
66
|
+
"calendar_view_yearly": "Anual",
|
|
67
|
+
"calendar_date_format": "{{day}} ({{dayText}})",
|
|
68
|
+
"str_calendar_weekly_date": "{{month}}/{{date}} {{day}}",
|
|
69
|
+
"str_fm_year": "Año",
|
|
70
|
+
"str_fm_month": "Mes",
|
|
71
|
+
"str_fm_day": "Día",
|
|
72
|
+
"str_fm_week": "Principal",
|
|
37
73
|
"multilingual_settings": "Configuración Multiidioma",
|
|
38
74
|
"str_multilingual_ko": "Coreano",
|
|
39
75
|
"str_multilingual_en": "Inglés",
|
|
@@ -34,6 +34,42 @@
|
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
36
|
"str_3893": "Sun",
|
|
37
|
+
"str_calendar_all_day": "Buong araw",
|
|
38
|
+
"str_calendar_schedule_more": "{{count}} pa",
|
|
39
|
+
"str_calendar_today": "Ngayon",
|
|
40
|
+
"calendar_month_1": "Ene",
|
|
41
|
+
"calendar_month_2": "Peb",
|
|
42
|
+
"calendar_month_3": "Mar",
|
|
43
|
+
"calendar_month_4": "Abr",
|
|
44
|
+
"calendar_month_5": "May",
|
|
45
|
+
"calendar_month_6": "Hun",
|
|
46
|
+
"calendar_month_7": "Hul",
|
|
47
|
+
"calendar_month_8": "Ago",
|
|
48
|
+
"calendar_month_9": "Set",
|
|
49
|
+
"calendar_month_10": "Okt",
|
|
50
|
+
"calendar_month_11": "Nob",
|
|
51
|
+
"calendar_month_12": "Dis",
|
|
52
|
+
"str_fm_datetime_am": "{{hour}} NU",
|
|
53
|
+
"str_fm_datetime_pm": "{{hour}} NH",
|
|
54
|
+
"calendar_duration_hour": " oras",
|
|
55
|
+
"calendar_duration_hours": " oras",
|
|
56
|
+
"str_fm_datetime_noon": "Tanghali",
|
|
57
|
+
"str_calendar_daily_header": "{{month}} {{day}}, {{year}}",
|
|
58
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}} - {{endDay}}",
|
|
59
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}} - {{endMonth}} {{endDay}}",
|
|
60
|
+
"str_calendar_yearly_header": "{{year}}",
|
|
61
|
+
"str_calendar_monthly_header": "{{month}}.{{year}}",
|
|
62
|
+
"str_calendar_weekly_header": "{{month}}.{{year}}",
|
|
63
|
+
"calendar_view_monthly": "Buwanan",
|
|
64
|
+
"calendar_view_weekly": "Linggo",
|
|
65
|
+
"calendar_view_daily": "Araw-araw",
|
|
66
|
+
"calendar_view_yearly": "Taon",
|
|
67
|
+
"calendar_date_format": "{{day}} ({{dayText}})",
|
|
68
|
+
"str_calendar_weekly_date": "{{month}}/{{date}} {{day}}",
|
|
69
|
+
"str_fm_year": "Taon",
|
|
70
|
+
"str_fm_month": "Buwan",
|
|
71
|
+
"str_fm_day": "Araw",
|
|
72
|
+
"str_fm_week": "Linggo",
|
|
37
73
|
"multilingual_settings": "Multilingual Settings",
|
|
38
74
|
"str_multilingual_ko": "Korean",
|
|
39
75
|
"str_multilingual_en": "English",
|
|
@@ -35,6 +35,42 @@ declare const locale: {
|
|
|
35
35
|
str_3891: string;
|
|
36
36
|
str_3892: string;
|
|
37
37
|
str_3893: string;
|
|
38
|
+
str_calendar_all_day: string;
|
|
39
|
+
str_calendar_schedule_more: string;
|
|
40
|
+
str_calendar_today: string;
|
|
41
|
+
calendar_month_1: string;
|
|
42
|
+
calendar_month_2: string;
|
|
43
|
+
calendar_month_3: string;
|
|
44
|
+
calendar_month_4: string;
|
|
45
|
+
calendar_month_5: string;
|
|
46
|
+
calendar_month_6: string;
|
|
47
|
+
calendar_month_7: string;
|
|
48
|
+
calendar_month_8: string;
|
|
49
|
+
calendar_month_9: string;
|
|
50
|
+
calendar_month_10: string;
|
|
51
|
+
calendar_month_11: string;
|
|
52
|
+
calendar_month_12: string;
|
|
53
|
+
str_fm_datetime_am: string;
|
|
54
|
+
str_fm_datetime_pm: string;
|
|
55
|
+
calendar_duration_hour: string;
|
|
56
|
+
calendar_duration_hours: string;
|
|
57
|
+
str_fm_datetime_noon: string;
|
|
58
|
+
str_calendar_daily_header: string;
|
|
59
|
+
calendar_header_weekly_same_month: string;
|
|
60
|
+
calendar_header_weekly_diff_month: string;
|
|
61
|
+
str_calendar_yearly_header: string;
|
|
62
|
+
str_calendar_monthly_header: string;
|
|
63
|
+
str_calendar_weekly_header: string;
|
|
64
|
+
calendar_view_monthly: string;
|
|
65
|
+
calendar_view_weekly: string;
|
|
66
|
+
calendar_view_daily: string;
|
|
67
|
+
calendar_view_yearly: string;
|
|
68
|
+
calendar_date_format: string;
|
|
69
|
+
str_calendar_weekly_date: string;
|
|
70
|
+
str_fm_year: string;
|
|
71
|
+
str_fm_month: string;
|
|
72
|
+
str_fm_day: string;
|
|
73
|
+
str_fm_week: string;
|
|
38
74
|
multilingual_settings: string;
|
|
39
75
|
str_multilingual_ko: string;
|
|
40
76
|
str_multilingual_en: string;
|
|
@@ -95,6 +131,42 @@ declare const locale: {
|
|
|
95
131
|
str_3891: string;
|
|
96
132
|
str_3892: string;
|
|
97
133
|
str_3893: string;
|
|
134
|
+
str_calendar_all_day: string;
|
|
135
|
+
str_calendar_schedule_more: string;
|
|
136
|
+
str_calendar_today: string;
|
|
137
|
+
calendar_month_1: string;
|
|
138
|
+
calendar_month_2: string;
|
|
139
|
+
calendar_month_3: string;
|
|
140
|
+
calendar_month_4: string;
|
|
141
|
+
calendar_month_5: string;
|
|
142
|
+
calendar_month_6: string;
|
|
143
|
+
calendar_month_7: string;
|
|
144
|
+
calendar_month_8: string;
|
|
145
|
+
calendar_month_9: string;
|
|
146
|
+
calendar_month_10: string;
|
|
147
|
+
calendar_month_11: string;
|
|
148
|
+
calendar_month_12: string;
|
|
149
|
+
str_fm_datetime_am: string;
|
|
150
|
+
str_fm_datetime_pm: string;
|
|
151
|
+
calendar_duration_hour: string;
|
|
152
|
+
calendar_duration_hours: string;
|
|
153
|
+
str_fm_datetime_noon: string;
|
|
154
|
+
str_calendar_daily_header: string;
|
|
155
|
+
calendar_header_weekly_same_month: string;
|
|
156
|
+
calendar_header_weekly_diff_month: string;
|
|
157
|
+
str_calendar_yearly_header: string;
|
|
158
|
+
str_calendar_monthly_header: string;
|
|
159
|
+
str_calendar_weekly_header: string;
|
|
160
|
+
calendar_view_monthly: string;
|
|
161
|
+
calendar_view_weekly: string;
|
|
162
|
+
calendar_view_daily: string;
|
|
163
|
+
calendar_view_yearly: string;
|
|
164
|
+
calendar_date_format: string;
|
|
165
|
+
str_calendar_weekly_date: string;
|
|
166
|
+
str_fm_year: string;
|
|
167
|
+
str_fm_month: string;
|
|
168
|
+
str_fm_day: string;
|
|
169
|
+
str_fm_week: string;
|
|
98
170
|
multilingual_settings: string;
|
|
99
171
|
str_multilingual_ko: string;
|
|
100
172
|
str_multilingual_en: string;
|
|
@@ -155,6 +227,42 @@ declare const locale: {
|
|
|
155
227
|
str_3891: string;
|
|
156
228
|
str_3892: string;
|
|
157
229
|
str_3893: string;
|
|
230
|
+
str_calendar_all_day: string;
|
|
231
|
+
str_calendar_schedule_more: string;
|
|
232
|
+
str_calendar_today: string;
|
|
233
|
+
calendar_month_1: string;
|
|
234
|
+
calendar_month_2: string;
|
|
235
|
+
calendar_month_3: string;
|
|
236
|
+
calendar_month_4: string;
|
|
237
|
+
calendar_month_5: string;
|
|
238
|
+
calendar_month_6: string;
|
|
239
|
+
calendar_month_7: string;
|
|
240
|
+
calendar_month_8: string;
|
|
241
|
+
calendar_month_9: string;
|
|
242
|
+
calendar_month_10: string;
|
|
243
|
+
calendar_month_11: string;
|
|
244
|
+
calendar_month_12: string;
|
|
245
|
+
str_fm_datetime_am: string;
|
|
246
|
+
str_fm_datetime_pm: string;
|
|
247
|
+
calendar_duration_hour: string;
|
|
248
|
+
calendar_duration_hours: string;
|
|
249
|
+
str_fm_datetime_noon: string;
|
|
250
|
+
str_calendar_daily_header: string;
|
|
251
|
+
calendar_header_weekly_same_month: string;
|
|
252
|
+
calendar_header_weekly_diff_month: string;
|
|
253
|
+
str_calendar_yearly_header: string;
|
|
254
|
+
str_calendar_monthly_header: string;
|
|
255
|
+
str_calendar_weekly_header: string;
|
|
256
|
+
calendar_view_monthly: string;
|
|
257
|
+
calendar_view_weekly: string;
|
|
258
|
+
calendar_view_daily: string;
|
|
259
|
+
calendar_view_yearly: string;
|
|
260
|
+
calendar_date_format: string;
|
|
261
|
+
str_calendar_weekly_date: string;
|
|
262
|
+
str_fm_year: string;
|
|
263
|
+
str_fm_month: string;
|
|
264
|
+
str_fm_day: string;
|
|
265
|
+
str_fm_week: string;
|
|
158
266
|
multilingual_settings: string;
|
|
159
267
|
str_multilingual_ko: string;
|
|
160
268
|
str_multilingual_en: string;
|
|
@@ -215,6 +323,42 @@ declare const locale: {
|
|
|
215
323
|
str_3891: string;
|
|
216
324
|
str_3892: string;
|
|
217
325
|
str_3893: string;
|
|
326
|
+
str_calendar_all_day: string;
|
|
327
|
+
str_calendar_schedule_more: string;
|
|
328
|
+
str_calendar_today: string;
|
|
329
|
+
calendar_month_1: string;
|
|
330
|
+
calendar_month_2: string;
|
|
331
|
+
calendar_month_3: string;
|
|
332
|
+
calendar_month_4: string;
|
|
333
|
+
calendar_month_5: string;
|
|
334
|
+
calendar_month_6: string;
|
|
335
|
+
calendar_month_7: string;
|
|
336
|
+
calendar_month_8: string;
|
|
337
|
+
calendar_month_9: string;
|
|
338
|
+
calendar_month_10: string;
|
|
339
|
+
calendar_month_11: string;
|
|
340
|
+
calendar_month_12: string;
|
|
341
|
+
str_fm_datetime_am: string;
|
|
342
|
+
str_fm_datetime_pm: string;
|
|
343
|
+
calendar_duration_hour: string;
|
|
344
|
+
calendar_duration_hours: string;
|
|
345
|
+
str_fm_datetime_noon: string;
|
|
346
|
+
str_calendar_daily_header: string;
|
|
347
|
+
calendar_header_weekly_same_month: string;
|
|
348
|
+
calendar_header_weekly_diff_month: string;
|
|
349
|
+
str_calendar_yearly_header: string;
|
|
350
|
+
str_calendar_monthly_header: string;
|
|
351
|
+
str_calendar_weekly_header: string;
|
|
352
|
+
calendar_view_monthly: string;
|
|
353
|
+
calendar_view_weekly: string;
|
|
354
|
+
calendar_view_daily: string;
|
|
355
|
+
calendar_view_yearly: string;
|
|
356
|
+
calendar_date_format: string;
|
|
357
|
+
str_calendar_weekly_date: string;
|
|
358
|
+
str_fm_year: string;
|
|
359
|
+
str_fm_month: string;
|
|
360
|
+
str_fm_day: string;
|
|
361
|
+
str_fm_week: string;
|
|
218
362
|
multilingual_settings: string;
|
|
219
363
|
str_multilingual_ko: string;
|
|
220
364
|
str_multilingual_en: string;
|
|
@@ -275,6 +419,42 @@ declare const locale: {
|
|
|
275
419
|
str_3891: string;
|
|
276
420
|
str_3892: string;
|
|
277
421
|
str_3893: string;
|
|
422
|
+
str_calendar_all_day: string;
|
|
423
|
+
str_calendar_schedule_more: string;
|
|
424
|
+
str_calendar_today: string;
|
|
425
|
+
calendar_month_1: string;
|
|
426
|
+
calendar_month_2: string;
|
|
427
|
+
calendar_month_3: string;
|
|
428
|
+
calendar_month_4: string;
|
|
429
|
+
calendar_month_5: string;
|
|
430
|
+
calendar_month_6: string;
|
|
431
|
+
calendar_month_7: string;
|
|
432
|
+
calendar_month_8: string;
|
|
433
|
+
calendar_month_9: string;
|
|
434
|
+
calendar_month_10: string;
|
|
435
|
+
calendar_month_11: string;
|
|
436
|
+
calendar_month_12: string;
|
|
437
|
+
str_fm_datetime_am: string;
|
|
438
|
+
str_fm_datetime_pm: string;
|
|
439
|
+
calendar_duration_hour: string;
|
|
440
|
+
calendar_duration_hours: string;
|
|
441
|
+
str_fm_datetime_noon: string;
|
|
442
|
+
str_calendar_daily_header: string;
|
|
443
|
+
calendar_header_weekly_same_month: string;
|
|
444
|
+
calendar_header_weekly_diff_month: string;
|
|
445
|
+
str_calendar_yearly_header: string;
|
|
446
|
+
str_calendar_monthly_header: string;
|
|
447
|
+
str_calendar_weekly_header: string;
|
|
448
|
+
calendar_view_monthly: string;
|
|
449
|
+
calendar_view_weekly: string;
|
|
450
|
+
calendar_view_daily: string;
|
|
451
|
+
calendar_view_yearly: string;
|
|
452
|
+
calendar_date_format: string;
|
|
453
|
+
str_calendar_weekly_date: string;
|
|
454
|
+
str_fm_year: string;
|
|
455
|
+
str_fm_month: string;
|
|
456
|
+
str_fm_day: string;
|
|
457
|
+
str_fm_week: string;
|
|
278
458
|
multilingual_settings: string;
|
|
279
459
|
str_multilingual_ko: string;
|
|
280
460
|
str_multilingual_en: string;
|
|
@@ -335,6 +515,42 @@ declare const locale: {
|
|
|
335
515
|
str_3891: string;
|
|
336
516
|
str_3892: string;
|
|
337
517
|
str_3893: string;
|
|
518
|
+
str_calendar_all_day: string;
|
|
519
|
+
str_calendar_schedule_more: string;
|
|
520
|
+
str_calendar_today: string;
|
|
521
|
+
calendar_month_1: string;
|
|
522
|
+
calendar_month_2: string;
|
|
523
|
+
calendar_month_3: string;
|
|
524
|
+
calendar_month_4: string;
|
|
525
|
+
calendar_month_5: string;
|
|
526
|
+
calendar_month_6: string;
|
|
527
|
+
calendar_month_7: string;
|
|
528
|
+
calendar_month_8: string;
|
|
529
|
+
calendar_month_9: string;
|
|
530
|
+
calendar_month_10: string;
|
|
531
|
+
calendar_month_11: string;
|
|
532
|
+
calendar_month_12: string;
|
|
533
|
+
str_fm_datetime_am: string;
|
|
534
|
+
str_fm_datetime_pm: string;
|
|
535
|
+
calendar_duration_hour: string;
|
|
536
|
+
calendar_duration_hours: string;
|
|
537
|
+
str_fm_datetime_noon: string;
|
|
538
|
+
str_calendar_daily_header: string;
|
|
539
|
+
calendar_header_weekly_same_month: string;
|
|
540
|
+
calendar_header_weekly_diff_month: string;
|
|
541
|
+
str_calendar_yearly_header: string;
|
|
542
|
+
str_calendar_monthly_header: string;
|
|
543
|
+
str_calendar_weekly_header: string;
|
|
544
|
+
calendar_view_monthly: string;
|
|
545
|
+
calendar_view_weekly: string;
|
|
546
|
+
calendar_view_daily: string;
|
|
547
|
+
calendar_view_yearly: string;
|
|
548
|
+
calendar_date_format: string;
|
|
549
|
+
str_calendar_weekly_date: string;
|
|
550
|
+
str_fm_year: string;
|
|
551
|
+
str_fm_month: string;
|
|
552
|
+
str_fm_day: string;
|
|
553
|
+
str_fm_week: string;
|
|
338
554
|
multilingual_settings: string;
|
|
339
555
|
str_multilingual_ko: string;
|
|
340
556
|
str_multilingual_en: string;
|
|
@@ -395,6 +611,42 @@ declare const locale: {
|
|
|
395
611
|
str_3891: string;
|
|
396
612
|
str_3892: string;
|
|
397
613
|
str_3893: string;
|
|
614
|
+
str_calendar_all_day: string;
|
|
615
|
+
str_calendar_schedule_more: string;
|
|
616
|
+
str_calendar_today: string;
|
|
617
|
+
calendar_month_1: string;
|
|
618
|
+
calendar_month_2: string;
|
|
619
|
+
calendar_month_3: string;
|
|
620
|
+
calendar_month_4: string;
|
|
621
|
+
calendar_month_5: string;
|
|
622
|
+
calendar_month_6: string;
|
|
623
|
+
calendar_month_7: string;
|
|
624
|
+
calendar_month_8: string;
|
|
625
|
+
calendar_month_9: string;
|
|
626
|
+
calendar_month_10: string;
|
|
627
|
+
calendar_month_11: string;
|
|
628
|
+
calendar_month_12: string;
|
|
629
|
+
str_fm_datetime_am: string;
|
|
630
|
+
str_fm_datetime_pm: string;
|
|
631
|
+
calendar_duration_hour: string;
|
|
632
|
+
calendar_duration_hours: string;
|
|
633
|
+
str_fm_datetime_noon: string;
|
|
634
|
+
str_calendar_daily_header: string;
|
|
635
|
+
calendar_header_weekly_same_month: string;
|
|
636
|
+
calendar_header_weekly_diff_month: string;
|
|
637
|
+
str_calendar_yearly_header: string;
|
|
638
|
+
str_calendar_monthly_header: string;
|
|
639
|
+
str_calendar_weekly_header: string;
|
|
640
|
+
calendar_view_monthly: string;
|
|
641
|
+
calendar_view_weekly: string;
|
|
642
|
+
calendar_view_daily: string;
|
|
643
|
+
calendar_view_yearly: string;
|
|
644
|
+
calendar_date_format: string;
|
|
645
|
+
str_calendar_weekly_date: string;
|
|
646
|
+
str_fm_year: string;
|
|
647
|
+
str_fm_month: string;
|
|
648
|
+
str_fm_day: string;
|
|
649
|
+
str_fm_week: string;
|
|
398
650
|
multilingual_settings: string;
|
|
399
651
|
str_multilingual_ko: string;
|
|
400
652
|
str_multilingual_en: string;
|
|
@@ -34,6 +34,42 @@
|
|
|
34
34
|
"str_3891": "金",
|
|
35
35
|
"str_3892": "土",
|
|
36
36
|
"str_3893": "日",
|
|
37
|
+
"str_calendar_all_day": "終日",
|
|
38
|
+
"str_calendar_schedule_more": "{{count}}件以上",
|
|
39
|
+
"str_calendar_today": "今日",
|
|
40
|
+
"calendar_month_1": "1月",
|
|
41
|
+
"calendar_month_2": "2月",
|
|
42
|
+
"calendar_month_3": "3月",
|
|
43
|
+
"calendar_month_4": "4月",
|
|
44
|
+
"calendar_month_5": "5月",
|
|
45
|
+
"calendar_month_6": "6月",
|
|
46
|
+
"calendar_month_7": "7月",
|
|
47
|
+
"calendar_month_8": "8月",
|
|
48
|
+
"calendar_month_9": "9月",
|
|
49
|
+
"calendar_month_10": "10月",
|
|
50
|
+
"calendar_month_11": "11月",
|
|
51
|
+
"calendar_month_12": "12月",
|
|
52
|
+
"str_fm_datetime_am": "午前{{hour}}時",
|
|
53
|
+
"str_fm_datetime_pm": "午後{{hour}}時",
|
|
54
|
+
"calendar_duration_hour": "時間",
|
|
55
|
+
"calendar_duration_hours": "時間",
|
|
56
|
+
"str_fm_datetime_noon": "昼",
|
|
57
|
+
"str_calendar_daily_header": "{{month}} {{day}}, {{year}}",
|
|
58
|
+
"calendar_header_weekly_same_month": "{{month}}{{startDay}}日 - {{endDay}}日",
|
|
59
|
+
"calendar_header_weekly_diff_month": "{{startMonth}}{{startDay}}日 - {{endMonth}}{{endDay}}日",
|
|
60
|
+
"str_calendar_yearly_header": "{{year}}",
|
|
61
|
+
"str_calendar_monthly_header": "{{month}}.{{year}}",
|
|
62
|
+
"str_calendar_weekly_header": "{{month}}.{{year}}",
|
|
63
|
+
"calendar_view_monthly": "月",
|
|
64
|
+
"calendar_view_weekly": "週",
|
|
65
|
+
"calendar_view_daily": "日",
|
|
66
|
+
"calendar_view_yearly": "年",
|
|
67
|
+
"calendar_date_format": "{{day}}日 ({{dayText}})",
|
|
68
|
+
"str_calendar_weekly_date": "{{month}}月{{date}}日 ({{day}})",
|
|
69
|
+
"str_fm_year": "年",
|
|
70
|
+
"str_fm_month": "月",
|
|
71
|
+
"str_fm_day": "日",
|
|
72
|
+
"str_fm_week": "週",
|
|
37
73
|
"multilingual_settings": "多言語設定",
|
|
38
74
|
"str_multilingual_ko": "韓国語",
|
|
39
75
|
"str_multilingual_en": "英語",
|
|
@@ -34,6 +34,42 @@
|
|
|
34
34
|
"str_3891": "금",
|
|
35
35
|
"str_3892": "토",
|
|
36
36
|
"str_3893": "일",
|
|
37
|
+
"str_calendar_all_day": "종일",
|
|
38
|
+
"str_calendar_schedule_more": "{{count}}개 더보기",
|
|
39
|
+
"str_calendar_today": "오늘",
|
|
40
|
+
"calendar_month_1": "1월",
|
|
41
|
+
"calendar_month_2": "2월",
|
|
42
|
+
"calendar_month_3": "3월",
|
|
43
|
+
"calendar_month_4": "4월",
|
|
44
|
+
"calendar_month_5": "5월",
|
|
45
|
+
"calendar_month_6": "6월",
|
|
46
|
+
"calendar_month_7": "7월",
|
|
47
|
+
"calendar_month_8": "8월",
|
|
48
|
+
"calendar_month_9": "9월",
|
|
49
|
+
"calendar_month_10": "10월",
|
|
50
|
+
"calendar_month_11": "11월",
|
|
51
|
+
"calendar_month_12": "12월",
|
|
52
|
+
"str_fm_datetime_am": "오전 {{hour}}시",
|
|
53
|
+
"str_fm_datetime_pm": "오후 {{hour}}시",
|
|
54
|
+
"calendar_duration_hour": "시간",
|
|
55
|
+
"calendar_duration_hours": "시간",
|
|
56
|
+
"str_fm_datetime_noon": "정오",
|
|
57
|
+
"str_calendar_daily_header": "{{year}}년 {{month}}월 {{day}}일",
|
|
58
|
+
"calendar_header_weekly_same_month": "{{month}} {{startDay}}일 - {{endDay}}일",
|
|
59
|
+
"calendar_header_weekly_diff_month": "{{startMonth}} {{startDay}}일 - {{endMonth}} {{endDay}}일",
|
|
60
|
+
"str_calendar_yearly_header": "{{year}}년",
|
|
61
|
+
"str_calendar_monthly_header": "{{year}}년 {{month}}월",
|
|
62
|
+
"str_calendar_weekly_header": "{{year}}년 {{month}}월",
|
|
63
|
+
"calendar_view_monthly": "월간",
|
|
64
|
+
"calendar_view_weekly": "주간",
|
|
65
|
+
"calendar_view_daily": "일간",
|
|
66
|
+
"calendar_view_yearly": "연간",
|
|
67
|
+
"calendar_date_format": "{{day}}일 ({{dayText}})",
|
|
68
|
+
"str_calendar_weekly_date": "{{month}}월 {{date}}일 ({{day}})",
|
|
69
|
+
"str_fm_year": "년",
|
|
70
|
+
"str_fm_month": "월",
|
|
71
|
+
"str_fm_day": "일",
|
|
72
|
+
"str_fm_week": "주",
|
|
37
73
|
"multilingual_settings": "다국어 설정",
|
|
38
74
|
"str_multilingual_ko": "한국어",
|
|
39
75
|
"str_multilingual_en": "영어",
|
|
@@ -34,6 +34,42 @@
|
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
36
|
"str_3893": "Sun",
|
|
37
|
+
"str_calendar_all_day": "全天",
|
|
38
|
+
"str_calendar_schedule_more": "{{count}} 更多",
|
|
39
|
+
"str_calendar_today": "今天",
|
|
40
|
+
"calendar_month_1": "1月",
|
|
41
|
+
"calendar_month_2": "2月",
|
|
42
|
+
"calendar_month_3": "3月",
|
|
43
|
+
"calendar_month_4": "4月",
|
|
44
|
+
"calendar_month_5": "5月",
|
|
45
|
+
"calendar_month_6": "6月",
|
|
46
|
+
"calendar_month_7": "7月",
|
|
47
|
+
"calendar_month_8": "8月",
|
|
48
|
+
"calendar_month_9": "9月",
|
|
49
|
+
"calendar_month_10": "10月",
|
|
50
|
+
"calendar_month_11": "11月",
|
|
51
|
+
"calendar_month_12": "12月",
|
|
52
|
+
"str_fm_datetime_am": "上午{{hour}}时",
|
|
53
|
+
"str_fm_datetime_pm": "下午{{hour}}时",
|
|
54
|
+
"calendar_duration_hour": "小时",
|
|
55
|
+
"calendar_duration_hours": "小时",
|
|
56
|
+
"str_fm_datetime_noon": "中午",
|
|
57
|
+
"str_calendar_daily_header": "{{year}}年{{month}}{{day}}日",
|
|
58
|
+
"calendar_header_weekly_same_month": "{{month}}{{startDay}}日 - {{endDay}}日",
|
|
59
|
+
"calendar_header_weekly_diff_month": "{{startMonth}}{{startDay}}日 - {{endMonth}}{{endDay}}日",
|
|
60
|
+
"str_calendar_yearly_header": "{{year}}",
|
|
61
|
+
"str_calendar_monthly_header": "{{month}}.{{year}}",
|
|
62
|
+
"str_calendar_weekly_header": "{{month}}.{{year}}",
|
|
63
|
+
"calendar_view_monthly": "月",
|
|
64
|
+
"calendar_view_weekly": "周",
|
|
65
|
+
"calendar_view_daily": "日",
|
|
66
|
+
"calendar_view_yearly": "年",
|
|
67
|
+
"calendar_date_format": "{{day}}日 ({{dayText}})",
|
|
68
|
+
"str_calendar_weekly_date": "{{month}}月{{date}}日 ({{day}})",
|
|
69
|
+
"str_fm_year": "年份",
|
|
70
|
+
"str_fm_month": "月",
|
|
71
|
+
"str_fm_day": "日",
|
|
72
|
+
"str_fm_week": "周",
|
|
37
73
|
"multilingual_settings": "多语言设置",
|
|
38
74
|
"str_multilingual_ko": "韩语",
|
|
39
75
|
"str_multilingual_en": "英语",
|
|
@@ -34,6 +34,42 @@
|
|
|
34
34
|
"str_3891": "Fri",
|
|
35
35
|
"str_3892": "Sat",
|
|
36
36
|
"str_3893": "Sun",
|
|
37
|
+
"str_calendar_all_day": "全天",
|
|
38
|
+
"str_calendar_schedule_more": "{{count}} 更多",
|
|
39
|
+
"str_calendar_today": "今天",
|
|
40
|
+
"calendar_month_1": "1月",
|
|
41
|
+
"calendar_month_2": "2月",
|
|
42
|
+
"calendar_month_3": "3月",
|
|
43
|
+
"calendar_month_4": "4月",
|
|
44
|
+
"calendar_month_5": "5月",
|
|
45
|
+
"calendar_month_6": "6月",
|
|
46
|
+
"calendar_month_7": "7月",
|
|
47
|
+
"calendar_month_8": "8月",
|
|
48
|
+
"calendar_month_9": "9月",
|
|
49
|
+
"calendar_month_10": "10月",
|
|
50
|
+
"calendar_month_11": "11月",
|
|
51
|
+
"calendar_month_12": "12月",
|
|
52
|
+
"str_fm_datetime_am": "上午{{hour}}時",
|
|
53
|
+
"str_fm_datetime_pm": "下午{{hour}}時",
|
|
54
|
+
"calendar_duration_hour": "小時",
|
|
55
|
+
"calendar_duration_hours": "小時",
|
|
56
|
+
"str_fm_datetime_noon": "中午",
|
|
57
|
+
"str_calendar_daily_header": "{{year}}年{{month}}{{day}}日",
|
|
58
|
+
"calendar_header_weekly_same_month": "{{month}}{{startDay}}日 - {{endDay}}日",
|
|
59
|
+
"calendar_header_weekly_diff_month": "{{startMonth}}{{startDay}}日 - {{endMonth}}{{endDay}}日",
|
|
60
|
+
"str_calendar_yearly_header": "{{year}}",
|
|
61
|
+
"str_calendar_monthly_header": "{{month}}.{{year}}",
|
|
62
|
+
"str_calendar_weekly_header": "{{month}}.{{year}}",
|
|
63
|
+
"calendar_view_monthly": "月",
|
|
64
|
+
"calendar_view_weekly": "周",
|
|
65
|
+
"calendar_view_daily": "日",
|
|
66
|
+
"calendar_view_yearly": "年",
|
|
67
|
+
"calendar_date_format": "{{day}}日 ({{dayText}})",
|
|
68
|
+
"str_calendar_weekly_date": "{{month}}月{{date}}日 ({{day}})",
|
|
69
|
+
"str_fm_year": "年份",
|
|
70
|
+
"str_fm_month": "月",
|
|
71
|
+
"str_fm_day": "日",
|
|
72
|
+
"str_fm_week": "週",
|
|
37
73
|
"multilingual_settings": "多語言設置",
|
|
38
74
|
"str_multilingual_ko": "韓語",
|
|
39
75
|
"str_multilingual_en": "英語",
|