smarthr-ui 95.0.0 → 96.0.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.
Files changed (61) hide show
  1. package/lib/components/Chip/Chip.cjs +2 -2
  2. package/lib/components/Chip/Chip.cjs.map +1 -1
  3. package/lib/components/Chip/Chip.d.ts +7 -7
  4. package/lib/components/Chip/Chip.js +2 -2
  5. package/lib/components/Chip/Chip.js.map +1 -1
  6. package/lib/index.cjs +2 -0
  7. package/lib/index.cjs.map +1 -1
  8. package/lib/index.d.ts +1 -1
  9. package/lib/index.js +1 -0
  10. package/lib/index.js.map +1 -1
  11. package/lib/intl/index.cjs +1 -0
  12. package/lib/intl/index.cjs.map +1 -1
  13. package/lib/intl/index.d.ts +1 -1
  14. package/lib/intl/index.js +1 -1
  15. package/lib/intl/localeMap.cjs +1 -1
  16. package/lib/intl/localeMap.cjs.map +1 -1
  17. package/lib/intl/localeMap.js +1 -1
  18. package/lib/intl/localeMap.js.map +1 -1
  19. package/lib/intl/locales/en_us.cjs +17 -17
  20. package/lib/intl/locales/en_us.cjs.map +1 -1
  21. package/lib/intl/locales/en_us.d.ts +17 -17
  22. package/lib/intl/locales/en_us.js +17 -17
  23. package/lib/intl/locales/en_us.js.map +1 -1
  24. package/lib/intl/locales/id_id.cjs +21 -21
  25. package/lib/intl/locales/id_id.cjs.map +1 -1
  26. package/lib/intl/locales/id_id.d.ts +21 -21
  27. package/lib/intl/locales/id_id.js +21 -21
  28. package/lib/intl/locales/id_id.js.map +1 -1
  29. package/lib/intl/locales/index.d.ts +92 -92
  30. package/lib/intl/locales/ja_easy.cjs +8 -8
  31. package/lib/intl/locales/ja_easy.cjs.map +1 -1
  32. package/lib/intl/locales/ja_easy.d.ts +8 -8
  33. package/lib/intl/locales/ja_easy.js +8 -8
  34. package/lib/intl/locales/ja_easy.js.map +1 -1
  35. package/lib/intl/locales/ko_kr.cjs +4 -4
  36. package/lib/intl/locales/ko_kr.cjs.map +1 -1
  37. package/lib/intl/locales/ko_kr.d.ts +4 -4
  38. package/lib/intl/locales/ko_kr.js +4 -4
  39. package/lib/intl/locales/ko_kr.js.map +1 -1
  40. package/lib/intl/locales/pt_br.cjs +19 -19
  41. package/lib/intl/locales/pt_br.cjs.map +1 -1
  42. package/lib/intl/locales/pt_br.d.ts +19 -19
  43. package/lib/intl/locales/pt_br.js +19 -19
  44. package/lib/intl/locales/pt_br.js.map +1 -1
  45. package/lib/intl/locales/vi_vn.cjs +15 -15
  46. package/lib/intl/locales/vi_vn.cjs.map +1 -1
  47. package/lib/intl/locales/vi_vn.d.ts +15 -15
  48. package/lib/intl/locales/vi_vn.js +15 -15
  49. package/lib/intl/locales/vi_vn.js.map +1 -1
  50. package/lib/intl/locales/zh_hans_cn.cjs +4 -4
  51. package/lib/intl/locales/zh_hans_cn.cjs.map +1 -1
  52. package/lib/intl/locales/zh_hans_cn.d.ts +4 -4
  53. package/lib/intl/locales/zh_hans_cn.js +4 -4
  54. package/lib/intl/locales/zh_hans_cn.js.map +1 -1
  55. package/lib/intl/locales/zh_hant_tw.cjs +4 -4
  56. package/lib/intl/locales/zh_hant_tw.cjs.map +1 -1
  57. package/lib/intl/locales/zh_hant_tw.d.ts +4 -4
  58. package/lib/intl/locales/zh_hant_tw.js +4 -4
  59. package/lib/intl/locales/zh_hant_tw.js.map +1 -1
  60. package/metadata.json +1 -1
  61. package/package.json +2 -2
@@ -19,14 +19,14 @@ const classNameGenerator = index.tv({
19
19
  red: 'shr-border-danger',
20
20
  },
21
21
  size: {
22
- s: 'shr-px-0.5 shr-py-0.25 shr-text-sm',
22
+ S: 'shr-px-0.5 shr-py-0.25 shr-text-sm',
23
23
  },
24
24
  disabled: {
25
25
  true: 'shr-bg-white/50 shr-text-disabled',
26
26
  },
27
27
  },
28
28
  defaultVariants: {
29
- size: 's',
29
+ size: 'S',
30
30
  color: 'grey',
31
31
  },
32
32
  });
@@ -1 +1 @@
1
- {"version":3,"file":"Chip.cjs","sources":["../../../src/components/Chip/Chip.tsx"],"sourcesContent":["import { type ComponentPropsWithoutRef, type FC, type PropsWithChildren, useMemo } from 'react'\nimport { type VariantProps, tv } from 'tailwind-variants'\n\ntype Props = PropsWithChildren<\n VariantProps<typeof classNameGenerator> & ComponentPropsWithoutRef<'span'>\n>\n\nconst classNameGenerator = tv({\n base: [\n 'smarthr-ui-Chip',\n 'shr-border-shorthand shr-rounded-full shr-bg-white shr-leading-none shr-text-black',\n 'contrast-more:shr-border-high-contrast',\n ],\n variants: {\n color: {\n grey: 'shr-border-grey-20',\n blue: 'shr-border-main',\n green: 'shr-border-green',\n orange: 'shr-border-orange',\n red: 'shr-border-danger',\n },\n size: {\n s: 'shr-px-0.5 shr-py-0.25 shr-text-sm',\n },\n disabled: {\n true: 'shr-bg-white/50 shr-text-disabled',\n },\n },\n defaultVariants: {\n size: 's',\n color: 'grey',\n },\n})\n\nexport const Chip: FC<Props> = ({ size, color, disabled, className, ...rest }) => {\n const actualClassName = useMemo(\n () => classNameGenerator({ size, color, disabled, className }),\n [size, color, disabled, className],\n )\n return <span {...rest} className={actualClassName} />\n}\n"],"names":["tv","useMemo","_jsx"],"mappings":";;;;;;AAOA,MAAM,kBAAkB,GAAGA,QAAE,CAAC;AAC5B,IAAA,IAAI,EAAE;QACJ,iBAAiB;QACjB,oFAAoF;QACpF,wCAAwC;AACzC,KAAA;AACD,IAAA,QAAQ,EAAE;AACR,QAAA,KAAK,EAAE;AACL,YAAA,IAAI,EAAE,oBAAoB;AAC1B,YAAA,IAAI,EAAE,iBAAiB;AACvB,YAAA,KAAK,EAAE,kBAAkB;AACzB,YAAA,MAAM,EAAE,mBAAmB;AAC3B,YAAA,GAAG,EAAE,mBAAmB;AACzB,SAAA;AACD,QAAA,IAAI,EAAE;AACJ,YAAA,CAAC,EAAE,oCAAoC;AACxC,SAAA;AACD,QAAA,QAAQ,EAAE;AACR,YAAA,IAAI,EAAE,mCAAmC;AAC1C,SAAA;AACF,KAAA;AACD,IAAA,eAAe,EAAE;AACf,QAAA,IAAI,EAAE,GAAG;AACT,QAAA,KAAK,EAAE,MAAM;AACd,KAAA;AACF,CAAA,CAAC;AAEK,MAAM,IAAI,GAAc,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,KAAI;AAC/E,IAAA,MAAM,eAAe,GAAGC,aAAO,CAC7B,MAAM,kBAAkB,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC,EAC9D,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,CAAC,CACnC;AACD,IAAA,OAAOC,4BAAU,IAAI,EAAE,SAAS,EAAE,eAAe,GAAI;AACvD;;;;"}
1
+ {"version":3,"file":"Chip.cjs","sources":["../../../src/components/Chip/Chip.tsx"],"sourcesContent":["import { type ComponentPropsWithoutRef, type FC, type PropsWithChildren, useMemo } from 'react'\nimport { type VariantProps, tv } from 'tailwind-variants'\n\ntype Props = PropsWithChildren<\n VariantProps<typeof classNameGenerator> & ComponentPropsWithoutRef<'span'>\n>\n\nconst classNameGenerator = tv({\n base: [\n 'smarthr-ui-Chip',\n 'shr-border-shorthand shr-rounded-full shr-bg-white shr-leading-none shr-text-black',\n 'contrast-more:shr-border-high-contrast',\n ],\n variants: {\n color: {\n grey: 'shr-border-grey-20',\n blue: 'shr-border-main',\n green: 'shr-border-green',\n orange: 'shr-border-orange',\n red: 'shr-border-danger',\n },\n size: {\n S: 'shr-px-0.5 shr-py-0.25 shr-text-sm',\n },\n disabled: {\n true: 'shr-bg-white/50 shr-text-disabled',\n },\n },\n defaultVariants: {\n size: 'S',\n color: 'grey',\n },\n})\n\nexport const Chip: FC<Props> = ({ size, color, disabled, className, ...rest }) => {\n const actualClassName = useMemo(\n () => classNameGenerator({ size, color, disabled, className }),\n [size, color, disabled, className],\n )\n return <span {...rest} className={actualClassName} />\n}\n"],"names":["tv","useMemo","_jsx"],"mappings":";;;;;;AAOA,MAAM,kBAAkB,GAAGA,QAAE,CAAC;AAC5B,IAAA,IAAI,EAAE;QACJ,iBAAiB;QACjB,oFAAoF;QACpF,wCAAwC;AACzC,KAAA;AACD,IAAA,QAAQ,EAAE;AACR,QAAA,KAAK,EAAE;AACL,YAAA,IAAI,EAAE,oBAAoB;AAC1B,YAAA,IAAI,EAAE,iBAAiB;AACvB,YAAA,KAAK,EAAE,kBAAkB;AACzB,YAAA,MAAM,EAAE,mBAAmB;AAC3B,YAAA,GAAG,EAAE,mBAAmB;AACzB,SAAA;AACD,QAAA,IAAI,EAAE;AACJ,YAAA,CAAC,EAAE,oCAAoC;AACxC,SAAA;AACD,QAAA,QAAQ,EAAE;AACR,YAAA,IAAI,EAAE,mCAAmC;AAC1C,SAAA;AACF,KAAA;AACD,IAAA,eAAe,EAAE;AACf,QAAA,IAAI,EAAE,GAAG;AACT,QAAA,KAAK,EAAE,MAAM;AACd,KAAA;AACF,CAAA,CAAC;AAEK,MAAM,IAAI,GAAc,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,KAAI;AAC/E,IAAA,MAAM,eAAe,GAAGC,aAAO,CAC7B,MAAM,kBAAkB,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC,EAC9D,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,CAAC,CACnC;AACD,IAAA,OAAOC,4BAAU,IAAI,EAAE,SAAS,EAAE,eAAe,GAAI;AACvD;;;;"}
@@ -10,7 +10,7 @@ declare const classNameGenerator: import("tailwind-variants").TVReturnType<{
10
10
  red: string;
11
11
  };
12
12
  size: {
13
- s: string;
13
+ S: string;
14
14
  };
