smarthr-ui 99.1.1 → 99.2.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.
- package/lib/components/InputFile/FilePreviewDialog.cjs +28 -5
- package/lib/components/InputFile/FilePreviewDialog.cjs.map +1 -1
- package/lib/components/InputFile/FilePreviewDialog.js +29 -6
- package/lib/components/InputFile/FilePreviewDialog.js.map +1 -1
- package/lib/components/InputFile/parts.cjs +4 -4
- package/lib/components/InputFile/parts.cjs.map +1 -1
- package/lib/components/InputFile/parts.js +4 -4
- package/lib/components/InputFile/parts.js.map +1 -1
- package/lib/intl/locales/index.d.ts +1 -0
- package/lib/intl/locales/ja.cjs +1 -0
- package/lib/intl/locales/ja.cjs.map +1 -1
- package/lib/intl/locales/ja.d.ts +1 -0
- package/lib/intl/locales/ja.js +1 -0
- package/lib/intl/locales/ja.js.map +1 -1
- package/lib/intl/locales/ja.json.cjs +1 -0
- package/lib/intl/locales/ja.json.cjs.map +1 -1
- package/lib/intl/locales/ja.json.js +1 -0
- package/lib/intl/locales/ja.json.js.map +1 -1
- package/metadata.json +1 -1
- package/package.json +1 -1
- package/smarthr-ui.css +14 -0
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
|
|
4
4
|
var jsxRuntime = require('react/jsx-runtime');
|
|
5
5
|
var React = require('react');
|
|
6
|
+
var hooks_useEnvironment_useEnvironment = require('../../hooks/useEnvironment/useEnvironment.cjs');
|
|
7
|
+
require('../../themes/createSpacing.cjs');
|
|
8
|
+
require('../../_virtual/index.cjs');
|
|
9
|
+
require('../../_virtual/index2.cjs');
|
|
10
|
+
require('../../themes/createColor.cjs');
|
|
11
|
+
require('../../themes/createTextColor.cjs');
|
|
12
|
+
require('styled-components');
|
|
13
|
+
require('../../themes/createShadow/defaultShadow.cjs');
|
|
14
|
+
require('../../themes/createWidth.cjs');
|
|
15
|
+
require('../../themes/createBackgroundColor.cjs');
|
|
16
|
+
require('../../themes/createBorder.cjs');
|
|
17
|
+
require('../../hooks/useTheme.cjs');
|
|
6
18
|
require('../../intl/IntlProvider.cjs');
|
|
7
19
|
require('react-intl');
|
|
8
20
|
var intl_Localizer = require('../../intl/Localizer.cjs');
|
|
@@ -11,6 +23,7 @@ require('../../intl/TimeFormatter.cjs');
|
|
|
11
23
|
var components_Button_Button = require('../Button/Button.cjs');
|
|
12
24
|
require('../Button/AnchorButton.cjs');
|
|
13
25
|
require('../Button/UnstyledButton.cjs');
|
|
26
|
+
var components_Dialog_Dialog = require('../Dialog/Dialog.cjs');
|
|
14
27
|
require('../Dialog/DialogContentInner.cjs');
|
|
15
28
|
require('react-dom');
|
|
16
29
|
require('../Dialog/ControlledMessageDialog/MessageDialogContentInner.cjs');
|
|
@@ -23,6 +36,11 @@ require('../Dialog/DialogContent.cjs');
|
|
|
23
36
|
var components_Dialog_ModelessDialog_ModelessDialog = require('../Dialog/ModelessDialog/ModelessDialog.cjs');
|
|
24
37
|
require('../Dialog/FocusTrap.cjs');
|
|
25
38
|
var components_FileViewer_FileViewer = require('../FileViewer/FileViewer.cjs');
|
|
39
|
+
var components_Heading_Heading = require('../Heading/Heading.cjs');
|
|
40
|
+
require('../Heading/PageHeading/PageHeading.cjs');
|
|
41
|
+
var components_Icon_FaIcon = require('../Icon/FaIcon.cjs');
|
|
42
|
+
require('../Icon/generateIcon.cjs');
|
|
43
|
+
require('../Icon/OpenInNewTabIcon.cjs');
|
|
26
44
|
require('../Layout/Stack/Stack.cjs');
|
|
27
45
|
var components_Layout_Cluster_Cluster = require('../Layout/Cluster/Cluster.cjs');
|
|
28
46
|
require('../Layout/Reel/Reel.cjs');
|
|
@@ -34,6 +52,7 @@ var components_Loader_Loader = require('../Loader/Loader.cjs');
|
|
|
34
52
|
const FilePreviewDialog = React.memo(({ file, handleClose, handleDownload }) => {
|
|
35
53
|
const [blobUrl, setBlobUrl] = React.useState();
|
|
36
54
|
const isOpen = !!file;
|
|
55
|
+
const { mobile } = hooks_useEnvironment_useEnvironment.useEnvironment();
|
|
37
56
|
React.useEffect(() => {
|
|
38
57
|
if (!file) {
|
|
39
58
|
setBlobUrl((current) => {
|
|
@@ -51,11 +70,15 @@ const FilePreviewDialog = React.memo(({ file, handleClose, handleDownload }) =>
|
|
|
51
70
|
URL.revokeObjectURL(url);
|
|
52
71
|
};
|
|
53
72
|
}, [file]);
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
73
|
+
const fileViewer = isOpen && blobUrl ? (jsxRuntime.jsx(components_FileViewer_FileViewer.FileViewer, { file: {
|
|
74
|
+
url: blobUrl,
|
|
75
|
+
contentType: file.type,
|
|
76
|
+
alt: file.name,
|
|
77
|
+
} })) : (jsxRuntime.jsx(components_Layout_Center_Center.Center, { className: "shr-h-full", children: jsxRuntime.jsx(components_Loader_Loader.Loader, { size: "M" }) }));
|
|
78
|
+
if (mobile) {
|
|
79
|
+
return (jsxRuntime.jsx(components_Dialog_Dialog.Dialog, { isOpen: isOpen, onClickOverlay: handleClose, onPressEscape: handleClose, size: "M", ariaLabel: file?.name ?? '', children: jsxRuntime.jsxs("div", { className: "shr-flex shr-h-[calc(100svh-1rem)] shr-flex-col", children: [jsxRuntime.jsxs(components_Layout_Cluster_Cluster.Cluster, { align: "center", className: "shr-border-b-shorthand shr-shrink-0 shr-px-1 shr-py-0.5", children: [jsxRuntime.jsx(components_Heading_Heading.Heading, { className: "shr-min-w-0 shr-grow shr-truncate shr-text-base", children: file?.name }), jsxRuntime.jsx(components_Button_Button.Button, { size: "S", onClick: handleClose, children: jsxRuntime.jsx(components_Icon_FaIcon.FaXmarkIcon, { alt: jsxRuntime.jsx(intl_Localizer.Localizer, { id: "smarthr-ui/InputFile/closePreview", defaultText: "\u9589\u3058\u308B" }) }) })] }), jsxRuntime.jsx("div", { className: "shr-min-h-0 shr-grow", children: fileViewer }), jsxRuntime.jsx(components_Layout_Cluster_Cluster.Cluster, { justify: "end", className: "shr-border-t-shorthand shr-shrink-0 shr-px-1.5 shr-py-1", children: jsxRuntime.jsx(components_Button_Button.Button, { onClick: handleDownload, children: jsxRuntime.jsx(intl_Localizer.Localizer, { id: "smarthr-ui/InputFile/download", defaultText: "\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9" }) }) })] }) }));
|
|
80
|
+
}
|
|
81
|
+
return (jsxRuntime.jsx(components_Dialog_ModelessDialog_ModelessDialog.ModelessDialog, { isOpen: isOpen, onClickClose: handleClose, heading: file?.name ?? '', height: "75svh", size: "M", resizable: true, footer: jsxRuntime.jsx(components_Layout_Cluster_Cluster.Cluster, { justify: "end", className: "shr-px-1.5 shr-py-1", children: jsxRuntime.jsx(components_Button_Button.Button, { onClick: handleDownload, children: jsxRuntime.jsx(intl_Localizer.Localizer, { id: "smarthr-ui/InputFile/download", defaultText: "\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9" }) }) }), children: fileViewer }));
|
|
59
82
|
});
|
|
60
83
|
|
|
61
84
|
exports.FilePreviewDialog = FilePreviewDialog;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FilePreviewDialog.cjs","sources":["../../../src/components/InputFile/FilePreviewDialog.tsx"],"sourcesContent":["'use client'\n\nimport { type FC, memo, useEffect, useState } from 'react'\n\nimport { Localizer } from '../../intl'\nimport { Button } from '../Button'\nimport { ModelessDialog } from '../Dialog'\nimport { FileViewer } from '../FileViewer'\nimport { Center, Cluster } from '../Layout'\nimport { Loader } from '../Loader'\n\ntype Props = {\n file: File | null\n handleClose: () => void\n handleDownload: () => void\n}\n\nexport const FilePreviewDialog: FC<Props> = memo(({ file, handleClose, handleDownload }) => {\n const [blobUrl, setBlobUrl] = useState<string>()\n const isOpen = !!file\n\n useEffect(() => {\n if (!file) {\n setBlobUrl((current) => {\n if (current) {\n URL.revokeObjectURL(current)\n return undefined\n }\n\n return current\n })\n\n return\n }\n\n const url = URL.createObjectURL(file)\n setBlobUrl(url)\n\n return () => {\n URL.revokeObjectURL(url)\n }\n }, [file])\n\n
|
|
1
|
+
{"version":3,"file":"FilePreviewDialog.cjs","sources":["../../../src/components/InputFile/FilePreviewDialog.tsx"],"sourcesContent":["'use client'\n\nimport { type FC, memo, useEffect, useState } from 'react'\n\nimport { useEnvironment } from '../../hooks/useEnvironment'\nimport { Localizer } from '../../intl'\nimport { Button } from '../Button'\nimport { Dialog, ModelessDialog } from '../Dialog'\nimport { FileViewer } from '../FileViewer'\nimport { Heading } from '../Heading'\nimport { FaXmarkIcon } from '../Icon'\nimport { Center, Cluster } from '../Layout'\nimport { Loader } from '../Loader'\n\ntype Props = {\n file: File | null\n handleClose: () => void\n handleDownload: () => void\n}\n\nexport const FilePreviewDialog: FC<Props> = memo(({ file, handleClose, handleDownload }) => {\n const [blobUrl, setBlobUrl] = useState<string>()\n const isOpen = !!file\n const { mobile } = useEnvironment()\n\n useEffect(() => {\n if (!file) {\n setBlobUrl((current) => {\n if (current) {\n URL.revokeObjectURL(current)\n return undefined\n }\n\n return current\n })\n\n return\n }\n\n const url = URL.createObjectURL(file)\n setBlobUrl(url)\n\n return () => {\n URL.revokeObjectURL(url)\n }\n }, [file])\n\n const fileViewer =\n isOpen && blobUrl ? (\n <FileViewer\n file={{\n url: blobUrl,\n contentType: file.type,\n alt: file.name,\n }}\n />\n ) : (\n <Center className=\"shr-h-full\">\n <Loader size=\"M\" />\n </Center>\n )\n\n if (mobile) {\n return (\n <Dialog\n isOpen={isOpen}\n onClickOverlay={handleClose}\n onPressEscape={handleClose}\n size=\"M\"\n ariaLabel={file?.name ?? ''}\n >\n <div className=\"shr-flex shr-h-[calc(100svh-1rem)] shr-flex-col\">\n <Cluster\n align=\"center\"\n className=\"shr-border-b-shorthand shr-shrink-0 shr-px-1 shr-py-0.5\"\n >\n {/* eslint-disable-next-line smarthr/a11y-heading-in-sectioning-content */}\n <Heading className=\"shr-min-w-0 shr-grow shr-truncate shr-text-base\">\n {file?.name}\n </Heading>\n <Button size=\"S\" onClick={handleClose}>\n <FaXmarkIcon\n alt={<Localizer id=\"smarthr-ui/InputFile/closePreview\" defaultText=\"閉じる\" />}\n />\n </Button>\n </Cluster>\n <div className=\"shr-min-h-0 shr-grow\">{fileViewer}</div>\n <Cluster\n justify=\"end\"\n className=\"shr-border-t-shorthand shr-shrink-0 shr-px-1.5 shr-py-1\"\n >\n <Button onClick={handleDownload}>\n <Localizer id=\"smarthr-ui/InputFile/download\" defaultText=\"ダウンロード\" />\n </Button>\n </Cluster>\n </div>\n </Dialog>\n )\n }\n\n return (\n <ModelessDialog\n isOpen={isOpen}\n onClickClose={handleClose}\n heading={file?.name ?? ''}\n height=\"75svh\"\n size=\"M\"\n resizable\n footer={\n <Cluster justify=\"end\" className=\"shr-px-1.5 shr-py-1\">\n <Button onClick={handleDownload}>\n <Localizer id=\"smarthr-ui/InputFile/download\" defaultText=\"ダウンロード\" />\n </Button>\n </Cluster>\n }\n >\n {fileViewer}\n </ModelessDialog>\n )\n})\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBO;;AAEL;AACA;;;AAII;;AAEI;AACA;;AAGF;AACF;;;;;AAQF;AACE;AACF;AACF;AAEA;AAIQ;;;;;AAYN;;AAqCF;AAmBF;;"}
|
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx } from 'react/jsx-runtime';
|
|
2
|
+
import { jsx, jsxs } from 'react/jsx-runtime';
|
|
3
3
|
import { memo, useState, useEffect } from 'react';
|
|
4
|
+
import { useEnvironment } from '../../hooks/useEnvironment/useEnvironment.js';
|
|
5
|
+
import '../../themes/createSpacing.js';
|
|
6
|
+
import '../../_virtual/index.js';
|
|
7
|
+
import '../../_virtual/index2.js';
|
|
8
|
+
import '../../themes/createColor.js';
|
|
9
|
+
import '../../themes/createTextColor.js';
|
|
10
|
+
import 'styled-components';
|
|
11
|
+
import '../../themes/createShadow/defaultShadow.js';
|
|
12
|
+
import '../../themes/createWidth.js';
|
|
13
|
+
import '../../themes/createBackgroundColor.js';
|
|
14
|
+
import '../../themes/createBorder.js';
|
|
15
|
+
import '../../hooks/useTheme.js';
|
|
4
16
|
import '../../intl/IntlProvider.js';
|
|
5
17
|
import 'react-intl';
|
|
6
18
|
import { Localizer } from '../../intl/Localizer.js';
|
|
@@ -9,6 +21,7 @@ import '../../intl/TimeFormatter.js';
|
|
|
9
21
|
import { Button } from '../Button/Button.js';
|
|
10
22
|
import '../Button/AnchorButton.js';
|
|
11
23
|
import '../Button/UnstyledButton.js';
|
|
24
|
+
import { Dialog } from '../Dialog/Dialog.js';
|
|
12
25
|
import '../Dialog/DialogContentInner.js';
|
|
13
26
|
import 'react-dom';
|
|
14
27
|
import '../Dialog/ControlledMessageDialog/MessageDialogContentInner.js';
|
|
@@ -21,6 +34,11 @@ import '../Dialog/DialogContent.js';
|
|
|
21
34
|
import { ModelessDialog } from '../Dialog/ModelessDialog/ModelessDialog.js';
|
|
22
35
|
import '../Dialog/FocusTrap.js';
|
|
23
36
|
import { FileViewer } from '../FileViewer/FileViewer.js';
|
|
37
|
+
import { Heading } from '../Heading/Heading.js';
|
|
38
|
+
import '../Heading/PageHeading/PageHeading.js';
|
|
39
|
+
import { FaXmarkIcon } from '../Icon/FaIcon.js';
|
|
40
|
+
import '../Icon/generateIcon.js';
|
|
41
|
+
import '../Icon/OpenInNewTabIcon.js';
|
|
24
42
|
import '../Layout/Stack/Stack.js';
|
|
25
43
|
import { Cluster } from '../Layout/Cluster/Cluster.js';
|
|
26
44
|
import '../Layout/Reel/Reel.js';
|
|
@@ -32,6 +50,7 @@ import { Loader } from '../Loader/Loader.js';
|
|
|
32
50
|
const FilePreviewDialog = memo(({ file, handleClose, handleDownload }) => {
|
|
33
51
|
const [blobUrl, setBlobUrl] = useState();
|
|
34
52
|
const isOpen = !!file;
|
|
53
|
+
const { mobile } = useEnvironment();
|
|
35
54
|
useEffect(() => {
|
|
36
55
|
if (!file) {
|
|
37
56
|
setBlobUrl((current) => {
|
|
@@ -49,11 +68,15 @@ const FilePreviewDialog = memo(({ file, handleClose, handleDownload }) => {
|
|
|
49
68
|
URL.revokeObjectURL(url);
|
|
50
69
|
};
|
|
51
70
|
}, [file]);
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
71
|
+
const fileViewer = isOpen && blobUrl ? (jsx(FileViewer, { file: {
|
|
72
|
+
url: blobUrl,
|
|
73
|
+
contentType: file.type,
|
|
74
|
+
alt: file.name,
|
|
75
|
+
} })) : (jsx(Center, { className: "shr-h-full", children: jsx(Loader, { size: "M" }) }));
|
|
76
|
+
if (mobile) {
|
|
77
|
+
return (jsx(Dialog, { isOpen: isOpen, onClickOverlay: handleClose, onPressEscape: handleClose, size: "M", ariaLabel: file?.name ?? '', children: jsxs("div", { className: "shr-flex shr-h-[calc(100svh-1rem)] shr-flex-col", children: [jsxs(Cluster, { align: "center", className: "shr-border-b-shorthand shr-shrink-0 shr-px-1 shr-py-0.5", children: [jsx(Heading, { className: "shr-min-w-0 shr-grow shr-truncate shr-text-base", children: file?.name }), jsx(Button, { size: "S", onClick: handleClose, children: jsx(FaXmarkIcon, { alt: jsx(Localizer, { id: "smarthr-ui/InputFile/closePreview", defaultText: "\u9589\u3058\u308B" }) }) })] }), jsx("div", { className: "shr-min-h-0 shr-grow", children: fileViewer }), jsx(Cluster, { justify: "end", className: "shr-border-t-shorthand shr-shrink-0 shr-px-1.5 shr-py-1", children: jsx(Button, { onClick: handleDownload, children: jsx(Localizer, { id: "smarthr-ui/InputFile/download", defaultText: "\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9" }) }) })] }) }));
|
|
78
|
+
}
|
|
79
|
+
return (jsx(ModelessDialog, { isOpen: isOpen, onClickClose: handleClose, heading: file?.name ?? '', height: "75svh", size: "M", resizable: true, footer: jsx(Cluster, { justify: "end", className: "shr-px-1.5 shr-py-1", children: jsx(Button, { onClick: handleDownload, children: jsx(Localizer, { id: "smarthr-ui/InputFile/download", defaultText: "\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9" }) }) }), children: fileViewer }));
|
|
57
80
|
});
|
|
58
81
|
|
|
59
82
|
export { FilePreviewDialog };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FilePreviewDialog.js","sources":["../../../src/components/InputFile/FilePreviewDialog.tsx"],"sourcesContent":["'use client'\n\nimport { type FC, memo, useEffect, useState } from 'react'\n\nimport { Localizer } from '../../intl'\nimport { Button } from '../Button'\nimport { ModelessDialog } from '../Dialog'\nimport { FileViewer } from '../FileViewer'\nimport { Center, Cluster } from '../Layout'\nimport { Loader } from '../Loader'\n\ntype Props = {\n file: File | null\n handleClose: () => void\n handleDownload: () => void\n}\n\nexport const FilePreviewDialog: FC<Props> = memo(({ file, handleClose, handleDownload }) => {\n const [blobUrl, setBlobUrl] = useState<string>()\n const isOpen = !!file\n\n useEffect(() => {\n if (!file) {\n setBlobUrl((current) => {\n if (current) {\n URL.revokeObjectURL(current)\n return undefined\n }\n\n return current\n })\n\n return\n }\n\n const url = URL.createObjectURL(file)\n setBlobUrl(url)\n\n return () => {\n URL.revokeObjectURL(url)\n }\n }, [file])\n\n
|
|
1
|
+
{"version":3,"file":"FilePreviewDialog.js","sources":["../../../src/components/InputFile/FilePreviewDialog.tsx"],"sourcesContent":["'use client'\n\nimport { type FC, memo, useEffect, useState } from 'react'\n\nimport { useEnvironment } from '../../hooks/useEnvironment'\nimport { Localizer } from '../../intl'\nimport { Button } from '../Button'\nimport { Dialog, ModelessDialog } from '../Dialog'\nimport { FileViewer } from '../FileViewer'\nimport { Heading } from '../Heading'\nimport { FaXmarkIcon } from '../Icon'\nimport { Center, Cluster } from '../Layout'\nimport { Loader } from '../Loader'\n\ntype Props = {\n file: File | null\n handleClose: () => void\n handleDownload: () => void\n}\n\nexport const FilePreviewDialog: FC<Props> = memo(({ file, handleClose, handleDownload }) => {\n const [blobUrl, setBlobUrl] = useState<string>()\n const isOpen = !!file\n const { mobile } = useEnvironment()\n\n useEffect(() => {\n if (!file) {\n setBlobUrl((current) => {\n if (current) {\n URL.revokeObjectURL(current)\n return undefined\n }\n\n return current\n })\n\n return\n }\n\n const url = URL.createObjectURL(file)\n setBlobUrl(url)\n\n return () => {\n URL.revokeObjectURL(url)\n }\n }, [file])\n\n const fileViewer =\n isOpen && blobUrl ? (\n <FileViewer\n file={{\n url: blobUrl,\n contentType: file.type,\n alt: file.name,\n }}\n />\n ) : (\n <Center className=\"shr-h-full\">\n <Loader size=\"M\" />\n </Center>\n )\n\n if (mobile) {\n return (\n <Dialog\n isOpen={isOpen}\n onClickOverlay={handleClose}\n onPressEscape={handleClose}\n size=\"M\"\n ariaLabel={file?.name ?? ''}\n >\n <div className=\"shr-flex shr-h-[calc(100svh-1rem)] shr-flex-col\">\n <Cluster\n align=\"center\"\n className=\"shr-border-b-shorthand shr-shrink-0 shr-px-1 shr-py-0.5\"\n >\n {/* eslint-disable-next-line smarthr/a11y-heading-in-sectioning-content */}\n <Heading className=\"shr-min-w-0 shr-grow shr-truncate shr-text-base\">\n {file?.name}\n </Heading>\n <Button size=\"S\" onClick={handleClose}>\n <FaXmarkIcon\n alt={<Localizer id=\"smarthr-ui/InputFile/closePreview\" defaultText=\"閉じる\" />}\n />\n </Button>\n </Cluster>\n <div className=\"shr-min-h-0 shr-grow\">{fileViewer}</div>\n <Cluster\n justify=\"end\"\n className=\"shr-border-t-shorthand shr-shrink-0 shr-px-1.5 shr-py-1\"\n >\n <Button onClick={handleDownload}>\n <Localizer id=\"smarthr-ui/InputFile/download\" defaultText=\"ダウンロード\" />\n </Button>\n </Cluster>\n </div>\n </Dialog>\n )\n }\n\n return (\n <ModelessDialog\n isOpen={isOpen}\n onClickClose={handleClose}\n heading={file?.name ?? ''}\n height=\"75svh\"\n size=\"M\"\n resizable\n footer={\n <Cluster justify=\"end\" className=\"shr-px-1.5 shr-py-1\">\n <Button onClick={handleDownload}>\n <Localizer id=\"smarthr-ui/InputFile/download\" defaultText=\"ダウンロード\" />\n </Button>\n </Cluster>\n }\n >\n {fileViewer}\n </ModelessDialog>\n )\n})\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoBO;;AAEL;AACA;;;AAII;;AAEI;AACA;;AAGF;AACF;;;;;AAQF;AACE;AACF;AACF;AAEA;AAIQ;;;;;AAYN;;AAqCF;AAmBF;;"}
|
|
@@ -18,9 +18,9 @@ var components_VisuallyHiddenText_VisuallyHiddenText = require('../VisuallyHidde
|
|
|
18
18
|
|
|
19
19
|
const StyledFaFolderOpenIcon = React.memo(({ className }) => (jsxRuntime.jsx("span", { className: className, children: jsxRuntime.jsx(components_Icon_FaIcon.FaFolderOpenIcon, {}) })));
|
|
20
20
|
const LabelRender = React.memo(({ id, label }) => (jsxRuntime.jsx("span", { id: id, "aria-hidden": "true", children: label })));
|
|
21
|
-
const FILE_NAME_BUTTON_CLASSNAME = 'smarthr-ui-InputFile-fileName shr-min-w-0 shr-break-
|
|
21
|
+
const FILE_NAME_BUTTON_CLASSNAME = 'smarthr-ui-InputFile-fileName shr-justify-start shr-min-w-0 shr-break-all shr-whitespace-normal shr-text-left';
|
|
22
22
|
const PREVIEW_BUTTON_CLASSNAME = `${FILE_NAME_BUTTON_CLASSNAME} shr-p-0 shr-font-normal shr-text-link`;
|
|
23
|
-
const PreviewButton = ({ file, handlePreviewClick }) => (jsxRuntime.jsxs(components_Button_Button.Button, { variant: "tertiary", prefix: jsxRuntime.jsx(components_Icon_FaIcon.FaFileLinesIcon, {}), onClick: () => handlePreviewClick(file), className: PREVIEW_BUTTON_CLASSNAME, children: [jsxRuntime.jsx("span", { "aria-hidden": "true", children: file.name }), jsxRuntime.jsx(components_VisuallyHiddenText_VisuallyHiddenText.VisuallyHiddenText, { children: jsxRuntime.jsx(intl_Localizer.Localizer, { id: "smarthr-ui/InputFile/previewLabel", defaultText: "{fileName}\u306E\u30D7\u30EC\u30D3\u30E5\u30FC\u3092\u958B\u304F", values: { fileName: file.name } }) })] }));
|
|
23
|
+
const PreviewButton = ({ file, handlePreviewClick }) => (jsxRuntime.jsxs(components_Button_Button.Button, { variant: "tertiary", prefix: jsxRuntime.jsx(components_Icon_FaIcon.FaFileLinesIcon, { className: "shr-shrink-0" }), onClick: () => handlePreviewClick(file), className: PREVIEW_BUTTON_CLASSNAME, children: [jsxRuntime.jsx("span", { "aria-hidden": "true", children: file.name }), jsxRuntime.jsx(components_VisuallyHiddenText_VisuallyHiddenText.VisuallyHiddenText, { children: jsxRuntime.jsx(intl_Localizer.Localizer, { id: "smarthr-ui/InputFile/previewLabel", defaultText: "{fileName}\u306E\u30D7\u30EC\u30D3\u30E5\u30FC\u3092\u958B\u304F", values: { fileName: file.name } }) })] }));
|
|
24
24
|
const DownloadAnchorButton = ({ file }) => {
|
|
25
25
|
const [href, setHref] = React.useState('');
|
|
26
26
|
React.useEffect(() => {
|
|
@@ -30,9 +30,9 @@ const DownloadAnchorButton = ({ file }) => {
|
|
|
30
30
|
URL.revokeObjectURL(url);
|
|
31
31
|
};
|
|
32
32
|
}, [file]);
|
|
33
|
-
return (jsxRuntime.jsxs(components_Button_AnchorButton.AnchorButton, { href: href, download: file.name, prefix: jsxRuntime.jsx(components_Icon_FaIcon.FaFileArrowDownIcon, {}), variant: "text", className: PREVIEW_BUTTON_CLASSNAME, children: [jsxRuntime.jsx("span", { "aria-hidden": "true", children: file.name }), jsxRuntime.jsx(components_VisuallyHiddenText_VisuallyHiddenText.VisuallyHiddenText, { children: jsxRuntime.jsx(intl_Localizer.Localizer, { id: "smarthr-ui/InputFile/downloadLabel", defaultText: "{fileName}\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9", values: { fileName: file.name } }) })] }));
|
|
33
|
+
return (jsxRuntime.jsxs(components_Button_AnchorButton.AnchorButton, { href: href, download: file.name, prefix: jsxRuntime.jsx(components_Icon_FaIcon.FaFileArrowDownIcon, { className: "shr-shrink-0" }), variant: "text", className: PREVIEW_BUTTON_CLASSNAME, children: [jsxRuntime.jsx("span", { "aria-hidden": "true", children: file.name }), jsxRuntime.jsx(components_VisuallyHiddenText_VisuallyHiddenText.VisuallyHiddenText, { children: jsxRuntime.jsx(intl_Localizer.Localizer, { id: "smarthr-ui/InputFile/downloadLabel", defaultText: "{fileName}\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9", values: { fileName: file.name } }) })] }));
|
|
34
34
|
};
|
|
35
|
-
const FileListItem = React.memo(({ file, index, previewable, handleDeleteClick, handlePreviewClick, className }) => (jsxRuntime.jsxs("li", { className: className, children: [previewable ? (file.type.startsWith('image/') || file.type === 'application/pdf' ? (jsxRuntime.jsx(PreviewButton, { file: file, handlePreviewClick: handlePreviewClick })) : (jsxRuntime.jsx(DownloadAnchorButton, { file: file }))) : (jsxRuntime.jsx("span", { className: FILE_NAME_BUTTON_CLASSNAME, children: file.name })), jsxRuntime.jsx(components_Button_Button.Button, { variant: "text", prefix: jsxRuntime.jsx(components_Icon_FaIcon.FaTrashCanIcon, {}), value: index, onClick: handleDeleteClick, className: "smarthr-ui-InputFile-deleteButton", children: jsxRuntime.jsx(intl_Localizer.Localizer, { id: "smarthr-ui/InputFile/destroy", defaultText: "\u524A\u9664" }) })] })));
|
|
35
|
+
const FileListItem = React.memo(({ file, index, previewable, handleDeleteClick, handlePreviewClick, className }) => (jsxRuntime.jsxs("li", { className: className, children: [previewable ? (file.type.startsWith('image/') || file.type === 'application/pdf' ? (jsxRuntime.jsx(PreviewButton, { file: file, handlePreviewClick: handlePreviewClick })) : (jsxRuntime.jsx(DownloadAnchorButton, { file: file }))) : (jsxRuntime.jsx("span", { className: FILE_NAME_BUTTON_CLASSNAME, children: file.name })), jsxRuntime.jsx(components_Button_Button.Button, { variant: "text", prefix: jsxRuntime.jsx(components_Icon_FaIcon.FaTrashCanIcon, {}), value: index, onClick: handleDeleteClick, className: "smarthr-ui-InputFile-deleteButton shr-shrink-0", children: jsxRuntime.jsx(intl_Localizer.Localizer, { id: "smarthr-ui/InputFile/destroy", defaultText: "\u524A\u9664" }) })] })));
|
|
36
36
|
|
|
37
37
|
exports.FileListItem = FileListItem;
|
|
38
38
|
exports.LabelRender = LabelRender;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"parts.cjs","sources":["../../../src/components/InputFile/parts.tsx"],"sourcesContent":["'use client'\n\nimport { type FC, type MouseEvent, type ReactNode, memo, useEffect, useState } from 'react'\n\nimport { Localizer } from '../../intl'\nimport { AnchorButton, Button } from '../Button'\nimport { FaFileArrowDownIcon, FaFileLinesIcon, FaFolderOpenIcon, FaTrashCanIcon } from '../Icon'\nimport { VisuallyHiddenText } from '../VisuallyHiddenText'\n\nexport const StyledFaFolderOpenIcon = memo<{ className: string }>(({ className }) => (\n <span className={className}>\n <FaFolderOpenIcon />\n </span>\n))\n\nexport const LabelRender = memo<{ id: string; label: ReactNode }>(({ id, label }) => (\n <span id={id} aria-hidden=\"true\">\n {label}\n </span>\n))\n\nconst FILE_NAME_BUTTON_CLASSNAME =\n 'smarthr-ui-InputFile-fileName shr-min-w-0 shr-break-
|
|
1
|
+
{"version":3,"file":"parts.cjs","sources":["../../../src/components/InputFile/parts.tsx"],"sourcesContent":["'use client'\n\nimport { type FC, type MouseEvent, type ReactNode, memo, useEffect, useState } from 'react'\n\nimport { Localizer } from '../../intl'\nimport { AnchorButton, Button } from '../Button'\nimport { FaFileArrowDownIcon, FaFileLinesIcon, FaFolderOpenIcon, FaTrashCanIcon } from '../Icon'\nimport { VisuallyHiddenText } from '../VisuallyHiddenText'\n\nexport const StyledFaFolderOpenIcon = memo<{ className: string }>(({ className }) => (\n <span className={className}>\n <FaFolderOpenIcon />\n </span>\n))\n\nexport const LabelRender = memo<{ id: string; label: ReactNode }>(({ id, label }) => (\n <span id={id} aria-hidden=\"true\">\n {label}\n </span>\n))\n\nconst FILE_NAME_BUTTON_CLASSNAME =\n 'smarthr-ui-InputFile-fileName shr-justify-start shr-min-w-0 shr-break-all shr-whitespace-normal shr-text-left'\nconst PREVIEW_BUTTON_CLASSNAME = `${FILE_NAME_BUTTON_CLASSNAME} shr-p-0 shr-font-normal shr-text-link`\n\nconst PreviewButton: FC<{\n file: File\n handlePreviewClick: (file: File) => void\n}> = ({ file, handlePreviewClick }) => (\n <Button\n variant=\"tertiary\"\n prefix={<FaFileLinesIcon className=\"shr-shrink-0\" />}\n onClick={() => handlePreviewClick(file)}\n className={PREVIEW_BUTTON_CLASSNAME}\n >\n <span aria-hidden=\"true\">{file.name}</span>\n <VisuallyHiddenText>\n <Localizer\n id=\"smarthr-ui/InputFile/previewLabel\"\n defaultText=\"{fileName}のプレビューを開く\"\n values={{ fileName: file.name }}\n />\n </VisuallyHiddenText>\n </Button>\n)\n\nconst DownloadAnchorButton: FC<{ file: File }> = ({ file }) => {\n const [href, setHref] = useState('')\n\n useEffect(() => {\n const url = URL.createObjectURL(file)\n setHref(url)\n\n return () => {\n URL.revokeObjectURL(url)\n }\n }, [file])\n\n return (\n <AnchorButton\n href={href}\n download={file.name}\n prefix={<FaFileArrowDownIcon className=\"shr-shrink-0\" />}\n variant=\"text\"\n className={PREVIEW_BUTTON_CLASSNAME}\n >\n <span aria-hidden=\"true\">{file.name}</span>\n <VisuallyHiddenText>\n <Localizer\n id=\"smarthr-ui/InputFile/downloadLabel\"\n defaultText=\"{fileName}をダウンロード\"\n values={{ fileName: file.name }}\n />\n </VisuallyHiddenText>\n </AnchorButton>\n )\n}\n\ntype FileListItemProps = {\n file: File\n index: number\n previewable: boolean\n handleDeleteClick: (e: MouseEvent<HTMLButtonElement>) => void\n handlePreviewClick: (file: File) => void\n className: string\n}\n\nexport const FileListItem = memo<FileListItemProps>(\n ({ file, index, previewable, handleDeleteClick, handlePreviewClick, className }) => (\n <li className={className}>\n {previewable ? (\n file.type.startsWith('image/') || file.type === 'application/pdf' ? (\n <PreviewButton file={file} handlePreviewClick={handlePreviewClick} />\n ) : (\n <DownloadAnchorButton file={file} />\n )\n ) : (\n <span className={FILE_NAME_BUTTON_CLASSNAME}>{file.name}</span>\n )}\n <Button\n variant=\"text\"\n prefix={<FaTrashCanIcon />}\n value={index}\n onClick={handleDeleteClick}\n className=\"smarthr-ui-InputFile-deleteButton shr-shrink-0\"\n >\n <Localizer id=\"smarthr-ui/InputFile/destroy\" defaultText=\"削除\" />\n </Button>\n </li>\n ),\n)\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;AASO;AAMA;AAMP;AAEA;AAEA;AAqBA;;;;;AAOI;AACE;AACF;AACF;AAEA;AAkBF;AAWO;;;;"}
|
|
@@ -16,9 +16,9 @@ import { VisuallyHiddenText } from '../VisuallyHiddenText/VisuallyHiddenText.js'
|
|
|
16
16
|
|
|
17
17
|
const StyledFaFolderOpenIcon = memo(({ className }) => (jsx("span", { className: className, children: jsx(FaFolderOpenIcon, {}) })));
|
|
18
18
|
const LabelRender = memo(({ id, label }) => (jsx("span", { id: id, "aria-hidden": "true", children: label })));
|
|
19
|
-
const FILE_NAME_BUTTON_CLASSNAME = 'smarthr-ui-InputFile-fileName shr-min-w-0 shr-break-
|
|
19
|
+
const FILE_NAME_BUTTON_CLASSNAME = 'smarthr-ui-InputFile-fileName shr-justify-start shr-min-w-0 shr-break-all shr-whitespace-normal shr-text-left';
|
|
20
20
|
const PREVIEW_BUTTON_CLASSNAME = `${FILE_NAME_BUTTON_CLASSNAME} shr-p-0 shr-font-normal shr-text-link`;
|
|
21
|
-
const PreviewButton = ({ file, handlePreviewClick }) => (jsxs(Button, { variant: "tertiary", prefix: jsx(FaFileLinesIcon, {}), onClick: () => handlePreviewClick(file), className: PREVIEW_BUTTON_CLASSNAME, children: [jsx("span", { "aria-hidden": "true", children: file.name }), jsx(VisuallyHiddenText, { children: jsx(Localizer, { id: "smarthr-ui/InputFile/previewLabel", defaultText: "{fileName}\u306E\u30D7\u30EC\u30D3\u30E5\u30FC\u3092\u958B\u304F", values: { fileName: file.name } }) })] }));
|
|
21
|
+
const PreviewButton = ({ file, handlePreviewClick }) => (jsxs(Button, { variant: "tertiary", prefix: jsx(FaFileLinesIcon, { className: "shr-shrink-0" }), onClick: () => handlePreviewClick(file), className: PREVIEW_BUTTON_CLASSNAME, children: [jsx("span", { "aria-hidden": "true", children: file.name }), jsx(VisuallyHiddenText, { children: jsx(Localizer, { id: "smarthr-ui/InputFile/previewLabel", defaultText: "{fileName}\u306E\u30D7\u30EC\u30D3\u30E5\u30FC\u3092\u958B\u304F", values: { fileName: file.name } }) })] }));
|
|
22
22
|
const DownloadAnchorButton = ({ file }) => {
|
|
23
23
|
const [href, setHref] = useState('');
|
|
24
24
|
useEffect(() => {
|
|
@@ -28,9 +28,9 @@ const DownloadAnchorButton = ({ file }) => {
|
|
|
28
28
|
URL.revokeObjectURL(url);
|
|
29
29
|
};
|
|
30
30
|
}, [file]);
|
|
31
|
-
return (jsxs(ForwardedAnchorButton, { href: href, download: file.name, prefix: jsx(FaFileArrowDownIcon, {}), variant: "text", className: PREVIEW_BUTTON_CLASSNAME, children: [jsx("span", { "aria-hidden": "true", children: file.name }), jsx(VisuallyHiddenText, { children: jsx(Localizer, { id: "smarthr-ui/InputFile/downloadLabel", defaultText: "{fileName}\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9", values: { fileName: file.name } }) })] }));
|
|
31
|
+
return (jsxs(ForwardedAnchorButton, { href: href, download: file.name, prefix: jsx(FaFileArrowDownIcon, { className: "shr-shrink-0" }), variant: "text", className: PREVIEW_BUTTON_CLASSNAME, children: [jsx("span", { "aria-hidden": "true", children: file.name }), jsx(VisuallyHiddenText, { children: jsx(Localizer, { id: "smarthr-ui/InputFile/downloadLabel", defaultText: "{fileName}\u3092\u30C0\u30A6\u30F3\u30ED\u30FC\u30C9", values: { fileName: file.name } }) })] }));
|
|
32
32
|
};
|
|
33
|
-
const FileListItem = memo(({ file, index, previewable, handleDeleteClick, handlePreviewClick, className }) => (jsxs("li", { className: className, children: [previewable ? (file.type.startsWith('image/') || file.type === 'application/pdf' ? (jsx(PreviewButton, { file: file, handlePreviewClick: handlePreviewClick })) : (jsx(DownloadAnchorButton, { file: file }))) : (jsx("span", { className: FILE_NAME_BUTTON_CLASSNAME, children: file.name })), jsx(Button, { variant: "text", prefix: jsx(FaTrashCanIcon, {}), value: index, onClick: handleDeleteClick, className: "smarthr-ui-InputFile-deleteButton", children: jsx(Localizer, { id: "smarthr-ui/InputFile/destroy", defaultText: "\u524A\u9664" }) })] })));
|
|
33
|
+
const FileListItem = memo(({ file, index, previewable, handleDeleteClick, handlePreviewClick, className }) => (jsxs("li", { className: className, children: [previewable ? (file.type.startsWith('image/') || file.type === 'application/pdf' ? (jsx(PreviewButton, { file: file, handlePreviewClick: handlePreviewClick })) : (jsx(DownloadAnchorButton, { file: file }))) : (jsx("span", { className: FILE_NAME_BUTTON_CLASSNAME, children: file.name })), jsx(Button, { variant: "text", prefix: jsx(FaTrashCanIcon, {}), value: index, onClick: handleDeleteClick, className: "smarthr-ui-InputFile-deleteButton shr-shrink-0", children: jsx(Localizer, { id: "smarthr-ui/InputFile/destroy", defaultText: "\u524A\u9664" }) })] })));
|
|
34
34
|
|
|
35
35
|
export { FileListItem, LabelRender, StyledFaFolderOpenIcon };
|
|
36
36
|
//# sourceMappingURL=parts.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"parts.js","sources":["../../../src/components/InputFile/parts.tsx"],"sourcesContent":["'use client'\n\nimport { type FC, type MouseEvent, type ReactNode, memo, useEffect, useState } from 'react'\n\nimport { Localizer } from '../../intl'\nimport { AnchorButton, Button } from '../Button'\nimport { FaFileArrowDownIcon, FaFileLinesIcon, FaFolderOpenIcon, FaTrashCanIcon } from '../Icon'\nimport { VisuallyHiddenText } from '../VisuallyHiddenText'\n\nexport const StyledFaFolderOpenIcon = memo<{ className: string }>(({ className }) => (\n <span className={className}>\n <FaFolderOpenIcon />\n </span>\n))\n\nexport const LabelRender = memo<{ id: string; label: ReactNode }>(({ id, label }) => (\n <span id={id} aria-hidden=\"true\">\n {label}\n </span>\n))\n\nconst FILE_NAME_BUTTON_CLASSNAME =\n 'smarthr-ui-InputFile-fileName shr-min-w-0 shr-break-
|
|
1
|
+
{"version":3,"file":"parts.js","sources":["../../../src/components/InputFile/parts.tsx"],"sourcesContent":["'use client'\n\nimport { type FC, type MouseEvent, type ReactNode, memo, useEffect, useState } from 'react'\n\nimport { Localizer } from '../../intl'\nimport { AnchorButton, Button } from '../Button'\nimport { FaFileArrowDownIcon, FaFileLinesIcon, FaFolderOpenIcon, FaTrashCanIcon } from '../Icon'\nimport { VisuallyHiddenText } from '../VisuallyHiddenText'\n\nexport const StyledFaFolderOpenIcon = memo<{ className: string }>(({ className }) => (\n <span className={className}>\n <FaFolderOpenIcon />\n </span>\n))\n\nexport const LabelRender = memo<{ id: string; label: ReactNode }>(({ id, label }) => (\n <span id={id} aria-hidden=\"true\">\n {label}\n </span>\n))\n\nconst FILE_NAME_BUTTON_CLASSNAME =\n 'smarthr-ui-InputFile-fileName shr-justify-start shr-min-w-0 shr-break-all shr-whitespace-normal shr-text-left'\nconst PREVIEW_BUTTON_CLASSNAME = `${FILE_NAME_BUTTON_CLASSNAME} shr-p-0 shr-font-normal shr-text-link`\n\nconst PreviewButton: FC<{\n file: File\n handlePreviewClick: (file: File) => void\n}> = ({ file, handlePreviewClick }) => (\n <Button\n variant=\"tertiary\"\n prefix={<FaFileLinesIcon className=\"shr-shrink-0\" />}\n onClick={() => handlePreviewClick(file)}\n className={PREVIEW_BUTTON_CLASSNAME}\n >\n <span aria-hidden=\"true\">{file.name}</span>\n <VisuallyHiddenText>\n <Localizer\n id=\"smarthr-ui/InputFile/previewLabel\"\n defaultText=\"{fileName}のプレビューを開く\"\n values={{ fileName: file.name }}\n />\n </VisuallyHiddenText>\n </Button>\n)\n\nconst DownloadAnchorButton: FC<{ file: File }> = ({ file }) => {\n const [href, setHref] = useState('')\n\n useEffect(() => {\n const url = URL.createObjectURL(file)\n setHref(url)\n\n return () => {\n URL.revokeObjectURL(url)\n }\n }, [file])\n\n return (\n <AnchorButton\n href={href}\n download={file.name}\n prefix={<FaFileArrowDownIcon className=\"shr-shrink-0\" />}\n variant=\"text\"\n className={PREVIEW_BUTTON_CLASSNAME}\n >\n <span aria-hidden=\"true\">{file.name}</span>\n <VisuallyHiddenText>\n <Localizer\n id=\"smarthr-ui/InputFile/downloadLabel\"\n defaultText=\"{fileName}をダウンロード\"\n values={{ fileName: file.name }}\n />\n </VisuallyHiddenText>\n </AnchorButton>\n )\n}\n\ntype FileListItemProps = {\n file: File\n index: number\n previewable: boolean\n handleDeleteClick: (e: MouseEvent<HTMLButtonElement>) => void\n handlePreviewClick: (file: File) => void\n className: string\n}\n\nexport const FileListItem = memo<FileListItemProps>(\n ({ file, index, previewable, handleDeleteClick, handlePreviewClick, className }) => (\n <li className={className}>\n {previewable ? (\n file.type.startsWith('image/') || file.type === 'application/pdf' ? (\n <PreviewButton file={file} handlePreviewClick={handlePreviewClick} />\n ) : (\n <DownloadAnchorButton file={file} />\n )\n ) : (\n <span className={FILE_NAME_BUTTON_CLASSNAME}>{file.name}</span>\n )}\n <Button\n variant=\"text\"\n prefix={<FaTrashCanIcon />}\n value={index}\n onClick={handleDeleteClick}\n className=\"smarthr-ui-InputFile-deleteButton shr-shrink-0\"\n >\n <Localizer id=\"smarthr-ui/InputFile/destroy\" defaultText=\"削除\" />\n </Button>\n </li>\n ),\n)\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;AASO;AAMA;AAMP;AAEA;AAEA;AAqBA;;;;;AAOI;AACE;AACF;AACF;AAEA;AAkBF;AAWO;;"}
|
|
@@ -66,6 +66,7 @@ export declare const locales: {
|
|
|
66
66
|
"smarthr-ui/InputFile/download": string;
|
|
67
67
|
"smarthr-ui/InputFile/previewLabel": string;
|
|
68
68
|
"smarthr-ui/InputFile/downloadLabel": string;
|
|
69
|
+
"smarthr-ui/InputFile/closePreview": string;
|
|
69
70
|
"smarthr-ui/LanguageSwitcher/checkIconAlt": string;
|
|
70
71
|
"smarthr-ui/Loader/alt": string;
|
|
71
72
|
"smarthr-ui/MessageDialog/closeButtonLabel": string;
|
package/lib/intl/locales/ja.cjs
CHANGED
|
@@ -68,6 +68,7 @@ const locale = {
|
|
|
68
68
|
'smarthr-ui/InputFile/download': 'ダウンロード',
|
|
69
69
|
'smarthr-ui/InputFile/previewLabel': '{fileName}のプレビューを開く',
|
|
70
70
|
'smarthr-ui/InputFile/downloadLabel': '{fileName}をダウンロード',
|
|
71
|
+
'smarthr-ui/InputFile/closePreview': '閉じる',
|
|
71
72
|
'smarthr-ui/LanguageSwitcher/checkIconAlt': '選択中',
|
|
72
73
|
'smarthr-ui/Loader/alt': '処理中',
|
|
73
74
|
'smarthr-ui/MessageDialog/closeButtonLabel': '閉じる',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ja.cjs","sources":["../../../src/intl/locales/ja.ts"],"sourcesContent":["// キーと値の間に改行が入ると翻訳システムと連携できなくなるため、prettier-ignoreしている\n// prettier-ignore\nexport const locale = {\n 'smarthr-ui/common/language': '日本語',\n 'smarthr-ui/ActionDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/AppHeader/school': 'スクール',\n 'smarthr-ui/AppHeader/help': 'ヘルプ',\n 'smarthr-ui/AppHeader/userSettings': '個人設定',\n 'smarthr-ui/AppHeader/releaseNotes': 'リリースノート',\n 'smarthr-ui/AppHeader/releaseNotesLoadError': 'リリースノートの読み込みに失敗しました。\\n時間をおいて、やり直してください。',\n 'smarthr-ui/AppHeader/seeAllReleaseNotes': 'すべてのリリースノートを見る',\n 'smarthr-ui/AppHeader/DesktopHeader/appLauncherLabel': 'アプリ',\n 'smarthr-ui/AppHeader/MobileHeader/account': 'アカウント',\n 'smarthr-ui/AppHeader/MobileHeader/openMenu': 'メニューを開く',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenu': 'メニューを閉じる',\n 'smarthr-ui/AppHeader/MobileHeader/allAppButton': 'すべてのアプリ',\n 'smarthr-ui/AppHeader/MobileHeader/managementMenu': '管理メニュー',\n 'smarthr-ui/AppHeader/MobileHeader/latestReleaseNotes': '最新のリリースノート',\n 'smarthr-ui/AppHeader/MobileHeader/back': '戻る',\n 'smarthr-ui/AppHeader/MobileHeader/openMenuAccordion': '開く',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenuAccordion': '閉じる',\n 'smarthr-ui/AppHeader/Launcher/searchInputTitle': 'アプリ名を入力してください。',\n 'smarthr-ui/AppHeader/Launcher/favoriteModeText': 'よく使うアプリ',\n 'smarthr-ui/AppHeader/Launcher/allModeText': 'すべてのアプリ',\n 'smarthr-ui/AppHeader/Launcher/listText': 'アプリ一覧',\n 'smarthr-ui/AppHeader/Launcher/helpText': 'よく使うアプリとは',\n 'smarthr-ui/AppHeader/Launcher/searchResultText': '検索結果',\n 'smarthr-ui/AppHeader/Launcher/emptyText': '該当するアプリが見つかりませんでした。',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownLabel': '表示順',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownSelected': '選択中',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderDefault': 'デフォルト',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameAsc': 'アプリ名の昇順',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameDesc': 'アプリ名の降順',\n 'smarthr-ui/AppLauncher/showAllText': 'すべて見る',\n 'smarthr-ui/AppLauncher/triggerLabel': 'アプリ',\n 'smarthr-ui/Browser/notFoundDescription': '別の条件を試してください。',\n 'smarthr-ui/Browser/notFoundTitle': '該当する項目がありません。',\n 'smarthr-ui/Button/loading': '処理中',\n 'smarthr-ui/Calendar/currentYear': '現在の年',\n 'smarthr-ui/Calendar/nextMonth': '次の月へ',\n 'smarthr-ui/Calendar/previousMonth': '前の月へ',\n 'smarthr-ui/Calendar/selectYear': '年を選択する',\n 'smarthr-ui/Combobox/addItemButtonLabel': '「{name}」を追加',\n 'smarthr-ui/Combobox/loadingText': '処理中',\n 'smarthr-ui/Combobox/noResultsText': '一致する選択肢がありません。',\n 'smarthr-ui/DropdownMenuButton/triggerActive': '候補を閉じる',\n 'smarthr-ui/DropdownMenuButton/triggerInactive': '候補を開く',\n 'smarthr-ui/DropZone/selectButtonLabel': 'ファイルを選択',\n 'smarthr-ui/FileViewer/nextMatchAlt': '次の検索結果へ',\n 'smarthr-ui/FileViewer/previousMatchAlt': '前の検索結果へ',\n 'smarthr-ui/FileViewer/rotateAlt': '左回転',\n 'smarthr-ui/FileViewer/scaleDownAlt': '縮小',\n 'smarthr-ui/FileViewer/scaleRateLabel': '拡大率',\n 'smarthr-ui/FileViewer/scaleUpAlt': '拡大',\n 'smarthr-ui/FileViewer/searchInputTooltipMessage': 'PDF内のテキストを検索',\n 'smarthr-ui/FileViewer/unsupportedFileText': 'サポートされていない形式のファイルです。',\n 'smarthr-ui/FilterDropdown/applyText': '適用',\n 'smarthr-ui/FilterDropdown/cancelText': 'キャンセル',\n 'smarthr-ui/FilterDropdown/resetText': '絞り込み条件を解除',\n 'smarthr-ui/FilterDropdown/status': '適用中',\n 'smarthr-ui/FilterDropdown/triggerText': '絞り込み',\n 'smarthr-ui/FormDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/InformationPanel/closeButtonLabel': '閉じる',\n 'smarthr-ui/InformationPanel/openButtonLabel': '開く',\n 'smarthr-ui/InputFile/destroy': '削除',\n 'smarthr-ui/InputFile/download': 'ダウンロード',\n 'smarthr-ui/InputFile/previewLabel': '{fileName}のプレビューを開く',\n 'smarthr-ui/InputFile/downloadLabel': '{fileName}をダウンロード',\n 'smarthr-ui/LanguageSwitcher/checkIconAlt': '選択中',\n 'smarthr-ui/Loader/alt': '処理中',\n 'smarthr-ui/MessageDialog/closeButtonLabel': '閉じる',\n 'smarthr-ui/ModelessDialog/closeButtonIconAlt': '閉じる',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaLabel': 'ダイアログの位置',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaRoleDescription': 'ドラッグ可能',\n 'smarthr-ui/ModelessDialog/dialogHandlerDescription': '矢印キーを押して上下左右に移動できます',\n 'smarthr-ui/ModelessDialog/dialogHandlerLiveRegionText': '上から{top}px、左から{left}px',\n 'smarthr-ui/MultiCombobox/destroyButtonIconAltSuffix': 'を削除',\n 'smarthr-ui/MultiCombobox/selectedListAriaLabel': '選択済みアイテム',\n 'smarthr-ui/NotificationBar/closeButtonIconAlt': '閉じる',\n 'smarthr-ui/Pagination/controllerItemButtonFirstLabel': '最初へ',\n 'smarthr-ui/Pagination/controllerItemButtonLastLabel': '最後へ',\n 'smarthr-ui/Pagination/controllerItemButtonNextLabel': '次へ',\n 'smarthr-ui/Pagination/controllerItemButtonPreviousLabel': '前へ',\n 'smarthr-ui/Pagination/itemButtonLabel': '{page}ページ目',\n 'smarthr-ui/Pagination/navigationLabel': 'ページネーション',\n 'smarthr-ui/RequiredLabel/text': '必須',\n 'smarthr-ui/SearchInput/iconAlt': '検索',\n 'smarthr-ui/SideMenu/navigationLabel': 'サイドメニュー',\n 'smarthr-ui/SingleCombobox/destroyButtonIconAlt': 'クリア',\n 'smarthr-ui/SortDropdown/applyText': '適用',\n 'smarthr-ui/SortDropdown/ascLabel': '昇順',\n 'smarthr-ui/SortDropdown/cancelText': 'キャンセル',\n 'smarthr-ui/SortDropdown/descLabel': '降順',\n 'smarthr-ui/SortDropdown/sortFieldLabel': '並べ替え項目',\n 'smarthr-ui/SortDropdown/sortOrderLegend': '並び順',\n 'smarthr-ui/StepFormDialog/backButtonLabel': '戻る',\n 'smarthr-ui/StepFormDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/StepFormDialog/nextButtonLabel': '次へ',\n 'smarthr-ui/StepStatusIcon/closedAlt': '中断',\n 'smarthr-ui/StepStatusIcon/completedAlt': '完了',\n 'smarthr-ui/Textarea/availableLetters': 'あと{availableLetters}文字',\n 'smarthr-ui/Textarea/maxLettersExceeded': '{exceededLetters}文字オーバー',\n 'smarthr-ui/Textarea/screenReaderMaxLettersDescription': '最大{maxLetters}文字入力できます',\n 'smarthr-ui/OpenInNewTabIcon/openInNewTab': '別タブで開く',\n 'smarthr-ui/Th/sortDirectionAsc': '昇順',\n 'smarthr-ui/Th/sortDirectionDesc': '降順',\n 'smarthr-ui/Th/sortDirectionNone': '並び替えなし',\n 'smarthr-ui/ThCheckbox/checkAllInvisibleLabel': 'すべての項目を選択/解除',\n 'smarthr-ui/ThCheckbox/checkColumnName': '選択',\n 'smarthr-ui/ErrorScreen/homeLink': 'ホームに戻る',\n 'smarthr-ui/ErrorScreen/smarthrLink': 'SmartHR に戻る',\n 'smarthr-ui/AuthErrorScreen/title': '認証で問題が発生しました',\n 'smarthr-ui/ForbiddenErrorScreen/title': 'このページを表示する権限がありません',\n 'smarthr-ui/ForbiddenErrorScreen/description': '詳しくは、所属企業の担当者にお問い合わせください。',\n 'smarthr-ui/NotFoundErrorScreen/title': 'お探しのページは見つかりませんでした',\n 'smarthr-ui/NotFoundErrorScreen/description': 'お探しのページは一時的にアクセスができない状況にあるか、移動もしくは削除された可能性があります。',\n 'smarthr-ui/UnauthorizedErrorScreen/title': '一定時間操作がなかったためログアウトしました',\n 'smarthr-ui/UnauthorizedErrorScreen/description': '一定時間操作がなかったため、自動でログアウトしました。{break}指定のページにアクセスするには、再度ログインが必要です。',\n 'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': '再ログイン',\n 'smarthr-ui/UnexpectedErrorScreen/title': '予期しないエラーが発生しました',\n 'smarthr-ui/UnexpectedErrorScreen/description': '大変申し訳ございません。{break}一時的な通信の問題や、ご利用環境、アップロードしたファイルの内容などによりエラーが発生している可能性があります。',\n 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': 'お手数ですが、以下をお試しください。',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem1': '少し時間をおいて、再度お試しください。',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem2': '{maintenanceLink}をご確認ください(情報の掲載まで時間がかかる場合があります)。',\n 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': '解消しない場合は、以下もご確認ください。',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem1': '{environmentLink}を満たしているかご確認ください。',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem2': 'ブラウザのCookieとキャッシュの削除をお試しください。詳しくは、{cookieCacheLink}を参照してください。',\n 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': '上記を確認しても解消しない場合は、社内の労務担当者など、SmartHRの管理者権限をお持ちの方に、{errorInfoLink}の情報を添えてご連絡ください。',\n 'smarthr-ui/UnexpectedErrorScreen/adminContact': 'SmartHRの管理者権限をお持ちの方は、{errorInfoLink}の情報を添えて、右下のチャットマークからお問い合わせください。',\n 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': 'メンテナンス・障害情報',\n 'smarthr-ui/UnexpectedErrorScreen/environmentLink': 'SmartHRの動作環境',\n 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': 'Q. ブラウザのCookieとキャッシュを削除するには?',\n 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': 'エラー発生時に教えていただきたい内容',\n} as const\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ja.cjs","sources":["../../../src/intl/locales/ja.ts"],"sourcesContent":["// キーと値の間に改行が入ると翻訳システムと連携できなくなるため、prettier-ignoreしている\n// prettier-ignore\nexport const locale = {\n 'smarthr-ui/common/language': '日本語',\n 'smarthr-ui/ActionDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/AppHeader/school': 'スクール',\n 'smarthr-ui/AppHeader/help': 'ヘルプ',\n 'smarthr-ui/AppHeader/userSettings': '個人設定',\n 'smarthr-ui/AppHeader/releaseNotes': 'リリースノート',\n 'smarthr-ui/AppHeader/releaseNotesLoadError': 'リリースノートの読み込みに失敗しました。\\n時間をおいて、やり直してください。',\n 'smarthr-ui/AppHeader/seeAllReleaseNotes': 'すべてのリリースノートを見る',\n 'smarthr-ui/AppHeader/DesktopHeader/appLauncherLabel': 'アプリ',\n 'smarthr-ui/AppHeader/MobileHeader/account': 'アカウント',\n 'smarthr-ui/AppHeader/MobileHeader/openMenu': 'メニューを開く',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenu': 'メニューを閉じる',\n 'smarthr-ui/AppHeader/MobileHeader/allAppButton': 'すべてのアプリ',\n 'smarthr-ui/AppHeader/MobileHeader/managementMenu': '管理メニュー',\n 'smarthr-ui/AppHeader/MobileHeader/latestReleaseNotes': '最新のリリースノート',\n 'smarthr-ui/AppHeader/MobileHeader/back': '戻る',\n 'smarthr-ui/AppHeader/MobileHeader/openMenuAccordion': '開く',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenuAccordion': '閉じる',\n 'smarthr-ui/AppHeader/Launcher/searchInputTitle': 'アプリ名を入力してください。',\n 'smarthr-ui/AppHeader/Launcher/favoriteModeText': 'よく使うアプリ',\n 'smarthr-ui/AppHeader/Launcher/allModeText': 'すべてのアプリ',\n 'smarthr-ui/AppHeader/Launcher/listText': 'アプリ一覧',\n 'smarthr-ui/AppHeader/Launcher/helpText': 'よく使うアプリとは',\n 'smarthr-ui/AppHeader/Launcher/searchResultText': '検索結果',\n 'smarthr-ui/AppHeader/Launcher/emptyText': '該当するアプリが見つかりませんでした。',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownLabel': '表示順',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownSelected': '選択中',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderDefault': 'デフォルト',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameAsc': 'アプリ名の昇順',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameDesc': 'アプリ名の降順',\n 'smarthr-ui/AppLauncher/showAllText': 'すべて見る',\n 'smarthr-ui/AppLauncher/triggerLabel': 'アプリ',\n 'smarthr-ui/Browser/notFoundDescription': '別の条件を試してください。',\n 'smarthr-ui/Browser/notFoundTitle': '該当する項目がありません。',\n 'smarthr-ui/Button/loading': '処理中',\n 'smarthr-ui/Calendar/currentYear': '現在の年',\n 'smarthr-ui/Calendar/nextMonth': '次の月へ',\n 'smarthr-ui/Calendar/previousMonth': '前の月へ',\n 'smarthr-ui/Calendar/selectYear': '年を選択する',\n 'smarthr-ui/Combobox/addItemButtonLabel': '「{name}」を追加',\n 'smarthr-ui/Combobox/loadingText': '処理中',\n 'smarthr-ui/Combobox/noResultsText': '一致する選択肢がありません。',\n 'smarthr-ui/DropdownMenuButton/triggerActive': '候補を閉じる',\n 'smarthr-ui/DropdownMenuButton/triggerInactive': '候補を開く',\n 'smarthr-ui/DropZone/selectButtonLabel': 'ファイルを選択',\n 'smarthr-ui/FileViewer/nextMatchAlt': '次の検索結果へ',\n 'smarthr-ui/FileViewer/previousMatchAlt': '前の検索結果へ',\n 'smarthr-ui/FileViewer/rotateAlt': '左回転',\n 'smarthr-ui/FileViewer/scaleDownAlt': '縮小',\n 'smarthr-ui/FileViewer/scaleRateLabel': '拡大率',\n 'smarthr-ui/FileViewer/scaleUpAlt': '拡大',\n 'smarthr-ui/FileViewer/searchInputTooltipMessage': 'PDF内のテキストを検索',\n 'smarthr-ui/FileViewer/unsupportedFileText': 'サポートされていない形式のファイルです。',\n 'smarthr-ui/FilterDropdown/applyText': '適用',\n 'smarthr-ui/FilterDropdown/cancelText': 'キャンセル',\n 'smarthr-ui/FilterDropdown/resetText': '絞り込み条件を解除',\n 'smarthr-ui/FilterDropdown/status': '適用中',\n 'smarthr-ui/FilterDropdown/triggerText': '絞り込み',\n 'smarthr-ui/FormDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/InformationPanel/closeButtonLabel': '閉じる',\n 'smarthr-ui/InformationPanel/openButtonLabel': '開く',\n 'smarthr-ui/InputFile/destroy': '削除',\n 'smarthr-ui/InputFile/download': 'ダウンロード',\n 'smarthr-ui/InputFile/previewLabel': '{fileName}のプレビューを開く',\n 'smarthr-ui/InputFile/downloadLabel': '{fileName}をダウンロード',\n 'smarthr-ui/InputFile/closePreview': '閉じる',\n 'smarthr-ui/LanguageSwitcher/checkIconAlt': '選択中',\n 'smarthr-ui/Loader/alt': '処理中',\n 'smarthr-ui/MessageDialog/closeButtonLabel': '閉じる',\n 'smarthr-ui/ModelessDialog/closeButtonIconAlt': '閉じる',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaLabel': 'ダイアログの位置',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaRoleDescription': 'ドラッグ可能',\n 'smarthr-ui/ModelessDialog/dialogHandlerDescription': '矢印キーを押して上下左右に移動できます',\n 'smarthr-ui/ModelessDialog/dialogHandlerLiveRegionText': '上から{top}px、左から{left}px',\n 'smarthr-ui/MultiCombobox/destroyButtonIconAltSuffix': 'を削除',\n 'smarthr-ui/MultiCombobox/selectedListAriaLabel': '選択済みアイテム',\n 'smarthr-ui/NotificationBar/closeButtonIconAlt': '閉じる',\n 'smarthr-ui/Pagination/controllerItemButtonFirstLabel': '最初へ',\n 'smarthr-ui/Pagination/controllerItemButtonLastLabel': '最後へ',\n 'smarthr-ui/Pagination/controllerItemButtonNextLabel': '次へ',\n 'smarthr-ui/Pagination/controllerItemButtonPreviousLabel': '前へ',\n 'smarthr-ui/Pagination/itemButtonLabel': '{page}ページ目',\n 'smarthr-ui/Pagination/navigationLabel': 'ページネーション',\n 'smarthr-ui/RequiredLabel/text': '必須',\n 'smarthr-ui/SearchInput/iconAlt': '検索',\n 'smarthr-ui/SideMenu/navigationLabel': 'サイドメニュー',\n 'smarthr-ui/SingleCombobox/destroyButtonIconAlt': 'クリア',\n 'smarthr-ui/SortDropdown/applyText': '適用',\n 'smarthr-ui/SortDropdown/ascLabel': '昇順',\n 'smarthr-ui/SortDropdown/cancelText': 'キャンセル',\n 'smarthr-ui/SortDropdown/descLabel': '降順',\n 'smarthr-ui/SortDropdown/sortFieldLabel': '並べ替え項目',\n 'smarthr-ui/SortDropdown/sortOrderLegend': '並び順',\n 'smarthr-ui/StepFormDialog/backButtonLabel': '戻る',\n 'smarthr-ui/StepFormDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/StepFormDialog/nextButtonLabel': '次へ',\n 'smarthr-ui/StepStatusIcon/closedAlt': '中断',\n 'smarthr-ui/StepStatusIcon/completedAlt': '完了',\n 'smarthr-ui/Textarea/availableLetters': 'あと{availableLetters}文字',\n 'smarthr-ui/Textarea/maxLettersExceeded': '{exceededLetters}文字オーバー',\n 'smarthr-ui/Textarea/screenReaderMaxLettersDescription': '最大{maxLetters}文字入力できます',\n 'smarthr-ui/OpenInNewTabIcon/openInNewTab': '別タブで開く',\n 'smarthr-ui/Th/sortDirectionAsc': '昇順',\n 'smarthr-ui/Th/sortDirectionDesc': '降順',\n 'smarthr-ui/Th/sortDirectionNone': '並び替えなし',\n 'smarthr-ui/ThCheckbox/checkAllInvisibleLabel': 'すべての項目を選択/解除',\n 'smarthr-ui/ThCheckbox/checkColumnName': '選択',\n 'smarthr-ui/ErrorScreen/homeLink': 'ホームに戻る',\n 'smarthr-ui/ErrorScreen/smarthrLink': 'SmartHR に戻る',\n 'smarthr-ui/AuthErrorScreen/title': '認証で問題が発生しました',\n 'smarthr-ui/ForbiddenErrorScreen/title': 'このページを表示する権限がありません',\n 'smarthr-ui/ForbiddenErrorScreen/description': '詳しくは、所属企業の担当者にお問い合わせください。',\n 'smarthr-ui/NotFoundErrorScreen/title': 'お探しのページは見つかりませんでした',\n 'smarthr-ui/NotFoundErrorScreen/description': 'お探しのページは一時的にアクセスができない状況にあるか、移動もしくは削除された可能性があります。',\n 'smarthr-ui/UnauthorizedErrorScreen/title': '一定時間操作がなかったためログアウトしました',\n 'smarthr-ui/UnauthorizedErrorScreen/description': '一定時間操作がなかったため、自動でログアウトしました。{break}指定のページにアクセスするには、再度ログインが必要です。',\n 'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': '再ログイン',\n 'smarthr-ui/UnexpectedErrorScreen/title': '予期しないエラーが発生しました',\n 'smarthr-ui/UnexpectedErrorScreen/description': '大変申し訳ございません。{break}一時的な通信の問題や、ご利用環境、アップロードしたファイルの内容などによりエラーが発生している可能性があります。',\n 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': 'お手数ですが、以下をお試しください。',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem1': '少し時間をおいて、再度お試しください。',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem2': '{maintenanceLink}をご確認ください(情報の掲載まで時間がかかる場合があります)。',\n 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': '解消しない場合は、以下もご確認ください。',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem1': '{environmentLink}を満たしているかご確認ください。',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem2': 'ブラウザのCookieとキャッシュの削除をお試しください。詳しくは、{cookieCacheLink}を参照してください。',\n 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': '上記を確認しても解消しない場合は、社内の労務担当者など、SmartHRの管理者権限をお持ちの方に、{errorInfoLink}の情報を添えてご連絡ください。',\n 'smarthr-ui/UnexpectedErrorScreen/adminContact': 'SmartHRの管理者権限をお持ちの方は、{errorInfoLink}の情報を添えて、右下のチャットマークからお問い合わせください。',\n 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': 'メンテナンス・障害情報',\n 'smarthr-ui/UnexpectedErrorScreen/environmentLink': 'SmartHRの動作環境',\n 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': 'Q. ブラウザのCookieとキャッシュを削除するには?',\n 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': 'エラー発生時に教えていただきたい内容',\n} as const\n"],"names":[],"mappings":"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"}
|
package/lib/intl/locales/ja.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ export declare const locale: {
|
|
|
64
64
|
readonly 'smarthr-ui/InputFile/download': "ダウンロード";
|
|
65
65
|
readonly 'smarthr-ui/InputFile/previewLabel': "{fileName}のプレビューを開く";
|
|
66
66
|
readonly 'smarthr-ui/InputFile/downloadLabel': "{fileName}をダウンロード";
|
|
67
|
+
readonly 'smarthr-ui/InputFile/closePreview': "閉じる";
|
|
67
68
|
readonly 'smarthr-ui/LanguageSwitcher/checkIconAlt': "選択中";
|
|
68
69
|
readonly 'smarthr-ui/Loader/alt': "処理中";
|
|
69
70
|
readonly 'smarthr-ui/MessageDialog/closeButtonLabel': "閉じる";
|
package/lib/intl/locales/ja.js
CHANGED
|
@@ -66,6 +66,7 @@ const locale = {
|
|
|
66
66
|
'smarthr-ui/InputFile/download': 'ダウンロード',
|
|
67
67
|
'smarthr-ui/InputFile/previewLabel': '{fileName}のプレビューを開く',
|
|
68
68
|
'smarthr-ui/InputFile/downloadLabel': '{fileName}をダウンロード',
|
|
69
|
+
'smarthr-ui/InputFile/closePreview': '閉じる',
|
|
69
70
|
'smarthr-ui/LanguageSwitcher/checkIconAlt': '選択中',
|
|
70
71
|
'smarthr-ui/Loader/alt': '処理中',
|
|
71
72
|
'smarthr-ui/MessageDialog/closeButtonLabel': '閉じる',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ja.js","sources":["../../../src/intl/locales/ja.ts"],"sourcesContent":["// キーと値の間に改行が入ると翻訳システムと連携できなくなるため、prettier-ignoreしている\n// prettier-ignore\nexport const locale = {\n 'smarthr-ui/common/language': '日本語',\n 'smarthr-ui/ActionDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/AppHeader/school': 'スクール',\n 'smarthr-ui/AppHeader/help': 'ヘルプ',\n 'smarthr-ui/AppHeader/userSettings': '個人設定',\n 'smarthr-ui/AppHeader/releaseNotes': 'リリースノート',\n 'smarthr-ui/AppHeader/releaseNotesLoadError': 'リリースノートの読み込みに失敗しました。\\n時間をおいて、やり直してください。',\n 'smarthr-ui/AppHeader/seeAllReleaseNotes': 'すべてのリリースノートを見る',\n 'smarthr-ui/AppHeader/DesktopHeader/appLauncherLabel': 'アプリ',\n 'smarthr-ui/AppHeader/MobileHeader/account': 'アカウント',\n 'smarthr-ui/AppHeader/MobileHeader/openMenu': 'メニューを開く',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenu': 'メニューを閉じる',\n 'smarthr-ui/AppHeader/MobileHeader/allAppButton': 'すべてのアプリ',\n 'smarthr-ui/AppHeader/MobileHeader/managementMenu': '管理メニュー',\n 'smarthr-ui/AppHeader/MobileHeader/latestReleaseNotes': '最新のリリースノート',\n 'smarthr-ui/AppHeader/MobileHeader/back': '戻る',\n 'smarthr-ui/AppHeader/MobileHeader/openMenuAccordion': '開く',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenuAccordion': '閉じる',\n 'smarthr-ui/AppHeader/Launcher/searchInputTitle': 'アプリ名を入力してください。',\n 'smarthr-ui/AppHeader/Launcher/favoriteModeText': 'よく使うアプリ',\n 'smarthr-ui/AppHeader/Launcher/allModeText': 'すべてのアプリ',\n 'smarthr-ui/AppHeader/Launcher/listText': 'アプリ一覧',\n 'smarthr-ui/AppHeader/Launcher/helpText': 'よく使うアプリとは',\n 'smarthr-ui/AppHeader/Launcher/searchResultText': '検索結果',\n 'smarthr-ui/AppHeader/Launcher/emptyText': '該当するアプリが見つかりませんでした。',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownLabel': '表示順',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownSelected': '選択中',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderDefault': 'デフォルト',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameAsc': 'アプリ名の昇順',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameDesc': 'アプリ名の降順',\n 'smarthr-ui/AppLauncher/showAllText': 'すべて見る',\n 'smarthr-ui/AppLauncher/triggerLabel': 'アプリ',\n 'smarthr-ui/Browser/notFoundDescription': '別の条件を試してください。',\n 'smarthr-ui/Browser/notFoundTitle': '該当する項目がありません。',\n 'smarthr-ui/Button/loading': '処理中',\n 'smarthr-ui/Calendar/currentYear': '現在の年',\n 'smarthr-ui/Calendar/nextMonth': '次の月へ',\n 'smarthr-ui/Calendar/previousMonth': '前の月へ',\n 'smarthr-ui/Calendar/selectYear': '年を選択する',\n 'smarthr-ui/Combobox/addItemButtonLabel': '「{name}」を追加',\n 'smarthr-ui/Combobox/loadingText': '処理中',\n 'smarthr-ui/Combobox/noResultsText': '一致する選択肢がありません。',\n 'smarthr-ui/DropdownMenuButton/triggerActive': '候補を閉じる',\n 'smarthr-ui/DropdownMenuButton/triggerInactive': '候補を開く',\n 'smarthr-ui/DropZone/selectButtonLabel': 'ファイルを選択',\n 'smarthr-ui/FileViewer/nextMatchAlt': '次の検索結果へ',\n 'smarthr-ui/FileViewer/previousMatchAlt': '前の検索結果へ',\n 'smarthr-ui/FileViewer/rotateAlt': '左回転',\n 'smarthr-ui/FileViewer/scaleDownAlt': '縮小',\n 'smarthr-ui/FileViewer/scaleRateLabel': '拡大率',\n 'smarthr-ui/FileViewer/scaleUpAlt': '拡大',\n 'smarthr-ui/FileViewer/searchInputTooltipMessage': 'PDF内のテキストを検索',\n 'smarthr-ui/FileViewer/unsupportedFileText': 'サポートされていない形式のファイルです。',\n 'smarthr-ui/FilterDropdown/applyText': '適用',\n 'smarthr-ui/FilterDropdown/cancelText': 'キャンセル',\n 'smarthr-ui/FilterDropdown/resetText': '絞り込み条件を解除',\n 'smarthr-ui/FilterDropdown/status': '適用中',\n 'smarthr-ui/FilterDropdown/triggerText': '絞り込み',\n 'smarthr-ui/FormDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/InformationPanel/closeButtonLabel': '閉じる',\n 'smarthr-ui/InformationPanel/openButtonLabel': '開く',\n 'smarthr-ui/InputFile/destroy': '削除',\n 'smarthr-ui/InputFile/download': 'ダウンロード',\n 'smarthr-ui/InputFile/previewLabel': '{fileName}のプレビューを開く',\n 'smarthr-ui/InputFile/downloadLabel': '{fileName}をダウンロード',\n 'smarthr-ui/LanguageSwitcher/checkIconAlt': '選択中',\n 'smarthr-ui/Loader/alt': '処理中',\n 'smarthr-ui/MessageDialog/closeButtonLabel': '閉じる',\n 'smarthr-ui/ModelessDialog/closeButtonIconAlt': '閉じる',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaLabel': 'ダイアログの位置',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaRoleDescription': 'ドラッグ可能',\n 'smarthr-ui/ModelessDialog/dialogHandlerDescription': '矢印キーを押して上下左右に移動できます',\n 'smarthr-ui/ModelessDialog/dialogHandlerLiveRegionText': '上から{top}px、左から{left}px',\n 'smarthr-ui/MultiCombobox/destroyButtonIconAltSuffix': 'を削除',\n 'smarthr-ui/MultiCombobox/selectedListAriaLabel': '選択済みアイテム',\n 'smarthr-ui/NotificationBar/closeButtonIconAlt': '閉じる',\n 'smarthr-ui/Pagination/controllerItemButtonFirstLabel': '最初へ',\n 'smarthr-ui/Pagination/controllerItemButtonLastLabel': '最後へ',\n 'smarthr-ui/Pagination/controllerItemButtonNextLabel': '次へ',\n 'smarthr-ui/Pagination/controllerItemButtonPreviousLabel': '前へ',\n 'smarthr-ui/Pagination/itemButtonLabel': '{page}ページ目',\n 'smarthr-ui/Pagination/navigationLabel': 'ページネーション',\n 'smarthr-ui/RequiredLabel/text': '必須',\n 'smarthr-ui/SearchInput/iconAlt': '検索',\n 'smarthr-ui/SideMenu/navigationLabel': 'サイドメニュー',\n 'smarthr-ui/SingleCombobox/destroyButtonIconAlt': 'クリア',\n 'smarthr-ui/SortDropdown/applyText': '適用',\n 'smarthr-ui/SortDropdown/ascLabel': '昇順',\n 'smarthr-ui/SortDropdown/cancelText': 'キャンセル',\n 'smarthr-ui/SortDropdown/descLabel': '降順',\n 'smarthr-ui/SortDropdown/sortFieldLabel': '並べ替え項目',\n 'smarthr-ui/SortDropdown/sortOrderLegend': '並び順',\n 'smarthr-ui/StepFormDialog/backButtonLabel': '戻る',\n 'smarthr-ui/StepFormDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/StepFormDialog/nextButtonLabel': '次へ',\n 'smarthr-ui/StepStatusIcon/closedAlt': '中断',\n 'smarthr-ui/StepStatusIcon/completedAlt': '完了',\n 'smarthr-ui/Textarea/availableLetters': 'あと{availableLetters}文字',\n 'smarthr-ui/Textarea/maxLettersExceeded': '{exceededLetters}文字オーバー',\n 'smarthr-ui/Textarea/screenReaderMaxLettersDescription': '最大{maxLetters}文字入力できます',\n 'smarthr-ui/OpenInNewTabIcon/openInNewTab': '別タブで開く',\n 'smarthr-ui/Th/sortDirectionAsc': '昇順',\n 'smarthr-ui/Th/sortDirectionDesc': '降順',\n 'smarthr-ui/Th/sortDirectionNone': '並び替えなし',\n 'smarthr-ui/ThCheckbox/checkAllInvisibleLabel': 'すべての項目を選択/解除',\n 'smarthr-ui/ThCheckbox/checkColumnName': '選択',\n 'smarthr-ui/ErrorScreen/homeLink': 'ホームに戻る',\n 'smarthr-ui/ErrorScreen/smarthrLink': 'SmartHR に戻る',\n 'smarthr-ui/AuthErrorScreen/title': '認証で問題が発生しました',\n 'smarthr-ui/ForbiddenErrorScreen/title': 'このページを表示する権限がありません',\n 'smarthr-ui/ForbiddenErrorScreen/description': '詳しくは、所属企業の担当者にお問い合わせください。',\n 'smarthr-ui/NotFoundErrorScreen/title': 'お探しのページは見つかりませんでした',\n 'smarthr-ui/NotFoundErrorScreen/description': 'お探しのページは一時的にアクセスができない状況にあるか、移動もしくは削除された可能性があります。',\n 'smarthr-ui/UnauthorizedErrorScreen/title': '一定時間操作がなかったためログアウトしました',\n 'smarthr-ui/UnauthorizedErrorScreen/description': '一定時間操作がなかったため、自動でログアウトしました。{break}指定のページにアクセスするには、再度ログインが必要です。',\n 'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': '再ログイン',\n 'smarthr-ui/UnexpectedErrorScreen/title': '予期しないエラーが発生しました',\n 'smarthr-ui/UnexpectedErrorScreen/description': '大変申し訳ございません。{break}一時的な通信の問題や、ご利用環境、アップロードしたファイルの内容などによりエラーが発生している可能性があります。',\n 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': 'お手数ですが、以下をお試しください。',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem1': '少し時間をおいて、再度お試しください。',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem2': '{maintenanceLink}をご確認ください(情報の掲載まで時間がかかる場合があります)。',\n 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': '解消しない場合は、以下もご確認ください。',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem1': '{environmentLink}を満たしているかご確認ください。',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem2': 'ブラウザのCookieとキャッシュの削除をお試しください。詳しくは、{cookieCacheLink}を参照してください。',\n 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': '上記を確認しても解消しない場合は、社内の労務担当者など、SmartHRの管理者権限をお持ちの方に、{errorInfoLink}の情報を添えてご連絡ください。',\n 'smarthr-ui/UnexpectedErrorScreen/adminContact': 'SmartHRの管理者権限をお持ちの方は、{errorInfoLink}の情報を添えて、右下のチャットマークからお問い合わせください。',\n 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': 'メンテナンス・障害情報',\n 'smarthr-ui/UnexpectedErrorScreen/environmentLink': 'SmartHRの動作環境',\n 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': 'Q. ブラウザのCookieとキャッシュを削除するには?',\n 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': 'エラー発生時に教えていただきたい内容',\n} as const\n"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"ja.js","sources":["../../../src/intl/locales/ja.ts"],"sourcesContent":["// キーと値の間に改行が入ると翻訳システムと連携できなくなるため、prettier-ignoreしている\n// prettier-ignore\nexport const locale = {\n 'smarthr-ui/common/language': '日本語',\n 'smarthr-ui/ActionDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/AppHeader/school': 'スクール',\n 'smarthr-ui/AppHeader/help': 'ヘルプ',\n 'smarthr-ui/AppHeader/userSettings': '個人設定',\n 'smarthr-ui/AppHeader/releaseNotes': 'リリースノート',\n 'smarthr-ui/AppHeader/releaseNotesLoadError': 'リリースノートの読み込みに失敗しました。\\n時間をおいて、やり直してください。',\n 'smarthr-ui/AppHeader/seeAllReleaseNotes': 'すべてのリリースノートを見る',\n 'smarthr-ui/AppHeader/DesktopHeader/appLauncherLabel': 'アプリ',\n 'smarthr-ui/AppHeader/MobileHeader/account': 'アカウント',\n 'smarthr-ui/AppHeader/MobileHeader/openMenu': 'メニューを開く',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenu': 'メニューを閉じる',\n 'smarthr-ui/AppHeader/MobileHeader/allAppButton': 'すべてのアプリ',\n 'smarthr-ui/AppHeader/MobileHeader/managementMenu': '管理メニュー',\n 'smarthr-ui/AppHeader/MobileHeader/latestReleaseNotes': '最新のリリースノート',\n 'smarthr-ui/AppHeader/MobileHeader/back': '戻る',\n 'smarthr-ui/AppHeader/MobileHeader/openMenuAccordion': '開く',\n 'smarthr-ui/AppHeader/MobileHeader/closeMenuAccordion': '閉じる',\n 'smarthr-ui/AppHeader/Launcher/searchInputTitle': 'アプリ名を入力してください。',\n 'smarthr-ui/AppHeader/Launcher/favoriteModeText': 'よく使うアプリ',\n 'smarthr-ui/AppHeader/Launcher/allModeText': 'すべてのアプリ',\n 'smarthr-ui/AppHeader/Launcher/listText': 'アプリ一覧',\n 'smarthr-ui/AppHeader/Launcher/helpText': 'よく使うアプリとは',\n 'smarthr-ui/AppHeader/Launcher/searchResultText': '検索結果',\n 'smarthr-ui/AppHeader/Launcher/emptyText': '該当するアプリが見つかりませんでした。',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownLabel': '表示順',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownSelected': '選択中',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderDefault': 'デフォルト',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameAsc': 'アプリ名の昇順',\n 'smarthr-ui/AppHeader/Launcher/sortDropdownOrderNameDesc': 'アプリ名の降順',\n 'smarthr-ui/AppLauncher/showAllText': 'すべて見る',\n 'smarthr-ui/AppLauncher/triggerLabel': 'アプリ',\n 'smarthr-ui/Browser/notFoundDescription': '別の条件を試してください。',\n 'smarthr-ui/Browser/notFoundTitle': '該当する項目がありません。',\n 'smarthr-ui/Button/loading': '処理中',\n 'smarthr-ui/Calendar/currentYear': '現在の年',\n 'smarthr-ui/Calendar/nextMonth': '次の月へ',\n 'smarthr-ui/Calendar/previousMonth': '前の月へ',\n 'smarthr-ui/Calendar/selectYear': '年を選択する',\n 'smarthr-ui/Combobox/addItemButtonLabel': '「{name}」を追加',\n 'smarthr-ui/Combobox/loadingText': '処理中',\n 'smarthr-ui/Combobox/noResultsText': '一致する選択肢がありません。',\n 'smarthr-ui/DropdownMenuButton/triggerActive': '候補を閉じる',\n 'smarthr-ui/DropdownMenuButton/triggerInactive': '候補を開く',\n 'smarthr-ui/DropZone/selectButtonLabel': 'ファイルを選択',\n 'smarthr-ui/FileViewer/nextMatchAlt': '次の検索結果へ',\n 'smarthr-ui/FileViewer/previousMatchAlt': '前の検索結果へ',\n 'smarthr-ui/FileViewer/rotateAlt': '左回転',\n 'smarthr-ui/FileViewer/scaleDownAlt': '縮小',\n 'smarthr-ui/FileViewer/scaleRateLabel': '拡大率',\n 'smarthr-ui/FileViewer/scaleUpAlt': '拡大',\n 'smarthr-ui/FileViewer/searchInputTooltipMessage': 'PDF内のテキストを検索',\n 'smarthr-ui/FileViewer/unsupportedFileText': 'サポートされていない形式のファイルです。',\n 'smarthr-ui/FilterDropdown/applyText': '適用',\n 'smarthr-ui/FilterDropdown/cancelText': 'キャンセル',\n 'smarthr-ui/FilterDropdown/resetText': '絞り込み条件を解除',\n 'smarthr-ui/FilterDropdown/status': '適用中',\n 'smarthr-ui/FilterDropdown/triggerText': '絞り込み',\n 'smarthr-ui/FormDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/InformationPanel/closeButtonLabel': '閉じる',\n 'smarthr-ui/InformationPanel/openButtonLabel': '開く',\n 'smarthr-ui/InputFile/destroy': '削除',\n 'smarthr-ui/InputFile/download': 'ダウンロード',\n 'smarthr-ui/InputFile/previewLabel': '{fileName}のプレビューを開く',\n 'smarthr-ui/InputFile/downloadLabel': '{fileName}をダウンロード',\n 'smarthr-ui/InputFile/closePreview': '閉じる',\n 'smarthr-ui/LanguageSwitcher/checkIconAlt': '選択中',\n 'smarthr-ui/Loader/alt': '処理中',\n 'smarthr-ui/MessageDialog/closeButtonLabel': '閉じる',\n 'smarthr-ui/ModelessDialog/closeButtonIconAlt': '閉じる',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaLabel': 'ダイアログの位置',\n 'smarthr-ui/ModelessDialog/dialogHandlerAriaRoleDescription': 'ドラッグ可能',\n 'smarthr-ui/ModelessDialog/dialogHandlerDescription': '矢印キーを押して上下左右に移動できます',\n 'smarthr-ui/ModelessDialog/dialogHandlerLiveRegionText': '上から{top}px、左から{left}px',\n 'smarthr-ui/MultiCombobox/destroyButtonIconAltSuffix': 'を削除',\n 'smarthr-ui/MultiCombobox/selectedListAriaLabel': '選択済みアイテム',\n 'smarthr-ui/NotificationBar/closeButtonIconAlt': '閉じる',\n 'smarthr-ui/Pagination/controllerItemButtonFirstLabel': '最初へ',\n 'smarthr-ui/Pagination/controllerItemButtonLastLabel': '最後へ',\n 'smarthr-ui/Pagination/controllerItemButtonNextLabel': '次へ',\n 'smarthr-ui/Pagination/controllerItemButtonPreviousLabel': '前へ',\n 'smarthr-ui/Pagination/itemButtonLabel': '{page}ページ目',\n 'smarthr-ui/Pagination/navigationLabel': 'ページネーション',\n 'smarthr-ui/RequiredLabel/text': '必須',\n 'smarthr-ui/SearchInput/iconAlt': '検索',\n 'smarthr-ui/SideMenu/navigationLabel': 'サイドメニュー',\n 'smarthr-ui/SingleCombobox/destroyButtonIconAlt': 'クリア',\n 'smarthr-ui/SortDropdown/applyText': '適用',\n 'smarthr-ui/SortDropdown/ascLabel': '昇順',\n 'smarthr-ui/SortDropdown/cancelText': 'キャンセル',\n 'smarthr-ui/SortDropdown/descLabel': '降順',\n 'smarthr-ui/SortDropdown/sortFieldLabel': '並べ替え項目',\n 'smarthr-ui/SortDropdown/sortOrderLegend': '並び順',\n 'smarthr-ui/StepFormDialog/backButtonLabel': '戻る',\n 'smarthr-ui/StepFormDialog/closeButtonLabel': 'キャンセル',\n 'smarthr-ui/StepFormDialog/nextButtonLabel': '次へ',\n 'smarthr-ui/StepStatusIcon/closedAlt': '中断',\n 'smarthr-ui/StepStatusIcon/completedAlt': '完了',\n 'smarthr-ui/Textarea/availableLetters': 'あと{availableLetters}文字',\n 'smarthr-ui/Textarea/maxLettersExceeded': '{exceededLetters}文字オーバー',\n 'smarthr-ui/Textarea/screenReaderMaxLettersDescription': '最大{maxLetters}文字入力できます',\n 'smarthr-ui/OpenInNewTabIcon/openInNewTab': '別タブで開く',\n 'smarthr-ui/Th/sortDirectionAsc': '昇順',\n 'smarthr-ui/Th/sortDirectionDesc': '降順',\n 'smarthr-ui/Th/sortDirectionNone': '並び替えなし',\n 'smarthr-ui/ThCheckbox/checkAllInvisibleLabel': 'すべての項目を選択/解除',\n 'smarthr-ui/ThCheckbox/checkColumnName': '選択',\n 'smarthr-ui/ErrorScreen/homeLink': 'ホームに戻る',\n 'smarthr-ui/ErrorScreen/smarthrLink': 'SmartHR に戻る',\n 'smarthr-ui/AuthErrorScreen/title': '認証で問題が発生しました',\n 'smarthr-ui/ForbiddenErrorScreen/title': 'このページを表示する権限がありません',\n 'smarthr-ui/ForbiddenErrorScreen/description': '詳しくは、所属企業の担当者にお問い合わせください。',\n 'smarthr-ui/NotFoundErrorScreen/title': 'お探しのページは見つかりませんでした',\n 'smarthr-ui/NotFoundErrorScreen/description': 'お探しのページは一時的にアクセスができない状況にあるか、移動もしくは削除された可能性があります。',\n 'smarthr-ui/UnauthorizedErrorScreen/title': '一定時間操作がなかったためログアウトしました',\n 'smarthr-ui/UnauthorizedErrorScreen/description': '一定時間操作がなかったため、自動でログアウトしました。{break}指定のページにアクセスするには、再度ログインが必要です。',\n 'smarthr-ui/UnauthorizedErrorScreen/reLoginButton': '再ログイン',\n 'smarthr-ui/UnexpectedErrorScreen/title': '予期しないエラーが発生しました',\n 'smarthr-ui/UnexpectedErrorScreen/description': '大変申し訳ございません。{break}一時的な通信の問題や、ご利用環境、アップロードしたファイルの内容などによりエラーが発生している可能性があります。',\n 'smarthr-ui/UnexpectedErrorScreen/pleaseRetry': 'お手数ですが、以下をお試しください。',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem1': '少し時間をおいて、再度お試しください。',\n 'smarthr-ui/UnexpectedErrorScreen/retryItem2': '{maintenanceLink}をご確認ください(情報の掲載まで時間がかかる場合があります)。',\n 'smarthr-ui/UnexpectedErrorScreen/ifNotResolved': '解消しない場合は、以下もご確認ください。',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem1': '{environmentLink}を満たしているかご確認ください。',\n 'smarthr-ui/UnexpectedErrorScreen/checkItem2': 'ブラウザのCookieとキャッシュの削除をお試しください。詳しくは、{cookieCacheLink}を参照してください。',\n 'smarthr-ui/UnexpectedErrorScreen/contactAdmin': '上記を確認しても解消しない場合は、社内の労務担当者など、SmartHRの管理者権限をお持ちの方に、{errorInfoLink}の情報を添えてご連絡ください。',\n 'smarthr-ui/UnexpectedErrorScreen/adminContact': 'SmartHRの管理者権限をお持ちの方は、{errorInfoLink}の情報を添えて、右下のチャットマークからお問い合わせください。',\n 'smarthr-ui/UnexpectedErrorScreen/maintenanceLink': 'メンテナンス・障害情報',\n 'smarthr-ui/UnexpectedErrorScreen/environmentLink': 'SmartHRの動作環境',\n 'smarthr-ui/UnexpectedErrorScreen/cookieCacheLink': 'Q. ブラウザのCookieとキャッシュを削除するには?',\n 'smarthr-ui/UnexpectedErrorScreen/errorOccursInformation': 'エラー発生時に教えていただきたい内容',\n} as const\n"],"names":[],"mappings":"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"}
|
|
@@ -66,6 +66,7 @@ var ja = {
|
|
|
66
66
|
"smarthr-ui/InputFile/download": "ダウンロード",
|
|
67
67
|
"smarthr-ui/InputFile/previewLabel": "{fileName}のプレビューを開く",
|
|
68
68
|
"smarthr-ui/InputFile/downloadLabel": "{fileName}をダウンロード",
|
|
69
|
+
"smarthr-ui/InputFile/closePreview": "閉じる",
|
|
69
70
|
"smarthr-ui/LanguageSwitcher/checkIconAlt": "選択中",
|
|
70
71
|
"smarthr-ui/Loader/alt": "処理中",
|
|
71
72
|
"smarthr-ui/MessageDialog/closeButtonLabel": "閉じる",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ja.json.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ja.json.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -64,6 +64,7 @@ var ja = {
|
|
|
64
64
|
"smarthr-ui/InputFile/download": "ダウンロード",
|
|
65
65
|
"smarthr-ui/InputFile/previewLabel": "{fileName}のプレビューを開く",
|
|
66
66
|
"smarthr-ui/InputFile/downloadLabel": "{fileName}をダウンロード",
|
|
67
|
+
"smarthr-ui/InputFile/closePreview": "閉じる",
|
|
67
68
|
"smarthr-ui/LanguageSwitcher/checkIconAlt": "選択中",
|
|
68
69
|
"smarthr-ui/Loader/alt": "処理中",
|
|
69
70
|
"smarthr-ui/MessageDialog/closeButtonLabel": "閉じる",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ja.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ja.json.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|