You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
108 lines
3.5 KiB
108 lines
3.5 KiB
4 years ago
|
/* eslint-disable no-template-curly-in-string */
|
||
5 years ago
|
import Pagination from 'rc-pagination/lib/locale/ja_JP';
|
||
|
import Calendar from '../calendar/locale/ja_JP';
|
||
2 years ago
|
import DatePicker from '../date-picker/locale/ja_JP';
|
||
2 years ago
|
import type { Locale } from '.';
|
||
2 years ago
|
import TimePicker from '../time-picker/locale/ja_JP';
|
||
5 years ago
|
|
||
4 years ago
|
const typeTemplate = '${label}は有効な${type}ではありません';
|
||
|
|
||
5 years ago
|
const localeValues: Locale = {
|
||
5 years ago
|
locale: 'ja',
|
||
|
Pagination,
|
||
|
DatePicker,
|
||
|
TimePicker,
|
||
|
Calendar,
|
||
|
Table: {
|
||
4 years ago
|
filterTitle: 'フィルター',
|
||
5 years ago
|
filterConfirm: 'OK',
|
||
|
filterReset: 'リセット',
|
||
4 years ago
|
filterEmptyText: 'フィルターなし',
|
||
|
selectAll: 'ページ単位で選択',
|
||
|
selectInvert: 'ページ単位で反転',
|
||
|
selectionAll: 'すべてを選択',
|
||
|
sortTitle: 'ソート',
|
||
|
expand: '展開する',
|
||
|
collapse: '折り畳む',
|
||
|
triggerDesc: 'クリックで降順にソート',
|
||
|
triggerAsc: 'クリックで昇順にソート',
|
||
|
cancelSort: 'ソートをキャンセル',
|
||
5 years ago
|
},
|
||
|
Modal: {
|
||
|
okText: 'OK',
|
||
|
cancelText: 'キャンセル',
|
||
|
justOkText: 'OK',
|
||
|
},
|
||
|
Popconfirm: {
|
||
|
okText: 'OK',
|
||
|
cancelText: 'キャンセル',
|
||
|
},
|
||
|
Transfer: {
|
||
2 years ago
|
titles: ['', ''],
|
||
5 years ago
|
searchPlaceholder: 'ここを検索',
|
||
|
itemUnit: 'アイテム',
|
||
|
itemsUnit: 'アイテム',
|
||
|
},
|
||
|
Upload: {
|
||
|
uploading: 'アップロード中...',
|
||
|
removeFile: 'ファイルを削除',
|
||
|
uploadError: 'アップロードエラー',
|
||
|
previewFile: 'ファイルをプレビュー',
|
||
5 years ago
|
downloadFile: 'ダウンロードファイル',
|
||
5 years ago
|
},
|
||
|
Empty: {
|
||
|
description: 'データがありません',
|
||
|
},
|
||
4 years ago
|
Form: {
|
||
|
defaultValidateMessages: {
|
||
|
default: '${label}のフィールド検証エラー',
|
||
|
required: '${label}を入力してください',
|
||
|
enum: '${label}は[${enum}]のいずれかである必要があります',
|
||
|
whitespace: '${label}は空白文字にすることはできません',
|
||
|
date: {
|
||
|
format: '${label}の日付形式は不正です',
|
||
|
parse: '${label}は日付に変換できません',
|
||
|
invalid: '${label}は不正な日付です',
|
||
|
},
|
||
|
types: {
|
||
|
string: typeTemplate,
|
||
|
method: typeTemplate,
|
||
|
array: typeTemplate,
|
||
|
object: typeTemplate,
|
||
|
number: typeTemplate,
|
||
|
date: typeTemplate,
|
||
|
boolean: typeTemplate,
|
||
|
integer: typeTemplate,
|
||
|
float: typeTemplate,
|
||
|
regexp: typeTemplate,
|
||
|
email: typeTemplate,
|
||
|
url: typeTemplate,
|
||
|
hex: typeTemplate,
|
||
|
},
|
||
|
string: {
|
||
|
len: '${label}は${len}文字である必要があります',
|
||
|
min: '${label}は${min}文字以上である必要があります',
|
||
|
max: '${label}は${max}文字以下である必要があります',
|
||
|
range: '${label}は${min}-${max}文字の範囲である必要があります',
|
||
|
},
|
||
|
number: {
|
||
|
len: '${label}は${len}と等しい必要があります',
|
||
|
min: '${label}の最小値は${min}です',
|
||
|
max: '${label}の最大値は${max}です',
|
||
|
range: '${label}は${min}-${max}の範囲である必要があります',
|
||
|
},
|
||
|
array: {
|
||
|
len: '${label}は${len}である必要があります',
|
||
|
min: '${label}の最小は${min}です',
|
||
|
max: '${label}の最大は${max}です',
|
||
|
range: '${label}の合計は${min}-${max}の範囲である必要があります',
|
||
|
},
|
||
|
pattern: {
|
||
|
mismatch: '${label}はパターン${pattern}と一致しません',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
5 years ago
|
};
|
||
5 years ago
|
|
||
|
export default localeValues;
|