snipe-it/resources/lang/ja/admin/custom_fields/general.php
Laravel Shift 934afa036f Adopt Laravel coding style
Shift automatically applies the Laravel coding style - which uses the PSR-2 coding style as a base with some minor additions.

You may customize the adopted coding style by adding your own [PHP CS Fixer][1] `.php_cs` config file to your project root. Feel free to use [Shift's Laravel ruleset][2] to help you get started.

[1]: https://github.com/FriendsOfPHP/PHP-CS-Fixer
[2]: https://gist.github.com/laravel-shift/cab527923ed2a109dda047b97d53c200
2021-06-10 20:15:52 +00:00

34 lines
2.5 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
return [
'custom_fields' => 'カスタムフィールド',
'field' => 'フィールド',
'about_fieldsets_title' => 'フィールドセットについて',
'about_fieldsets_text' => 'フィールドセットでは、頻繁に利用されるカスタム フィールドのグループを作成することができます。
よく',
'custom_format' => 'カスタムフォーマット',
'encrypt_field' => 'このフィールドの値をデータベースにて暗号化する',
'encrypt_field_help' => '警告: 暗号化フィールドは検索することができなくなります。',
'encrypted' => '暗号化',
'fieldset' => 'フィールドセット',
'qty_fields' => '数量フィールド',
'fieldsets' => 'フィールドセット',
'fieldset_name' => 'フィールドセット名',
'field_name' => 'フィールド名',
'field_values' => 'フィールド値',
'field_values_help' => '選択可能なオプションを1行に1つ追加します。最初の行以外の空白行は無視されます。',
'field_element' => 'フォームエレメント',
'field_element_short' => 'エレメント',
'field_format' => 'フォーマット',
'field_custom_format' => 'カスタム形式:',
'field_custom_format_help' => 'このフィールドでは、検証のために正規表現を使用できます。たとえば、カスタムフィールド値に有効なIMEI15桁が含まれていることを検証するには、<code>regex/ ^ [0-9]{15} $ / </code>を使用します。',
'required' => '必須',
'req' => '必須',
'used_by_models' => '型番で使用',
'order' => '順番',
'create_fieldset' => '新しいフィールドセット',
'create_field' => '新しいユーザー設定フィールド',
'value_encrypted' => 'このフィールドの値は、データベースで暗号化されます。管理者ユーザーのみが復号化された値を表示することができます。',
'show_in_email' => 'このフィールドの値を、ユーザーに送信されるチェックアウト メールに含めますか?(暗号化されたフィールドの値はメールに含めることはできません。)',
];