@nocobase/client 2.0.0-alpha.6 → 2.0.0-alpha.60
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/.dumirc.ts +4 -4
- package/es/application/Application.d.ts +2 -1
- package/es/block-configs/BlockConfigsProvider.d.ts +1 -1
- package/es/block-provider/hooks/index.d.ts +2 -1
- package/es/block-provider/index.d.ts +4 -3
- package/es/collection-manager/Configuration/SetPrimaryKeyAction.d.ts +10 -0
- package/es/collection-manager/Configuration/components/CollectionCategory.d.ts +1 -1
- package/es/collection-manager/Configuration/components/CollectionFieldInterfaceTag.d.ts +1 -1
- package/es/collection-manager/Configuration/components/CollectionTemplateTag.d.ts +1 -1
- package/es/collection-manager/Configuration/components/Summary.d.ts +1 -1
- package/es/collection-manager/Configuration/interfaces.d.ts +1 -0
- package/es/collection-manager/action-hooks.d.ts +1 -1
- package/es/collection-manager/interfaces/color.d.ts +0 -1
- package/es/collection-manager/interfaces/index.d.ts +1 -0
- package/es/collection-manager/interfaces/input.d.ts +1 -0
- package/es/collection-manager/interfaces/integer.d.ts +1 -0
- package/es/collection-manager/interfaces/nanoid.d.ts +1 -0
- package/es/collection-manager/interfaces/number.d.ts +44 -0
- package/es/collection-manager/interfaces/snowflake-id.d.ts +117 -0
- package/es/collection-manager/interfaces/uuid.d.ts +1 -0
- package/es/collection-manager/templates/properties/index.d.ts +1 -0
- package/es/data-source/collection-field-interface/CollectionFieldInterface.d.ts +1 -0
- package/es/data-source/data-source/DataSourceManager.d.ts +1 -0
- package/es/flow/FlowModelRepository.d.ts +4 -0
- package/es/flow/FlowPage.d.ts +2 -1
- package/es/flow/actions/columnFixed.d.ts +9 -0
- package/es/flow/actions/customVariable.d.ts +9 -0
- package/es/flow/actions/displayFieldComponent.d.ts +1 -1
- package/es/flow/actions/index.d.ts +8 -1
- package/es/flow/actions/linkageRules.d.ts +4 -0
- package/es/flow/actions/navigateToURL.d.ts +9 -0
- package/es/flow/actions/openView.d.ts +2 -13
- package/es/flow/actions/refreshTargetBlocks.d.ts +9 -0
- package/es/flow/actions/setTargetDataScope.d.ts +10 -0
- package/es/flow/actions/showMessage.d.ts +9 -0
- package/es/flow/actions/showNotification.d.ts +9 -0
- package/es/flow/actions/titleField.d.ts +0 -1
- package/es/flow/common/Liquid.d.ts +33 -0
- package/es/flow/common/Markdown/Display.d.ts +9 -0
- package/es/flow/common/Markdown/Edit.d.ts +23 -0
- package/es/flow/common/Markdown/Markdown.d.ts +24 -0
- package/es/flow/{components/code-editor/completions/index.d.ts → common/Markdown/style.d.ts} +1 -2
- package/es/flow/common/Markdown/useCDN.d.ts +9 -0
- package/es/flow/components/BlockItemCard.d.ts +2 -0
- package/es/flow/components/FieldAssignValueInput.d.ts +1 -0
- package/es/flow/components/code-editor/extension/CodeEditorExtension.d.ts +14 -0
- package/es/flow/components/code-editor/extension/index.d.ts +9 -0
- package/es/flow/components/code-editor/hooks/useRunJSDocCompletions.d.ts +1 -1
- package/es/flow/components/code-editor/index.d.ts +6 -4
- package/es/flow/components/code-editor/jsxCompletion.d.ts +10 -0
- package/es/flow/components/code-editor/linter.d.ts +2 -0
- package/es/flow/components/code-editor/panels/RightExtra.d.ts +3 -1
- package/es/flow/components/code-editor/runjsCompletions.d.ts +3 -1
- package/es/flow/components/code-editor/types.d.ts +16 -0
- package/es/flow/components/filter/FilterContainer.d.ts +4 -4
- package/es/flow/components/filter/FilterGroup.d.ts +2 -1
- package/es/flow/components/filter/LinkageFilterItem.d.ts +1 -0
- package/es/flow/components/filter/VariableFilterItem.d.ts +4 -1
- package/es/flow/components/index.d.ts +1 -1
- package/es/flow/components/placeholders/BlockPlaceholder.d.ts +1 -0
- package/es/flow/flows/editMarkdownFlow.d.ts +10 -0
- package/es/flow/getViewDiffAndUpdateHidden.d.ts +1 -0
- package/es/flow/index.d.ts +5 -0
- package/es/flow/internal/utils/associationValueCoercion.d.ts +15 -0
- package/es/flow/internal/utils/enumOptionsUtils.d.ts +7 -7
- package/es/flow/internal/utils/operatorSchemaHelper.d.ts +15 -0
- package/es/flow/internal/utils/rebuildFieldSubModel.d.ts +33 -0
- package/es/flow/models/actions/AddChildActionModel.d.ts +15 -0
- package/es/flow/models/actions/AddNewActionModel.d.ts +1 -0
- package/es/flow/models/actions/EditActionModel.d.ts +1 -0
- package/es/flow/models/actions/{UpdateActionModel.d.ts → ExpandCollapseActionModel.d.ts} +8 -10
- package/es/flow/models/actions/FilterActionModel.d.ts +5 -59
- package/es/flow/models/actions/JSActionModel.d.ts +13 -0
- package/es/flow/models/actions/LinkActionModel.d.ts +18 -0
- package/es/flow/models/actions/UpdateRecordActionModel.d.ts +27 -0
- package/es/flow/models/actions/index.d.ts +5 -1
- package/es/flow/models/base/ActionModel.d.ts +15 -5
- package/es/flow/models/base/BlockModel.d.ts +4 -1
- package/es/flow/models/base/CollectionBlockModel.d.ts +12 -25
- package/es/flow/models/base/FieldModel.d.ts +6 -0
- package/es/flow/models/base/GridModel.d.ts +27 -4
- package/es/flow/models/base/PageModel/ChildPageModel.d.ts +1 -0
- package/es/flow/models/base/PageModel/PageModel.d.ts +3 -0
- package/es/flow/models/base/PageModel/PageTabModel.d.ts +2 -0
- package/es/flow/models/base/PageModel/RootPageModel.d.ts +2 -0
- package/es/flow/models/blocks/assign-form/AssignFormModel.d.ts +2 -0
- package/es/flow/models/blocks/details/DetailsBlockModel.d.ts +1 -0
- package/es/flow/models/blocks/details/DetailsCustomItemModel.d.ts +2 -2
- package/es/flow/models/blocks/details/DetailsGridModel.d.ts +1 -0
- package/es/flow/models/blocks/details/DetailsItemModel.d.ts +2 -2
- package/es/flow/models/blocks/details/DetailsJSFieldItemModel.d.ts +2 -2
- package/es/flow/models/blocks/filter-form/FieldModelSelect.d.ts +10 -0
- package/es/flow/models/blocks/filter-form/FilterFormBlockModel.d.ts +4 -0
- package/es/flow/models/blocks/filter-form/FilterFormCustomItemModel.d.ts +13 -0
- package/es/flow/models/blocks/filter-form/FilterFormGridModel.d.ts +1 -0
- package/es/flow/models/blocks/filter-form/FilterFormItemModel.d.ts +5 -4
- package/es/flow/models/blocks/filter-form/FilterFormSubmitActionModel.d.ts +1 -1
- package/es/flow/models/blocks/filter-form/SourceCascader.d.ts +10 -0
- package/es/flow/models/blocks/filter-form/fields/FieldComponentProps.d.ts +13 -0
- package/es/flow/models/blocks/filter-form/fields/FilterFormCustomFieldModel.d.ts +36 -0
- package/es/flow/models/blocks/filter-form/fields/date-time/DateTimeFilterFieldModel.d.ts +8 -0
- package/es/flow/models/blocks/filter-form/fields/date-time/index.d.ts +1 -0
- package/es/flow/models/blocks/filter-form/fields/index.d.ts +1 -0
- package/es/flow/models/blocks/filter-form/index.d.ts +1 -0
- package/es/flow/models/blocks/filter-manager/flow-actions/customizeFilterRender.d.ts +10 -0
- package/es/flow/models/blocks/filter-manager/flow-actions/index.d.ts +2 -0
- package/es/flow/models/blocks/filter-manager/flow-actions/operatorComponentProps.d.ts +10 -0
- package/es/flow/models/blocks/form/CreateFormModel.d.ts +2 -1
- package/es/flow/models/blocks/form/EditFormModel.d.ts +1 -0
- package/es/flow/models/blocks/form/FormBlockModel.d.ts +13 -2
- package/es/flow/models/blocks/form/FormGridModel.d.ts +1 -0
- package/es/flow/models/blocks/form/FormItemModel.d.ts +1 -1
- package/es/flow/models/blocks/form/FormJSFieldItemModel.d.ts +1 -1
- package/es/flow/models/blocks/form/submitHandler.d.ts +9 -0
- package/es/flow/models/blocks/js-block/JSBlock.d.ts +1 -0
- package/es/flow/models/blocks/table/JSColumnModel.d.ts +0 -1
- package/es/flow/models/blocks/table/TableActionsColumnModel.d.ts +0 -1
- package/es/flow/models/blocks/table/TableBlockModel.d.ts +15 -2
- package/es/flow/models/blocks/table/TableColumnModel.d.ts +9 -2
- package/es/flow/models/blocks/table/TableJSFieldItemModel.d.ts +2 -2
- package/es/flow/models/blocks/table/utils.d.ts +9 -0
- package/es/flow/models/blocks/utils/transformChildrenToJS.d.ts +42 -0
- package/es/flow/models/fields/AssociationFieldModel/AssociationFieldModel.d.ts +1 -0
- package/es/flow/models/fields/AssociationFieldModel/CascadeSelectFieldModel.d.ts +29 -0
- package/es/flow/models/fields/AssociationFieldModel/RecordPickerFieldModel.d.ts +2 -0
- package/es/flow/models/fields/AssociationFieldModel/RecordSelectFieldModel.d.ts +8 -2
- package/es/flow/models/fields/AssociationFieldModel/SubFormFieldModel.d.ts +7 -0
- package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/SubTableColumnModel.d.ts +3 -3
- package/es/flow/models/fields/AssociationFieldModel/SubTableFieldModel/index.d.ts +2 -0
- package/es/flow/models/fields/AssociationFieldModel/index.d.ts +1 -0
- package/es/flow/models/fields/AssociationFieldModel/recordSelectShared.d.ts +49 -0
- package/es/flow/models/fields/ClickableFieldModel.d.ts +3 -2
- package/es/flow/models/fields/DisplayAssociationField/DisplaySubItemFieldModel.d.ts +1 -0
- package/es/flow/models/fields/DisplayAssociationField/DisplaySubListFieldModel.d.ts +1 -0
- package/es/flow/models/fields/DisplayAssociationField/DisplaySubTableFieldModel.d.ts +3 -1
- package/es/flow/models/fields/DisplayEnumFieldModel.d.ts +1 -0
- package/es/flow/models/fields/DisplayJSONFieldModel.d.ts +3 -3
- package/es/flow/models/fields/DisplayNumberFieldModel.d.ts +4 -2
- package/es/flow/models/fields/DisplayTextFieldModel.d.ts +1 -1
- package/es/flow/models/fields/JSEditableFieldModel.d.ts +8 -0
- package/es/flow/models/fields/JSFieldModel.d.ts +1 -1
- package/es/flow/models/fields/JSItemModel.d.ts +1 -2
- package/es/flow/models/fields/JsonFieldModel.d.ts +1 -0
- package/es/flow/models/fields/MarkdownItemModel.d.ts +1 -0
- package/es/flow/models/fields/TimeFieldModel.d.ts +0 -1
- package/es/flow/models/fields/mobile-components/MobileDatePicker.d.ts +10 -0
- package/es/flow/models/fields/mobile-components/MobileLazySelect.d.ts +11 -0
- package/es/flow/{components/JsonInput.d.ts → models/fields/mobile-components/MobileSelect.d.ts} +1 -1
- package/es/flow/models/fields/mobile-components/MobileTimePicker.d.ts +10 -0
- package/es/flow/resolveViewParamsToViewList.d.ts +4 -2
- package/es/flow/{components/decorator → utils}/index.d.ts +1 -1
- package/es/global-theme/type.d.ts +1 -0
- package/es/hooks/useFullscreenOverlay.d.ts +20 -0
- package/es/index.d.ts +1 -0
- package/es/index.mjs +25991 -18546
- package/es/modules/menu/FlowPageMenuItem.d.ts +1 -3
- package/es/modules/menu/index.d.ts +9 -0
- package/es/nocobase-buildin-plugin/plugins/LocalePlugin.d.ts +0 -1
- package/es/schema-component/antd/association-select/ReadPretty.d.ts +1 -1
- package/es/schema-component/antd/filter/FilterItem.d.ts +1 -1
- package/es/schema-component/antd/input/EllipsisWithTooltip.d.ts +1 -0
- package/es/schema-component/antd/linkageFilter/LinkageFilterItem.d.ts +1 -1
- package/es/schema-component/antd/remote-select/RemoteSelect.d.ts +1 -3
- package/es/schema-component/antd/table/Table.Column.ActionBar.d.ts +1 -1
- package/es/schema-component/antd/table/Table.Void.d.ts +1 -0
- package/es/schema-component/antd/table-v2/Table.Column.ActionBar.d.ts +1 -1
- package/es/schema-component/antd/upload/shared.d.ts +1 -1
- package/es/schema-settings/LinkageRules/LinkageRuleAction.d.ts +2 -2
- package/es/schema-settings/LinkageRules/components/BlockLinkageRuleAction.d.ts +1 -1
- package/es/schema-settings/LinkageRules/components/FieldStyleLinkageRuleAction.d.ts +1 -1
- package/lib/index-C3fHjsMw-CiyrLQdu.js +2237 -0
- package/lib/index.js +449 -293
- package/lib/locale/cron/zh-CN.json +33 -0
- package/lib/locale/cron/zh-TW.json +33 -0
- package/lib/locale/de-DE.json +1545 -0
- package/lib/locale/en-US.json +1553 -0
- package/lib/locale/es-ES.json +1573 -0
- package/lib/locale/fr-FR.json +1549 -0
- package/lib/locale/hu-HU.json +1545 -0
- package/lib/locale/id-ID.json +1546 -0
- package/lib/locale/{it-IT.js → it-IT.json} +1496 -1054
- package/lib/locale/ja-JP.json +1564 -0
- package/lib/locale/ko-KR.json +1558 -0
- package/lib/locale/{nl-NL.js → nl-NL.json} +1493 -1018
- package/lib/locale/pt-BR.json +1617 -0
- package/lib/locale/ru-RU.json +1551 -0
- package/lib/locale/tr-TR.json +1553 -0
- package/lib/locale/uk-UA.json +1570 -0
- package/lib/locale/vi-VN.json +1545 -0
- package/lib/locale/zh-CN.json +1571 -0
- package/lib/locale/zh-TW.json +1549 -0
- package/package.json +10 -7
- package/es/flow/components/code-editor/snippets/loader.d.ts +0 -19
- package/es/flow/components/decorator/injectable.d.ts +0 -19
- package/lib/index-C3fHjsMw-BwUYFnGr.js +0 -2081
- package/lib/locale/cron/zh-CN.js +0 -33
- package/lib/locale/cron/zh-TW.js +0 -33
- package/lib/locale/de-DE.js +0 -904
- package/lib/locale/en-US.js +0 -996
- package/lib/locale/es-ES.js +0 -824
- package/lib/locale/fr-FR.js +0 -844
- package/lib/locale/ja-JP.js +0 -1062
- package/lib/locale/ko-KR.js +0 -935
- package/lib/locale/pt-BR.js +0 -804
- package/lib/locale/ru-RU.js +0 -633
- package/lib/locale/tr-TR.js +0 -631
- package/lib/locale/uk-UA.js +0 -847
- package/lib/locale/zh-CN.js +0 -1396
- package/lib/locale/zh-TW.js +0 -938
- /package/es/flow/{internal/utils → utils}/blockUtils.d.ts +0 -0
|
@@ -0,0 +1,1564 @@
|
|
|
1
|
+
{
|
|
2
|
+
"\"Content-Type\" only support \"application/json\", and no need to specify": "\"Content-Type\" only support \"application/json\", and no need to specify",
|
|
3
|
+
"(Fields only)": "(フィールドのみ)",
|
|
4
|
+
"(currently not effective in sub-forms/sub-tables)": "(currently not effective in sub-forms/sub-tables)",
|
|
5
|
+
"12 hour": "12 時間制",
|
|
6
|
+
"24 hour": "24 時間制",
|
|
7
|
+
"<": "<",
|
|
8
|
+
"=": "=",
|
|
9
|
+
">": ">",
|
|
10
|
+
"ACL": "アクセス制御",
|
|
11
|
+
"ASC": "昇順",
|
|
12
|
+
"Access": "アクセス",
|
|
13
|
+
"Access control": "アクセス制御",
|
|
14
|
+
"Accessible": "アクセスを許可する",
|
|
15
|
+
"Accuracy": "精度",
|
|
16
|
+
"Action": "アクション",
|
|
17
|
+
"Action after successful submission": "送信成功後のアクション",
|
|
18
|
+
"Action column": "操作カラム",
|
|
19
|
+
"Action display name": "操作名",
|
|
20
|
+
"Action logs": "操作履歴",
|
|
21
|
+
"Action name": "操作名",
|
|
22
|
+
"Action on existing records": "既存のレコードに対する操作",
|
|
23
|
+
"Action on new records": "新しいレコードに対する操作",
|
|
24
|
+
"Action permission": "操作権限",
|
|
25
|
+
"Action permissions": "コレクションの操作権限",
|
|
26
|
+
"Action scope": "操作可能なレコード範囲",
|
|
27
|
+
"Action type": "操作タイプ",
|
|
28
|
+
"Actions": "操作",
|
|
29
|
+
"Actions column": "Actions column",
|
|
30
|
+
"Add": "追加",
|
|
31
|
+
"Add & Update": "追加・更新",
|
|
32
|
+
"Add Markdown": "Markdownを追加",
|
|
33
|
+
"Add action": "Add action",
|
|
34
|
+
"Add attach": "添付を追加",
|
|
35
|
+
"Add block": "ブロックを追加",
|
|
36
|
+
"Add card": "カードを追加",
|
|
37
|
+
"Add category": "分類の追加",
|
|
38
|
+
"Add child": "サブレコードの追加",
|
|
39
|
+
"Add child route": "子ルートを追加",
|
|
40
|
+
"Add condition": "条件の追加",
|
|
41
|
+
"Add condition group": "条件グループの追加",
|
|
42
|
+
"Add event flow": "Add event flow",
|
|
43
|
+
"Add exportable field": "エクスポート可能なフィールドを追加",
|
|
44
|
+
"Add field": "フィールドの追加",
|
|
45
|
+
"Add filter": "フィルターを追加",
|
|
46
|
+
"Add filter group": "フィルターグループを追加",
|
|
47
|
+
"Add group": "グループを追加",
|
|
48
|
+
"Add link": "リンクを追加",
|
|
49
|
+
"Add linkage rule": "連動規則の追加",
|
|
50
|
+
"Add menu item": "メニュー項目を追加",
|
|
51
|
+
"Add new": "追加",
|
|
52
|
+
"Add new mode": "追加モード",
|
|
53
|
+
"Add option": "オプションを追加",
|
|
54
|
+
"Add page": "ページを追加",
|
|
55
|
+
"Add parameter": "パラメーターを追加",
|
|
56
|
+
"Add plugin": "プラグインを追加",
|
|
57
|
+
"Add property": "属性の追加",
|
|
58
|
+
"Add record": "レコードを追加",
|
|
59
|
+
"Add request header": "Add request header",
|
|
60
|
+
"Add role": "役割の追加",
|
|
61
|
+
"Add rule": "Add rule",
|
|
62
|
+
"Add sort field": "ソートフィールドを追加",
|
|
63
|
+
"Add step": "Add step",
|
|
64
|
+
"Add tab": "タブを追加",
|
|
65
|
+
"Add target block": "Add target block",
|
|
66
|
+
"Add template": "テンプレートを追加",
|
|
67
|
+
"Add text": "テキストを追加",
|
|
68
|
+
"Add type": "タイプを追加",
|
|
69
|
+
"Add validation rule": "バリデーションルールを追加",
|
|
70
|
+
"Add variable": "Add variable",
|
|
71
|
+
"Add {{type}} after \"{{title}}\"": "\"{{title}}\"の後に{{type}}を挿入",
|
|
72
|
+
"Add {{type}} before \"{{title}}\"": "\"{{title}}\"の前に{{type}}を挿入",
|
|
73
|
+
"Add {{type}} in \"{{title}}\"": "\"{{title}}\" に {{type}} を挿入",
|
|
74
|
+
"Advanced type": "アドバンスタイプ",
|
|
75
|
+
"After": "後",
|
|
76
|
+
"After change": "変更後",
|
|
77
|
+
"After clicking the custom button, the following field values will be assigned according to the following form.": "現在のカスタムボタンをクリックすると、次のフォームに従って次のフィールド値が割り当てられます。",
|
|
78
|
+
"After clicking the custom button, the following fields of the current record will be saved according to the following form.": "カスタムボタンをクリックすると、現在のレコードの次のフィールドが次の形式に従って保存されます。",
|
|
79
|
+
"After hiding, this menu will no longer appear in the menu bar. To show it again, you need to go to the route management page to configure it.": "非表示にすると、このメニューはメニューバーに表示されなくなります。再表示するには、ルート管理ページで設定する必要があります。",
|
|
80
|
+
"After hiding, this tab will no longer appear in the tab bar. To show it again, you need to go to the route management page to set it.": "非表示にすると、このタブはタブバーに表示されなくなります。再表示するには、ルート管理ページで設定する必要があります。",
|
|
81
|
+
"After successful bulk update": "一括更新が成功した後",
|
|
82
|
+
"After successful request": "リクエストが成功した後",
|
|
83
|
+
"After successful save": "保存に成功した後",
|
|
84
|
+
"After successful submission": "送信が成功した後",
|
|
85
|
+
"After successful submission, the selected data blocks will be automatically refreshed.": "送信後、選択したデータブロックが自動的に更新されます。",
|
|
86
|
+
"After successful update": "更新成功後",
|
|
87
|
+
"Agenda": "アジェンダ",
|
|
88
|
+
"All": "すべて",
|
|
89
|
+
"All collections": "すべてのデータテーブル",
|
|
90
|
+
"All collections use general action permissions by default; permission configured individually will override the default one.": "すべてのコレクションは、デフォルトで一般操作権限を使用します。 各コレクションに対して個別に権限を設定することができます。",
|
|
91
|
+
"All events": "すべてのイベント",
|
|
92
|
+
"All plugin settings": "すべてのプラグイン設定",
|
|
93
|
+
"All records": "すべてのレコード",
|
|
94
|
+
"Allow": "許可する",
|
|
95
|
+
"Allow access": "許可されたアクセス",
|
|
96
|
+
"Allow action": "許可された操作",
|
|
97
|
+
"Allow add new": "新規作成を許可",
|
|
98
|
+
"Allow add new data": "データの追加を許可",
|
|
99
|
+
"Allow add new, update and delete actions": "削除変更操作の許可",
|
|
100
|
+
"Allow adding records to the current collection": "現在のデータ・フォームへのレコードの追加を許可する",
|
|
101
|
+
"Allow disassociation": "関連解除を許可",
|
|
102
|
+
"Allow dissociate": "関連解除を許可",
|
|
103
|
+
"Allow linking to multiple records": "複数のレコードの関連付けを許可する",
|
|
104
|
+
"Allow list": "Allow list",
|
|
105
|
+
"Allow multiple": "複数選択を許可する",
|
|
106
|
+
"Allow multiple selection": "複数選択を許可",
|
|
107
|
+
"Allow relative URIs": "Allow relative URIs",
|
|
108
|
+
"Allow selection of existing file": "Allow selection of existing file",
|
|
109
|
+
"Allow selection of existing records": "既存のデータの選択を許可",
|
|
110
|
+
"Allow sign up": "サインアップを許可",
|
|
111
|
+
"Allow to configure plugins": "管理構成センターの許可",
|
|
112
|
+
"Allow to desgin pages": "インタフェース構成の許可",
|
|
113
|
+
"Allow to manage plugins": "管理プラグインの許可",
|
|
114
|
+
"Allow uploading multiple files": "複数のファイルのアップロードを許可する",
|
|
115
|
+
"Allows configuration of the whole system, including UI, collections, permissions, etc.": "UI設定、コレクション設定、権限設定、システム設定等、システム全体の設定を許可する",
|
|
116
|
+
"Allows to clear cache, reboot application": "キャッシュのクリアとアプリケーションの再起動が可能",
|
|
117
|
+
"Allows to configure interface": "インターフェースの設定を許可",
|
|
118
|
+
"Allows to configure plugins": "プラグインの設定を許可",
|
|
119
|
+
"Allows to install, activate, disable plugins": "プラグインのインストール、アクティブ化、無効化を許可",
|
|
120
|
+
"Allows unencoded square brackets inside the query string": "Allows unencoded square brackets inside the query string",
|
|
121
|
+
"Alphabet": "アルファベット",
|
|
122
|
+
"Any": "Any",
|
|
123
|
+
"Any succeeded or failed": "いずれかが成功もしくは失敗",
|
|
124
|
+
"App error": "アプリエラー",
|
|
125
|
+
"Application reloading": "アプリケーションを再読み込み中",
|
|
126
|
+
"Are you sure to delete this plugin": "本当にこのプラグインを無効にしますか?",
|
|
127
|
+
"Are you sure to delete this plugin?": "このプラグインを削除してもよろしいですか?",
|
|
128
|
+
"Are you sure to disable this plugin?": "このプラグインを無効にしてもよろしいですか?",
|
|
129
|
+
"Are you sure you don't want to save?": "変更を保存しなくてもよいですか?",
|
|
130
|
+
"Are you sure you want to clear cache ?": "Are you sure you want to clear cache ?",
|
|
131
|
+
"Are you sure you want to delete it?": "本当に削除しますか?",
|
|
132
|
+
"Are you sure you want to delete this variable?": "Are you sure you want to delete this variable?",
|
|
133
|
+
"Are you sure you want to disassociate it?": "本当に関連付けを解除しますか?",
|
|
134
|
+
"Are you sure you want to hide these routes in menu?": "これらのルートをメニューに非表示にしますか?",
|
|
135
|
+
"Are you sure you want to hide this menu?": "このメニューを非表示にしますか?",
|
|
136
|
+
"Are you sure you want to hide this tab?": "このタブを非表示にしますか?",
|
|
137
|
+
"Are you sure you want to load {{count}} collection(s)?": "Are you sure you want to load {{count}} collection(s)?",
|
|
138
|
+
"Are you sure you want to perform the Custom request action": "カスタムリクエストアクションを実行してもよろしいですか?",
|
|
139
|
+
"Are you sure you want to perform the Refresh action?": "リフレッシュアクションを実行してもよろしいですか?",
|
|
140
|
+
"Are you sure you want to perform the Submit action?": "送信アクションを実行してもよろしいですか?",
|
|
141
|
+
"Are you sure you want to perform the Trigger workflow action?": "ワークフロートリガーを実行してもよろしいですか?",
|
|
142
|
+
"Are you sure you want to perform the Update record action?": "レコード更新アクションを実行してもよろしいですか?",
|
|
143
|
+
"Are you sure you want to perform the {{title}} action?": "{{title}}操作を実行してもよろしいですか?",
|
|
144
|
+
"Are you sure you want to save it?": "Are you sure you want to save it?",
|
|
145
|
+
"Are you sure you want to show these routes in menu?": "これらのルートをメニューに表示しますか?",
|
|
146
|
+
"Area": "地区/群",
|
|
147
|
+
"Area chart": "積み上げ面グラフ",
|
|
148
|
+
"Assign data scope for the template": "テンプレートのデータ範囲の指定",
|
|
149
|
+
"Assign data scope for the template": "テンプレートのデータ範囲を指定",
|
|
150
|
+
"Assign field values": "フィールド割当",
|
|
151
|
+
"Assign value": "Assign value",
|
|
152
|
+
"Assignment mode": "Assignment mode",
|
|
153
|
+
"Associate": "関連付け",
|
|
154
|
+
"Associated records": "関連付けられたレコード",
|
|
155
|
+
"Association field settings": "Association field settings",
|
|
156
|
+
"Association fields": "関連フィールド",
|
|
157
|
+
"Association fields filter": "関連フィールドフィルター",
|
|
158
|
+
"Association select settings": "Association select settings",
|
|
159
|
+
"Association table settings": "Association table settings",
|
|
160
|
+
"Association tag settings": "Association tag settings",
|
|
161
|
+
"AssociationField component": "AssociationField component",
|
|
162
|
+
"Attempts to encode the URI using encodeURI before validating it again": "Attempts to encode the URI using encodeURI before validating it again",
|
|
163
|
+
"Audit logs": "監査ログ",
|
|
164
|
+
"Authentication": "認証",
|
|
165
|
+
"Author": "著者",
|
|
166
|
+
"Auto": "自動",
|
|
167
|
+
"Auto focus": "Auto focus",
|
|
168
|
+
"Auto increment": "自動インクリメント",
|
|
169
|
+
"AutoGenId": "IDフィールドの自動生成",
|
|
170
|
+
"Automatic close": "自動で閉じる",
|
|
171
|
+
"Automatically drop objects that depend on the collection (such as views), and in turn all objects that depend on those objects": "テーブルに依存するオブジェクト、およびそれらに依存するオブジェクトを自動的に削除する",
|
|
172
|
+
"Automatically generate default values": "自動でデフォルト値を生成",
|
|
173
|
+
"Automatically remove heading and tailing spaces": "Automatically remove heading and tailing spaces",
|
|
174
|
+
"Automatically update timestamp on update": "更新時にタイムスタンプを自動更新",
|
|
175
|
+
"Automatically update timestamp to the current server time on update": "更新時にサーバー時間を自動設定",
|
|
176
|
+
"Available \"target blocks\" are all data blocks on the current page": "Available \"target blocks\" are all data blocks on the current page",
|
|
177
|
+
"Available Collections": "Available Collections",
|
|
178
|
+
"Background Color": "背景色",
|
|
179
|
+
"Bar chart": "横棒グラフ",
|
|
180
|
+
"Base": "Base",
|
|
181
|
+
"Basic": "基本タイプ",
|
|
182
|
+
"Basic configuration": "Basic configuration",
|
|
183
|
+
"Before": "前",
|
|
184
|
+
"Before change": "変更前",
|
|
185
|
+
"Before render": "Before render",
|
|
186
|
+
"Blank block": "空のブロック",
|
|
187
|
+
"Block": "ブロック",
|
|
188
|
+
"Block Linkage rules": "Block Linkage rules",
|
|
189
|
+
"Block linkage rules": "Block linkage rules",
|
|
190
|
+
"Block list": "Block list",
|
|
191
|
+
"Block template": "ブロックテンプレート",
|
|
192
|
+
"Block templates": "ブロックテンプレート",
|
|
193
|
+
"Block title": "ブロックタイトル",
|
|
194
|
+
"Block type": "ブロックタイプ",
|
|
195
|
+
"Blocks": "ブロック",
|
|
196
|
+
"Blue": "ブルー",
|
|
197
|
+
"Bookmark": "ブックマーク",
|
|
198
|
+
"Boolean": "ブール値",
|
|
199
|
+
"Bottom left": "Bottom left",
|
|
200
|
+
"Bottom right": "Bottom right",
|
|
201
|
+
"Built-in": "内蔵",
|
|
202
|
+
"Bulk edit": "一括編集",
|
|
203
|
+
"Bulk enable": "一括有効化",
|
|
204
|
+
"Bulk update": "一括更新",
|
|
205
|
+
"Button background color": "ボタンの背景色",
|
|
206
|
+
"Button icon": "ボタンアイコン",
|
|
207
|
+
"Button settings": "Button settings",
|
|
208
|
+
"Button title": "ボタンタイトル",
|
|
209
|
+
"Button type": "Button type",
|
|
210
|
+
"Calculation engine": "計算エンジン",
|
|
211
|
+
"Calendar": "カレンダー",
|
|
212
|
+
"Calendar Month": "Calendar Month",
|
|
213
|
+
"Calendar Year": "Calendar Year",
|
|
214
|
+
"Calendar collection": "カレンダデータテーブル",
|
|
215
|
+
"Calendar week": "Calendar week",
|
|
216
|
+
"Cancel": "取消",
|
|
217
|
+
"Cannot find the model instance with UID": "Cannot find the model instance with UID",
|
|
218
|
+
"Card settings": "Card settings",
|
|
219
|
+
"Cascade Select": "カスケード選択",
|
|
220
|
+
"Cascade select": "Cascade select",
|
|
221
|
+
"Cascade select settings": "Cascade select settings",
|
|
222
|
+
"Categories": "データテーブルカテゴリ",
|
|
223
|
+
"Category name": "分類名",
|
|
224
|
+
"Center": "中央揃え",
|
|
225
|
+
"Change password": "パスワード変更",
|
|
226
|
+
"Changed to": "に変更",
|
|
227
|
+
"Changelog": "変更履歴",
|
|
228
|
+
"Chart blocks": "チャートブロック",
|
|
229
|
+
"Chart config": "チャート設定",
|
|
230
|
+
"Chart title": "チャートタイトル",
|
|
231
|
+
"Chart type": "チャートタイプ",
|
|
232
|
+
"Check strength": "Check strength",
|
|
233
|
+
"Checkbox": "チェックボックス",
|
|
234
|
+
"Checkbox group": "チェックボックスグループ",
|
|
235
|
+
"Children": "子",
|
|
236
|
+
"China region": "中国地域",
|
|
237
|
+
"Choices": "選択",
|
|
238
|
+
"Choices fields": "チョイスフィールド",
|
|
239
|
+
"City": "市",
|
|
240
|
+
"Classic page (v1)": "Classic page (v1)",
|
|
241
|
+
"Clear": "クリア",
|
|
242
|
+
"Clear cache": "キャッシュをクリア",
|
|
243
|
+
"Clear default value": "デフォルト値をクリア",
|
|
244
|
+
"Click": "Click",
|
|
245
|
+
"Click event": "Click event",
|
|
246
|
+
"Click or drag file to this area to upload": "クリックまたはドラッグしてファイルをアップロード",
|
|
247
|
+
"Click the \"UI Editor\" icon in the upper right corner to enter the UI Editor mode": "ユーザーインターフェースエディターモードに入るには、右上隅の「UIエディタ」アイコンをクリックしてください",
|
|
248
|
+
"Clicked row record": "Clicked row record",
|
|
249
|
+
"Close": "閉じる",
|
|
250
|
+
"Collapse": "折りたたみ",
|
|
251
|
+
"Collapse all": "すべて閉じる",
|
|
252
|
+
"Collapse button": "Collapse",
|
|
253
|
+
"Collapse settings": "Collapse settings",
|
|
254
|
+
"Collapsed rows": "Collapsed rows",
|
|
255
|
+
"Collection": "コレクション",
|
|
256
|
+
"Collection category": "コレクションカテゴリ",
|
|
257
|
+
"Collection display name": "コレクション名",
|
|
258
|
+
"Collection fields": "コレクションフィールド",
|
|
259
|
+
"Collection manager": "コレクション管理",
|
|
260
|
+
"Collection name": "コレクション識別子",
|
|
261
|
+
"Collection selector": "コレクションセレクタ",
|
|
262
|
+
"Collection template": "データテーブルテンプレート",
|
|
263
|
+
"Collections": "コレクション",
|
|
264
|
+
"Collections & Fields": "コレクションとフィールド",
|
|
265
|
+
"Colon": "Colon",
|
|
266
|
+
"Color": "カラー",
|
|
267
|
+
"Column": "カラム",
|
|
268
|
+
"Column Settings": "列設定",
|
|
269
|
+
"Column chart": "縦棒グラフ",
|
|
270
|
+
"Column title": "カラムタイトル",
|
|
271
|
+
"Column width": "列幅",
|
|
272
|
+
"Coming soon...": "近日公開予定です...",
|
|
273
|
+
"Compact theme": "コンパクトテーマ",
|
|
274
|
+
"Comparision": "比較",
|
|
275
|
+
"Comparison": "Comparison",
|
|
276
|
+
"Component properties": "Component properties",
|
|
277
|
+
"Compressed file url": "圧縮ファイルのURL",
|
|
278
|
+
"Computer": "Computer",
|
|
279
|
+
"Condition": "条件#ジョウケン#",
|
|
280
|
+
"Conditional assignment": "Conditional assignment",
|
|
281
|
+
"Configuration saved": "Configuration saved",
|
|
282
|
+
"Configuration:": "Configuration:",
|
|
283
|
+
"Configure": "設定",
|
|
284
|
+
"Configure actions": "操作の設定",
|
|
285
|
+
"Configure calendar": "カレンダーの設定",
|
|
286
|
+
"Configure columns": "カラムの設定",
|
|
287
|
+
"Configure field": "フィールドを設定",
|
|
288
|
+
"Configure fields": "フィールドの設定",
|
|
289
|
+
"Configure fields of {{title}}": "{{title}}のフィールド設定",
|
|
290
|
+
"Configure page": "Configure page",
|
|
291
|
+
"Configure permission": "権限設定",
|
|
292
|
+
"Configure permissions": "権限の設定",
|
|
293
|
+
"Configure rows": "Configure rows",
|
|
294
|
+
"Configure the rows and columns of the grid.": "Configure the rows and columns of the grid.",
|
|
295
|
+
"Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.": "Configure the sizes of each row. The value is an array of numbers representing the width of each column in the row.",
|
|
296
|
+
"Confirm": "確認",
|
|
297
|
+
"Confirm Load Collections": "Confirm Load Collections",
|
|
298
|
+
"Confirm password": "パスワードを確認",
|
|
299
|
+
"Confirmation": "Confirmation",
|
|
300
|
+
"Connect data blocks": "データブロックを連結",
|
|
301
|
+
"Connect fields": "Connect fields",
|
|
302
|
+
"Connect to database view": "ビューに接続",
|
|
303
|
+
"Console": "Console",
|
|
304
|
+
"Constant": "定数",
|
|
305
|
+
"Constant value": "定数値",
|
|
306
|
+
"Contain": "コンテイン",
|
|
307
|
+
"Content": "コンテンツ",
|
|
308
|
+
"Content overflow display mode": "Content overflow display mode",
|
|
309
|
+
"Content settings": "Content settings",
|
|
310
|
+
"Continue after any branch succeeded, or exit after any branch failed": "いずれかの分岐で成功し続行するか、分岐が失敗した後終了します",
|
|
311
|
+
"Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.": "Controls whether the current document is allowed to autoplay media requested through the HTMLMediaElement interface. When this policy is disabled and there were no user gestures, the Promise returned by HTMLMediaElement.play() will reject with a NotAllowedError DOMException. The autoplay attribute on <audio> and <video> elements will be ignored.",
|
|
312
|
+
"Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.": "Controls whether the current document is allowed to set document.domain. When this policy is disabled, attempting to set document.domain will fail and cause a SecurityError DOMException to be thrown.",
|
|
313
|
+
"Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.": "Controls whether the current document is allowed to use Element.requestFullscreen(). When this policy is disabled, the returned Promise rejects with a TypeError.",
|
|
314
|
+
"Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use audio input devices. When this policy is disabled, the Promise returned by MediaDevices.getUserMedia() will reject with a NotAllowedError DOMException.",
|
|
315
|
+
"Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Encrypted Media Extensions API (EME). When this policy is disabled, the Promise returned by Navigator.requestMediaKeySystemAccess() will reject with a SecurityError DOMException.",
|
|
316
|
+
"Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.": "Controls whether the current document is allowed to use the Geolocation Interface. When this policy is disabled, calls to getCurrentPosition() and watchPosition() will cause those functions callbacks to be invoked with a GeolocationPositionError code of PERMISSION_DENIED.",
|
|
317
|
+
"Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.": "Controls whether the current document is allowed to use the Payment Request API. When this policy is enabled, the PaymentRequest() constructor will throw a SecurityError DOMException.",
|
|
318
|
+
"Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.": "Controls whether the current document is allowed to use the Web MIDI API. When this policy is disabled, the Promise returned by Navigator.requestMIDIAccess() will reject with a SecurityError DOMException.",
|
|
319
|
+
"Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.": "Controls whether the current document is allowed to use video input devices. When this policy is disabled, the Promise returned by getUserMedia() will reject with a NotAllowedError DOMException.",
|
|
320
|
+
"Convert reference to duplicate": "参照を複製に変換",
|
|
321
|
+
"Convert template to duplicate": "Convert template to duplicate",
|
|
322
|
+
"Copy": "Copy",
|
|
323
|
+
"Copy into the form and continue to fill in": "フォームにコピーして入力を続ける",
|
|
324
|
+
"Cover": "カバー",
|
|
325
|
+
"Create": "新規のみ",
|
|
326
|
+
"Create an account": "アカウント登録",
|
|
327
|
+
"Create calendar block": "カレンダーブロックの作成",
|
|
328
|
+
"Create collection": "コレクションの作成",
|
|
329
|
+
"Create form": "フォームを作成",
|
|
330
|
+
"Create gantt block": "ガントチャートブロックの作成",
|
|
331
|
+
"Create inverse field in the target collection": "ターゲットコレクションに逆フィールドを作成",
|
|
332
|
+
"Create kanban block": "かんばんブロックの作成",
|
|
333
|
+
"Create template": "テンプレートを作成",
|
|
334
|
+
"Created at": "作成日",
|
|
335
|
+
"Created by": "作成者",
|
|
336
|
+
"CreatedAt": "レコード作成時間",
|
|
337
|
+
"CreatedBy": "レコード作成者",
|
|
338
|
+
"Current action": "Current action",
|
|
339
|
+
"Current block": "Current block",
|
|
340
|
+
"Current collection": "現在のコレクション",
|
|
341
|
+
"Current device type": "Current device type",
|
|
342
|
+
"Current form": "現在のフォーム",
|
|
343
|
+
"Current object": "現在のオブジェクト",
|
|
344
|
+
"Current popup": "Current popup",
|
|
345
|
+
"Current popup parent record": "Current popup parent record",
|
|
346
|
+
"Current popup record": "現在のポップアップレコード",
|
|
347
|
+
"Current record": "現在のレコード",
|
|
348
|
+
"Current record blocks": "現在のレコードブロック",
|
|
349
|
+
"Current role": "現在の役割",
|
|
350
|
+
"Current time": "現在の時刻",
|
|
351
|
+
"Current user": "現在のユーザー",
|
|
352
|
+
"Custom": "カスタム",
|
|
353
|
+
"Custom Title": "カスタムタイトル",
|
|
354
|
+
"Custom column name": "カスタムカラム名",
|
|
355
|
+
"Custom column title": "カスタムカラムタイトル",
|
|
356
|
+
"Custom field": "Custom field",
|
|
357
|
+
"Custom field display name": "カスタムフィールド名",
|
|
358
|
+
"Custom name": "カスタム名",
|
|
359
|
+
"Custom request": "カスタムリクエスト",
|
|
360
|
+
"Custom title": "カスタムタイトル",
|
|
361
|
+
"Custom variable": "Custom variable",
|
|
362
|
+
"Customize": "カスタマイズ",
|
|
363
|
+
"Cyan": "シアン",
|
|
364
|
+
"DESC": "降順",
|
|
365
|
+
"Daily": "毎日",
|
|
366
|
+
"Danger action": "Danger action",
|
|
367
|
+
"Danger red": "赤",
|
|
368
|
+
"Dashed": "破線",
|
|
369
|
+
"Data Model": "データモデル",
|
|
370
|
+
"Data blocks": "データブロック",
|
|
371
|
+
"Data changes": "データ変更",
|
|
372
|
+
"Data fields": "データフィールド",
|
|
373
|
+
"Data loading mode": "データ読み込みモード",
|
|
374
|
+
"Data model": "データモデル",
|
|
375
|
+
"Data model tools": "データモデルツール",
|
|
376
|
+
"Data refreshed successfully": "Data refreshed successfully",
|
|
377
|
+
"Data scope": "レコードスコープ",
|
|
378
|
+
"Data source": "データソース",
|
|
379
|
+
"Data source key": "Data source key",
|
|
380
|
+
"Data source permissions": "データソースの権限",
|
|
381
|
+
"Data sources": "データソース",
|
|
382
|
+
"Data template": "データテンプレート",
|
|
383
|
+
"Data will be updated": "データが更新されます",
|
|
384
|
+
"DataSource": "データソース",
|
|
385
|
+
"Date": "日付",
|
|
386
|
+
"Date & Time": "日付と時間",
|
|
387
|
+
"Date display format": "日付表示形式",
|
|
388
|
+
"Date format": "日付の書式",
|
|
389
|
+
"Date range limit": "日付範囲制限",
|
|
390
|
+
"Date scope": "Date scope",
|
|
391
|
+
"Date variables": "日付変数",
|
|
392
|
+
"Date variables(Deprecated)": "Date variables(Deprecated)",
|
|
393
|
+
"DateOnly": "日付のみ",
|
|
394
|
+
"Datetime": "日付",
|
|
395
|
+
"Datetime (with time zone)": "日時(タイムゾーン含む)",
|
|
396
|
+
"Datetime (without time zone)": "日時(タイムゾーンなし)",
|
|
397
|
+
"Datetime settings": "Datetime settings",
|
|
398
|
+
"Day": "日",
|
|
399
|
+
"Day before yesterday": "Day before yesterday",
|
|
400
|
+
"Day/Month/Year": "日/月/年",
|
|
401
|
+
"Default": "デフォルト",
|
|
402
|
+
"Default collapse": "デフォルト閉じる",
|
|
403
|
+
"Default collapsed": "Default collapsed",
|
|
404
|
+
"Default expand all": "Default expand all",
|
|
405
|
+
"Default filter conditions": "Default filter conditions",
|
|
406
|
+
"Default is the ID field": "デフォルトはIDフィールド",
|
|
407
|
+
"Default operator": "Default operator",
|
|
408
|
+
"Default role": "デフォルトの役割",
|
|
409
|
+
"Default sorting": "Default sorting",
|
|
410
|
+
"Default theme": "デフォルトテーマ",
|
|
411
|
+
"Default title for each record": "各レコードのデフォルトタイトル",
|
|
412
|
+
"Default value": "デフォルト値",
|
|
413
|
+
"Default value to current server time": "デフォルト値をサーバー時間に設定",
|
|
414
|
+
"Default value to current time": "デフォルト値を現在時刻に設定",
|
|
415
|
+
"Delay": "遅延実行",
|
|
416
|
+
"Delete": "削除",
|
|
417
|
+
"Delete Event": "イベントを削除",
|
|
418
|
+
"Delete action": "操作を削除",
|
|
419
|
+
"Delete block": "ブロックを削除",
|
|
420
|
+
"Delete category": "分類の削除",
|
|
421
|
+
"Delete collection": "データテーブルの削除",
|
|
422
|
+
"Delete events": "イベントを削除",
|
|
423
|
+
"Delete field": "フィールドを削除",
|
|
424
|
+
"Delete menu item": "メニュー項目を削除",
|
|
425
|
+
"Delete record": "レコード削除",
|
|
426
|
+
"Delete role": "役割を削除",
|
|
427
|
+
"Delete route": "ルートを削除",
|
|
428
|
+
"Delete routes": "ルートを削除",
|
|
429
|
+
"Delete settings": "Delete settings",
|
|
430
|
+
"Delete step": "Delete step",
|
|
431
|
+
"Delete table column": "テーブルのカラムを削除",
|
|
432
|
+
"Delete this event?": "このイベントを削除しますか?",
|
|
433
|
+
"Delete this target block": "Delete this target block",
|
|
434
|
+
"Delete variable": "Delete variable",
|
|
435
|
+
"Deny list": "Deny list",
|
|
436
|
+
"Department name": "部門名",
|
|
437
|
+
"Departments": "部門",
|
|
438
|
+
"Dependencies check": "依存関係のチェック",
|
|
439
|
+
"Dependencies check failed": "依存関係のチェックに失敗しました",
|
|
440
|
+
"Dependencies check failed, can't enable.": "依存関係のチェックに失敗しました。有効にできません。",
|
|
441
|
+
"Dependencies compatibility check": "依存関係の互換性チェック",
|
|
442
|
+
"Deprecated": "非推奨",
|
|
443
|
+
"Description": "説明",
|
|
444
|
+
"Desktop device": "デスクトップデバイス",
|
|
445
|
+
"Desktop routes": "デスクトップルート",
|
|
446
|
+
"Detail item settings": "Detail item settings",
|
|
447
|
+
"Details": "詳細",
|
|
448
|
+
"Details settings": "Details settings",
|
|
449
|
+
"Determine whether a record exists by the following fields": "次のフィールドでレコードが存在するかどうかを判断",
|
|
450
|
+
"Dialog": "ダイアログ",
|
|
451
|
+
"Direct assignment": "Direct assignment",
|
|
452
|
+
"Direct duplicate": "直接複製",
|
|
453
|
+
"Disable": "無効化",
|
|
454
|
+
"Disable manual input": "Disable manual input",
|
|
455
|
+
"Disable tabs": "タブを無効にする",
|
|
456
|
+
"Disable validation": "Disable validation",
|
|
457
|
+
"Disabled": "無効化",
|
|
458
|
+
"Disassociate": "関連付けを解除",
|
|
459
|
+
"Disassociate record": "レコードの関連付けを解除",
|
|
460
|
+
"Display <1><0>10</0><1>20</1><2>50</2><3>100</3></1> items per page": "各ページ<1><0>10</0><1>20</1><2>50</2><3>100</3></1> 件表示",
|
|
461
|
+
"Display <icon></icon> when unchecked": "未チェック時に <icon></icon> を表示",
|
|
462
|
+
"Display Field settings": "Display Field settings",
|
|
463
|
+
"Display association fields": "関連付けられたコレクションのフィールドを表示",
|
|
464
|
+
"Display data template selector": "データテンプレートセレクターを表示",
|
|
465
|
+
"Display field title": "フィールドタイトルを表示",
|
|
466
|
+
"Display fields": "表示フィールド",
|
|
467
|
+
"Display label": "Display label",
|
|
468
|
+
"Display mode": "Display mode",
|
|
469
|
+
"Display name": "表示名",
|
|
470
|
+
"Display only": "Display only",
|
|
471
|
+
"Display order number": "シリアルナンバーを表示",
|
|
472
|
+
"Display page title": "ページタイトルを表示",
|
|
473
|
+
"Display style": "Display style",
|
|
474
|
+
"Display title": "タイトルを表示",
|
|
475
|
+
"DisplayName": "表示名",
|
|
476
|
+
"Divide by": "割る",
|
|
477
|
+
"Divider line color": "区切り線の色",
|
|
478
|
+
"Do not concatenate search params in the URL": "URLに検索パラメーターを連結しない",
|
|
479
|
+
"Do not load data when filter is empty": "フィルターが空の場合、データを読み込まない",
|
|
480
|
+
"Docs": "ドキュメント",
|
|
481
|
+
"Domains ending with a . character are permitted": "Domains ending with a . character are permitted",
|
|
482
|
+
"Done": "完了",
|
|
483
|
+
"Double click": "Double click",
|
|
484
|
+
"Double click to choose entire object": "ダブルクリックして全体オブジェクトを選択",
|
|
485
|
+
"Download": "ダウンロード",
|
|
486
|
+
"Download logs": "ログをダウンロード",
|
|
487
|
+
"Drag and drop sorting field": "ドラッグ&ドロップソートフィールド",
|
|
488
|
+
"Drag and drop the file here or click to upload, file size should not exceed 30M": "ファイルをここにドラッグ&ドロップするか、クリックしてアップロードしてください。ファイルサイズは10Mを超えてはいけません",
|
|
489
|
+
"Dragging": "ドラッグ",
|
|
490
|
+
"Drawer": "ドロワー",
|
|
491
|
+
"Dropdown": "ドロップダウン",
|
|
492
|
+
"Dropdown select": "Dropdown select",
|
|
493
|
+
"Duplicate": "レプリケーション",
|
|
494
|
+
"Duplicate and continue": "コピーして続行",
|
|
495
|
+
"Duplicate mode": "コピーモード",
|
|
496
|
+
"Duplicate template": "テンプレートをコピー",
|
|
497
|
+
"Duplicating": "コピー中",
|
|
498
|
+
"Duration": "間隔",
|
|
499
|
+
"Duration (seconds, 0 = no auto close)": "Duration (seconds, 0 = no auto close)",
|
|
500
|
+
"Dynamic value": "動的値",
|
|
501
|
+
"Easy reading": "読み取り専用(読取りモード)",
|
|
502
|
+
"Easy-reading": "読取り専用(読取りモード)",
|
|
503
|
+
"Edit": "編集",
|
|
504
|
+
"Edit Title": "Edit Title",
|
|
505
|
+
"Edit block title": "ブロックタイトルを編集",
|
|
506
|
+
"Edit block title & description": "ブロックタイトルと説明の編集",
|
|
507
|
+
"Edit button": "ボタンを編集",
|
|
508
|
+
"Edit category": "分類の編集",
|
|
509
|
+
"Edit chart": "チャートを編集",
|
|
510
|
+
"Edit collection": "コレクションの編集",
|
|
511
|
+
"Edit description": "説明を編集",
|
|
512
|
+
"Edit event flows": "Edit event flows",
|
|
513
|
+
"Edit field": "フィールドの編集",
|
|
514
|
+
"Edit field title": "フィールドタイトルを編集",
|
|
515
|
+
"Edit form": "フォームを編集",
|
|
516
|
+
"Edit group title": "グループタイトルの編集",
|
|
517
|
+
"Edit link": "リンクを編集",
|
|
518
|
+
"Edit markdown": "マークダウンを編集",
|
|
519
|
+
"Edit menu item": "メニュー項目を編集",
|
|
520
|
+
"Edit page size": "Edit page size",
|
|
521
|
+
"Edit page title": "ページタイトルを編集",
|
|
522
|
+
"Edit popup": "Edit popup",
|
|
523
|
+
"Edit profile": "プロフィール",
|
|
524
|
+
"Edit record": "レコードを編集",
|
|
525
|
+
"Edit role": "ロールを編集",
|
|
526
|
+
"Edit tab": "タブを編集",
|
|
527
|
+
"Edit tooltip": "ツールチップを編集",
|
|
528
|
+
"Edit variable": "Edit variable",
|
|
529
|
+
"Editable": "編集可能",
|
|
530
|
+
"Ellipsis": "省略表示",
|
|
531
|
+
"Ellipsis overflow content": "省略記号で内容を省略",
|
|
532
|
+
"Email": "メール",
|
|
533
|
+
"Embedded": "Embedded",
|
|
534
|
+
"Empty": "くうきち",
|
|
535
|
+
"Enable": "有効化",
|
|
536
|
+
"Enable SMS authentication": "SMS認証を有効にする",
|
|
537
|
+
"Enable Scan": "Enable Scan",
|
|
538
|
+
"Enable actions": "有効な操作",
|
|
539
|
+
"Enable child collections": "启用子表",
|
|
540
|
+
"Enable click-to-open": "Enable click-to-open",
|
|
541
|
+
"Enable drag and drop sorting": "ドラッグアンドドロップによる並び替えを有効にする",
|
|
542
|
+
"Enable form data template": "フォームデータテンプレートを有効にする",
|
|
543
|
+
"Enable index column": "Enable index column",
|
|
544
|
+
"Enable link": "リンクを有効にする",
|
|
545
|
+
"Enable page header": "ページヘッダーを有効にする",
|
|
546
|
+
"Enable page tabs": "ページタブを有効にする",
|
|
547
|
+
"Enable quick edit": "Enable quick edit",
|
|
548
|
+
"Enable refresh": "Enable refresh",
|
|
549
|
+
"Enable secondary confirmation": "二重確認を有効化",
|
|
550
|
+
"Enable tabs": "Enable tabs",
|
|
551
|
+
"Enable tree table": "Enable tree table",
|
|
552
|
+
"Enable virtual scrolling": "Enable virtual scrolling",
|
|
553
|
+
"Enabled": "有効化",
|
|
554
|
+
"Enabled languages": "利用可能な言語",
|
|
555
|
+
"End": "End",
|
|
556
|
+
"End Status": "終了状態",
|
|
557
|
+
"End accessor": "End accessor",
|
|
558
|
+
"End date field": "終了日フィールド",
|
|
559
|
+
"Enter collection name": "Enter collection name",
|
|
560
|
+
"Enter end accessor": "Enter end accessor",
|
|
561
|
+
"Enter field title": "Enter field title",
|
|
562
|
+
"Enter number of rows to display": "Enter number of rows to display",
|
|
563
|
+
"Enter page title": "Enter page title",
|
|
564
|
+
"Enter placeholder text": "Enter placeholder text",
|
|
565
|
+
"Enter start accessor": "Enter start accessor",
|
|
566
|
+
"Enter title accessor": "Enter title accessor",
|
|
567
|
+
"Enter value": "Enter value",
|
|
568
|
+
"Error message": "エラーメッセージ",
|
|
569
|
+
"Event": "イベント",
|
|
570
|
+
"Event flow": "Event flow",
|
|
571
|
+
"Event selected": "Event selected",
|
|
572
|
+
"Event settings": "Event settings",
|
|
573
|
+
"Exact day": "Exact day",
|
|
574
|
+
"Execute": "実行",
|
|
575
|
+
"Execute JavaScript": "Execute JavaScript",
|
|
576
|
+
"Exists": "存在する",
|
|
577
|
+
"Expand All": "すべて展開",
|
|
578
|
+
"Expand all": "すべて展開",
|
|
579
|
+
"Expand all rows by default": "Expand all rows by default",
|
|
580
|
+
"Expand button": "Expand",
|
|
581
|
+
"Expand/Collapse": "展開と終了",
|
|
582
|
+
"Export": "エクスポート",
|
|
583
|
+
"Exportable fields": "エクスポート可能なフィールド",
|
|
584
|
+
"Expression": "表达式",
|
|
585
|
+
"Expression collection": "式コレクション",
|
|
586
|
+
"FORMULAJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/formula",
|
|
587
|
+
"Fail and exit": "失敗し終了",
|
|
588
|
+
"Failed to load plugin": "プラグインの読み込みに失敗しました",
|
|
589
|
+
"False": "偽",
|
|
590
|
+
"Feedback": "フィードバック",
|
|
591
|
+
"Field": "フィールド",
|
|
592
|
+
"Field Linkage rules": "Field Linkage rules",
|
|
593
|
+
"Field assignment": "Field assignment",
|
|
594
|
+
"Field component": "フィールドコンポーネント",
|
|
595
|
+
"Field display name": "フィールド表示名",
|
|
596
|
+
"Field interface": "フィールドタイプ",
|
|
597
|
+
"Field linkage rules": "Field linkage rules",
|
|
598
|
+
"Field mode": "フィールドコンポーネント",
|
|
599
|
+
"Field model": "Field model",
|
|
600
|
+
"Field name": "フィールド識別子",
|
|
601
|
+
"Field permission": "フィールド権限",
|
|
602
|
+
"Field settings": "Field settings",
|
|
603
|
+
"Field source": "ソースフィールド",
|
|
604
|
+
"Field title": "フィールドタイトル",
|
|
605
|
+
"Field type": "フィールドタイプ",
|
|
606
|
+
"Field value changes": "変更履歴",
|
|
607
|
+
"Field value do not meet the requirements": "フィールド値が要件を満たしていません",
|
|
608
|
+
"Field value size is": "フィールド値のサイズは",
|
|
609
|
+
"Field values must be unique.": "フィールド値は一意でなければなりません",
|
|
610
|
+
"Fields": "フィールド",
|
|
611
|
+
"Fields can only be used correctly if they are defined with an interface.": "インターフェースが定義されたフィールドのみ正常に動作します",
|
|
612
|
+
"Fields values": "フィールドの値",
|
|
613
|
+
"File manager": "ファイルマネージャー",
|
|
614
|
+
"File size exceeds the limit": "ファイルサイズが制限を超えています",
|
|
615
|
+
"File size should not exceed {{size}}.": "ファイルサイズは{{size}}を超えてはいけません。",
|
|
616
|
+
"File type is not allowed": "ファイルタイプが許可されていません",
|
|
617
|
+
"File type is not supported for previewing, please download it to preview.": "このファイル形式はプレビューに対応しておりません。ダウンロードしてご確認ください。",
|
|
618
|
+
"Fill": "フィル",
|
|
619
|
+
"Filled": "塗りつぶしスタイル",
|
|
620
|
+
"Filter": "フィルター",
|
|
621
|
+
"Filter blocks": "フィルターブロック",
|
|
622
|
+
"Filter configuration": "Filter configuration",
|
|
623
|
+
"Filter data based on the specific field, with the requirement that the field value must be unique.": "特定フィールドに基づいてデータをフィルタリングしますが、そのフィールド値は一意である必要があります。",
|
|
624
|
+
"Filter out a single piece or a group of records as a template": "単一または複数のレコードをテンプレートとしてフィルタリング",
|
|
625
|
+
"Filter target key": "フィルター対象キー",
|
|
626
|
+
"Filterable fields": "フィルタリング可能なフィールド",
|
|
627
|
+
"Find by the following fields": "次のフィールドで検索",
|
|
628
|
+
"First or create": "存在しない場合に追加",
|
|
629
|
+
"Fix block": "ブロックを固定",
|
|
630
|
+
"Fixed": "固定",
|
|
631
|
+
"Fixed to the left": "左に固定",
|
|
632
|
+
"Fixed to the right": "右に固定",
|
|
633
|
+
"Flexible popup": "フレキシブルポップアップ",
|
|
634
|
+
"Flow Page": "Modern page (v2)",
|
|
635
|
+
"Font Size(px)": "Font Size(px)",
|
|
636
|
+
"Font Style": "Font Style",
|
|
637
|
+
"Font Weight": "Font Weight",
|
|
638
|
+
"Foreign key": "外部キー",
|
|
639
|
+
"Foreign key 1": "外部キー1",
|
|
640
|
+
"Foreign key 2": "外部キー2",
|
|
641
|
+
"Form": "フォーム",
|
|
642
|
+
"Form (Add new)": "フォーム (新規追加)",
|
|
643
|
+
"Form (Edit)": "フォーム (編集)",
|
|
644
|
+
"Form UID": "Form UID",
|
|
645
|
+
"Form data templates": "フォームデータテンプレート",
|
|
646
|
+
"Form duplicate": "Form duplicate",
|
|
647
|
+
"Form field assignment": "Form field assignment",
|
|
648
|
+
"Form item settings": "Form item settings",
|
|
649
|
+
"Form settings": "Form settings",
|
|
650
|
+
"Form values": "フォームの値",
|
|
651
|
+
"Form values change": "Form values change",
|
|
652
|
+
"Form variable": "Form variable",
|
|
653
|
+
"Format": "フォーマット",
|
|
654
|
+
"Formula": "式",
|
|
655
|
+
"Formula description": "各レコードの値を、同じレコード内の他のフィールドを基に計算します。",
|
|
656
|
+
"Formula error.": "式の検証エラーです。",
|
|
657
|
+
"Formula mode": "数式モード",
|
|
658
|
+
"Formula.js supports most Microsoft Excel formula functions.": "Formula.jsはMicrosoft Excelの大半の関数をサポートしています。",
|
|
659
|
+
"Full height": "全画面表示",
|
|
660
|
+
"Full permissions": "すべての権限",
|
|
661
|
+
"Function": "機能",
|
|
662
|
+
"Gantt": "ガント図",
|
|
663
|
+
"Geek blue": "ギークブルー",
|
|
664
|
+
"General": "一般設定",
|
|
665
|
+
"General action permissions": "一般操作権限",
|
|
666
|
+
"General collection": "一般データテーブル",
|
|
667
|
+
"General configuration": "General configuration",
|
|
668
|
+
"General fields": "一般フィールド",
|
|
669
|
+
"General permissions": "一般設定",
|
|
670
|
+
"Generated automatically if left blank": "空欄のままにすると自動的に生成されます",
|
|
671
|
+
"Generic properties": "汎用プロパティ",
|
|
672
|
+
"Global action permissions": "グローバル操作権限",
|
|
673
|
+
"Global permissions": "グローバル設定",
|
|
674
|
+
"Gold": "ゴールド",
|
|
675
|
+
"Greater than": "Greater than",
|
|
676
|
+
"Green": "グリーン",
|
|
677
|
+
"Grid Card": "グリッドカード",
|
|
678
|
+
"Group": "グループ",
|
|
679
|
+
"Grouped sorting": "グループ分けソート",
|
|
680
|
+
"Grouping field": "グループフィールド",
|
|
681
|
+
"HTML content": "HTML content",
|
|
682
|
+
"Half of day": "半日",
|
|
683
|
+
"Handbook": "ユーザーマニュアル",
|
|
684
|
+
"Hidden": "非表示",
|
|
685
|
+
"Hidden (reserved value)": "非表示(値の保持)",
|
|
686
|
+
"Hidden text": "Hidden text",
|
|
687
|
+
"Hidden(reserved value)": "非表示(値の保持)",
|
|
688
|
+
"Hide": "隠す",
|
|
689
|
+
"Hide column": "列を非表示",
|
|
690
|
+
"Hide in menu": "メニューに非表示",
|
|
691
|
+
"Highlight": "ハイライト",
|
|
692
|
+
"Home page": "ホームページ",
|
|
693
|
+
"Homepage": "ホームページ",
|
|
694
|
+
"Horizontal": "水平方向",
|
|
695
|
+
"Hour": "時間",
|
|
696
|
+
"Html settings": "Html settings",
|
|
697
|
+
"IANA registry": "IANA registry",
|
|
698
|
+
"ID": "ID",
|
|
699
|
+
"Icon": "アイコン",
|
|
700
|
+
"Icon only": "Icon only",
|
|
701
|
+
"Identifier for program usage. Support letters, numbers and underscores, must start with an letter.": "プログラム使用のための識別子。文字、数字、...",
|
|
702
|
+
"If a collection lacks a primary key, you must configure a unique record key to locate row records within a block, failure to configure this will prevent the creation of data blocks for the collection.": "コレクションにプライマリキーがない場合、行レコードを特定するためのユニークキーを設定する必要があります。設定しないと、コレクションのデータブロックが作成できません。",
|
|
703
|
+
"If collection inherits, choose inherited collections as templates": "コレクションが継承されている場合、継承されたコレクションをテンプレートとして選択してください",
|
|
704
|
+
"If selected, the page will display Tab pages.": "選択されている場合、ページはタブページを表示します。",
|
|
705
|
+
"If selected, the route will be displayed in the menu.": "選択されている場合、ルートはメニューに表示されます。",
|
|
706
|
+
"If the compatibility check fails, you should change the dependent version to meet the version requirements.": "互換性チェックに失敗した場合は、依存関係のバージョンを変更して、バージョン要件を満たす必要があります。",
|
|
707
|
+
"Ignore invalid email length errors": "Ignore invalid email length errors",
|
|
708
|
+
"Imperative Drawer": "Imperative Drawer",
|
|
709
|
+
"Import": "インポート",
|
|
710
|
+
"Importable fields": "インポート可能なフィールド",
|
|
711
|
+
"In configuration": "設定中",
|
|
712
|
+
"In configuration mode, the entire column becomes transparent. In non-configuration mode, the entire column will be hidden. Even if the entire column is hidden, its configured default values and other settings will still take effect.": "設定モードでは、列全体が透明になります。非設定モードでは、列全体が非表示になります。列全体が非表示になっても、設定されたデフォルト値やその他の設定は依然として有効です。",
|
|
713
|
+
"Incomplete uploading files need to be resolved": "未完了のアップロードファイルを処理する必要があります",
|
|
714
|
+
"Index": "インデックス",
|
|
715
|
+
"Individual": "個別設定",
|
|
716
|
+
"Inherited fields": "継承フィールド",
|
|
717
|
+
"Inherited template": "継承テンプレート",
|
|
718
|
+
"Inherits": "継承",
|
|
719
|
+
"Inner": "内部",
|
|
720
|
+
"Input": "Input",
|
|
721
|
+
"Input +, -, *, /, ( ) to calculate, input @ to open field variables.": "+、-、*、/、( ) で算術演算、@でフィールド変数を開くことができます。",
|
|
722
|
+
"Input request data": "Input request data",
|
|
723
|
+
"Insert": "作成",
|
|
724
|
+
"Insert above": "上に挿入",
|
|
725
|
+
"Insert after": "後ろに挿入",
|
|
726
|
+
"Insert before": "前に挿入",
|
|
727
|
+
"Insert below": "下に挿入",
|
|
728
|
+
"Insert if not exists": "存在しない場合に挿入",
|
|
729
|
+
"Insert if not exists, or update": "存在しない場合に挿入、さもなくば更新",
|
|
730
|
+
"Insert inner": "中に挿入",
|
|
731
|
+
"Insert left": "左に挿入",
|
|
732
|
+
"Insert right": "右に挿入",
|
|
733
|
+
"Installing": "インストール中",
|
|
734
|
+
"Integer": "整数",
|
|
735
|
+
"Invalid JSON format": "不正なJSONフォーマット",
|
|
736
|
+
"Inverse field display name": "逆フィールド表示名",
|
|
737
|
+
"Inverse field name": "逆フィールド名",
|
|
738
|
+
"Inverse relationship type": "逆関連付けタイプ",
|
|
739
|
+
"Italic": "Italic",
|
|
740
|
+
"Junction collection": "中間コレクション",
|
|
741
|
+
"Kanban": "かんばん",
|
|
742
|
+
"Label": "Label",
|
|
743
|
+
"Label align": "ラベル配置",
|
|
744
|
+
"Label field": "ラベルフィールド",
|
|
745
|
+
"Label width": "ラベル幅",
|
|
746
|
+
"Language": "言語",
|
|
747
|
+
"Large": "ラージ",
|
|
748
|
+
"Large screen device": "大画面デバイス",
|
|
749
|
+
"Last 30 days": "過去 30 日間",
|
|
750
|
+
"Last 7 days": "過去 7 日間",
|
|
751
|
+
"Last 90 days": "過去 90 日間",
|
|
752
|
+
"Last Month": "Last Month",
|
|
753
|
+
"Last Quarter": "Last Quarter",
|
|
754
|
+
"Last Week": "Last Week",
|
|
755
|
+
"Last Year": "Last Year",
|
|
756
|
+
"Last month": "先月",
|
|
757
|
+
"Last quarter": "前四半期",
|
|
758
|
+
"Last updated": "最終更新",
|
|
759
|
+
"Last updated at": "最終更新日",
|
|
760
|
+
"Last updated by": "最終更新者",
|
|
761
|
+
"Last week": "先週",
|
|
762
|
+
"Last year": "去年",
|
|
763
|
+
"Layout": "レイアウト",
|
|
764
|
+
"Leave it blank, unless you need a custom intermediate table": "カスタム中間テーブルが必要でない限り、デフォルトで空白のままにします",
|
|
765
|
+
"Left": "左揃え",
|
|
766
|
+
"Left fixed": "左に固定",
|
|
767
|
+
"Length": "長さ",
|
|
768
|
+
"Less than": "Less than",
|
|
769
|
+
"License": "ライセンス",
|
|
770
|
+
"Lime": "ライム",
|
|
771
|
+
"Limit": "Limit",
|
|
772
|
+
"Line break": "改行",
|
|
773
|
+
"Line chart": "折れ線グラフ",
|
|
774
|
+
"Link": "リンク",
|
|
775
|
+
"Link action settings": "Link action settings",
|
|
776
|
+
"Link to": "リンク",
|
|
777
|
+
"Link to description": "コレクションの関連付けを素早く作成するためにしようされ、ほとんどの一般的なシナリオに対応しています。開発者以外の方のしようにも適しています。フィールドとして存在する場合、参照元コレクションのレコードを選択するために使用されるドロップダウンです。一度作成されると、参照先コレクションに現在のコレクションの関連フィールドが同時に生成されます。",
|
|
778
|
+
"Linkage rule": "連動規則",
|
|
779
|
+
"Linkage rules": "連動規則",
|
|
780
|
+
"Linkage with form fields": "フォームデータから連動",
|
|
781
|
+
"List": "リスト",
|
|
782
|
+
"Load all data when filter is empty": "フィルターが空の場合、すべてのデータを読み込む",
|
|
783
|
+
"Load collections": "Load collections",
|
|
784
|
+
"Local": "ローカル",
|
|
785
|
+
"Log in with an existing account": "既存のアカウントでログイン",
|
|
786
|
+
"Logging and monitoring": "ログおよび監視",
|
|
787
|
+
"Logo": "ロゴ",
|
|
788
|
+
"Long text": "長文テキスト",
|
|
789
|
+
"MATHJS_DOC_URL": "https://v2.docs.nocobase.com/calculation-engine/math",
|
|
790
|
+
"Magenta": "マゼンタ",
|
|
791
|
+
"Main": "メイン",
|
|
792
|
+
"Main department": "主要部門",
|
|
793
|
+
"Manage all settings": "すべての設定を管理",
|
|
794
|
+
"Manually close": "手動で閉じる",
|
|
795
|
+
"Many to many": "多対多",
|
|
796
|
+
"Many to many description": "これは多対多の関係を作成するために使用されます。例えば、生徒は複数の教師を持ち、教師は複数の生徒を持つことになります。 フィールドとして存在する場合、参照先コレクションのレコードを選択するために使用されるドロップダウン選択です。",
|
|
797
|
+
"Many to one": "多対1",
|
|
798
|
+
"Many to one description": "これは多対一の関係を作るために使われます。例えば、都市は1つの国にしか属さず、国は複数の都市を持つことができます。 フィールドとして存在する場合、参照先コレクションのレコードを選択するために使用されるドロップダウンです。 一度作成されると、対象の参照先コレクションに多対一のフィールドが自動的に生成されます。",
|
|
799
|
+
"Markdown": "マークダウン",
|
|
800
|
+
"Marketplace": "マーケットプレイス",
|
|
801
|
+
"Math.js comes with a large set of built-in functions and constants, and offers an integrated solution to work with different data types.": "Math.jsには多くの組み込み関数と定数があり、異なるデータ型を扱うための統合ソリューションを提供します。",
|
|
802
|
+
"Max Domain Segments": "Max Domain Segments",
|
|
803
|
+
"Max length": "最大長さ",
|
|
804
|
+
"Max length must greater than min length": "最大値は最小値より大きくなくてはなりません",
|
|
805
|
+
"Max value": "Max value",
|
|
806
|
+
"MaxDate": "最大日付",
|
|
807
|
+
"Maximum": "最大值",
|
|
808
|
+
"Maximum must greater than minimum": "最大値は最小値より大きくなければなりません",
|
|
809
|
+
"Media": "メディア",
|
|
810
|
+
"Medium": "Medium",
|
|
811
|
+
"Meet": "Meet",
|
|
812
|
+
"Meet <1><0>All</0><1>Any</1></1> conditions in the group": "グループ内の<1><0>すべて</0><1>一部</1></1> の条件を満たす",
|
|
813
|
+
"Menu": "メニュー",
|
|
814
|
+
"Menu item icon": "メニュー項目アイコン",
|
|
815
|
+
"Menu item name": "メニュー項目名",
|
|
816
|
+
"Menu item title": "メニュー項目名",
|
|
817
|
+
"Menu permissions": "メニューアクセス権限",
|
|
818
|
+
"Message content": "Message content",
|
|
819
|
+
"Message popup close method": "メッセージポップアップの閉じ方",
|
|
820
|
+
"Message type": "Message type",
|
|
821
|
+
"Middle": "ミドル",
|
|
822
|
+
"Millisecond": "ミリ秒",
|
|
823
|
+
"Min Domain Segments": "Min Domain Segments",
|
|
824
|
+
"Min length": "最小長さ",
|
|
825
|
+
"Min length must less than max length": "最小値は最大値より小さくなくてはなりません",
|
|
826
|
+
"Min value": "Min value",
|
|
827
|
+
"MinDate": "最小日付",
|
|
828
|
+
"Minimum": "最小值",
|
|
829
|
+
"Minimum must less than maximum": "最小値は最大値より小さくなければなりません",
|
|
830
|
+
"Mobile": "Mobile",
|
|
831
|
+
"Mobile routes": "モバイルルート",
|
|
832
|
+
"Modal": "Modal",
|
|
833
|
+
"Modal add": "ポップアップ窓の追加",
|
|
834
|
+
"Mode": "Mode",
|
|
835
|
+
"Modern page (v2)": "Modern page (v2)",
|
|
836
|
+
"Month": "月",
|
|
837
|
+
"Monthly": "毎月",
|
|
838
|
+
"More details": "詳細",
|
|
839
|
+
"More options": "その他のオプション",
|
|
840
|
+
"Move down": "Move down",
|
|
841
|
+
"Move to": "移動",
|
|
842
|
+
"Move up": "Move up",
|
|
843
|
+
"Move {{title}} to": "{{title}} を移動",
|
|
844
|
+
"Multiple": "Multiple",
|
|
845
|
+
"Multiple select": "ドロップダウン(複数選択)",
|
|
846
|
+
"Multiply by": "掛ける",
|
|
847
|
+
"Must be 1-50 characters in length (excluding @.<>\"'/)": "1〜50文字で、@.<>\"'/は使用できません",
|
|
848
|
+
"Must select to the last level": "最後のレベルまで選択する必要があります",
|
|
849
|
+
"Must use `-` and `:`": "Must use `-` and `:`",
|
|
850
|
+
"N/A": "N/A",
|
|
851
|
+
"NaN": "なし",
|
|
852
|
+
"Name": "名称",
|
|
853
|
+
"Navigate": "ページネーション",
|
|
854
|
+
"Navigate to URL": "Navigate to URL",
|
|
855
|
+
"New menu items are allowed to be accessed by default.": "新しいメニュー項目を追加すると、デフォルトでアクセスが許可されます",
|
|
856
|
+
"New password": "新しいパスワード",
|
|
857
|
+
"New plugin": "新しいプラグイン",
|
|
858
|
+
"New routes are allowed to be accessed by default": "新しいルートはデフォルトでアクセス可能",
|
|
859
|
+
"Next": "Next",
|
|
860
|
+
"Next 30 days": "次の 30 日間",
|
|
861
|
+
"Next 7 days": "次の 7 日間",
|
|
862
|
+
"Next 90 days": "次の 90 日間",
|
|
863
|
+
"Next Month": "Next Month",
|
|
864
|
+
"Next Quarter": "Next Quarter",
|
|
865
|
+
"Next Week": "Next Week",
|
|
866
|
+
"Next Year": "Next Year",
|
|
867
|
+
"Next month": "来月",
|
|
868
|
+
"Next quarter": "来四半期",
|
|
869
|
+
"Next week": "来週",
|
|
870
|
+
"Next year": "来年",
|
|
871
|
+
"Nickname": "ニックネーム",
|
|
872
|
+
"No": "いいえ",
|
|
873
|
+
"No CHANGELOG.md file": "CHANGELOG.mdファイルがありません",
|
|
874
|
+
"No README.md file": "README.mdファイルがありません",
|
|
875
|
+
"No allow `-` and `:`": "No allow `-` and `:`",
|
|
876
|
+
"No assigned fields configured": "No assigned fields configured",
|
|
877
|
+
"No blocks to connect": "接続するブロックがありません",
|
|
878
|
+
"No configuration available.": "設定可能な項目がありません。",
|
|
879
|
+
"No data": "データがありません",
|
|
880
|
+
"No event flows": "No event flows",
|
|
881
|
+
"No form available for reset.": "No form available for reset.",
|
|
882
|
+
"No form available for submission.": "No form available for submission.",
|
|
883
|
+
"No linkage rules": "No linkage rules",
|
|
884
|
+
"No pages yet, please configure first": "まだページがありません。最初に設定してください",
|
|
885
|
+
"No parent popup": "No parent popup",
|
|
886
|
+
"No records selected for bulk edit": "No records selected for bulk edit",
|
|
887
|
+
"No records selected for deletion": "No records selected for deletion",
|
|
888
|
+
"No resource or record selected for deletion": "No resource or record selected for deletion",
|
|
889
|
+
"No resource selected for bulk edit": "No resource selected for bulk edit",
|
|
890
|
+
"No resource selected for deletion": "No resource selected for deletion",
|
|
891
|
+
"No resource selected for refresh": "No resource selected for refresh",
|
|
892
|
+
"None": "なし",
|
|
893
|
+
"Normal": "通常",
|
|
894
|
+
"Not Fixed": "固定解除",
|
|
895
|
+
"Not enabled": "有効になっていません",
|
|
896
|
+
"Not fixed": "固定されていない",
|
|
897
|
+
"Not required": "必須ではありません",
|
|
898
|
+
"Notification": "通知",
|
|
899
|
+
"Notification description": "Notification description",
|
|
900
|
+
"Notification title": "Notification title",
|
|
901
|
+
"Notification type": "Notification type",
|
|
902
|
+
"Now": "現在",
|
|
903
|
+
"Npm package": "Npmパッケージ",
|
|
904
|
+
"Npm package name": "Npmパッケージ名",
|
|
905
|
+
"Null": "ヌル",
|
|
906
|
+
"Number": "数値",
|
|
907
|
+
"Number settings": "Number settings",
|
|
908
|
+
"Object Fit": "オブジェクトフィット",
|
|
909
|
+
"Off": "無効化",
|
|
910
|
+
"Official plugin": "公式プラグイン",
|
|
911
|
+
"Old password": "現在のパスワード",
|
|
912
|
+
"On": "有効化",
|
|
913
|
+
"One to many": "1対多",
|
|
914
|
+
"One to many description": "1対多の関係を作成するために使用します。例えば、国には多くの都市があり、都市は1つの国にしか存在できません。フィールドとして存在する場合、それは参照先コレクションのレコードを表示するために使用されるサブテーブルです。作成されると、多対一のフィールドが参照先コレクションに自動的に生成されます。",
|
|
915
|
+
"One to one": "1対1",
|
|
916
|
+
"One to one (belongs to)": "1対1 (belongs to)",
|
|
917
|
+
"One to one (has one)": "1対1 (has one)",
|
|
918
|
+
"One to one description": "1対1の関係を作成するために使用します。例えば、1つのユーザーは1つのプロファイルを持つことになります。",
|
|
919
|
+
"Only support standard JSON data": "Only support standard JSON data",
|
|
920
|
+
"Only the selected fields will be used as the initialization data for the form": "選択したフィールドのみがフォームの初期化データとして使用されます",
|
|
921
|
+
"Only use `-`": "Only use `-`",
|
|
922
|
+
"Only use `.`": "Only use `.`",
|
|
923
|
+
"Only use `_`": "Only use `_`",
|
|
924
|
+
"Open in new window": "新しいウィンドウで開く",
|
|
925
|
+
"Open in<1><0>Modal</0><1>Drawer</1><2>Window</2></1>": "<1><0>モーダル</0><1>ドロワー</1><2>ウィンドウ</2></1>で開く",
|
|
926
|
+
"Open mode": "オープンモード",
|
|
927
|
+
"Open mode configuration": "Open mode configuration",
|
|
928
|
+
"Operate on existing data": "既存のデータを操作する",
|
|
929
|
+
"Operate on new data": "新規データを操作する",
|
|
930
|
+
"Operation failed": "操作に失敗しました",
|
|
931
|
+
"Operation succeeded": "操作が成功しました",
|
|
932
|
+
"Operator": "演算子",
|
|
933
|
+
"Option label": "オプション ラベル",
|
|
934
|
+
"Option value": "オプション 値",
|
|
935
|
+
"Options": "オプション",
|
|
936
|
+
"Orange": "オレンジ",
|
|
937
|
+
"Original field title: ": "元のフィールドタイトル: ",
|
|
938
|
+
"Original name": "元の名称",
|
|
939
|
+
"Original title: ": "元のタイトル: ",
|
|
940
|
+
"Other": "その他",
|
|
941
|
+
"Other action": "Other action",
|
|
942
|
+
"Other block": "Other block",
|
|
943
|
+
"Other blocks": "その他のブロック",
|
|
944
|
+
"Other chart": "その他のグラフ",
|
|
945
|
+
"Other collections": "他のコレクション",
|
|
946
|
+
"Other column": "Other column",
|
|
947
|
+
"Other form": "Other form",
|
|
948
|
+
"Other records": "他のレコード",
|
|
949
|
+
"Others": "その他",
|
|
950
|
+
"Outlined": "アウトラインスタイル",
|
|
951
|
+
"Override": "書き換え",
|
|
952
|
+
"Override field": "フィールドの上書き",
|
|
953
|
+
"Oversized": "特大",
|
|
954
|
+
"Own records": "自身が所有するレコード",
|
|
955
|
+
"Owners": "責任者",
|
|
956
|
+
"PK & FK fields": "PK & FKフィールド",
|
|
957
|
+
"Package name": "パッケージ名",
|
|
958
|
+
"PackageName": "パッケージ名",
|
|
959
|
+
"Page": "ページ",
|
|
960
|
+
"Page (v2)": "Page (v2)",
|
|
961
|
+
"Page Title": "Page Title",
|
|
962
|
+
"Page number": "ページ番号",
|
|
963
|
+
"Page settings": "Page settings",
|
|
964
|
+
"Page size": "ページサイズ",
|
|
965
|
+
"Parent": "親",
|
|
966
|
+
"Parent ID": "親ID",
|
|
967
|
+
"Parent collection fields": "親コレクションフィールド",
|
|
968
|
+
"Parent object": "親オブジェクト",
|
|
969
|
+
"Parent popup": "Parent popup",
|
|
970
|
+
"Parent popup record": "親ポップアップレコード",
|
|
971
|
+
"Parent record": "親レコード",
|
|
972
|
+
"Password": "パスワード",
|
|
973
|
+
"Password Options": "Password Options",
|
|
974
|
+
"Password mismatch": "パスワードが一致しません",
|
|
975
|
+
"Past": "Past",
|
|
976
|
+
"Path": "パス",
|
|
977
|
+
"Pattern": "パターン",
|
|
978
|
+
"Percent": "パーセント",
|
|
979
|
+
"Perform the Custom request": "カスタムリクエストを実行する",
|
|
980
|
+
"Perform the Refresh": "リフレッシュを実行する",
|
|
981
|
+
"Perform the Submit": "サブミットを実行する",
|
|
982
|
+
"Perform the Trigger workflow": "ワークフロートリガーを実行する",
|
|
983
|
+
"Perform the Update record": "レコード更新を実行する",
|
|
984
|
+
"Perform the {{title}}": "{{title}}を実行",
|
|
985
|
+
"Permission deined": "アクセス拒否",
|
|
986
|
+
"Permission denied": "権限が拒否されました",
|
|
987
|
+
"Permission policy": "権限ポリシー",
|
|
988
|
+
"Phone": "電話番号",
|
|
989
|
+
"Phone device": "携帯デバイス",
|
|
990
|
+
"Picker": "ピッカー",
|
|
991
|
+
"Pie chart": "円グラフ",
|
|
992
|
+
"Pin to left": "左に固定",
|
|
993
|
+
"Pin to right": "右に固定",
|
|
994
|
+
"Placeholder": "Placeholder",
|
|
995
|
+
"Placement": "Placement",
|
|
996
|
+
"Please add a data block on the page first": "Please add a data block on the page first",
|
|
997
|
+
"Please add or select record": "レコードを追加または選択してください",
|
|
998
|
+
"Please configure the URL": "URLを設定してください",
|
|
999
|
+
"Please configure the duplicate fields": "コピーするフィールドを設定してください",
|
|
1000
|
+
"Please confirm the SQL statement first": "SQL 文を確認してください",
|
|
1001
|
+
"Please enter form uid": "Please enter form uid",
|
|
1002
|
+
"Please enter the target block UID": "Please enter the target block UID",
|
|
1003
|
+
"Please enter variable identifier": "Please enter variable identifier",
|
|
1004
|
+
"Please enter variable title": "Please enter variable title",
|
|
1005
|
+
"Please fill in the iframe URL": "iframe URLを入力してください",
|
|
1006
|
+
"Please input message content": "Please input message content",
|
|
1007
|
+
"Please input notification description": "Please input notification description",
|
|
1008
|
+
"Please input notification title": "Please input notification title",
|
|
1009
|
+
"Please input target action uid": "Please input target action uid",
|
|
1010
|
+
"Please input target block uid": "Please input target block uid",
|
|
1011
|
+
"Please input target form uid": "Please input target form uid",
|
|
1012
|
+
"Please select": "Please select",
|
|
1013
|
+
"Please select field": "Please select field",
|
|
1014
|
+
"Please select fields": "Please select fields",
|
|
1015
|
+
"Please select fields to filter": "Please select fields to filter",
|
|
1016
|
+
"Please select filterable fields": "Please select filterable fields",
|
|
1017
|
+
"Please select state": "Please select state",
|
|
1018
|
+
"Please select the records to be updated": "更新するレコードを選択してください",
|
|
1019
|
+
"Please select time or variable": "時間または変数を選択してください",
|
|
1020
|
+
"Please use a valid SELECT or WITH AS statement": "有効な SELECT または WITH AS 文を使用してください",
|
|
1021
|
+
"Plugin": "プラグイン",
|
|
1022
|
+
"Plugin Zip File": "プラグインZipファイル",
|
|
1023
|
+
"Plugin dependencies check failed": "プラグインの依存関係のチェックに失敗しました",
|
|
1024
|
+
"Plugin dependencies check failed, you should change the dependent version to meet the version requirements.": "プラグインの依存関係チェックに失敗しました。依存バージョンを変更して要件を満たしてください。",
|
|
1025
|
+
"Plugin dependency version mismatch": "プラグインの依存バージョンが一致しません",
|
|
1026
|
+
"Plugin loading failed. Please check the server logs.": "プラグインのロードに失敗しました。サーバーログを確認してください。",
|
|
1027
|
+
"Plugin manager": "プラグイン管理",
|
|
1028
|
+
"Plugin name": "プラグイン名",
|
|
1029
|
+
"Plugin settings": "プラグイン設定",
|
|
1030
|
+
"Plugin settings permissions": "中央権限の設定",
|
|
1031
|
+
"Plugin source": "プラグインソース",
|
|
1032
|
+
"Plugin starting...": "プラグインを起動しています...",
|
|
1033
|
+
"Plugin stopping...": "プラグインを停止しています...",
|
|
1034
|
+
"Plugin tab name": "プラグインタブ名",
|
|
1035
|
+
"Plugin's version": "プラグインのバージョン",
|
|
1036
|
+
"Pop-up": "ポップアップ",
|
|
1037
|
+
"Popup": "ポップアップ",
|
|
1038
|
+
"Popup close method": "ポップアップを閉じる方法",
|
|
1039
|
+
"Popup form": "ポップアップフォーム",
|
|
1040
|
+
"Popup message": "ポップアップメッセージ",
|
|
1041
|
+
"Popup record": "Popup record",
|
|
1042
|
+
"Popup settings": "Popup settings",
|
|
1043
|
+
"Popup size": "ポップアップサイズ",
|
|
1044
|
+
"Popup uid": "Popup UID",
|
|
1045
|
+
"Position": "位置",
|
|
1046
|
+
"Precision": "精度",
|
|
1047
|
+
"Precision(UI)": "Precision(UI)",
|
|
1048
|
+
"Prefix": "接頭辞",
|
|
1049
|
+
"Preset fields": "プリセットフィールド",
|
|
1050
|
+
"Prettify": "整形",
|
|
1051
|
+
"Preview": "プレビュー",
|
|
1052
|
+
"Preview Settings": "Preview Settings",
|
|
1053
|
+
"Preview field component": "Preview field component",
|
|
1054
|
+
"Primary": "主キー",
|
|
1055
|
+
"Primary key, unique identifier, self growth": "主キー、ユニークID、自動増加",
|
|
1056
|
+
"Print": "印刷",
|
|
1057
|
+
"Problematic": "問題あり",
|
|
1058
|
+
"Progress field": "進捗フィールド",
|
|
1059
|
+
"Properties": "属性#ゾクセイ#",
|
|
1060
|
+
"Providing certain collections as options for users, typically used in polymorphic or inheritance scenarios": "ユーザーに提供する特定のコレクションは多態性や継承シナリオで使用されます。",
|
|
1061
|
+
"Province": "州",
|
|
1062
|
+
"Province/city/area name": "都道府県/市区町村名",
|
|
1063
|
+
"Purple": "パープル",
|
|
1064
|
+
"Quarter": "四半期",
|
|
1065
|
+
"Quarter of day": "四分の一日",
|
|
1066
|
+
"QuarterYear": "四半期",
|
|
1067
|
+
"Quick add": "すばやい",
|
|
1068
|
+
"Quick create": "クイック作成",
|
|
1069
|
+
"Quick duplicate": "今すぐコピー",
|
|
1070
|
+
"Quick upload": "クイックアップロード",
|
|
1071
|
+
"Radio group": "ラジオボタングループ",
|
|
1072
|
+
"Randomly generated and can be modified. Support letters, numbers and underscores, must start with an letter.": "ランダムに生成され、変更可能です。 アルファベット、数字、アンダースコアをサポートし、アルファベットから始まる必要があります。",
|
|
1073
|
+
"Read only": "読み取り専用(編集不可)",
|
|
1074
|
+
"ReadOnly": "ReadOnly",
|
|
1075
|
+
"ReadPretty": "ReadPretty",
|
|
1076
|
+
"Readme": "README",
|
|
1077
|
+
"Readonly": "読み取り専用(編集不可)",
|
|
1078
|
+
"Recommended": "Recommended",
|
|
1079
|
+
"Record ID": "レコード ID",
|
|
1080
|
+
"Record deleted successfully": "Record deleted successfully",
|
|
1081
|
+
"Record picker": "レコードピッカー",
|
|
1082
|
+
"Record unique key": "レコードのユニークキー",
|
|
1083
|
+
"RecordPicker settings": "RecordPicker settings",
|
|
1084
|
+
"Records can be sorted": "ソート可能",
|
|
1085
|
+
"Records per page": "ページごとのレコード数",
|
|
1086
|
+
"Red": "レッド",
|
|
1087
|
+
"Redirect to": "リダイレクトする",
|
|
1088
|
+
"Reference template": "テンプレートを参照",
|
|
1089
|
+
"References": "References",
|
|
1090
|
+
"Refresh": "リフレッシュ",
|
|
1091
|
+
"Refresh data after execution": "Refresh data after execution",
|
|
1092
|
+
"Refresh data blocks": "データブロックを更新",
|
|
1093
|
+
"Refresh data on action": "アクション時にデータを更新",
|
|
1094
|
+
"Refresh data on close": "閉じるとデータを更新",
|
|
1095
|
+
"Refresh target blocks": "Refresh target blocks",
|
|
1096
|
+
"Regular Expression": "Regular Expression",
|
|
1097
|
+
"Regular expression": "正規表現",
|
|
1098
|
+
"Related collection": "関連付けコレクション",
|
|
1099
|
+
"Relation": "関連づけ",
|
|
1100
|
+
"Relationship blocks": "関連付けされたブロック",
|
|
1101
|
+
"Relationship type": "関連付けタイプ",
|
|
1102
|
+
"Reload application": "アプリケーションを再読み込み",
|
|
1103
|
+
"Remains the same": "変更なし",
|
|
1104
|
+
"Remove": "削除",
|
|
1105
|
+
"Render Failed": "レンダリングに失敗しました",
|
|
1106
|
+
"Render mode": "Render mode",
|
|
1107
|
+
"Repeats": "繰り返し",
|
|
1108
|
+
"Request API": "リクエスト API",
|
|
1109
|
+
"Request URL": "リクエスト URL",
|
|
1110
|
+
"Request body": "リクエスト ボディ",
|
|
1111
|
+
"Request headers": "リクエスト ヘッダ",
|
|
1112
|
+
"Request method": "リクエスト メソッド",
|
|
1113
|
+
"Request query parameters": "リクエスト クエリ パラメータ",
|
|
1114
|
+
"Request settings": "リクエスト設定",
|
|
1115
|
+
"Request success": "リスエスト成功",
|
|
1116
|
+
"Required": "必須",
|
|
1117
|
+
"Reset": "リセット",
|
|
1118
|
+
"Reset link expiration": "リンクの有効期限をリセット",
|
|
1119
|
+
"Response record": "Response record",
|
|
1120
|
+
"Response type": "Response type",
|
|
1121
|
+
"Restart": "再起動",
|
|
1122
|
+
"Restart application": "アプリケーションを再起動",
|
|
1123
|
+
"Restrict only relative URIs": "Restrict only relative URIs",
|
|
1124
|
+
"Result": "結果",
|
|
1125
|
+
"Retry after {{count}} seconds": "{{count}} 秒後に再試行",
|
|
1126
|
+
"Return to the main application": "メインアプリケーションに戻る",
|
|
1127
|
+
"Return to the previous popup or page": "前のポップアップ/ページに戻る",
|
|
1128
|
+
"Rich Text": "リッチテキスト",
|
|
1129
|
+
"Right": "右",
|
|
1130
|
+
"Right fixed": "右に固定",
|
|
1131
|
+
"Role UID": "役割ID",
|
|
1132
|
+
"Role display name": "役割名",
|
|
1133
|
+
"Role name": "役割名",
|
|
1134
|
+
"Roles": "役割",
|
|
1135
|
+
"Roles & Permissions": "役割と権限",
|
|
1136
|
+
"Route name": "ルート名",
|
|
1137
|
+
"Route permissions": "ルートの権限",
|
|
1138
|
+
"Routes": "ルート",
|
|
1139
|
+
"Row click": "Row click",
|
|
1140
|
+
"Rows": "Rows",
|
|
1141
|
+
"SQL collection": "SQLコレクション",
|
|
1142
|
+
"Save": "保存",
|
|
1143
|
+
"Save action": "操作を保存",
|
|
1144
|
+
"Save as block template": "ブロックテンプレートとして保存",
|
|
1145
|
+
"Save as inherited template": "継承テンプレートとして保存",
|
|
1146
|
+
"Save as reference template": "参照テンプレートとして保存",
|
|
1147
|
+
"Save as template": "テンプレートとして保存",
|
|
1148
|
+
"Save conditions": "条件を保存",
|
|
1149
|
+
"Save failed": "Save failed",
|
|
1150
|
+
"Save mode": "保存方法",
|
|
1151
|
+
"Save record": "レコードを保存",
|
|
1152
|
+
"Saved successfully": "保存に成功しました",
|
|
1153
|
+
"Scale": "Scale",
|
|
1154
|
+
"Scale Down": "スケールダウン",
|
|
1155
|
+
"Scan to input": "Scan to input",
|
|
1156
|
+
"Scheme": "Scheme",
|
|
1157
|
+
"Scientifix notation": "科学的表記",
|
|
1158
|
+
"Scope name": "スコープ名",
|
|
1159
|
+
"Screen size": "スクリーンサイズ",
|
|
1160
|
+
"Search": "検索",
|
|
1161
|
+
"Search and select collection": "コレクションを検索して選択",
|
|
1162
|
+
"Search collections...": "Search collections...",
|
|
1163
|
+
"Search parameters": "検索パラメーター",
|
|
1164
|
+
"Search plugin": "プラグインを検索",
|
|
1165
|
+
"Search plugin...": "プラグインを検索...",
|
|
1166
|
+
"Second": "秒",
|
|
1167
|
+
"Secondary confirmation": "二次確認",
|
|
1168
|
+
"Security": "セキュリティ",
|
|
1169
|
+
"Select": "選択",
|
|
1170
|
+
"Select a source field to use metadata of the field": "Select a source field to use metadata of the field",
|
|
1171
|
+
"Select a variable": "変数を選択",
|
|
1172
|
+
"Select all": "すべて選択",
|
|
1173
|
+
"Select an existing piece of data as the initialization data for the form": "既存のデータを選択して、フォームの初期化データとして使用します",
|
|
1174
|
+
"Select collection": "コレクションを選択してください",
|
|
1175
|
+
"Select data blocks to refresh": "データブロックを選択して更新",
|
|
1176
|
+
"Select data source": "データソースを選択",
|
|
1177
|
+
"Select date": "Select date",
|
|
1178
|
+
"Select field": "フィールドを選択してください",
|
|
1179
|
+
"Select file": "ファイルを選択",
|
|
1180
|
+
"Select form fields": "Select form fields",
|
|
1181
|
+
"Select grouping field": "グループフィールドを選択してください",
|
|
1182
|
+
"Select icon": "アイコンを選択してください",
|
|
1183
|
+
"Select level": "レベルを選択",
|
|
1184
|
+
"Select mode": "Select mode",
|
|
1185
|
+
"Select record": "レコードを選択",
|
|
1186
|
+
"Select status": "状態を選択してください",
|
|
1187
|
+
"Select target action": "Select target action",
|
|
1188
|
+
"Select target block": "Select target block",
|
|
1189
|
+
"Select target form block": "Select target form block",
|
|
1190
|
+
"Select template": "テンプレートを選択してください",
|
|
1191
|
+
"Select trigger event": "Select trigger event",
|
|
1192
|
+
"Select variable": "Select variable",
|
|
1193
|
+
"Select view": "ビューの切り替え",
|
|
1194
|
+
"Selected": "選択済み",
|
|
1195
|
+
"Selected Collections": "Selected Collections",
|
|
1196
|
+
"Selected records deleted successfully": "Selected records deleted successfully",
|
|
1197
|
+
"Selector": "セレクタ",
|
|
1198
|
+
"Selector mode": "セレクターモード",
|
|
1199
|
+
"Selector setting": "Selector setting",
|
|
1200
|
+
"Send code": "認証コードを送信",
|
|
1201
|
+
"Separate multiple values with comma or Enter": "Separate multiple values with comma or Enter",
|
|
1202
|
+
"Separator": "区切り",
|
|
1203
|
+
"Set Template Engine": "テンプレートエンジンを設定",
|
|
1204
|
+
"Set action state": "Set action state",
|
|
1205
|
+
"Set block height": "ブロックの高さを設定",
|
|
1206
|
+
"Set block layout": "ブロックレイアウトを設定",
|
|
1207
|
+
"Set block state": "Set block state",
|
|
1208
|
+
"Set button state": "Set button state",
|
|
1209
|
+
"Set condition": "Set condition",
|
|
1210
|
+
"Set data loading mode": "データ読み込みモードの設定",
|
|
1211
|
+
"Set data scope": "Set data scope",
|
|
1212
|
+
"Set default sorting rules": "デフォルトのソートルールを設定",
|
|
1213
|
+
"Set default value": "デフォルト値を設定",
|
|
1214
|
+
"Set details field state": "Set details field state",
|
|
1215
|
+
"Set field state": "Set field state",
|
|
1216
|
+
"Set field value": "Set field value",
|
|
1217
|
+
"Set form field state": "Set form field state",
|
|
1218
|
+
"Set form field value": "Set form field value",
|
|
1219
|
+
"Set state": "Set state",
|
|
1220
|
+
"Set the count of columns displayed in a row": "列の数を設定",
|
|
1221
|
+
"Set the data scope": "データ範囲の設定",
|
|
1222
|
+
"Set validation rules": "バリデーションルールの設定",
|
|
1223
|
+
"Set value": "Set value",
|
|
1224
|
+
"Setting": "設定",
|
|
1225
|
+
"Settings": "設定",
|
|
1226
|
+
"Show date range": "Show date range",
|
|
1227
|
+
"Show file name": "ファイル名を表示",
|
|
1228
|
+
"Show in menu": "メニューに表示",
|
|
1229
|
+
"Show label": "Show label",
|
|
1230
|
+
"Show lunar": "旧暦を表示",
|
|
1231
|
+
"Show message": "Show message",
|
|
1232
|
+
"Show notification": "Show notification",
|
|
1233
|
+
"Show row numbers": "Show row numbers",
|
|
1234
|
+
"Show time": "時刻を表示",
|
|
1235
|
+
"Sign in": "サインイン",
|
|
1236
|
+
"Sign in via account": "アカウントでサインイン",
|
|
1237
|
+
"Sign in via phone": "電話番号でサインイン",
|
|
1238
|
+
"Sign in with another account": "他のアカウントでサインイン",
|
|
1239
|
+
"Sign out": "サインアウト",
|
|
1240
|
+
"Sign up": "サインアップ",
|
|
1241
|
+
"Sign up successfully, and automatically jump to the sign in page": "アカウントの登録に成功すると、ログインページにリダイレクトされます",
|
|
1242
|
+
"Signed up successfully. It will jump to the login page.": "登録に成功すると、ログインページにリダイレクトされます",
|
|
1243
|
+
"Simple string replacement, can be used to interpolate variables in a string.": "シンプルな文字列置換で、文字列に変数を埋め込むことができます。",
|
|
1244
|
+
"Single line text": "一行テキスト",
|
|
1245
|
+
"Single select": "ドロップダウン(単数選択)",
|
|
1246
|
+
"Single select and radio fields can be used as the grouping field": "単一選択フィールドとラジオ フィールドをグループ化フィールドとして使用できます",
|
|
1247
|
+
"Size": "サイズ",
|
|
1248
|
+
"Sizes": "Sizes",
|
|
1249
|
+
"Skip getting the total number of table records during paging to speed up loading. It is recommended to enable this option for data tables with a large amount of data": "ページング時にテーブルレコードの総数取得をスキップして、読み込み速度を向上させます。データ量が多い場合にこのオプションの使用をお勧めします。",
|
|
1250
|
+
"Skip required validation": "必須のバリデーションをスキップ",
|
|
1251
|
+
"Small": "スモール",
|
|
1252
|
+
"SmartTv": "SmartTv",
|
|
1253
|
+
"Some files are not uploaded correctly, please check.": "Some files are not uploaded correctly, please check.",
|
|
1254
|
+
"Sorry, the page you visited does not exist.": "申し訳ありませんが、お探しのページは存在しません。",
|
|
1255
|
+
"Sort": "ソート#ソート#",
|
|
1256
|
+
"Sortable": "ソート可能",
|
|
1257
|
+
"Source collection": "参照元コレクション",
|
|
1258
|
+
"Source collections": "ソースデータセット",
|
|
1259
|
+
"Source key": "参照元キー",
|
|
1260
|
+
"Specific properties": "特定のプロパティ",
|
|
1261
|
+
"Specifies a Permissions Policy for the <iframe>. The policy defines what features are available to the <iframe> (for example, access to the microphone, camera, battery, web-share, etc.) based on the origin of the request.": "Specifies a Permissions Policy for the <iframe>. The policy defines what features are available to the <iframe> (for example, access to the microphone, camera, battery, web-share, etc.) based on the origin of the request.",
|
|
1262
|
+
"Specify height": "高さを指定",
|
|
1263
|
+
"Start": "Start",
|
|
1264
|
+
"Start accessor": "Start accessor",
|
|
1265
|
+
"Start date field": "開始日フィールド",
|
|
1266
|
+
"State": "State",
|
|
1267
|
+
"Stay on current page": "現在のページにとどまる",
|
|
1268
|
+
"Stay on the current popup or page": "現在のポップアップ/ページに留まる",
|
|
1269
|
+
"Steps": "Steps",
|
|
1270
|
+
"Store the creation time of each record": "各レコードの作成日時を保存",
|
|
1271
|
+
"Store the creation user of each record": "各レコードの作成者を保存",
|
|
1272
|
+
"Store the last update time of each record": "各レコードの最終更新日時を保存",
|
|
1273
|
+
"Store the last update user of each record": "各レコードの最終更新者を保存",
|
|
1274
|
+
"Street": "町/通り",
|
|
1275
|
+
"String": "文字列",
|
|
1276
|
+
"String template": "文字列テンプレート",
|
|
1277
|
+
"Style": "スタイル",
|
|
1278
|
+
"Sub-detail": "Sub-detail",
|
|
1279
|
+
"Sub-details": "サブリスト",
|
|
1280
|
+
"Sub-form": "サブフォーム",
|
|
1281
|
+
"Sub-form(Popover)": "サブフォーム(ポップアップ窓)",
|
|
1282
|
+
"Sub-table": "サブテーブル",
|
|
1283
|
+
"Subform mode": "サブフォームモード",
|
|
1284
|
+
"Submit": "保存",
|
|
1285
|
+
"Submit action settings": "Submit action settings",
|
|
1286
|
+
"Submit record": "Submit record",
|
|
1287
|
+
"Submitted successfully": "正常に送信されました",
|
|
1288
|
+
"Subtable": "サブテーブル",
|
|
1289
|
+
"Subtable mode": "サブテーブルモード",
|
|
1290
|
+
"Succeed and continue": "成功し続行",
|
|
1291
|
+
"Successfully": "Successfully",
|
|
1292
|
+
"Suffix": "接尾辞",
|
|
1293
|
+
"Super admin": "管理者",
|
|
1294
|
+
"Superior department": "上位部門",
|
|
1295
|
+
"Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)": "Support filtering multiple blocks simultaneously, support deep selection of relationship fields (e.g.: User/Department/Name)",
|
|
1296
|
+
"Support for a single or bulk upload, file size should not exceed": "単一または複数のファイルをアップロードできます。ファイルサイズは",
|
|
1297
|
+
"Support for a single or bulk upload.": "単一または一括アップロードに対応します。",
|
|
1298
|
+
"Switch role": "役割の切替",
|
|
1299
|
+
"Switching the picker, the value and default value will be cleared": "ピッカー切り替え時、値とデフォルト値がクリアされます",
|
|
1300
|
+
"Sync from database": "データベースから同期",
|
|
1301
|
+
"Sync from form fields": "フォームフィールドの同期",
|
|
1302
|
+
"Sync successfully": "同期成功",
|
|
1303
|
+
"Syntax references": "構文リファレンス",
|
|
1304
|
+
"System": "システム",
|
|
1305
|
+
"System & security": "システムとセキュリティ",
|
|
1306
|
+
"System fields": "システムフィールド",
|
|
1307
|
+
"System info": "システム情報",
|
|
1308
|
+
"System management": "システム管理",
|
|
1309
|
+
"System settings": "システム設定",
|
|
1310
|
+
"System title": "システム名",
|
|
1311
|
+
"System variables": "システム変数",
|
|
1312
|
+
"Tab": "タブ",
|
|
1313
|
+
"Tab name": "タブ名",
|
|
1314
|
+
"Table": "テーブル",
|
|
1315
|
+
"Table OID(Inheritance)": "データテーブルOID(継承)",
|
|
1316
|
+
"Table column settings": "Table column settings",
|
|
1317
|
+
"Table density": "Table density",
|
|
1318
|
+
"Table selected records": "選択されたレコード",
|
|
1319
|
+
"Table settings": "Table settings",
|
|
1320
|
+
"Table size": "テーブルサイズ",
|
|
1321
|
+
"Tablet": "Tablet",
|
|
1322
|
+
"Tablet device": "タブレットデバイス",
|
|
1323
|
+
"Tag": "タブ",
|
|
1324
|
+
"Tag color field": "ラベルの色フィールド",
|
|
1325
|
+
"Target": "ターゲット",
|
|
1326
|
+
"Target block UID": "Target block UID",
|
|
1327
|
+
"Target block uid": "Target block uid",
|
|
1328
|
+
"Target collection": "参照先コレクション",
|
|
1329
|
+
"Target form block": "Target form block",
|
|
1330
|
+
"Target key": "参照先キー",
|
|
1331
|
+
"Target position": "ターゲットの位置",
|
|
1332
|
+
"Template": "テンプレート",
|
|
1333
|
+
"Template Data": "テンプレートデータ",
|
|
1334
|
+
"Template engine": "テンプレートエンジン",
|
|
1335
|
+
"Template fields": "テンプレートフィールド",
|
|
1336
|
+
"Template name": "テンプレート名",
|
|
1337
|
+
"Templates": "テンプレート",
|
|
1338
|
+
"Text": "Text",
|
|
1339
|
+
"Text Align": "テキスト整列",
|
|
1340
|
+
"Text input": "Text input",
|
|
1341
|
+
"Text only": "Text only",
|
|
1342
|
+
"The application is reloading, please do not close the page.": "アプリケーションが再読み込み中です。ページを閉じないでください。",
|
|
1343
|
+
"The current button is hidden and cannot be clicked (this message is only visible when the UI Editor is active).": "The current button is hidden and cannot be clicked (this message is only visible when the UI Editor is active).",
|
|
1344
|
+
"The current dependency version of the plugin does not match the version of the application and may not work properly. Are you sure you want to continue enabling the plugin?": "現在のプラグインの依存バージョンがアプリのバージョンと異なるため、正常に動作しない可能性があります。それでもプラグインを有効化しますか?",
|
|
1345
|
+
"The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"": "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for collection \"{{name}}\"",
|
|
1346
|
+
"The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"": "The current user only has the UI configuration permission, but don't have \"{{actionName}}\" permission for field \"{{name}}\"",
|
|
1347
|
+
"The current user only has the UI configuration permission, but don't have view permission for collection \"{{name}}\"": "現在のユーザーにはUI設定の権限しかなく、コレクション「{{name}}」を閲覧する権限はありません。",
|
|
1348
|
+
"The deletion was successful.": "削除に成功しました。",
|
|
1349
|
+
"The field has been deleted": "フィールドが削除されました",
|
|
1350
|
+
"The field value cannot be greater than ": "数値は...より大きくてはならない",
|
|
1351
|
+
"The field value cannot be less than ": "数値は...より小さくてはならない",
|
|
1352
|
+
"The field value is not a email format": "The field value is not a email format",
|
|
1353
|
+
"The field value is not an integer number": "数字は整数ではありません",
|
|
1354
|
+
"The field value is required": "The field value is required",
|
|
1355
|
+
"The following field types are not compatible and do not support output and display": "次のフィールドタイプは互換性がなく、出力および表示をサポートしていません",
|
|
1356
|
+
"The selected fields will automatically populate the form": "選択されたフィールドがフォームに自動入力されます",
|
|
1357
|
+
"The title field is used to identify the template record": "タイトルフィールドはテンプレートレコードを識別するために使用されます",
|
|
1358
|
+
"The value of this variable is derived from the query string of the page URL. This variable can only be used normally when the page has a query string.": "この変数の値はページURLのクエリ文字列から取得されます。この変数は、ページにクエリ文字列がある場合にのみ正常に使用できます。",
|
|
1359
|
+
"The will interrupt service, it may take a few seconds to restart. Are you sure to continue?": "再起動はサービスを中断します。再起動には数秒かかる場合があります。続行しますか?",
|
|
1360
|
+
"The {{type}} \"{{name}}\" may have been deleted. Please remove this {{blockType}}.": "{{type}} \"{{name}}\" は削除されている可能性があります。この {{blockType}} を削除してください。",
|
|
1361
|
+
"Theme": "テーマ",
|
|
1362
|
+
"Then": "その後",
|
|
1363
|
+
"Third party services": "サードパーティサービス",
|
|
1364
|
+
"This Month": "This Month",
|
|
1365
|
+
"This Quarter": "This Quarter",
|
|
1366
|
+
"This Week": "This Week",
|
|
1367
|
+
"This Year": "This Year",
|
|
1368
|
+
"This and following events": "このイベントおよび後続のイベント",
|
|
1369
|
+
"This event": "このイベント",
|
|
1370
|
+
"This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).": "This field has been hidden and you cannot view it (this content is only visible when the UI Editor is activated).",
|
|
1371
|
+
"This field is required": "This field is required",
|
|
1372
|
+
"This is a demo text, **supports Markdown syntax**.": "これはデモテキストです。 **マークダウン構文をサポートしています。**",
|
|
1373
|
+
"This is likely a NocoBase internals bug. Please open an issue at <1>here</1>": "これはNocoBaseの内部バグの可能性があります。 <1>こちら</1>で問題を報告してください",
|
|
1374
|
+
"This month": "今月",
|
|
1375
|
+
"This quarter": "今四半期",
|
|
1376
|
+
"This variable has been deprecated and can be replaced with \"Current form\"": "この変数は非推奨です。代わりに「現在のフォーム」を使用してください",
|
|
1377
|
+
"This week": "今週",
|
|
1378
|
+
"This year": "今年",
|
|
1379
|
+
"Through collection": "中間コレクション",
|
|
1380
|
+
"Time": "時間",
|
|
1381
|
+
"Time format": "時間形式",
|
|
1382
|
+
"Time scale": "時間スケールレベル",
|
|
1383
|
+
"Timeout config": "Timeout config",
|
|
1384
|
+
"Timestamp": "Timestamp",
|
|
1385
|
+
"Title": "タイトル",
|
|
1386
|
+
"Title & description": "Title & description",
|
|
1387
|
+
"Title accessor": "Title accessor",
|
|
1388
|
+
"Title field": "タイトルフィールド",
|
|
1389
|
+
"Title field component": "Title field component",
|
|
1390
|
+
"Title position": "タイトル位置",
|
|
1391
|
+
"Today": "今日",
|
|
1392
|
+
"Toggles the subfield mode": "サブフィールドモードを切り替える",
|
|
1393
|
+
"Tomorrow": "明日",
|
|
1394
|
+
"Tooltip": "Tooltip",
|
|
1395
|
+
"Top left": "Top left",
|
|
1396
|
+
"Top right": "Top right",
|
|
1397
|
+
"Total {{count}} items": "合計 {{count}} 件",
|
|
1398
|
+
"Tree collection": "ツリーコレクション",
|
|
1399
|
+
"Tree table": "ツリーテーブル",
|
|
1400
|
+
"Trigger condition": "Trigger condition",
|
|
1401
|
+
"Trigger event": "Trigger event",
|
|
1402
|
+
"Trigger workflow": "トリガーワークフロー",
|
|
1403
|
+
"Triggered when the row is clicked": "行がクリックされたときトリガーされます",
|
|
1404
|
+
"True": "真",
|
|
1405
|
+
"Try again": "再試行",
|
|
1406
|
+
"Turn pages": "ページをめくる",
|
|
1407
|
+
"Two tone": "2色スタイル",
|
|
1408
|
+
"Type": "タイプ",
|
|
1409
|
+
"UI Editor": "UI エディタ",
|
|
1410
|
+
"UI editor": "UI エディタ",
|
|
1411
|
+
"URL": "URL",
|
|
1412
|
+
"URL search params": "URL検索パラメータ",
|
|
1413
|
+
"UnSelect all": "全ての選択を解除",
|
|
1414
|
+
"Unauthenticated. Please sign in to continue.": "認証されていません。続行するにはログインしてください。",
|
|
1415
|
+
"Unconnected": "未接続",
|
|
1416
|
+
"Unicode characters are permitted": "Unicode characters are permitted",
|
|
1417
|
+
"Unique": "重複を許可しない",
|
|
1418
|
+
"Unit conversion": "単位変換",
|
|
1419
|
+
"Unix Timestamp": "Unixタイムスタンプ",
|
|
1420
|
+
"Unknown field type": "不明なフィールドタイプ",
|
|
1421
|
+
"Unnamed": "無名",
|
|
1422
|
+
"Unpinned": "固定解除",
|
|
1423
|
+
"Unsafe integer": "Unsafe integer",
|
|
1424
|
+
"Unsaved changes": "変更が保存されていません",
|
|
1425
|
+
"Update": "更新",
|
|
1426
|
+
"Update all data?": "すべてのデータを更新しますか?",
|
|
1427
|
+
"Update or create": "存在しなければ新規、存在すれば更新",
|
|
1428
|
+
"Update plugin": "プラグインをアップグレード",
|
|
1429
|
+
"Update record": "レコードを更新",
|
|
1430
|
+
"Update record action": "Update record",
|
|
1431
|
+
"Update selected data?": "選択したデータを更新しますか?",
|
|
1432
|
+
"Updated successfully": "更新成功",
|
|
1433
|
+
"UpdatedAt": "レコード最終更新時間",
|
|
1434
|
+
"UpdatedBy": "レコード最終更新者",
|
|
1435
|
+
"Upgrade": "アップグレード",
|
|
1436
|
+
"Upload": "アップロード",
|
|
1437
|
+
"Upload file settings": "Upload file settings",
|
|
1438
|
+
"Upload new version": "新しいバージョンをアップロード",
|
|
1439
|
+
"Upload plugin": "プラグインをアップロード",
|
|
1440
|
+
"Uploading": "Uploading",
|
|
1441
|
+
"Use simple pagination mode": "シンプルなページネーションモードを使用",
|
|
1442
|
+
"Use the same time zone (GMT) for all users": "すべてのユーザーが同じタイムゾーン(GMT)を使用する",
|
|
1443
|
+
"Used for drag and drop sorting scenarios, supporting grouping sorting": "ドラッグ&ドロップによる並べ替えで使用され、グループ分けソートをサポート",
|
|
1444
|
+
"User": "ユーザー",
|
|
1445
|
+
"User not found. Please sign in again to continue.": "ユーザーが見つかりません。再度ログインしてください。",
|
|
1446
|
+
"User password changed, please signin again.": "ユーザーパスワードが変更されました。再度ログインしてください。",
|
|
1447
|
+
"Username": "ユーザー名",
|
|
1448
|
+
"Users": "ユーザー",
|
|
1449
|
+
"Users & permissions": "ユーザーと権限",
|
|
1450
|
+
"Valid range: 10-40": "Valid range: 10-40",
|
|
1451
|
+
"Valid range: 100-900": "Valid range: 100-900",
|
|
1452
|
+
"Validation": "Validation",
|
|
1453
|
+
"Validation rule": "バリデーションルール",
|
|
1454
|
+
"Value": "値",
|
|
1455
|
+
"Variable identifier": "Variable identifier",
|
|
1456
|
+
"Variable title": "Variable title",
|
|
1457
|
+
"Verification code": "認証コード",
|
|
1458
|
+
"Version": "バージョン",
|
|
1459
|
+
"Version range": "バージョン範囲",
|
|
1460
|
+
"Vertical": "垂直",
|
|
1461
|
+
"View": "表示",
|
|
1462
|
+
"View all plugins": "すべてのプラグラインを見る",
|
|
1463
|
+
"View record": "レコードを見る",
|
|
1464
|
+
"Village": "村",
|
|
1465
|
+
"Visible": "表示",
|
|
1466
|
+
"Volcano": "ボルケーノ",
|
|
1467
|
+
"Wearable": "Wearable",
|
|
1468
|
+
"Week": "週",
|
|
1469
|
+
"Weekly": "毎週",
|
|
1470
|
+
"When a field is selected for grouping, it will be grouped first before sorting.": "フィールドをグループに選択すると、最初にグループ化され、その後ソートされます",
|
|
1471
|
+
"When condition is met": "When condition is met",
|
|
1472
|
+
"When condition is not met": "When condition is not met",
|
|
1473
|
+
"When submitting the following fields, the saved values are": "次のフィールドを送信すると、保存された値は",
|
|
1474
|
+
"When the HTTP method is Post, Put or Patch, and this custom request inside the form, the request body will be automatically filled in with the form data": "When the HTTP method is Post, Put or Patch, and this custom request inside the form, the request body will be automatically filled in with the form data",
|
|
1475
|
+
"When the Label exceeds the width": "ラベルが幅を超えた場合",
|
|
1476
|
+
"With condition": "With condition",
|
|
1477
|
+
"Without condition": "Without condition",
|
|
1478
|
+
"Work week": "稼働日",
|
|
1479
|
+
"Workflow": "ワークフロー",
|
|
1480
|
+
"Wrap": "Wrap",
|
|
1481
|
+
"Wysiwyg": "リッチテキスト",
|
|
1482
|
+
"Year": "年",
|
|
1483
|
+
"Year-Month-Day": "年-月-日",
|
|
1484
|
+
"Year/Month/Day": "年/月/日",
|
|
1485
|
+
"Yearly": "毎年",
|
|
1486
|
+
"Yes": "はい",
|
|
1487
|
+
"Yesterday": "昨日",
|
|
1488
|
+
"Your session has expired. Please sign in again.": "セッションの有効期限が切れました。再度ログインしてください。",
|
|
1489
|
+
"conditions in the group": "conditions in the group",
|
|
1490
|
+
"contains": "を含む",
|
|
1491
|
+
"data source": "データソース",
|
|
1492
|
+
"does not contain": "を含まない",
|
|
1493
|
+
"edit title": "タイトルを編集",
|
|
1494
|
+
"ends with": "で終わる",
|
|
1495
|
+
"exists": "が存在する",
|
|
1496
|
+
"false": "偽",
|
|
1497
|
+
"is": "が同じである",
|
|
1498
|
+
"is after": "より後",
|
|
1499
|
+
"is any of": "いずれかに一致する",
|
|
1500
|
+
"is before": "より前",
|
|
1501
|
+
"is between": "範囲",
|
|
1502
|
+
"is empty": "が空である",
|
|
1503
|
+
"is none of": "どれにも一致しない",
|
|
1504
|
+
"is not": "が同じではない",
|
|
1505
|
+
"is not empty": "が空ではない",
|
|
1506
|
+
"is on or after": "以降",
|
|
1507
|
+
"is on or before": "以前",
|
|
1508
|
+
"item": "item",
|
|
1509
|
+
"items": "items",
|
|
1510
|
+
"loading": "ロード中",
|
|
1511
|
+
"name is required": "名前は必須です",
|
|
1512
|
+
"not ends with": "で終わらない",
|
|
1513
|
+
"not exists": "が存在しない",
|
|
1514
|
+
"not starts with": "で始まらない",
|
|
1515
|
+
"pixels": "ピクセル",
|
|
1516
|
+
"re-download file": "ファイルを再ダウンロード",
|
|
1517
|
+
"starts with": "で始まる",
|
|
1518
|
+
"tlds": "tlds",
|
|
1519
|
+
"true": "真",
|
|
1520
|
+
"visible": "表示",
|
|
1521
|
+
"{{#label}} email address doesn’t meet the required format": "{{#label}} email address doesn’t meet the required format",
|
|
1522
|
+
"{{#label}} is not allowed to be empty": "{{#label}} is not allowed to be empty",
|
|
1523
|
+
"{{#label}} is required": "{{#label}} is required",
|
|
1524
|
+
"{{#label}} length must be at least {{#limit}} characters long": "{{#label}} length must be at least {{#limit}} characters long",
|
|
1525
|
+
"{{#label}} length must be less than or equal to {{#limit}} characters long": "{{#label}} length must be less than or equal to {{#limit}} characters long",
|
|
1526
|
+
"{{#label}} length must be {{#limit}} characters long": "{{#label}} length must be {{#limit}} characters long",
|
|
1527
|
+
"{{#label}} must be a credit card": "{{#label}} must be a credit card",
|
|
1528
|
+
"{{#label}} must be a float or double": "{{#label}} must be a float or double",
|
|
1529
|
+
"{{#label}} must be a multiple of {{#multiple}}": "{{#label}} must be a multiple of {{#multiple}}",
|
|
1530
|
+
"{{#label}} must be a negative number": "{{#label}} must be a negative number",
|
|
1531
|
+
"{{#label}} must be a number": "{{#label}} must be a number",
|
|
1532
|
+
"{{#label}} must be a positive number": "{{#label}} must be a positive number",
|
|
1533
|
+
"{{#label}} must be a safe number": "{{#label}} must be a safe number",
|
|
1534
|
+
"{{#label}} must be a string": "{{#label}} must be a string",
|
|
1535
|
+
"{{#label}} must be a valid ISO 8601 date": "{{#label}} must be a valid ISO 8601 date",
|
|
1536
|
+
"{{#label}} must be a valid UUID": "{{#label}} must be a valid UUID",
|
|
1537
|
+
"{{#label}} must be a valid date": "{{#label}} must be a valid date",
|
|
1538
|
+
"{{#label}} must be a valid hostname": "{{#label}} must be a valid hostname",
|
|
1539
|
+
"{{#label}} must be a valid port": "{{#label}} must be a valid port",
|
|
1540
|
+
"{{#label}} must be a valid uri": "{{#label}} must be a valid uri",
|
|
1541
|
+
"{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern": "{{#label}} must be a valid uri with a scheme matching the {{#scheme}} pattern",
|
|
1542
|
+
"{{#label}} must be an integer": "{{#label}} must be an integer",
|
|
1543
|
+
"{{#label}} must be greater than or equal to {{#limit}}": "{{#label}} must be greater than or equal to {{#limit}}",
|
|
1544
|
+
"{{#label}} must be greater than {{#limit}}": "{{#label}} must be greater than {{#limit}}",
|
|
1545
|
+
"{{#label}} must be in {{#format}} format": "{{#label}} must be in {{#format}} format",
|
|
1546
|
+
"{{#label}} must be less than or equal to {{#limit}}": "{{#label}} must be less than or equal to {{#limit}}",
|
|
1547
|
+
"{{#label}} must be less than {{#limit}}": "{{#label}} must be less than {{#limit}}",
|
|
1548
|
+
"{{#label}} must not have leading or trailing whitespace": "{{#label}} must not have leading or trailing whitespace",
|
|
1549
|
+
"{{#label}} must not have more than {{#limit}} decimal places": "{{#label}} must not have more than {{#limit}} decimal places",
|
|
1550
|
+
"{{#label}} must only contain alpha-numeric and underscore characters": "{{#label}} must only contain alpha-numeric and underscore characters",
|
|
1551
|
+
"{{#label}} must only contain alpha-numeric characters": "{{#label}} must only contain alpha-numeric characters",
|
|
1552
|
+
"{{#label}} must only contain hexadecimal characters": "{{#label}} must only contain hexadecimal characters",
|
|
1553
|
+
"{{#label}} must only contain lowercase characters": "{{#label}} must only contain lowercase characters",
|
|
1554
|
+
"{{#label}} must only contain uppercase characters": "{{#label}} must only contain uppercase characters",
|
|
1555
|
+
"{{#label}} with value \"{{#value}}\" fails to match the required pattern": "{{#label}} with value \"{{#value}}\" fails to match the required pattern",
|
|
1556
|
+
"{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern": "{{#label}} with value \"{{#value}}\" fails to match the {{#name}} pattern",
|
|
1557
|
+
"{{#label}} with value \"{{#value}}\" matches the inverted pattern": "{{#label}} with value \"{{#value}}\" matches the inverted pattern",
|
|
1558
|
+
"{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern": "{{#label}} with value \"{{#value}}\" matches the inverted {{#name}} pattern",
|
|
1559
|
+
"{{count}} filter items": "{{count}} つのフィルター項目",
|
|
1560
|
+
"{{count}} more items": "{{count}} 件以上",
|
|
1561
|
+
"≠": "≠",
|
|
1562
|
+
"≤": "≤",
|
|
1563
|
+
"≥": "≥"
|
|
1564
|
+
}
|