15
15
  disabled: {
16
16
  true: string;
@@ -24,7 +24,7 @@ declare const classNameGenerator: import("tailwind-variants").TVReturnType<{
24
24
  red: string;
25
25
  };
26
26
  size: {
27
- s: string;
27
+ S: string;
28
28
  };
29
29
  disabled: {
30
30
  true: string;
@@ -38,7 +38,7 @@ declare const classNameGenerator: import("tailwind-variants").TVReturnType<{
38
38
  red: string;
39
39
  };
40
40
  size: {
41
- s: string;
41
+ S: string;
42
42
  };
43
43
  disabled: {
44
44
  true: string;
@@ -52,7 +52,7 @@ declare const classNameGenerator: import("tailwind-variants").TVReturnType<{
52
52
  red: string;
53
53
  };
54
54
  size: {
55
- s: string;
55
+ S: string;
56
56
  };
57
57
  disabled: {
58
58
  true: string;
@@ -66,7 +66,7 @@ declare const classNameGenerator: import("tailwind-variants").TVReturnType<{
66
66
  red: string;
67
67
  };
68
68
  size: {
69
- s: string;
69
+ S: string;
70
70
  };
71
71
  disabled: {
72
72
  true: string;
@@ -80,7 +80,7 @@ declare const classNameGenerator: import("tailwind-variants").TVReturnType<{
80
80
  red: string;
81
81
  };
82
82
  size: {
83
- s: string;
83
+ S: string;
84
84
  };
85
85
  disabled: {
86
86
  true: string;
@@ -94,7 +94,7 @@ declare const classNameGenerator: import("tailwind-variants").TVReturnType<{
94
94
  red: string;
95
95
  };
96
96
  size: {
97
- s: string;
97
+ S: string;
98
98
  };
99
99
  disabled: {
100
100
  true: string;
@@ -17,14 +17,14 @@ const classNameGenerator = ce({
17
17
  red: 'shr-border-danger',
18
18
  },
19
19
  size: {
20
- s: 'shr-px-0.5 shr-py-0.25 shr-text-sm',
20
+ S: 'shr-px-0.5 shr-py-0.25 shr-text-sm',
21
21
  },
22
22
  disabled: {
23
23
  true: 'shr-bg-white/50 shr-text-disabled',
24
24
  },
25
25
  },
26
26
  defaultVariants: {
27
- size: 's',
27
+ size: 'S',
28
28
  color: 'grey',
29
29
  },
30
30
  });
@@ -1 +1 @@
1
- {"version":3,"file":"Chip.js","sources":["../../../src/components/Chip/Chip.tsx"],"sourcesContent":["import { type ComponentPropsWithoutRef, type FC, type PropsWithChildren, useMemo } from 'react'\nimport { type VariantProps, tv } from 'tailwind-variants'\n\ntype Props = PropsWithChildren<\n VariantProps<typeof classNameGenerator> & ComponentPropsWithoutRef<'span'>\n>\n\nconst classNameGenerator = tv({\n base: [\n 'smarthr-ui-Chip',\n 'shr-border-shorthand shr-rounded-full shr-bg-white shr-leading-none shr-text-black',\n 'contrast-more:shr-border-high-contrast',\n ],\n variants: {\n color: {\n grey: 'shr-border-grey-20',\n blue: 'shr-border-main',\n green: 'shr-border-green',\n orange: 'shr-border-orange',\n red: 'shr-border-danger',\n },\n size: {\n s: 'shr-px-0.5 shr-py-0.25 shr-text-sm',\n },\n disabled: {\n true: 'shr-bg-white/50 shr-text-disabled',\n },\n },\n defaultVariants: {\n size: 's',\n color: 'grey',\n },\n})\n\nexport const Chip: FC<Props> = ({ size, color, disabled, className, ...rest }) => {\n const actualClassName = useMemo(\n () => classNameGenerator({ size, color, disabled, className }),\n [size, color, disabled, className],\n )\n return <span {...rest} className={actualClassName} />\n}\n"],"names":["tv","_jsx"],"mappings":";;;;AAOA,MAAM,kBAAkB,GAAGA,EAAE,CAAC;AAC5B,IAAA,IAAI,EAAE;QACJ,iBAAiB;QACjB,oFAAoF;QACpF,wCAAwC;AACzC,KAAA;AACD,IAAA,QAAQ,EAAE;AACR,QAAA,KAAK,EAAE;AACL,YAAA,IAAI,EAAE,oBAAoB;AAC1B,YAAA,IAAI,EAAE,iBAAiB;AACvB,YAAA,KAAK,EAAE,kBAAkB;AACzB,YAAA,MAAM,EAAE,mBAAmB;AAC3B,YAAA,GAAG,EAAE,mBAAmB;AACzB,SAAA;AACD,QAAA,IAAI,EAAE;AACJ,YAAA,CAAC,EAAE,oCAAoC;AACxC,SAAA;AACD,QAAA,QAAQ,EAAE;AACR,YAAA,IAAI,EAAE,mCAAmC;AAC1C,SAAA;AACF,KAAA;AACD,IAAA,eAAe,EAAE;AACf,QAAA,IAAI,EAAE,GAAG;AACT,QAAA,KAAK,EAAE,MAAM;AACd,KAAA;AACF,CAAA,CAAC;AAEK,MAAM,IAAI,GAAc,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,KAAI;AAC/E,IAAA,MAAM,eAAe,GAAG,OAAO,CAC7B,MAAM,kBAAkB,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC,EAC9D,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,CAAC,CACnC;AACD,IAAA,OAAOC,iBAAU,IAAI,EAAE,SAAS,EAAE,eAAe,GAAI;AACvD;;;;"}
1
+ {"version":3,"file":"Chip.js","sources":["../../../src/components/Chip/Chip.tsx"],"sourcesContent":["import { type ComponentPropsWithoutRef, type FC, type PropsWithChildren, useMemo } from 'react'\nimport { type VariantProps, tv } from 'tailwind-variants'\n\ntype Props = PropsWithChildren<\n VariantProps<typeof classNameGenerator> & ComponentPropsWithoutRef<'span'>\n>\n\nconst classNameGenerator = tv({\n base: [\n 'smarthr-ui-Chip',\n 'shr-border-shorthand shr-rounded-full shr-bg-white shr-leading-none shr-text-black',\n 'contrast-more:shr-border-high-contrast',\n ],\n variants: {\n color: {\n grey: 'shr-border-grey-20',\n blue: 'shr-border-main',\n green: 'shr-border-green',\n orange: 'shr-border-orange',\n red: 'shr-border-danger',\n },\n size: {\n S: 'shr-px-0.5 shr-py-0.25 shr-text-sm',\n },\n disabled: {\n true: 'shr-bg-white/50 shr-text-disabled',\n },\n },\n defaultVariants: {\n size: 'S',\n color: 'grey',\n },\n})\n\nexport const Chip: FC<Props> = ({ size, color, disabled, className, ...rest }) => {\n const actualClassName = useMemo(\n () => classNameGenerator({ size, color, disabled, className }),\n [size, color, disabled, className],\n )\n return <span {...rest} className={actualClassName} />\n}\n"],"names":["tv","_jsx"],"mappings":";;;;AAOA,MAAM,kBAAkB,GAAGA,EAAE,CAAC;AAC5B,IAAA,IAAI,EAAE;QACJ,iBAAiB;QACjB,oFAAoF;QACpF,wCAAwC;AACzC,KAAA;AACD,IAAA,QAAQ,EAAE;AACR,QAAA,KAAK,EAAE;AACL,YAAA,IAAI,EAAE,oBAAoB;AAC1B,YAAA,IAAI,EAAE,iBAAiB;AACvB,YAAA,KAAK,EAAE,kBAAkB;AACzB,YAAA,MAAM,EAAE,mBAAmB;AAC3B,YAAA,GAAG,EAAE,mBAAmB;AACzB,SAAA;AACD,QAAA,IAAI,EAAE;AACJ,YAAA,CAAC,EAAE,oCAAoC;AACxC,SAAA;AACD,QAAA,QAAQ,EAAE;AACR,YAAA,IAAI,EAAE,mCAAmC;AAC1C,SAAA;AACF,KAAA;AACD,IAAA,eAAe,EAAE;AACf,QAAA,IAAI,EAAE,GAAG;AACT,QAAA,KAAK,EAAE,MAAM;AACd,KAAA;AACF,CAAA,CAAC;AAEK,MAAM,IAAI,GAAc,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,KAAI;AAC/E,IAAA,MAAM,eAAe,GAAG,OAAO,CAC7B,MAAM,kBAAkB,CAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,EAAE,CAAC,EAC9D,CAAC,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAS,CAAC,CACnC;AACD,IAAA,OAAOC,iBAAU,IAAI,EAAE,SAAS,EAAE,eAAe,GAAI;AACvD;;;;"}
package/lib/index.cjs CHANGED
@@ -166,6 +166,7 @@ var intl_DateFormatter = require('./intl/DateFormatter.cjs');
166
166
  var intl_TimeFormatter = require('./intl/TimeFormatter.cjs');
167
167
  var intl_TimestampFormatter = require('./intl/TimestampFormatter.cjs');
168
168
  var intl_locales_index = require('./intl/locales/index.cjs');
169
+ var intl_localeMap = require('./intl/localeMap.cjs');
169
170
  var constants = require('./constants.cjs');
170
171
 
171
172
 
@@ -537,6 +538,7 @@ exports.DateFormatter = intl_DateFormatter.DateFormatter;
537
538
  exports.TimeFormatter = intl_TimeFormatter.TimeFormatter;
538
539
  exports.TimestampFormatter = intl_TimestampFormatter.TimestampFormatter;
539
540
  exports.locales = intl_locales_index.locales;
541
+ exports.convertLang = intl_localeMap.convertLang;
540
542
  exports.CHART_COLORS = constants.CHART_COLORS;
541
543
  exports.FONT_FAMILY = constants.FONT_FAMILY;
542
544
  exports.OTHER_CHART_COLOR = constants.OTHER_CHART_COLOR;
package/lib/index.cjs.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
package/lib/index.d.ts CHANGED
@@ -79,5 +79,5 @@ export { defaultFontSize } from './themes/createFontSize';
79
79
  export { defaultLeading } from './themes/createLeading';
80
80
  export { defaultSpacing } from './themes/createSpacing';
81
81
  export { defaultBreakpoint } from './themes/createBreakpoint';
82
- export { IntlProvider, useIntl, DateFormatter, TimeFormatter, TimestampFormatter, locales, } from './intl';
82
+ export { IntlProvider, useIntl, DateFormatter, TimeFormatter, TimestampFormatter, locales, convertLang, } from './intl';
83
83
  export { FONT_FAMILY, CHART_COLORS, SINGLE_CHART_COLORS, OTHER_CHART_COLOR } from './constants';
package/lib/index.js CHANGED
@@ -164,5 +164,6 @@ export { DateFormatter } from './intl/DateFormatter.js';
164
164
  export { TimeFormatter } from './intl/TimeFormatter.js';
165
165
  export { TimestampFormatter } from './intl/TimestampFormatter.js';
166
166
  export { locales } from './intl/locales/index.js';
167
+ export { convertLang } from './intl/localeMap.js';
167
168
  export { CHART_COLORS, FONT_FAMILY, OTHER_CHART_COLOR, SINGLE_CHART_COLORS } from './constants.js';
168
169
  //# sourceMappingURL=index.js.map
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -18,5 +18,6 @@ exports.DateFormatter = intl_DateFormatter.DateFormatter;
18
18
  exports.TimeFormatter = intl_TimeFormatter.TimeFormatter;
19
19
  exports.TimestampFormatter = intl_TimestampFormatter.TimestampFormatter;
20
20
  exports.locales = intl_locales_index.locales;
21
+ exports.convertLang = intl_localeMap.convertLang;
21
22
  exports.localeMap = intl_localeMap.localeMap;
22
23
  //# sourceMappingURL=index.cjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;"}
@@ -5,4 +5,4 @@ export { DateFormatter } from './DateFormatter';
5
5
  export { TimeFormatter } from './TimeFormatter';
6
6
  export { TimestampFormatter } from './TimestampFormatter';
7
7
  export { locales } from './locales';
8
- export { localeMap, type Locale } from './localeMap';
8
+ export { convertLang, localeMap, type Locale } from './localeMap';
package/lib/intl/index.js CHANGED
@@ -5,5 +5,5 @@ export { DateFormatter } from './DateFormatter.js';
5
5
  export { TimeFormatter } from './TimeFormatter.js';
6
6
  export { TimestampFormatter } from './TimestampFormatter.js';
7
7
  export { locales } from './locales/index.js';
8
- export { localeMap } from './localeMap.js';
8
+ export { convertLang, localeMap } from './localeMap.js';
9
9
  //# sourceMappingURL=index.js.map
@@ -38,7 +38,7 @@ const convertLang = (rawLang) => {
38
38
  // 简体中文と繁體中文
39
39
  if (lang.startsWith('zh')) {
40
40
  const regionOrScript = lang.split('-')[1] ?? '';
41
- if (['tw', 'hant'].includes(regionOrScript)) {
41
+ if (['tw', 'hant', 'hk', 'mo'].includes(regionOrScript)) {
42
42
  return 'zh-tw';
43
43
  }
44
44
  return 'zh-cn';
@@ -1 +1 @@
1
- {"version":3,"file":"localeMap.cjs","sources":["../../src/intl/localeMap.ts"],"sourcesContent":["import type { locales } from './locales'\n\nexport type Locale = keyof typeof locales\n\n/*\n localeMap は LanguageSwitcher で言語切替をするためにも使用されます。そのため、このオブジェクトの並び順が言語切替 UI の並び順にも反映されます。\n 配置ロジック(新しい言語追加時の判断軸)\n ・認知負荷を減らす:利用頻度を考慮し、ユーザーが直感的に探せるようにする。\n ・見栄えを考慮:アルファベット系・漢字系といった系統を意識して並べ、視覚的にも整理する。\n\n 下記の設計を基準にすれば、新しい言語を追加する際も既存の分類に沿って挿入するだけで済み、秩序を維持できる。\n 1. 日本語:デフォルト言語のため、常に最上位。\n 2. 英語:i18n文脈における事実上のデフォルト言語として、常に第二位。\n 3. 他のアルファベット系言語(インドネシア語、ポルトガル語、ベトナム語):常に中央に配置し、アルファベット順で整列。\n 4. 韓国語:アルファベット系と漢字系の橋渡し(トランジション)として配置。\n 5. 中国語(簡体字・繁体字):ユーザー数が多く安定している漢字系言語であるため、常に後半にまとめて配置。\n 6. やさしい日本語:日本語の派生であり、補助的な言語という位置づけを示すため、常に最後に配置。\n*/\nexport const localeMap: Record<Locale, string> = {\n ja: '日本語',\n 'en-us': 'English',\n 'id-id': 'Bahasa Indonesia',\n pt: 'Português',\n vi: 'Tiếng Việt',\n ko: '한국어',\n 'zh-cn': '简体中文',\n 'zh-tw': '繁體中文',\n 'ja-easy': 'やさしい日本語',\n}\n\n// 渡される言語の揺れを許容して smarthr-ui で使っている言語コードに変換する\nexport const convertLang = (rawLang: string): keyof typeof locales => {\n const lang = rawLang.toLowerCase().replace(/_/g, '-')\n\n // 日本語とやさしい日本語の対応\n if (lang.startsWith('ja')) {\n if (lang.includes('-easy')) {\n return 'ja-easy'\n }\n\n return 'ja'\n }\n\n // 简体中文と繁體中文\n if (lang.startsWith('zh')) {\n const regionOrScript = lang.split('-')[1] ?? ''\n\n if (['tw', 'hant'].includes(regionOrScript)) {\n return 'zh-tw'\n }\n\n return 'zh-cn'\n }\n\n if (lang.startsWith('en')) return 'en-us' // 英語\n if (lang.startsWith('pt')) return 'pt' // ポルトガル語\n if (lang.startsWith('vi')) return 'vi' // ベトナム語\n if (lang.startsWith('ko')) return 'ko' // 韓国語\n if (lang.startsWith('id')) return 'id-id' // インドネシア語\n\n // 何にも一致しない場合はフォールバックとして 'ja' を返す\n return 'ja'\n}\n"],"names":[],"mappings":";;AAIA;;;;;;;;;;;;;AAaE;AACK,MAAM,SAAS,GAA2B;AAC/C,IAAA,EAAE,EAAE,KAAK;AACT,IAAA,OAAO,EAAE,SAAS;AAClB,IAAA,OAAO,EAAE,kBAAkB;AAC3B,IAAA,EAAE,EAAE,WAAW;AACf,IAAA,EAAE,EAAE,YAAY;AAChB,IAAA,EAAE,EAAE,KAAK;AACT,IAAA,OAAO,EAAE,MAAM;AACf,IAAA,OAAO,EAAE,MAAM;AACf,IAAA,SAAS,EAAE,SAAS;;AAGtB;AACO,MAAM,WAAW,GAAG,CAAC,OAAe,KAA0B;AACnE,IAAA,MAAM,IAAI,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC;;AAGrD,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;AACzB,QAAA,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE;AAC1B,YAAA,OAAO,SAAS;QAClB;AAEA,QAAA,OAAO,IAAI;IACb;;AAGA,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;AACzB,QAAA,MAAM,cAAc,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;QAE/C,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,QAAQ,CAAC,cAAc,CAAC,EAAE;AAC3C,YAAA,OAAO,OAAO;QAChB;AAEA,QAAA,OAAO,OAAO;IAChB;AAEA,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,OAAO,CAAA;AACzC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,OAAO,CAAA;;AAGzC,IAAA,OAAO,IAAI;AACb;;;;;"}
1
+ {"version":3,"file":"localeMap.cjs","sources":["../../src/intl/localeMap.ts"],"sourcesContent":["import type { locales } from './locales'\n\nexport type Locale = keyof typeof locales\n\n/*\n localeMap は LanguageSwitcher で言語切替をするためにも使用されます。そのため、このオブジェクトの並び順が言語切替 UI の並び順にも反映されます。\n 配置ロジック(新しい言語追加時の判断軸)\n ・認知負荷を減らす:利用頻度を考慮し、ユーザーが直感的に探せるようにする。\n ・見栄えを考慮:アルファベット系・漢字系といった系統を意識して並べ、視覚的にも整理する。\n\n 下記の設計を基準にすれば、新しい言語を追加する際も既存の分類に沿って挿入するだけで済み、秩序を維持できる。\n 1. 日本語:デフォルト言語のため、常に最上位。\n 2. 英語:i18n文脈における事実上のデフォルト言語として、常に第二位。\n 3. 他のアルファベット系言語(インドネシア語、ポルトガル語、ベトナム語):常に中央に配置し、アルファベット順で整列。\n 4. 韓国語:アルファベット系と漢字系の橋渡し(トランジション)として配置。\n 5. 中国語(簡体字・繁体字):ユーザー数が多く安定している漢字系言語であるため、常に後半にまとめて配置。\n 6. やさしい日本語:日本語の派生であり、補助的な言語という位置づけを示すため、常に最後に配置。\n*/\nexport const localeMap: Record<Locale, string> = {\n ja: '日本語',\n 'en-us': 'English',\n 'id-id': 'Bahasa Indonesia',\n pt: 'Português',\n vi: 'Tiếng Việt',\n ko: '한국어',\n 'zh-cn': '简体中文',\n 'zh-tw': '繁體中文',\n 'ja-easy': 'やさしい日本語',\n}\n\n// 渡される言語の揺れを許容して smarthr-ui で使っている言語コードに変換する\nexport const convertLang = (rawLang: string): keyof typeof locales => {\n const lang = rawLang.toLowerCase().replace(/_/g, '-')\n\n // 日本語とやさしい日本語の対応\n if (lang.startsWith('ja')) {\n if (lang.includes('-easy')) {\n return 'ja-easy'\n }\n\n return 'ja'\n }\n\n // 简体中文と繁體中文\n if (lang.startsWith('zh')) {\n const regionOrScript = lang.split('-')[1] ?? ''\n\n if (['tw', 'hant', 'hk', 'mo'].includes(regionOrScript)) {\n return 'zh-tw'\n }\n\n return 'zh-cn'\n }\n\n if (lang.startsWith('en')) return 'en-us' // 英語\n if (lang.startsWith('pt')) return 'pt' // ポルトガル語\n if (lang.startsWith('vi')) return 'vi' // ベトナム語\n if (lang.startsWith('ko')) return 'ko' // 韓国語\n if (lang.startsWith('id')) return 'id-id' // インドネシア語\n\n // 何にも一致しない場合はフォールバックとして 'ja' を返す\n return 'ja'\n}\n"],"names":[],"mappings":";;AAIA;;;;;;;;;;;;;AAaE;AACK,MAAM,SAAS,GAA2B;AAC/C,IAAA,EAAE,EAAE,KAAK;AACT,IAAA,OAAO,EAAE,SAAS;AAClB,IAAA,OAAO,EAAE,kBAAkB;AAC3B,IAAA,EAAE,EAAE,WAAW;AACf,IAAA,EAAE,EAAE,YAAY;AAChB,IAAA,EAAE,EAAE,KAAK;AACT,IAAA,OAAO,EAAE,MAAM;AACf,IAAA,OAAO,EAAE,MAAM;AACf,IAAA,SAAS,EAAE,SAAS;;AAGtB;AACO,MAAM,WAAW,GAAG,CAAC,OAAe,KAA0B;AACnE,IAAA,MAAM,IAAI,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC;;AAGrD,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;AACzB,QAAA,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE;AAC1B,YAAA,OAAO,SAAS;QAClB;AAEA,QAAA,OAAO,IAAI;IACb;;AAGA,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;AACzB,QAAA,MAAM,cAAc,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;AAE/C,QAAA,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,QAAQ,CAAC,cAAc,CAAC,EAAE;AACvD,YAAA,OAAO,OAAO;QAChB;AAEA,QAAA,OAAO,OAAO;IAChB;AAEA,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,OAAO,CAAA;AACzC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,OAAO,CAAA;;AAGzC,IAAA,OAAO,IAAI;AACb;;;;;"}
@@ -36,7 +36,7 @@ const convertLang = (rawLang) => {
36
36
  // 简体中文と繁體中文
37
37
  if (lang.startsWith('zh')) {
38
38
  const regionOrScript = lang.split('-')[1] ?? '';
39
- if (['tw', 'hant'].includes(regionOrScript)) {
39
+ if (['tw', 'hant', 'hk', 'mo'].includes(regionOrScript)) {
40
40
  return 'zh-tw';
41
41
  }
42
42
  return 'zh-cn';
@@ -1 +1 @@
1
- {"version":3,"file":"localeMap.js","sources":["../../src/intl/localeMap.ts"],"sourcesContent":["import type { locales } from './locales'\n\nexport type Locale = keyof typeof locales\n\n/*\n localeMap は LanguageSwitcher で言語切替をするためにも使用されます。そのため、このオブジェクトの並び順が言語切替 UI の並び順にも反映されます。\n 配置ロジック(新しい言語追加時の判断軸)\n ・認知負荷を減らす:利用頻度を考慮し、ユーザーが直感的に探せるようにする。\n ・見栄えを考慮:アルファベット系・漢字系といった系統を意識して並べ、視覚的にも整理する。\n\n 下記の設計を基準にすれば、新しい言語を追加する際も既存の分類に沿って挿入するだけで済み、秩序を維持できる。\n 1. 日本語:デフォルト言語のため、常に最上位。\n 2. 英語:i18n文脈における事実上のデフォルト言語として、常に第二位。\n 3. 他のアルファベット系言語(インドネシア語、ポルトガル語、ベトナム語):常に中央に配置し、アルファベット順で整列。\n 4. 韓国語:アルファベット系と漢字系の橋渡し(トランジション)として配置。\n 5. 中国語(簡体字・繁体字):ユーザー数が多く安定している漢字系言語であるため、常に後半にまとめて配置。\n 6. やさしい日本語:日本語の派生であり、補助的な言語という位置づけを示すため、常に最後に配置。\n*/\nexport const localeMap: Record<Locale, string> = {\n ja: '日本語',\n 'en-us': 'English',\n 'id-id': 'Bahasa Indonesia',\n pt: 'Português',\n vi: 'Tiếng Việt',\n ko: '한국어',\n 'zh-cn': '简体中文',\n 'zh-tw': '繁體中文',\n 'ja-easy': 'やさしい日本語',\n}\n\n// 渡される言語の揺れを許容して smarthr-ui で使っている言語コードに変換する\nexport const convertLang = (rawLang: string): keyof typeof locales => {\n const lang = rawLang.toLowerCase().replace(/_/g, '-')\n\n // 日本語とやさしい日本語の対応\n if (lang.startsWith('ja')) {\n if (lang.includes('-easy')) {\n return 'ja-easy'\n }\n\n return 'ja'\n }\n\n // 简体中文と繁體中文\n if (lang.startsWith('zh')) {\n const regionOrScript = lang.split('-')[1] ?? ''\n\n if (['tw', 'hant'].includes(regionOrScript)) {\n return 'zh-tw'\n }\n\n return 'zh-cn'\n }\n\n if (lang.startsWith('en')) return 'en-us' // 英語\n if (lang.startsWith('pt')) return 'pt' // ポルトガル語\n if (lang.startsWith('vi')) return 'vi' // ベトナム語\n if (lang.startsWith('ko')) return 'ko' // 韓国語\n if (lang.startsWith('id')) return 'id-id' // インドネシア語\n\n // 何にも一致しない場合はフォールバックとして 'ja' を返す\n return 'ja'\n}\n"],"names":[],"mappings":"AAIA;;;;;;;;;;;;;AAaE;AACK,MAAM,SAAS,GAA2B;AAC/C,IAAA,EAAE,EAAE,KAAK;AACT,IAAA,OAAO,EAAE,SAAS;AAClB,IAAA,OAAO,EAAE,kBAAkB;AAC3B,IAAA,EAAE,EAAE,WAAW;AACf,IAAA,EAAE,EAAE,YAAY;AAChB,IAAA,EAAE,EAAE,KAAK;AACT,IAAA,OAAO,EAAE,MAAM;AACf,IAAA,OAAO,EAAE,MAAM;AACf,IAAA,SAAS,EAAE,SAAS;;AAGtB;AACO,MAAM,WAAW,GAAG,CAAC,OAAe,KAA0B;AACnE,IAAA,MAAM,IAAI,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC;;AAGrD,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;AACzB,QAAA,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE;AAC1B,YAAA,OAAO,SAAS;QAClB;AAEA,QAAA,OAAO,IAAI;IACb;;AAGA,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;AACzB,QAAA,MAAM,cAAc,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;QAE/C,IAAI,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC,QAAQ,CAAC,cAAc,CAAC,EAAE;AAC3C,YAAA,OAAO,OAAO;QAChB;AAEA,QAAA,OAAO,OAAO;IAChB;AAEA,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,OAAO,CAAA;AACzC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,OAAO,CAAA;;AAGzC,IAAA,OAAO,IAAI;AACb;;;;"}
1
+ {"version":3,"file":"localeMap.js","sources":["../../src/intl/localeMap.ts"],"sourcesContent":["import type { locales } from './locales'\n\nexport type Locale = keyof typeof locales\n\n/*\n localeMap は LanguageSwitcher で言語切替をするためにも使用されます。そのため、このオブジェクトの並び順が言語切替 UI の並び順にも反映されます。\n 配置ロジック(新しい言語追加時の判断軸)\n ・認知負荷を減らす:利用頻度を考慮し、ユーザーが直感的に探せるようにする。\n ・見栄えを考慮:アルファベット系・漢字系といった系統を意識して並べ、視覚的にも整理する。\n\n 下記の設計を基準にすれば、新しい言語を追加する際も既存の分類に沿って挿入するだけで済み、秩序を維持できる。\n 1. 日本語:デフォルト言語のため、常に最上位。\n 2. 英語:i18n文脈における事実上のデフォルト言語として、常に第二位。\n 3. 他のアルファベット系言語(インドネシア語、ポルトガル語、ベトナム語):常に中央に配置し、アルファベット順で整列。\n 4. 韓国語:アルファベット系と漢字系の橋渡し(トランジション)として配置。\n 5. 中国語(簡体字・繁体字):ユーザー数が多く安定している漢字系言語であるため、常に後半にまとめて配置。\n 6. やさしい日本語:日本語の派生であり、補助的な言語という位置づけを示すため、常に最後に配置。\n*/\nexport const localeMap: Record<Locale, string> = {\n ja: '日本語',\n 'en-us': 'English',\n 'id-id': 'Bahasa Indonesia',\n pt: 'Português',\n vi: 'Tiếng Việt',\n ko: '한국어',\n 'zh-cn': '简体中文',\n 'zh-tw': '繁體中文',\n 'ja-easy': 'やさしい日本語',\n}\n\n// 渡される言語の揺れを許容して smarthr-ui で使っている言語コードに変換する\nexport const convertLang = (rawLang: string): keyof typeof locales => {\n const lang = rawLang.toLowerCase().replace(/_/g, '-')\n\n // 日本語とやさしい日本語の対応\n if (lang.startsWith('ja')) {\n if (lang.includes('-easy')) {\n return 'ja-easy'\n }\n\n return 'ja'\n }\n\n // 简体中文と繁體中文\n if (lang.startsWith('zh')) {\n const regionOrScript = lang.split('-')[1] ?? ''\n\n if (['tw', 'hant', 'hk', 'mo'].includes(regionOrScript)) {\n return 'zh-tw'\n }\n\n return 'zh-cn'\n }\n\n if (lang.startsWith('en')) return 'en-us' // 英語\n if (lang.startsWith('pt')) return 'pt' // ポルトガル語\n if (lang.startsWith('vi')) return 'vi' // ベトナム語\n if (lang.startsWith('ko')) return 'ko' // 韓国語\n if (lang.startsWith('id')) return 'id-id' // インドネシア語\n\n // 何にも一致しない場合はフォールバックとして 'ja' を返す\n return 'ja'\n}\n"],"names":[],"mappings":"AAIA;;;;;;;;;;;;;AAaE;AACK,MAAM,SAAS,GAA2B;AAC/C,IAAA,EAAE,EAAE,KAAK;AACT,IAAA,OAAO,EAAE,SAAS;AAClB,IAAA,OAAO,EAAE,kBAAkB;AAC3B,IAAA,EAAE,EAAE,WAAW;AACf,IAAA,EAAE,EAAE,YAAY;AAChB,IAAA,EAAE,EAAE,KAAK;AACT,IAAA,OAAO,EAAE,MAAM;AACf,IAAA,OAAO,EAAE,MAAM;AACf,IAAA,SAAS,EAAE,SAAS;;AAGtB;AACO,MAAM,WAAW,GAAG,CAAC,OAAe,KAA0B;AACnE,IAAA,MAAM,IAAI,GAAG,OAAO,CAAC,WAAW,EAAE,CAAC,OAAO,CAAC,IAAI,EAAE,GAAG,CAAC;;AAGrD,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;AACzB,QAAA,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE;AAC1B,YAAA,OAAO,SAAS;QAClB;AAEA,QAAA,OAAO,IAAI;IACb;;AAGA,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE;AACzB,QAAA,MAAM,cAAc,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,IAAI,EAAE;AAE/C,QAAA,IAAI,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,QAAQ,CAAC,cAAc,CAAC,EAAE;AACvD,YAAA,OAAO,OAAO;QAChB;AAEA,QAAA,OAAO,OAAO;IAChB;AAEA,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,OAAO,CAAA;AACzC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,IAAI,CAAA;AACtC,IAAA,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC;QAAE,OAAO,OAAO,CAAA;;AAGzC,IAAA,OAAO,IAAI;AACb;;;;"}
@@ -105,30 +105,30 @@ const locale = {
105
105
  'smarthr-ui/ThCheckbox/checkColumnName': 'Select',
106
106
  'smarthr-ui/ErrorScreen/homeLink': 'Back to Home',
107
107
  'smarthr-ui/ErrorScreen/smarthrLink': 'Back to SmartHR',
108
- 'smarthr-ui/AuthErrorScreen/title': 'There was a problem with your authentication',
109
- 'smarthr-ui/ForbiddenErrorScreen/title': "You don't have permission to view this page",
108
+ 'smarthr-ui/AuthErrorScreen/title': 'Authentication Issue',
109
+ 'smarthr-ui/ForbiddenErrorScreen/title': 'You dont have permission to view this page',
110
110
  'smarthr-ui/ForbiddenErrorScreen/description': 'For more details, please contact the administrator at your company.',
111
111
  'smarthr-ui/NotFoundErrorScreen/title': 'Page Not Found',
112
- 'smarthr-ui/NotFoundErrorScreen/description': '',
112
+ 'smarthr-ui/NotFoundErrorScreen/description': 'The page you are looking for is temporarily unavailable, or it may have been moved or deleted.',
113
113
  'smarthr-ui/UnauthorizedErrorScreen/title': 'Logged Out Due to Inactivity',
114
114
  'smarthr-ui/UnauthorizedErrorScreen/description1': 'You have been automatically logged out due to inactivity.',
115
115
  'smarthr-ui/UnauthorizedErrorScreen/description2': 'Please log in again to access the requested page.',
116
116
  'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': 'Log in again',
117
- 'smarthr-ui/UnexpectedErrorScreen/title': 'An unexpected error occurred.',
117
+ 'smarthr-ui/UnexpectedErrorScreen/title': 'Unexpected Error',
118
118
  'smarthr-ui/UnexpectedErrorScreen/apology': 'We apologize for the inconvenience.',
119
- 'smarthr-ui/UnexpectedErrorScreen/possibleCause': '',
120
- 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': '',
121
- 'smarthr-ui/UnexpectedErrorScreen/retryItem1': '',
122
- 'smarthr-ui/UnexpectedErrorScreen/retryItem2': '',
123
- 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': '',
124
- 'smarthr-ui/UnexpectedErrorScreen/checkItem1': '',
125
- 'smarthr-ui/UnexpectedErrorScreen/checkItem2': ' For details, see {cookieCacheLink}.',
126
- 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': '',
127
- 'smarthr-ui/UnexpectedErrorScreen/adminContact': '',
128
- 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': '',
129
- 'smarthr-ui/UnexpectedErrorScreen/environmentLink': '',
130
- 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': '',
131
- 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': '',
119
+ 'smarthr-ui/UnexpectedErrorScreen/possibleCause': 'This error may have occurred due to a temporary connection issue, your device or browser settings, or the contents of the file you uploaded.',
120
+ 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': 'We apologize for the trouble. Please try the following:',
121
+ 'smarthr-ui/UnexpectedErrorScreen/retryItem1': 'Wait a moment, then try again.',
122
+ 'smarthr-ui/UnexpectedErrorScreen/retryItem2': 'Check {maintenanceLink}. Note that the information about maintenance and major system issues may take some time to be posted.',
123
+ 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': 'If the issues is not resolved, try the steps below:',
124
+ 'smarthr-ui/UnexpectedErrorScreen/checkItem1': 'Check if you’re using a recommended browser/settings (see {environmentLink})',
125
+ 'smarthr-ui/UnexpectedErrorScreen/checkItem2': 'Try clearing your browser’s cookies and cache. For details, see {cookieCacheLink}.',
126
+ 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': 'If the issue persists after checking the above, please contact your company’s HR representative, or another person with SmartHR administrator privileges, and provide the information listed here: {errorInfoLink}.',
127
+ 'smarthr-ui/UnexpectedErrorScreen/adminContact': 'If you have SmartHR administrator privileges, please contact us using the chat icon in the lower right and provide the following information: {errorInfoLink}.',
128
+ 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': 'Maintenance & Service Alerts',
129
+ 'smarthr-ui/UnexpectedErrorScreen/environmentLink': 'SmartHR system requirements',
130
+ 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': 'Q. How do I clear my browser’s cookies and cache?',
131
+ 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': 'Information needed to investigate the error',
132
132
  };
133
133
 
134
134
  exports.locale = locale;
@@ -1 +1 @@
1
- {"version":3,"file":"en_us.cjs","sources":["../../../src/intl/locales/en_us.ts"],"sourcesContent":["import type { locale as ja } from './ja'\n\n// キーと値の間に改行が入ると翻訳システムと連携できなくなるため、prettier-ignoreしている\n// prettier-ignore\nexport const locale = {\n 'smarthr-ui/common/language': 'English',\n 'smarthr-ui/ActionDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/AppHeader/school': 'SmartHR School',\n 'smarthr-ui/AppHeader/help': 'Help',\n 'smarthr-ui/AppHeader/userSettings': 'Personal Settings',\n 'smarthr-ui/AppHeader/releaseNotes': 'Release Notes',\n 'smarthr-ui/AppHeader/releaseNotesLoadError': 'Failed to load the release notes. Please try again later.',\n 'smarthr-ui/AppHeader/seeAllReleaseNotes': 'View all release notes',\n 'smarthr-ui/AppHeader/DesktopHeader/appLauncherLabel': 'Apps',\n 'smarthr-ui/AppHeader/MobileHeader/account': 'Account',\n 'smarthr-ui/AppHeader/MobileHeader/openMenu': 'Open menu',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenu': 'Close menu',\n 'smarthr-ui/AppHeader/MobileHeader/allAppButton': 'All Apps',\n 'smarthr-ui/AppHeader/MobileHeader/managementMenu': 'Admin Menu',\n 'smarthr-ui/AppHeader/MobileHeader/latestReleaseNotes': 'Latest Release Notes',\n 'smarthr-ui/AppHeader/MobileHeader/back': 'Back',\n 'smarthr-ui/AppHeader/MobileHeader/openMenuAccordion': 'Open',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenuAccordion': 'Close',\n 'smarthr-ui/AppHeader/Launcher/searchInputTitle': 'Enter the name of the App.',\n 'smarthr-ui/AppHeader/Launcher/favoriteModeText': 'Favorite Apps',\n 'smarthr-ui/AppHeader/Launcher/allModeText': 'All Apps',\n 'smarthr-ui/AppHeader/Launcher/listText': 'App List',\n 'smarthr-ui/AppHeader/Launcher/helpText': 'About Favorite Apps',\n 'smarthr-ui/AppHeader/Launcher/searchResultText': 'Search results',\n 'smarthr-ui/AppHeader/Launcher/emptyText': 'App not found.',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownLabel': 'Sort by',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownSelected': 'Selected',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderDefault': 'Default order',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameAsc': 'App name (A→Z)',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameDesc': 'App name (Z→A)',\n 'smarthr-ui/AppLauncher/showAllText': 'View all',\n 'smarthr-ui/AppLauncher/triggerLabel': 'Apps',\n 'smarthr-ui/Browser/notFoundDescription': 'Try changing the filter criteria.',\n 'smarthr-ui/Browser/notFoundTitle': 'No items found.',\n 'smarthr-ui/Button/loading': 'In Progress',\n 'smarthr-ui/Calendar/currentYear': 'Current year',\n 'smarthr-ui/Calendar/nextMonth': 'Next month',\n 'smarthr-ui/Calendar/previousMonth': 'Previous month',\n 'smarthr-ui/Calendar/selectYear': 'Select year',\n 'smarthr-ui/Combobox/addItemButtonLabel': 'Add “{name}”',\n 'smarthr-ui/Combobox/loadingText': 'In Progress',\n 'smarthr-ui/Combobox/noResultsText': 'No matching results found.',\n 'smarthr-ui/DropdownMenuButton/triggerActive': 'Hide options',\n 'smarthr-ui/DropdownMenuButton/triggerInactive': 'Show options',\n 'smarthr-ui/DropZone/selectButtonLabel': 'Choose file to upload',\n 'smarthr-ui/FileViewer/rotateAlt': 'Rotate Left',\n 'smarthr-ui/FileViewer/scaleDownAlt': 'Zoom Out',\n 'smarthr-ui/FileViewer/scaleRateLabel': 'Zoom Factor (%)',\n 'smarthr-ui/FileViewer/scaleUpAlt': 'Zoom In',\n 'smarthr-ui/FileViewer/unsupportedFileText': 'Unsupported file format.',\n 'smarthr-ui/FilterDropdown/applyText': 'Apply',\n 'smarthr-ui/FilterDropdown/cancelText': 'Cancel',\n 'smarthr-ui/FilterDropdown/resetText': 'Clear filters',\n 'smarthr-ui/FilterDropdown/status': 'Filters applied',\n 'smarthr-ui/FilterDropdown/triggerText': 'Filter',\n 'smarthr-ui/FormDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/InformationPanel/closeButtonLabel': 'Close',\n 'smarthr-ui/InformationPanel/openButtonLabel': 'Open',\n 'smarthr-ui/InputFile/destroy': 'Delete',\n 'smarthr-ui/LanguageSwitcher/checkIconAlt': 'Selected',\n 'smarthr-ui/Loader/alt': 'In Progress',\n 'smarthr-ui/MessageDialog/closeButtonLabel': 'Close',\n 'smarthr-ui/ModelessDialog/closeButtonIconAlt': 'Close',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaLabel': 'Dialog position',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaRoleDescription': 'Can be dragged',\n 'smarthr-ui/ModelessDialog/dialogHandlerDescription': 'Can be moved up, down, left, or right using arrow keys',\n 'smarthr-ui/ModelessDialog/dialogHandlerLiveRegionText': '{top}px from top, {left}px from left',\n 'smarthr-ui/MultiCombobox/destroyButtonIconAltSuffix': ': remove',\n 'smarthr-ui/MultiCombobox/selectedListAriaLabel': 'Selected items',\n 'smarthr-ui/NotificationBar/closeButtonIconAlt': 'Close',\n 'smarthr-ui/Pagination/controllerItemButtonFirstLabel': 'First',\n 'smarthr-ui/Pagination/controllerItemButtonLastLabel': 'Last',\n 'smarthr-ui/Pagination/controllerItemButtonNextLabel': 'Next',\n 'smarthr-ui/Pagination/controllerItemButtonPreviousLabel': 'Previous',\n 'smarthr-ui/Pagination/itemButtonLabel': 'Page {page}',\n 'smarthr-ui/Pagination/navigationLabel': 'Pagination',\n 'smarthr-ui/RequiredLabel/text': 'Required',\n 'smarthr-ui/SearchInput/iconAlt': 'Search',\n 'smarthr-ui/SideMenu/navigationLabel': 'Sidebar',\n 'smarthr-ui/SingleCombobox/destroyButtonIconAlt': 'Clear',\n 'smarthr-ui/SortDropdown/applyText': 'Apply',\n 'smarthr-ui/SortDropdown/ascLabel': 'Ascending',\n 'smarthr-ui/SortDropdown/cancelText': 'Cancel',\n 'smarthr-ui/SortDropdown/descLabel': 'Descending',\n 'smarthr-ui/SortDropdown/sortFieldLabel': 'Sort items',\n 'smarthr-ui/SortDropdown/sortOrderLegend': 'Order',\n 'smarthr-ui/StepFormDialog/backButtonLabel': 'Back',\n 'smarthr-ui/StepFormDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/StepFormDialog/nextButtonLabel': 'Next',\n 'smarthr-ui/StepStatusIcon/closedAlt': 'Interrupted',\n 'smarthr-ui/StepStatusIcon/completedAlt': 'Completed',\n 'smarthr-ui/Textarea/availableLetters': '{availableLetters} characters left',\n 'smarthr-ui/Textarea/maxLettersExceeded': '{exceededLetters} characters over limit',\n 'smarthr-ui/Textarea/screenReaderMaxLettersDescription': 'Maximum {maxLetters} characters',\n 'smarthr-ui/OpenInNewTabIcon/openInNewTab': 'Open in another tab',\n 'smarthr-ui/Th/sortDirectionAsc': 'Ascending',\n 'smarthr-ui/Th/sortDirectionDesc': 'Descending',\n 'smarthr-ui/Th/sortDirectionNone': 'No sorting',\n 'smarthr-ui/ThCheckbox/checkAllInvisibleLabel': 'Select/Deselect All',\n 'smarthr-ui/ThCheckbox/checkColumnName': 'Select',\n 'smarthr-ui/ErrorScreen/homeLink': 'Back to Home',\n 'smarthr-ui/ErrorScreen/smarthrLink': 'Back to SmartHR',\n 'smarthr-ui/AuthErrorScreen/title': 'There was a problem with your authentication',\n 'smarthr-ui/ForbiddenErrorScreen/title': \"You don't have permission to view this page\",\n 'smarthr-ui/ForbiddenErrorScreen/description': 'For more details, please contact the administrator at your company.',\n 'smarthr-ui/NotFoundErrorScreen/title': 'Page Not Found',\n 'smarthr-ui/NotFoundErrorScreen/description': '',\n 'smarthr-ui/UnauthorizedErrorScreen/title': 'Logged Out Due to Inactivity',\n 'smarthr-ui/UnauthorizedErrorScreen/description1': 'You have been automatically logged out due to inactivity.',\n 'smarthr-ui/UnauthorizedErrorScreen/description2': 'Please log in again to access the requested page.',\n 'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': 'Log in again',\n 'smarthr-ui/UnexpectedErrorScreen/title': 'An unexpected error occurred.',\n 'smarthr-ui/UnexpectedErrorScreen/apology': 'We apologize for the inconvenience.',\n 'smarthr-ui/UnexpectedErrorScreen/possibleCause': '',\n 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': '',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem1': '',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem2': '',\n 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': '',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem1': '',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem2': ' For details, see {cookieCacheLink}.',\n 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': '',\n 'smarthr-ui/UnexpectedErrorScreen/adminContact': '',\n 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': '',\n 'smarthr-ui/UnexpectedErrorScreen/environmentLink': '',\n 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': '',\n 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': '',\n} as const satisfies Record<keyof typeof ja, string>\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"en_us.cjs","sources":["../../../src/intl/locales/en_us.ts"],"sourcesContent":["import type { locale as ja } from './ja'\n\n// キーと値の間に改行が入ると翻訳システムと連携できなくなるため、prettier-ignoreしている\n// prettier-ignore\nexport const locale = {\n 'smarthr-ui/common/language': 'English',\n 'smarthr-ui/ActionDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/AppHeader/school': 'SmartHR School',\n 'smarthr-ui/AppHeader/help': 'Help',\n 'smarthr-ui/AppHeader/userSettings': 'Personal Settings',\n 'smarthr-ui/AppHeader/releaseNotes': 'Release Notes',\n 'smarthr-ui/AppHeader/releaseNotesLoadError': 'Failed to load the release notes. Please try again later.',\n 'smarthr-ui/AppHeader/seeAllReleaseNotes': 'View all release notes',\n 'smarthr-ui/AppHeader/DesktopHeader/appLauncherLabel': 'Apps',\n 'smarthr-ui/AppHeader/MobileHeader/account': 'Account',\n 'smarthr-ui/AppHeader/MobileHeader/openMenu': 'Open menu',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenu': 'Close menu',\n 'smarthr-ui/AppHeader/MobileHeader/allAppButton': 'All Apps',\n 'smarthr-ui/AppHeader/MobileHeader/managementMenu': 'Admin Menu',\n 'smarthr-ui/AppHeader/MobileHeader/latestReleaseNotes': 'Latest Release Notes',\n 'smarthr-ui/AppHeader/MobileHeader/back': 'Back',\n 'smarthr-ui/AppHeader/MobileHeader/openMenuAccordion': 'Open',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenuAccordion': 'Close',\n 'smarthr-ui/AppHeader/Launcher/searchInputTitle': 'Enter the name of the App.',\n 'smarthr-ui/AppHeader/Launcher/favoriteModeText': 'Favorite Apps',\n 'smarthr-ui/AppHeader/Launcher/allModeText': 'All Apps',\n 'smarthr-ui/AppHeader/Launcher/listText': 'App List',\n 'smarthr-ui/AppHeader/Launcher/helpText': 'About Favorite Apps',\n 'smarthr-ui/AppHeader/Launcher/searchResultText': 'Search results',\n 'smarthr-ui/AppHeader/Launcher/emptyText': 'App not found.',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownLabel': 'Sort by',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownSelected': 'Selected',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderDefault': 'Default order',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameAsc': 'App name (A→Z)',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameDesc': 'App name (Z→A)',\n 'smarthr-ui/AppLauncher/showAllText': 'View all',\n 'smarthr-ui/AppLauncher/triggerLabel': 'Apps',\n 'smarthr-ui/Browser/notFoundDescription': 'Try changing the filter criteria.',\n 'smarthr-ui/Browser/notFoundTitle': 'No items found.',\n 'smarthr-ui/Button/loading': 'In Progress',\n 'smarthr-ui/Calendar/currentYear': 'Current year',\n 'smarthr-ui/Calendar/nextMonth': 'Next month',\n 'smarthr-ui/Calendar/previousMonth': 'Previous month',\n 'smarthr-ui/Calendar/selectYear': 'Select year',\n 'smarthr-ui/Combobox/addItemButtonLabel': 'Add “{name}”',\n 'smarthr-ui/Combobox/loadingText': 'In Progress',\n 'smarthr-ui/Combobox/noResultsText': 'No matching results found.',\n 'smarthr-ui/DropdownMenuButton/triggerActive': 'Hide options',\n 'smarthr-ui/DropdownMenuButton/triggerInactive': 'Show options',\n 'smarthr-ui/DropZone/selectButtonLabel': 'Choose file to upload',\n 'smarthr-ui/FileViewer/rotateAlt': 'Rotate Left',\n 'smarthr-ui/FileViewer/scaleDownAlt': 'Zoom Out',\n 'smarthr-ui/FileViewer/scaleRateLabel': 'Zoom Factor (%)',\n 'smarthr-ui/FileViewer/scaleUpAlt': 'Zoom In',\n 'smarthr-ui/FileViewer/unsupportedFileText': 'Unsupported file format.',\n 'smarthr-ui/FilterDropdown/applyText': 'Apply',\n 'smarthr-ui/FilterDropdown/cancelText': 'Cancel',\n 'smarthr-ui/FilterDropdown/resetText': 'Clear filters',\n 'smarthr-ui/FilterDropdown/status': 'Filters applied',\n 'smarthr-ui/FilterDropdown/triggerText': 'Filter',\n 'smarthr-ui/FormDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/InformationPanel/closeButtonLabel': 'Close',\n 'smarthr-ui/InformationPanel/openButtonLabel': 'Open',\n 'smarthr-ui/InputFile/destroy': 'Delete',\n 'smarthr-ui/LanguageSwitcher/checkIconAlt': 'Selected',\n 'smarthr-ui/Loader/alt': 'In Progress',\n 'smarthr-ui/MessageDialog/closeButtonLabel': 'Close',\n 'smarthr-ui/ModelessDialog/closeButtonIconAlt': 'Close',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaLabel': 'Dialog position',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaRoleDescription': 'Can be dragged',\n 'smarthr-ui/ModelessDialog/dialogHandlerDescription': 'Can be moved up, down, left, or right using arrow keys',\n 'smarthr-ui/ModelessDialog/dialogHandlerLiveRegionText': '{top}px from top, {left}px from left',\n 'smarthr-ui/MultiCombobox/destroyButtonIconAltSuffix': ': remove',\n 'smarthr-ui/MultiCombobox/selectedListAriaLabel': 'Selected items',\n 'smarthr-ui/NotificationBar/closeButtonIconAlt': 'Close',\n 'smarthr-ui/Pagination/controllerItemButtonFirstLabel': 'First',\n 'smarthr-ui/Pagination/controllerItemButtonLastLabel': 'Last',\n 'smarthr-ui/Pagination/controllerItemButtonNextLabel': 'Next',\n 'smarthr-ui/Pagination/controllerItemButtonPreviousLabel': 'Previous',\n 'smarthr-ui/Pagination/itemButtonLabel': 'Page {page}',\n 'smarthr-ui/Pagination/navigationLabel': 'Pagination',\n 'smarthr-ui/RequiredLabel/text': 'Required',\n 'smarthr-ui/SearchInput/iconAlt': 'Search',\n 'smarthr-ui/SideMenu/navigationLabel': 'Sidebar',\n 'smarthr-ui/SingleCombobox/destroyButtonIconAlt': 'Clear',\n 'smarthr-ui/SortDropdown/applyText': 'Apply',\n 'smarthr-ui/SortDropdown/ascLabel': 'Ascending',\n 'smarthr-ui/SortDropdown/cancelText': 'Cancel',\n 'smarthr-ui/SortDropdown/descLabel': 'Descending',\n 'smarthr-ui/SortDropdown/sortFieldLabel': 'Sort items',\n 'smarthr-ui/SortDropdown/sortOrderLegend': 'Order',\n 'smarthr-ui/StepFormDialog/backButtonLabel': 'Back',\n 'smarthr-ui/StepFormDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/StepFormDialog/nextButtonLabel': 'Next',\n 'smarthr-ui/StepStatusIcon/closedAlt': 'Interrupted',\n 'smarthr-ui/StepStatusIcon/completedAlt': 'Completed',\n 'smarthr-ui/Textarea/availableLetters': '{availableLetters} characters left',\n 'smarthr-ui/Textarea/maxLettersExceeded': '{exceededLetters} characters over limit',\n 'smarthr-ui/Textarea/screenReaderMaxLettersDescription': 'Maximum {maxLetters} characters',\n 'smarthr-ui/OpenInNewTabIcon/openInNewTab': 'Open in another tab',\n 'smarthr-ui/Th/sortDirectionAsc': 'Ascending',\n 'smarthr-ui/Th/sortDirectionDesc': 'Descending',\n 'smarthr-ui/Th/sortDirectionNone': 'No sorting',\n 'smarthr-ui/ThCheckbox/checkAllInvisibleLabel': 'Select/Deselect All',\n 'smarthr-ui/ThCheckbox/checkColumnName': 'Select',\n 'smarthr-ui/ErrorScreen/homeLink': 'Back to Home',\n 'smarthr-ui/ErrorScreen/smarthrLink': 'Back to SmartHR',\n 'smarthr-ui/AuthErrorScreen/title': 'Authentication Issue',\n 'smarthr-ui/ForbiddenErrorScreen/title': 'You don’t have permission to view this page',\n 'smarthr-ui/ForbiddenErrorScreen/description': 'For more details, please contact the administrator at your company.',\n 'smarthr-ui/NotFoundErrorScreen/title': 'Page Not Found',\n 'smarthr-ui/NotFoundErrorScreen/description': 'The page you are looking for is temporarily unavailable, or it may have been moved or deleted.',\n 'smarthr-ui/UnauthorizedErrorScreen/title': 'Logged Out Due to Inactivity',\n 'smarthr-ui/UnauthorizedErrorScreen/description1': 'You have been automatically logged out due to inactivity.',\n 'smarthr-ui/UnauthorizedErrorScreen/description2': 'Please log in again to access the requested page.',\n 'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': 'Log in again',\n 'smarthr-ui/UnexpectedErrorScreen/title': 'Unexpected Error',\n 'smarthr-ui/UnexpectedErrorScreen/apology': 'We apologize for the inconvenience.',\n 'smarthr-ui/UnexpectedErrorScreen/possibleCause': 'This error may have occurred due to a temporary connection issue, your device or browser settings, or the contents of the file you uploaded.',\n 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': 'We apologize for the trouble. Please try the following:',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem1': 'Wait a moment, then try again.',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem2': 'Check {maintenanceLink}. Note that the information about maintenance and major system issues may take some time to be posted.',\n 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': 'If the issues is not resolved, try the steps below:',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem1': 'Check if you’re using a recommended browser/settings (see {environmentLink})',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem2': 'Try clearing your browser’s cookies and cache. For details, see {cookieCacheLink}.',\n 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': 'If the issue persists after checking the above, please contact your company’s HR representative, or another person with SmartHR administrator privileges, and provide the information listed here: {errorInfoLink}.',\n 'smarthr-ui/UnexpectedErrorScreen/adminContact': 'If you have SmartHR administrator privileges, please contact us using the chat icon in the lower right and provide the following information: {errorInfoLink}.',\n 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': 'Maintenance & Service Alerts',\n 'smarthr-ui/UnexpectedErrorScreen/environmentLink': 'SmartHR system requirements',\n 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': 'Q. How do I clear my browser’s cookies and cache?',\n 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': 'Information needed to investigate the error',\n} as const satisfies Record<keyof typeof ja, string>\n"],"names":[],"mappings":"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"}
@@ -101,28 +101,28 @@ export declare const locale: {
101
101
  readonly 'smarthr-ui/ThCheckbox/checkColumnName': "Select";
102
102
  readonly 'smarthr-ui/ErrorScreen/homeLink': "Back to Home";
103
103
  readonly 'smarthr-ui/ErrorScreen/smarthrLink': "Back to SmartHR";
104
- readonly 'smarthr-ui/AuthErrorScreen/title': "There was a problem with your authentication";
105
- readonly 'smarthr-ui/ForbiddenErrorScreen/title': "You don't have permission to view this page";
104
+ readonly 'smarthr-ui/AuthErrorScreen/title': "Authentication Issue";
105
+ readonly 'smarthr-ui/ForbiddenErrorScreen/title': "You dont have permission to view this page";
106
106
  readonly 'smarthr-ui/ForbiddenErrorScreen/description': "For more details, please contact the administrator at your company.";
107
107
  readonly 'smarthr-ui/NotFoundErrorScreen/title': "Page Not Found";
108
- readonly 'smarthr-ui/NotFoundErrorScreen/description': "";
108
+ readonly 'smarthr-ui/NotFoundErrorScreen/description': "The page you are looking for is temporarily unavailable, or it may have been moved or deleted.";
109
109
  readonly 'smarthr-ui/UnauthorizedErrorScreen/title': "Logged Out Due to Inactivity";
110
110
  readonly 'smarthr-ui/UnauthorizedErrorScreen/description1': "You have been automatically logged out due to inactivity.";
111
111
  readonly 'smarthr-ui/UnauthorizedErrorScreen/description2': "Please log in again to access the requested page.";
112
112
  readonly 'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': "Log in again";
113
- readonly 'smarthr-ui/UnexpectedErrorScreen/title': "An unexpected error occurred.";
113
+ readonly 'smarthr-ui/UnexpectedErrorScreen/title': "Unexpected Error";
114
114
  readonly 'smarthr-ui/UnexpectedErrorScreen/apology': "We apologize for the inconvenience.";
115
- readonly 'smarthr-ui/UnexpectedErrorScreen/possibleCause': "";
116
- readonly 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': "";
117
- readonly 'smarthr-ui/UnexpectedErrorScreen/retryItem1': "";
118
- readonly 'smarthr-ui/UnexpectedErrorScreen/retryItem2': "";
119
- readonly 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': "";
120
- readonly 'smarthr-ui/UnexpectedErrorScreen/checkItem1': "";
121
- readonly 'smarthr-ui/UnexpectedErrorScreen/checkItem2': " For details, see {cookieCacheLink}.";
122
- readonly 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': "";
123
- readonly 'smarthr-ui/UnexpectedErrorScreen/adminContact': "";
124
- readonly 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': "";
125
- readonly 'smarthr-ui/UnexpectedErrorScreen/environmentLink': "";
126
- readonly 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': "";
127
- readonly 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': "";
115
+ readonly 'smarthr-ui/UnexpectedErrorScreen/possibleCause': "This error may have occurred due to a temporary connection issue, your device or browser settings, or the contents of the file you uploaded.";
116
+ readonly 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': "We apologize for the trouble. Please try the following:";
117
+ readonly 'smarthr-ui/UnexpectedErrorScreen/retryItem1': "Wait a moment, then try again.";
118
+ readonly 'smarthr-ui/UnexpectedErrorScreen/retryItem2': "Check {maintenanceLink}. Note that the information about maintenance and major system issues may take some time to be posted.";
119
+ readonly 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': "If the issues is not resolved, try the steps below:";
120
+ readonly 'smarthr-ui/UnexpectedErrorScreen/checkItem1': "Check if you’re using a recommended browser/settings (see {environmentLink})";
121
+ readonly 'smarthr-ui/UnexpectedErrorScreen/checkItem2': "Try clearing your browser’s cookies and cache. For details, see {cookieCacheLink}.";
122
+ readonly 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': "If the issue persists after checking the above, please contact your company’s HR representative, or another person with SmartHR administrator privileges, and provide the information listed here: {errorInfoLink}.";
123
+ readonly 'smarthr-ui/UnexpectedErrorScreen/adminContact': "If you have SmartHR administrator privileges, please contact us using the chat icon in the lower right and provide the following information: {errorInfoLink}.";
124
+ readonly 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': "Maintenance & Service Alerts";
125
+ readonly 'smarthr-ui/UnexpectedErrorScreen/environmentLink': "SmartHR system requirements";
126
+ readonly 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': "Q. How do I clear my browser’s cookies and cache?";
127
+ readonly 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': "Information needed to investigate the error";
128
128
  };
@@ -103,30 +103,30 @@ const locale = {
103
103
  'smarthr-ui/ThCheckbox/checkColumnName': 'Select',
104
104
  'smarthr-ui/ErrorScreen/homeLink': 'Back to Home',
105
105
  'smarthr-ui/ErrorScreen/smarthrLink': 'Back to SmartHR',
106
- 'smarthr-ui/AuthErrorScreen/title': 'There was a problem with your authentication',
107
- 'smarthr-ui/ForbiddenErrorScreen/title': "You don't have permission to view this page",
106
+ 'smarthr-ui/AuthErrorScreen/title': 'Authentication Issue',
107
+ 'smarthr-ui/ForbiddenErrorScreen/title': 'You dont have permission to view this page',
108
108
  'smarthr-ui/ForbiddenErrorScreen/description': 'For more details, please contact the administrator at your company.',
109
109
  'smarthr-ui/NotFoundErrorScreen/title': 'Page Not Found',
110
- 'smarthr-ui/NotFoundErrorScreen/description': '',
110
+ 'smarthr-ui/NotFoundErrorScreen/description': 'The page you are looking for is temporarily unavailable, or it may have been moved or deleted.',
111
111
  'smarthr-ui/UnauthorizedErrorScreen/title': 'Logged Out Due to Inactivity',
112
112
  'smarthr-ui/UnauthorizedErrorScreen/description1': 'You have been automatically logged out due to inactivity.',
113
113
  'smarthr-ui/UnauthorizedErrorScreen/description2': 'Please log in again to access the requested page.',
114
114
  'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': 'Log in again',
115
- 'smarthr-ui/UnexpectedErrorScreen/title': 'An unexpected error occurred.',
115
+ 'smarthr-ui/UnexpectedErrorScreen/title': 'Unexpected Error',
116
116
  'smarthr-ui/UnexpectedErrorScreen/apology': 'We apologize for the inconvenience.',
117
- 'smarthr-ui/UnexpectedErrorScreen/possibleCause': '',
118
- 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': '',
119
- 'smarthr-ui/UnexpectedErrorScreen/retryItem1': '',
120
- 'smarthr-ui/UnexpectedErrorScreen/retryItem2': '',
121
- 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': '',
122
- 'smarthr-ui/UnexpectedErrorScreen/checkItem1': '',
123
- 'smarthr-ui/UnexpectedErrorScreen/checkItem2': ' For details, see {cookieCacheLink}.',
124
- 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': '',
125
- 'smarthr-ui/UnexpectedErrorScreen/adminContact': '',
126
- 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': '',
127
- 'smarthr-ui/UnexpectedErrorScreen/environmentLink': '',
128
- 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': '',
129
- 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': '',
117
+ 'smarthr-ui/UnexpectedErrorScreen/possibleCause': 'This error may have occurred due to a temporary connection issue, your device or browser settings, or the contents of the file you uploaded.',
118
+ 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': 'We apologize for the trouble. Please try the following:',
119
+ 'smarthr-ui/UnexpectedErrorScreen/retryItem1': 'Wait a moment, then try again.',
120
+ 'smarthr-ui/UnexpectedErrorScreen/retryItem2': 'Check {maintenanceLink}. Note that the information about maintenance and major system issues may take some time to be posted.',
121
+ 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': 'If the issues is not resolved, try the steps below:',
122
+ 'smarthr-ui/UnexpectedErrorScreen/checkItem1': 'Check if you’re using a recommended browser/settings (see {environmentLink})',
123
+ 'smarthr-ui/UnexpectedErrorScreen/checkItem2': 'Try clearing your browser’s cookies and cache. For details, see {cookieCacheLink}.',
124
+ 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': 'If the issue persists after checking the above, please contact your company’s HR representative, or another person with SmartHR administrator privileges, and provide the information listed here: {errorInfoLink}.',
125
+ 'smarthr-ui/UnexpectedErrorScreen/adminContact': 'If you have SmartHR administrator privileges, please contact us using the chat icon in the lower right and provide the following information: {errorInfoLink}.',
126
+ 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': 'Maintenance & Service Alerts',
127
+ 'smarthr-ui/UnexpectedErrorScreen/environmentLink': 'SmartHR system requirements',
128
+ 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': 'Q. How do I clear my browser’s cookies and cache?',
129
+ 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': 'Information needed to investigate the error',
130
130
  };
131
131
 
132
132
  export { locale };
@@ -1 +1 @@
1
- {"version":3,"file":"en_us.js","sources":["../../../src/intl/locales/en_us.ts"],"sourcesContent":["import type { locale as ja } from './ja'\n\n// キーと値の間に改行が入ると翻訳システムと連携できなくなるため、prettier-ignoreしている\n// prettier-ignore\nexport const locale = {\n 'smarthr-ui/common/language': 'English',\n 'smarthr-ui/ActionDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/AppHeader/school': 'SmartHR School',\n 'smarthr-ui/AppHeader/help': 'Help',\n 'smarthr-ui/AppHeader/userSettings': 'Personal Settings',\n 'smarthr-ui/AppHeader/releaseNotes': 'Release Notes',\n 'smarthr-ui/AppHeader/releaseNotesLoadError': 'Failed to load the release notes. Please try again later.',\n 'smarthr-ui/AppHeader/seeAllReleaseNotes': 'View all release notes',\n 'smarthr-ui/AppHeader/DesktopHeader/appLauncherLabel': 'Apps',\n 'smarthr-ui/AppHeader/MobileHeader/account': 'Account',\n 'smarthr-ui/AppHeader/MobileHeader/openMenu': 'Open menu',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenu': 'Close menu',\n 'smarthr-ui/AppHeader/MobileHeader/allAppButton': 'All Apps',\n 'smarthr-ui/AppHeader/MobileHeader/managementMenu': 'Admin Menu',\n 'smarthr-ui/AppHeader/MobileHeader/latestReleaseNotes': 'Latest Release Notes',\n 'smarthr-ui/AppHeader/MobileHeader/back': 'Back',\n 'smarthr-ui/AppHeader/MobileHeader/openMenuAccordion': 'Open',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenuAccordion': 'Close',\n 'smarthr-ui/AppHeader/Launcher/searchInputTitle': 'Enter the name of the App.',\n 'smarthr-ui/AppHeader/Launcher/favoriteModeText': 'Favorite Apps',\n 'smarthr-ui/AppHeader/Launcher/allModeText': 'All Apps',\n 'smarthr-ui/AppHeader/Launcher/listText': 'App List',\n 'smarthr-ui/AppHeader/Launcher/helpText': 'About Favorite Apps',\n 'smarthr-ui/AppHeader/Launcher/searchResultText': 'Search results',\n 'smarthr-ui/AppHeader/Launcher/emptyText': 'App not found.',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownLabel': 'Sort by',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownSelected': 'Selected',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderDefault': 'Default order',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameAsc': 'App name (A→Z)',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameDesc': 'App name (Z→A)',\n 'smarthr-ui/AppLauncher/showAllText': 'View all',\n 'smarthr-ui/AppLauncher/triggerLabel': 'Apps',\n 'smarthr-ui/Browser/notFoundDescription': 'Try changing the filter criteria.',\n 'smarthr-ui/Browser/notFoundTitle': 'No items found.',\n 'smarthr-ui/Button/loading': 'In Progress',\n 'smarthr-ui/Calendar/currentYear': 'Current year',\n 'smarthr-ui/Calendar/nextMonth': 'Next month',\n 'smarthr-ui/Calendar/previousMonth': 'Previous month',\n 'smarthr-ui/Calendar/selectYear': 'Select year',\n 'smarthr-ui/Combobox/addItemButtonLabel': 'Add “{name}”',\n 'smarthr-ui/Combobox/loadingText': 'In Progress',\n 'smarthr-ui/Combobox/noResultsText': 'No matching results found.',\n 'smarthr-ui/DropdownMenuButton/triggerActive': 'Hide options',\n 'smarthr-ui/DropdownMenuButton/triggerInactive': 'Show options',\n 'smarthr-ui/DropZone/selectButtonLabel': 'Choose file to upload',\n 'smarthr-ui/FileViewer/rotateAlt': 'Rotate Left',\n 'smarthr-ui/FileViewer/scaleDownAlt': 'Zoom Out',\n 'smarthr-ui/FileViewer/scaleRateLabel': 'Zoom Factor (%)',\n 'smarthr-ui/FileViewer/scaleUpAlt': 'Zoom In',\n 'smarthr-ui/FileViewer/unsupportedFileText': 'Unsupported file format.',\n 'smarthr-ui/FilterDropdown/applyText': 'Apply',\n 'smarthr-ui/FilterDropdown/cancelText': 'Cancel',\n 'smarthr-ui/FilterDropdown/resetText': 'Clear filters',\n 'smarthr-ui/FilterDropdown/status': 'Filters applied',\n 'smarthr-ui/FilterDropdown/triggerText': 'Filter',\n 'smarthr-ui/FormDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/InformationPanel/closeButtonLabel': 'Close',\n 'smarthr-ui/InformationPanel/openButtonLabel': 'Open',\n 'smarthr-ui/InputFile/destroy': 'Delete',\n 'smarthr-ui/LanguageSwitcher/checkIconAlt': 'Selected',\n 'smarthr-ui/Loader/alt': 'In Progress',\n 'smarthr-ui/MessageDialog/closeButtonLabel': 'Close',\n 'smarthr-ui/ModelessDialog/closeButtonIconAlt': 'Close',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaLabel': 'Dialog position',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaRoleDescription': 'Can be dragged',\n 'smarthr-ui/ModelessDialog/dialogHandlerDescription': 'Can be moved up, down, left, or right using arrow keys',\n 'smarthr-ui/ModelessDialog/dialogHandlerLiveRegionText': '{top}px from top, {left}px from left',\n 'smarthr-ui/MultiCombobox/destroyButtonIconAltSuffix': ': remove',\n 'smarthr-ui/MultiCombobox/selectedListAriaLabel': 'Selected items',\n 'smarthr-ui/NotificationBar/closeButtonIconAlt': 'Close',\n 'smarthr-ui/Pagination/controllerItemButtonFirstLabel': 'First',\n 'smarthr-ui/Pagination/controllerItemButtonLastLabel': 'Last',\n 'smarthr-ui/Pagination/controllerItemButtonNextLabel': 'Next',\n 'smarthr-ui/Pagination/controllerItemButtonPreviousLabel': 'Previous',\n 'smarthr-ui/Pagination/itemButtonLabel': 'Page {page}',\n 'smarthr-ui/Pagination/navigationLabel': 'Pagination',\n 'smarthr-ui/RequiredLabel/text': 'Required',\n 'smarthr-ui/SearchInput/iconAlt': 'Search',\n 'smarthr-ui/SideMenu/navigationLabel': 'Sidebar',\n 'smarthr-ui/SingleCombobox/destroyButtonIconAlt': 'Clear',\n 'smarthr-ui/SortDropdown/applyText': 'Apply',\n 'smarthr-ui/SortDropdown/ascLabel': 'Ascending',\n 'smarthr-ui/SortDropdown/cancelText': 'Cancel',\n 'smarthr-ui/SortDropdown/descLabel': 'Descending',\n 'smarthr-ui/SortDropdown/sortFieldLabel': 'Sort items',\n 'smarthr-ui/SortDropdown/sortOrderLegend': 'Order',\n 'smarthr-ui/StepFormDialog/backButtonLabel': 'Back',\n 'smarthr-ui/StepFormDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/StepFormDialog/nextButtonLabel': 'Next',\n 'smarthr-ui/StepStatusIcon/closedAlt': 'Interrupted',\n 'smarthr-ui/StepStatusIcon/completedAlt': 'Completed',\n 'smarthr-ui/Textarea/availableLetters': '{availableLetters} characters left',\n 'smarthr-ui/Textarea/maxLettersExceeded': '{exceededLetters} characters over limit',\n 'smarthr-ui/Textarea/screenReaderMaxLettersDescription': 'Maximum {maxLetters} characters',\n 'smarthr-ui/OpenInNewTabIcon/openInNewTab': 'Open in another tab',\n 'smarthr-ui/Th/sortDirectionAsc': 'Ascending',\n 'smarthr-ui/Th/sortDirectionDesc': 'Descending',\n 'smarthr-ui/Th/sortDirectionNone': 'No sorting',\n 'smarthr-ui/ThCheckbox/checkAllInvisibleLabel': 'Select/Deselect All',\n 'smarthr-ui/ThCheckbox/checkColumnName': 'Select',\n 'smarthr-ui/ErrorScreen/homeLink': 'Back to Home',\n 'smarthr-ui/ErrorScreen/smarthrLink': 'Back to SmartHR',\n 'smarthr-ui/AuthErrorScreen/title': 'There was a problem with your authentication',\n 'smarthr-ui/ForbiddenErrorScreen/title': \"You don't have permission to view this page\",\n 'smarthr-ui/ForbiddenErrorScreen/description': 'For more details, please contact the administrator at your company.',\n 'smarthr-ui/NotFoundErrorScreen/title': 'Page Not Found',\n 'smarthr-ui/NotFoundErrorScreen/description': '',\n 'smarthr-ui/UnauthorizedErrorScreen/title': 'Logged Out Due to Inactivity',\n 'smarthr-ui/UnauthorizedErrorScreen/description1': 'You have been automatically logged out due to inactivity.',\n 'smarthr-ui/UnauthorizedErrorScreen/description2': 'Please log in again to access the requested page.',\n 'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': 'Log in again',\n 'smarthr-ui/UnexpectedErrorScreen/title': 'An unexpected error occurred.',\n 'smarthr-ui/UnexpectedErrorScreen/apology': 'We apologize for the inconvenience.',\n 'smarthr-ui/UnexpectedErrorScreen/possibleCause': '',\n 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': '',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem1': '',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem2': '',\n 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': '',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem1': '',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem2': ' For details, see {cookieCacheLink}.',\n 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': '',\n 'smarthr-ui/UnexpectedErrorScreen/adminContact': '',\n 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': '',\n 'smarthr-ui/UnexpectedErrorScreen/environmentLink': '',\n 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': '',\n 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': '',\n} as const satisfies Record<keyof typeof ja, string>\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"en_us.js","sources":["../../../src/intl/locales/en_us.ts"],"sourcesContent":["import type { locale as ja } from './ja'\n\n// キーと値の間に改行が入ると翻訳システムと連携できなくなるため、prettier-ignoreしている\n// prettier-ignore\nexport const locale = {\n 'smarthr-ui/common/language': 'English',\n 'smarthr-ui/ActionDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/AppHeader/school': 'SmartHR School',\n 'smarthr-ui/AppHeader/help': 'Help',\n 'smarthr-ui/AppHeader/userSettings': 'Personal Settings',\n 'smarthr-ui/AppHeader/releaseNotes': 'Release Notes',\n 'smarthr-ui/AppHeader/releaseNotesLoadError': 'Failed to load the release notes. Please try again later.',\n 'smarthr-ui/AppHeader/seeAllReleaseNotes': 'View all release notes',\n 'smarthr-ui/AppHeader/DesktopHeader/appLauncherLabel': 'Apps',\n 'smarthr-ui/AppHeader/MobileHeader/account': 'Account',\n 'smarthr-ui/AppHeader/MobileHeader/openMenu': 'Open menu',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenu': 'Close menu',\n 'smarthr-ui/AppHeader/MobileHeader/allAppButton': 'All Apps',\n 'smarthr-ui/AppHeader/MobileHeader/managementMenu': 'Admin Menu',\n 'smarthr-ui/AppHeader/MobileHeader/latestReleaseNotes': 'Latest Release Notes',\n 'smarthr-ui/AppHeader/MobileHeader/back': 'Back',\n 'smarthr-ui/AppHeader/MobileHeader/openMenuAccordion': 'Open',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenuAccordion': 'Close',\n 'smarthr-ui/AppHeader/Launcher/searchInputTitle': 'Enter the name of the App.',\n 'smarthr-ui/AppHeader/Launcher/favoriteModeText': 'Favorite Apps',\n 'smarthr-ui/AppHeader/Launcher/allModeText': 'All Apps',\n 'smarthr-ui/AppHeader/Launcher/listText': 'App List',\n 'smarthr-ui/AppHeader/Launcher/helpText': 'About Favorite Apps',\n 'smarthr-ui/AppHeader/Launcher/searchResultText': 'Search results',\n 'smarthr-ui/AppHeader/Launcher/emptyText': 'App not found.',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownLabel': 'Sort by',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownSelected': 'Selected',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderDefault': 'Default order',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameAsc': 'App name (A→Z)',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameDesc': 'App name (Z→A)',\n 'smarthr-ui/AppLauncher/showAllText': 'View all',\n 'smarthr-ui/AppLauncher/triggerLabel': 'Apps',\n 'smarthr-ui/Browser/notFoundDescription': 'Try changing the filter criteria.',\n 'smarthr-ui/Browser/notFoundTitle': 'No items found.',\n 'smarthr-ui/Button/loading': 'In Progress',\n 'smarthr-ui/Calendar/currentYear': 'Current year',\n 'smarthr-ui/Calendar/nextMonth': 'Next month',\n 'smarthr-ui/Calendar/previousMonth': 'Previous month',\n 'smarthr-ui/Calendar/selectYear': 'Select year',\n 'smarthr-ui/Combobox/addItemButtonLabel': 'Add “{name}”',\n 'smarthr-ui/Combobox/loadingText': 'In Progress',\n 'smarthr-ui/Combobox/noResultsText': 'No matching results found.',\n 'smarthr-ui/DropdownMenuButton/triggerActive': 'Hide options',\n 'smarthr-ui/DropdownMenuButton/triggerInactive': 'Show options',\n 'smarthr-ui/DropZone/selectButtonLabel': 'Choose file to upload',\n 'smarthr-ui/FileViewer/rotateAlt': 'Rotate Left',\n 'smarthr-ui/FileViewer/scaleDownAlt': 'Zoom Out',\n 'smarthr-ui/FileViewer/scaleRateLabel': 'Zoom Factor (%)',\n 'smarthr-ui/FileViewer/scaleUpAlt': 'Zoom In',\n 'smarthr-ui/FileViewer/unsupportedFileText': 'Unsupported file format.',\n 'smarthr-ui/FilterDropdown/applyText': 'Apply',\n 'smarthr-ui/FilterDropdown/cancelText': 'Cancel',\n 'smarthr-ui/FilterDropdown/resetText': 'Clear filters',\n 'smarthr-ui/FilterDropdown/status': 'Filters applied',\n 'smarthr-ui/FilterDropdown/triggerText': 'Filter',\n 'smarthr-ui/FormDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/InformationPanel/closeButtonLabel': 'Close',\n 'smarthr-ui/InformationPanel/openButtonLabel': 'Open',\n 'smarthr-ui/InputFile/destroy': 'Delete',\n 'smarthr-ui/LanguageSwitcher/checkIconAlt': 'Selected',\n 'smarthr-ui/Loader/alt': 'In Progress',\n 'smarthr-ui/MessageDialog/closeButtonLabel': 'Close',\n 'smarthr-ui/ModelessDialog/closeButtonIconAlt': 'Close',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaLabel': 'Dialog position',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaRoleDescription': 'Can be dragged',\n 'smarthr-ui/ModelessDialog/dialogHandlerDescription': 'Can be moved up, down, left, or right using arrow keys',\n 'smarthr-ui/ModelessDialog/dialogHandlerLiveRegionText': '{top}px from top, {left}px from left',\n 'smarthr-ui/MultiCombobox/destroyButtonIconAltSuffix': ': remove',\n 'smarthr-ui/MultiCombobox/selectedListAriaLabel': 'Selected items',\n 'smarthr-ui/NotificationBar/closeButtonIconAlt': 'Close',\n 'smarthr-ui/Pagination/controllerItemButtonFirstLabel': 'First',\n 'smarthr-ui/Pagination/controllerItemButtonLastLabel': 'Last',\n 'smarthr-ui/Pagination/controllerItemButtonNextLabel': 'Next',\n 'smarthr-ui/Pagination/controllerItemButtonPreviousLabel': 'Previous',\n 'smarthr-ui/Pagination/itemButtonLabel': 'Page {page}',\n 'smarthr-ui/Pagination/navigationLabel': 'Pagination',\n 'smarthr-ui/RequiredLabel/text': 'Required',\n 'smarthr-ui/SearchInput/iconAlt': 'Search',\n 'smarthr-ui/SideMenu/navigationLabel': 'Sidebar',\n 'smarthr-ui/SingleCombobox/destroyButtonIconAlt': 'Clear',\n 'smarthr-ui/SortDropdown/applyText': 'Apply',\n 'smarthr-ui/SortDropdown/ascLabel': 'Ascending',\n 'smarthr-ui/SortDropdown/cancelText': 'Cancel',\n 'smarthr-ui/SortDropdown/descLabel': 'Descending',\n 'smarthr-ui/SortDropdown/sortFieldLabel': 'Sort items',\n 'smarthr-ui/SortDropdown/sortOrderLegend': 'Order',\n 'smarthr-ui/StepFormDialog/backButtonLabel': 'Back',\n 'smarthr-ui/StepFormDialog/closeButtonLabel': 'Cancel',\n 'smarthr-ui/StepFormDialog/nextButtonLabel': 'Next',\n 'smarthr-ui/StepStatusIcon/closedAlt': 'Interrupted',\n 'smarthr-ui/StepStatusIcon/completedAlt': 'Completed',\n 'smarthr-ui/Textarea/availableLetters': '{availableLetters} characters left',\n 'smarthr-ui/Textarea/maxLettersExceeded': '{exceededLetters} characters over limit',\n 'smarthr-ui/Textarea/screenReaderMaxLettersDescription': 'Maximum {maxLetters} characters',\n 'smarthr-ui/OpenInNewTabIcon/openInNewTab': 'Open in another tab',\n 'smarthr-ui/Th/sortDirectionAsc': 'Ascending',\n 'smarthr-ui/Th/sortDirectionDesc': 'Descending',\n 'smarthr-ui/Th/sortDirectionNone': 'No sorting',\n 'smarthr-ui/ThCheckbox/checkAllInvisibleLabel': 'Select/Deselect All',\n 'smarthr-ui/ThCheckbox/checkColumnName': 'Select',\n 'smarthr-ui/ErrorScreen/homeLink': 'Back to Home',\n 'smarthr-ui/ErrorScreen/smarthrLink': 'Back to SmartHR',\n 'smarthr-ui/AuthErrorScreen/title': 'Authentication Issue',\n 'smarthr-ui/ForbiddenErrorScreen/title': 'You don’t have permission to view this page',\n 'smarthr-ui/ForbiddenErrorScreen/description': 'For more details, please contact the administrator at your company.',\n 'smarthr-ui/NotFoundErrorScreen/title': 'Page Not Found',\n 'smarthr-ui/NotFoundErrorScreen/description': 'The page you are looking for is temporarily unavailable, or it may have been moved or deleted.',\n 'smarthr-ui/UnauthorizedErrorScreen/title': 'Logged Out Due to Inactivity',\n 'smarthr-ui/UnauthorizedErrorScreen/description1': 'You have been automatically logged out due to inactivity.',\n 'smarthr-ui/UnauthorizedErrorScreen/description2': 'Please log in again to access the requested page.',\n 'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': 'Log in again',\n 'smarthr-ui/UnexpectedErrorScreen/title': 'Unexpected Error',\n 'smarthr-ui/UnexpectedErrorScreen/apology': 'We apologize for the inconvenience.',\n 'smarthr-ui/UnexpectedErrorScreen/possibleCause': 'This error may have occurred due to a temporary connection issue, your device or browser settings, or the contents of the file you uploaded.',\n 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': 'We apologize for the trouble. Please try the following:',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem1': 'Wait a moment, then try again.',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem2': 'Check {maintenanceLink}. Note that the information about maintenance and major system issues may take some time to be posted.',\n 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': 'If the issues is not resolved, try the steps below:',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem1': 'Check if you’re using a recommended browser/settings (see {environmentLink})',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem2': 'Try clearing your browser’s cookies and cache. For details, see {cookieCacheLink}.',\n 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': 'If the issue persists after checking the above, please contact your company’s HR representative, or another person with SmartHR administrator privileges, and provide the information listed here: {errorInfoLink}.',\n 'smarthr-ui/UnexpectedErrorScreen/adminContact': 'If you have SmartHR administrator privileges, please contact us using the chat icon in the lower right and provide the following information: {errorInfoLink}.',\n 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': 'Maintenance & Service Alerts',\n 'smarthr-ui/UnexpectedErrorScreen/environmentLink': 'SmartHR system requirements',\n 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': 'Q. How do I clear my browser’s cookies and cache?',\n 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': 'Information needed to investigate the error',\n} as const satisfies Record<keyof typeof ja, string>\n"],"names":[],"mappings":"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"}