Skip to content

Commit 56ebeae

Browse files
committed
missing timeZones added
1 parent 79dca8b commit 56ebeae

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

client/packages/lowcoder/src/comps/comps/dateComp/timeUIView.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const TimeMobileUIView = React.lazy(() =>
2121
);
2222

2323
const StyledAntdSelect = styled(AntdSelect)`
24-
width: 100%;
24+
width: 350px;
2525
margin: 10px 0;
2626
.ant-select-selector {
2727
font-size: 14px;

client/packages/lowcoder/src/comps/comps/dateComp/timeZone.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,16 @@ export const timeZoneOptions = [
2020
{ label: trans("timeZone.UTC+04:00"), value: "Asia/Dubai" },
2121
{ label: trans("timeZone.UTC+05:00"), value: "Asia/Karachi" },
2222
{ label: trans("timeZone.UTC+05:30"), value: "Asia/Kolkata" },
23+
{ label: trans("timeZone.UTC+05:45"), value: "Asia/Kathmandu" },
2324
{ label: trans("timeZone.UTC+06:00"), value: "Asia/Dhaka" },
25+
{ label: trans("timeZone.UTC+06:30"), value: "Asia/Rangoon" },
2426
{ label: trans("timeZone.UTC+07:00"), value: "Asia/Bangkok" },
2527
{ label: trans("timeZone.UTC+08:00"), value: "Asia/Shanghai" },
2628
{ label: trans("timeZone.UTC+09:00"), value: "Asia/Tokyo" },
29+
{ label: trans("timeZone.UTC+09:30"), value: "Australia/Darwin" },
2730
{ label: trans("timeZone.UTC+10:00"), value: "Australia/Sydney" },
28-
{ label: trans("timeZone.UserChoice"), value: "UserChoice" },
31+
{ label: trans("timeZone.UTC+11:00"), value: "Pacific/Guadalcanal" },
32+
{ label: trans("timeZone.UTC+12:00"), value: "Pacific/Auckland" },
33+
{ label: trans("timeZone.UTC+13:00"), value: "Pacific/Tongatapu" },
34+
{ label: trans("timeZone.UserChoice"), value: "UserChoice" }
2935
];

client/packages/lowcoder/src/i18n/locales/en.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3633,14 +3633,19 @@ export const en = {
36333633
"UTC+04:00": "(UTC+04:00) Dubai, Muscat",
36343634
"UTC+05:00": "(UTC+05:00) Karachi",
36353635
"UTC+05:30": "(UTC+05:30) New Delhi",
3636+
"UTC+05:45": "(UTC+05:45) Kathmandu",
36363637
"UTC+06:00": "(UTC+06:00) Dhaka",
3638+
"UTC+06:30": "(UTC+06:30) Yangon",
36373639
"UTC+07:00": "(UTC+07:00) Bangkok",
36383640
"UTC+08:00": "(UTC+08:00) Beijing, HK",
36393641
"UTC+09:00": "(UTC+09:00) Tokyo, Seoul",
3642+
"UTC+09:30": "(UTC+09:30) Adelaide, Darwin",
36403643
"UTC+10:00": "(UTC+10:00) Sydney",
3644+
"UTC+11:00": "(UTC+11:00) Solomon Islands, New Caledonia",
3645+
"UTC+12:00": "(UTC+12:00) Auckland, Fiji",
3646+
"UTC+13:00": "(UTC+13:00) Nuku'alofa, Samoa",
36413647
"UserChoice": "User Choice"
36423648
},
3643-
36443649
tour: {
36453650
section1Title: "Steps",
36463651
section1Subtitle: "Steps",

0 commit comments

Comments
 (0)