Files
snipe-it/resources/lang/ja/admin/settings/general.php
T
snipe 441ae69f5c Integrations/develop into master (#7352)
* Fixes #6204 - added email alerts and web/API access to assets due for audits (#6992)

* Added upcoming audit report

TODO: Fid diff/threshold math

* Added route to list overdue / upcoming assets via API

* Controller/API methods for due/overdue audits

We could probably skip this and just handle it via view in the routes…

* Added query scopes for due and overdue audits

* Added audit due console command to kernel

* Added ability to pass audit specs to main API asset search method

* Added audit presenter

* Added bootstrap-tables presenter formatter to display an audit button

* Added gated sidenav items to left nav

* Added audit due/overdue blades

* Cleanup on audit due/overdue console command

* Added language strings for audit views

* Fixed :threshold placeholder

* Removed unused setting variable

* Fixed next audit date math

* Added scope for both overdue and upcoming

* Derp. Wrong version

* Bumped version

(I will release this version officially tomorrow)

* Leave the activated state for users alone in normal LDAP synchronisation. (#6988)

* Fixed #7003 - crash when warranty months or purchase date is null

* Fixed #6956 - viewKeys policy inconsistent  (#7009)

* Fixed #6956 - Added additional gates show showing/hiding license keys

* Modified gate to allow user to see licenses if they can create or edit the license as well

* Added API middleware to API routes to enable throttling

TODO: Figure out how to make this costumizable without touching the code

* Import locations from CSV via command line (#7021)

* Added import locations command

* Small fixes to location importer

* Added country, LDAP OU

* Cleaned up comments, added more clarification to what the script does

* Added ability to update groups via API

Fixes [ch9139]

* Bumped version

* Fixed #6883 - remove escaping of fields on LDAP import

* Fixed #6880 - correctly encrypt encrypted fields via the API

* Fixes #5054: LDAP users deactivated for none-ad (#7032)

When using none-AD ldap, users are automatically deactivated every LDAP
sync.  This commit changes the behaviour so that if the active flag isn't set,
the users are enabled.

Fixed #5054, at least for 4.X

* Updated packages

  - Updating erusev/parsedown (v1.7.2 => 1.7.3): Downloading (100%)
  - Updating squizlabs/php_codesniffer (3.4.1 => 3.4.2): Downloading (100%)
  - Updating symfony/polyfill-mbstring (v1.10.0 => v1.11.0): Downloading (100%)
  - Updating symfony/var-dumper (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating league/flysystem (1.0.50 => 1.0.51): Downloading (100%)
  - Updating symfony/translation (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating nesbot/carbon (1.36.2 => 1.37.1): Downloading (100%)
  - Updating symfony/debug (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/console (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/finder (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/polyfill-ctype (v1.10.0 => v1.11.0): Downloading (100%)
  - Updating symfony/polyfill-php70 (v1.10.0 => v1.11.0): Downloading (100%)
  - Updating symfony/http-foundation (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/event-dispatcher (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/http-kernel (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/process (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/routing (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/polyfill-util (v1.10.0 => v1.11.0): Downloading (100%)
  - Updating symfony/polyfill-php56 (v1.10.0 => v1.11.0): Downloading (100%)
  - Updating symfony/psr-http-message-bridge (v1.1.1 => v1.1.2): Downloading (failed)
Downloading (100%)
  - Updating rollbar/rollbar (v1.7.5 => v1.8.1): Downloading (100%)
  - Updating symfony/yaml (v3.4.23 => v3.4.27): Downloading (100%)
  - Updating symfony/browser-kit (v3.4.23 => v3.4.27): Downloading (100%)

* Fixed #7044 - API update deleted custom fields if they are not re-presented

* Fixed XSS vulnerability when creating a new categories, etc via modal on create

Same fix as before, because of the weird select2 post-parsing ajax behavior

* Updated email strings

* Fixed #7046 - added user website url back into UI

* Updated language strings

* Bumped version

* Updated packages

* New backups config for spatie

* Removed debugbar service provider (autodiscovery)

* Use laravel v5.5 withCount manual aliases

* Added spatie language files

* Removed old laravel backups config

This config file was renamed in a newer version of spatie laravel-backup

* Set the serialization

* Added the command loader to console kernel

* Renamed fire() to handle()

* Updated withCount to use manual naming

* Updated backup path in backup admin

* Updated travis with new php versions

* Bumped laravel version in readme

* Fixed custom field edit screen

* Fixed baseUrl is undefined error

I literally cannot figure out how this ever worked before.

* Fix for included files in backup

* Bumped version

* Switch has() to filled()

* Change ->has() to ->filled()

* Removed cosole log

* Bumped packages

* Use getReader instead of fetchAssoc for CSV parser

https://csv.thephpleague.com/9.0/upgrading/

* Handle JSON validation errors like 5.4

* Handle JSON validation errors like 5.4

* Handle JSON validation errors like 5.4

* Trying to fix ajax asset validation

This I think gets us closer, but still not handling the validation on the asset properly.

When I do a print_r of the validation in the other items, its looking for an error bag that looks something like this:

```
Illuminate\Support\MessageBag Object
(
    [messages:protected] => Array
        (
            [name] => Array
                (
                    [0] => The name field is required.
                )

            [seats] => Array
                (
                    [0] => The seats field is required.
                )

            [category_id] => Array
                (
                    [0] => The category id field is required.
                )

        )

    [format:protected] => :message
)
```

Currently the Assets ajax returns:

```
[2019-05-24 06:52:06] develop.ERROR: array (
  'messages' =>
  array (
    'model_id' =>
    array (
      0 => 'The model id field is required.',
    ),
    'status_id' =>
    array (
      0 => 'The status id field is required.',
    ),
    'asset_tag' =>
    array (
      0 => 'The asset tag field is required.',
    ),
  ),
)
```

So not sure why it’s not working.

* Fixed missing asset validation

* Check that a model exists before trying to fiddle with fieldsets

* Tidied up license check

* Removed extra escaping on checkin

* Updated importer to work with newer CSV Reader::getRecords() method

* Fixed field mapping

* Small fix for reordering fields

Fixes Illuminate\Database\QueryException: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'order' cannot be null (SQL: insert into `custom_field_custom_fieldset` (`custom_field_id`, `custom_fieldset_id`, `order`, `required`) values (12, 7, , 0)) [ch1151]

This needs revisiting for a more solid fix, especially for data that was already entered bad.

* Fixed bug where sorting by company name in Users API did not work

Fixes [ch9200]

* Removed custom fields from AssignedSearch to prevent confusing data in selectlist

Fixes [ch9193]

* Removed alert-danger from tests

* Fixed missed consumables_count withCount() statement

* Fixed Undefined variable user in $backto if checked out to a non-user

Fixes [ch9194]

* Check for valid model before attempting to access fieldsets

Fixes [ch1249]

* Only build the log upload destination path if there is a matching record

Fixes [ch1232]

* Fixed free_seats_count variable name

(I forgot that Laravel switched camel case to snake case for their old 5.4 withCount variables)

* Only gtry to delete the file if a record is found in the log

* Only try to get fieldset if model is valid

* Fixed more camel-casing -> snake-casing

* Only display the file if the log record can be found

* Fixed casing in sync command

* Updated README

* Derp - typo

* Added link to Atlassian plugin

* More Atlassian clarifications

* Show accessory image on view page

* Increased image size to 800px, added lightboxes

* Fixed #7083 - Removed user_exists constraint on department save

If the user has been deleted, this prevented the department from being successfully saved on edit

* Updated branch in version file

* Dockerfile update to bring us up to php v7.1 for Laravel 5.5 (#7084)

* bump up to php7.1

& change deprecated MAINTAINER to a LABEL so it is visible with `docker inspect`

* AND modapache ><

* 2 updates required to get software-properties+ppa

* Bumped version

* Bumped release again :(

* Missed one

* Fixed #7098 - updated backup config for deleteFile() method

* Fixed #7092 -  handle weird port forwarding/port numbers for baseUrl

* Bumped version

* Fixed #7099 - set email to null by default for backup notifications

* Removed old comments

* Fixed #7100 - Check if $user isset on checkin

* Increased throttle to 120 requests per minute

* Added Filipino, corrected order for Spanish variations

* Update language strings

* Bumped hash

* Changed has to filled to fix bulk asset editing

* Bumped point version

* Small fixes for phpleague CSB reader v9

* Improved error checking in locations importer

* Fixed #7145 - rename groups table to permissions_group for mysql 8 reserved word compatibility

* Reduce minimum group name length to 2 (from 3)

eg: IT

* Back in time fix FOR #7145 for new installs on MySQL 8+

* Fixed permission insert

//TODO

Handle this via model

* Possible fix for reporting/admin migration back in time

* Fixed #7164 - change table name to permission_groups

* Fixed LDAP password blanking on save

* fixing previous commit's actual wiping of password (#7183)

replaced Input::fille('ldap_pword') with _filled_.   Should be good to go.  

https://github.com/snipe/snipe-it/issues/7179

https://github.com/snipe/snipe-it/issues/7169

* Bumped version

* Downgrading rollbar for Laravel 5.5

* Spelling Correction (#7206)

Fixed Spelling for the word reqrite, to be rewrite.

* Fix #6910: Add logic to manipulate the eloquent query. (#7006)

* Added company_id to consumables_users table

* Added logic to manage when a pivot table doesn't have the column company_id trough a join with users

* Remove a migration that tries to fix this problem, but is not longer necessary

* Addresses #7238 - add PWA code to layout

Needs additional UX testing

* Better log message for bad LDAP connection

* Fixed #7186 - has vs filled in User’s API blanking out groups if no group_ids are passed

* Comment clarification on #7186

* Check for valid seat on hardware view

* Added space between footer and custom message

* Cap warranty months to three characters

Filles rollbar 209

* Cap warranty months to 3 on the frontend blade

* Fixed countable() strings on user destroy

* Check that the user has assets and that the aset model is valid

* Bumped hash

* Caps asset warranty to 20 years

* Command to fix custom field unicode conversion differences between PHP versions (#7263)

* Fixes #7252 form request changes (#7272)

* Fixes for #7252 - custom fields not validating / no validaton messages in API w/form requests

* Removed debug info

* More fixes for #7252

This is mostly working as intended, if not yet the way Laravel wants us to do it.

Right now, the API returns correctly, and the form UI will return highlighted errors, with the input filled in ~sometimes~. I’m not sure why it’s only sometimes yet, but this is potentially progress.

* Removed experimental method

* Check for digits_between:0,240 for warranty

* Removed debug code

* Apply fix from PR #7273 to master

* Bumped hash

* Fixed #7250 - permission issue for API fieldsets and fields endpoints

This applies the change from #7294 to master

* Add @mskrip as a contributor

* Fixed #7270 - Checking-in Assets via API Removes the Item's Asset Name

* CORS for api (#7292)

* Added CORS support to API

* Changed order so CORS will still work if throttle hit

* Added APP_CORS_ALLOWED_ORIGINS env option

* Fixed typo

* Clarified header comments

* More clarification

* DIsable CORS allowed origins by default to replicate existing behavior

* Change variable name to be clearer

* Bumped version

* Added condition to deal with fieldname 'rtd_location' which can be tried to be queried in some places and doesn't exist in database (#7317)

* Added comments to the ByFilter query scope for clarity

* Added accessories checkout/checkin API endpoint

* Fixed CVE-2019-10742

https://nvd.nist.gov/vuln/detail/CVE-2019-10742

* Update README.md (#7334)

Add reference to CSV importer.

* Group related variables in .env

* History importer fixes

* Fixes to history importer
2019-08-14 21:48:14 -07:00

189 lines
17 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 array(
'ad' => 'Active Directory',
'ad_domain' => 'Active Directory ドメイン',
'ad_domain_help' => '通常はemailのドメイン名と同じです。ただし例外あり',
'admin_cc_email' => 'CC(カーボンコピー)メール 送信先',
'admin_cc_email_help' => 'ユーザーに送信されたチェックイン/チェックアウト メールのコピーを追加の電子メールアカウントに送信する場合は、ここにメールアドレスを入力します。必要が無ければ、このフィールドを空白にします',
'is_ad' => 'Active Directory サーバー',
'alert_email' => 'アラートの送信先',
'alerts_enabled' => 'アラートを有効化',
'alert_interval' => 'アラートを無視する期間',
'alert_inv_threshold' => 'インベントリのアラート間隔',
'asset_ids' => '資産ID',
'audit_interval' => '監査の間隔',
'audit_interval_help' => '定期的にあなたの資産を監査する必要がある場合は、間隔を月で入力します。',
'audit_warning_days' => '監査警告しきい値',
'audit_warning_days_help' => '資産の監査期限は何日前に警告する必要がありますか?',
'auto_increment_assets' => '資産IDを自動採番で生成',
'auto_increment_prefix' => 'プレフィクス (オプション)',
'auto_incrementing_help' => 'この初期値を使って資産IDの自動採番を有効化',
'backups' => 'バックアップ',
'barcode_settings' => 'バーコード設定',
'confirm_purge' => 'パージを確定',
'confirm_purge_help' => 'レコード削除のため、パージを実行するとき"DELETE"の文字を下のテキストボックスに入力します。このアクションは取り消しはできません。',
'custom_css' => 'カスタム CSS:',
'custom_css_help' => '使用したいカスタムCSSを入力してください。&lt;style&gt;&lt;/style&gt; タグは含めないでください',
'custom_forgot_pass_url' => 'パスワードリセットURLを変更する',
'custom_forgot_pass_url_help' => 'これにより、ログイン画面に表示されるパスワードリセット用のURLが置き換えられ、内部またはホストされているLDAPパスワードのリセット機能にユーザーを誘導するのに役立ちます。ローカルユーザーがパスワードを忘れた場合、その機能は無効になります。',
'dashboard_message' => 'ダッシュボードメッセージ',
'dashboard_message_help' => 'このテキストは、ダッシュボード表示権限を持つすべての人に表示されます。',
'default_currency' => '既定の通貨',
'default_eula_text' => '既定のEULA',
'default_language' => '既定の言語',
'default_eula_help_text' => '特殊な資産カテゴリーにカスタムEULAを関連付けられます。',
'display_asset_name' => '資産名を表示',
'display_checkout_date' => 'チェックアウト日を表示',
'display_eol' => '表形式でEOLを表示',
'display_qr' => 'QRコードを表示',
'display_alt_barcode' => 'バーコードを表示',
'barcode_type' => '2次元バーコードタイプ',
'alt_barcode_type' => 'バーコードタイプ',
'eula_settings' => 'EULA設定',
'eula_markdown' => 'この EULA は、<a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>で、利用可能です。',
'footer_text' => '追加のフッターテキスト ',
'footer_text_help' => 'このテキストは右側のフッターに表示されます。 <a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>を使用してリンクが作成できます。改行、ヘッダー、画像などは、予期しない表示結果になる可能性があります。',
'general_settings' => '全般設定',
'generate_backup' => 'バックアップを作成',
'header_color' => 'ヘッダーカラー',
'info' => 'これらの設定は、あなたの設備の特性に合わせてカスタマイズできます。',
'laravel' => 'Laravelバージョン',
'ldap_enabled' => 'LDAP 対応',
'ldap_integration' => 'LDAP 統合',
'ldap_settings' => 'LDAP 設定',
'ldap_login_test_help' => 'LDAPログインが正しく構成されているかどうかをテストするために、上で指定したベースDNから有効なLDAPユーザー名とパスワードを入力して下さい。その前に必ず更新後のLDAP設定を保存しておいてください。',
'ldap_login_sync_help' => 'これは、LDAPが正しく同期できることをテストするだけです。 LDAP認証クエリが正しくない場合、ユーザーはまだログインできない場合があります。その前に必ず更新後のLDAP設定を保存しておいてください。',
'ldap_server' => 'LDAP サーバ',
'ldap_server_help' => 'LDAP を使用開始 ldap:// (for unencrypted or TLS) or ldaps:// (for SSL)',
'ldap_server_cert' => 'LDAP SSL 認証',
'ldap_server_cert_ignore' => '無効な SSL 証明書を許可します。',
'ldap_server_cert_help' => '自己署名 SSL 証明書を使用して無効な SSL 証明書を受け入れたい場合は、このチェック ボックスを選択します。',
'ldap_tls' => 'TLS の使用',
'ldap_tls_help' => 'これは、LDAP サーバーで STARTTLS を実行している場合にのみチェック必要があります。 ',
'ldap_uname' => 'LDAP バインド ユーザー名',
'ldap_pword' => 'LDAP バインド パスワード',
'ldap_basedn' => 'LDAP 検索ベース DN',
'ldap_filter' => 'LDAP フィルター',
'ldap_pw_sync' => 'LDAP パスワード同期',
'ldap_pw_sync_help' => 'LDAPパスワードをローカルパスワードと同期させない場合は、このチェックボックスをオフにします。これをオフにすると、何らかの理由でLDAPサーバーにアクセスできない場合、ユーザーがログインできなくなる可能性があります。',
'ldap_username_field' => 'ユーザー名フィールド',
'ldap_lname_field' => '姓',
'ldap_fname_field' => 'LDAP 名',
'ldap_auth_filter_query' => 'LDAP 認証クエリ',
'ldap_version' => 'LDAP バージョン',
'ldap_active_flag' => 'LDAP アクティブ フラグ',
'ldap_emp_num' => 'LDAP 社員番号',
'ldap_email' => 'LDAP メール',
'license' => 'ソフトウェアライセンス',
'load_remote_text' => 'リモートスクリプト',
'load_remote_help_text' => 'Snipe-ITのインストールは、外部からスクリプトを読み込むことが可能です。',
'login_note' => 'ログインメッセージ',
'login_note_help' => 'オプションで、紛失または盗難されたデバイスを見つけた人を支援するなど、ログイン画面に文章を表示することができます。このフィールドは<a href="https://help.github.com/articles/github-flavored-markdown/">Github flavored markdown</a>が使用できます。',
'login_remote_user_text' => 'リモートユーザのログインオプション',
'login_remote_user_enabled_text' => 'リモートユーザーのログインヘッダーを有効にする',
'login_remote_user_enabled_help' => 'このオプションを使用すると、「Common Gateway Interfacerfc3875)」のREMOTE_USERヘッダーを介した認証が有効になります。',
'login_common_disabled_text' => 'その他の認証を無効にします。',
'login_common_disabled_help' => '他の認証を無効にします。 REMOTE_USERログインが既に動作していることが確かである場合だけ、このオプションを有効にしてください。',
'login_remote_user_custom_logout_url_text' => 'カスタムログアウトURL',
'login_remote_user_custom_logout_url_help' => 'ユーザがログアウトした場合、このURLにリダイレクトします。
これは認証プロバイダのセッションを正しく終了させる場合に便利です。',
'logo' => 'ロゴ',
'logo_print_assets' => '印刷に使用',
'logo_print_assets_help' => '印刷可能な資産リストにブランドを使用する。 ',
'full_multiple_companies_support_help_text' => 'ユーザー (管理者を含む) に 資産の割り当て を制限します。',
'full_multiple_companies_support_text' => '複数企業をサポートします。',
'show_in_model_list' => 'モデルのドロップダウンに表示',
'optional' => 'オプション',
'per_page' => 'ページ毎の結果',
'php' => 'PHPバージョン',
'php_gd_info' => 'QRコードを表示するためにphp-gdをインストールする必要があります。インストールインストラクションを参照して下さい。',
'php_gd_warning' => 'PHP Image Processing および GD plugin が、インストールされていません。',
'pwd_secure_complexity' => 'パスワードの複雑さ',
'pwd_secure_complexity_help' => 'どのパスワード複雑性ルールを適用するかを選択します。',
'pwd_secure_min' => 'パスワードの最低文字数',
'pwd_secure_min_help' => '最小値は5',
'pwd_secure_uncommon' => '共通パスワードを防ぐ',
'pwd_secure_uncommon_help' => '不正アクセス等でに報告された上位10,000個の共通パスワードを、ユーザーが使用できなくなります。',
'qr_help' => 'QRコードを有効化',
'qr_text' => 'QRコードテキスト',
'setting' => '設定',
'settings' => '設定',
'show_alerts_in_menu' => 'トップ メニューでアラートを表示します。',
'show_archived_in_list' => 'アーカイブ資産',
'show_archived_in_list_text' => 'アーカイブされた資産を「すべての資産」リストに表示する',
'show_images_in_email' => 'メールで画像を表示する',
'show_images_in_email_help' => 'Snipe-ITが閉鎖されたネットワーク内にある場合や、アクセスするためにVPNの利用が必要な場合はこのボックスのチェックを外してください。ネットワーク外のユーザは、配信されたメールにある画像を読み込むことはできません。',
'site_name' => 'サイト名',
'slack_botname' => 'Slack Botname',
'slack_channel' => 'Slack Channel',
'slack_endpoint' => 'Slack Endpoint',
'slack_integration' => 'Slack Settings',
'slack_integration_help' => 'Slack integration はオプションです。しかしながら endpoint と channel は必須です。 Slack integration を設定するためには, まず初めに Slack アカウントで <a href=":slack_link" target="_new">incoming web hook を作成</a> して下さい。',
'slack_integration_help_button' => 'Slack設定を保存すると、テストボタンが表示されます。',
'slack_test_help' => 'Slackが正しく設定されているかどうかをテストします。先にSlackの設定を最初に保存しなければなりません。',
'snipe_version' => 'Snipe-IT バージョン',
'support_footer' => 'フッターのリンクをサポートします。 ',
'support_footer_help' => 'Snipe-ITサポート情報とユーザーマニュアルへのリンクを確認する',
'version_footer' => 'フッターにバージョン情報を表示 ',
'version_footer_help' => 'Snipe-ITのバージョンとビルド番号を表示するか、管理者のみに表示させるかを設定できます。',
'system' => 'システム情報',
'update' => '設定を更新',
'value' => '価値',
'brand' => 'ブランディング',
'about_settings_title' => '設定について',
'about_settings_text' => 'これらの設定は、あなたのインストレーションの特性に合わせてカスタマイズできます。',
'labels_per_page' => 'ページあたりのラベル数',
'label_dimensions' => 'ラベルの大きさ (インチ)',
'next_auto_tag_base' => '次の自動インクリメント',
'page_padding' => 'ページ マージン',
'privacy_policy_link' => 'プライバシーポリシーへのリンク',
'privacy_policy' => 'プライバシーポリシー',
'privacy_policy_link_help' => 'ここにURLが含まれている場合、プライバシーポリシーへのリンクは、GDPRに準拠して、各ページのフッターとシステムが送信する電子メールに含まれます。 ',
'purge' => 'データレコードを消去',
'labels_display_bgutter' => 'ラベル 下余白',
'labels_display_sgutter' => 'ラベル横余白',
'labels_fontsize' => 'ラベルフォントサイズ',
'labels_pagewidth' => 'ラベルシート幅',
'labels_pageheight' => 'ラベルシート高さ',
'label_gutters' => 'ラベルの間隔 (インチ)',
'page_dimensions' => 'ページサイズ(インチ)',
'label_fields' => 'ラベル表示フィールド',
'inches' => 'インチ',
'width_w' => 'w',
'height_h' => 'h',
'show_url_in_emails' => 'Snipe-ITへのリンク',
'show_url_in_emails_help_text' => '電子メールのフッターでSnipe-ITのインストールにリンクしたくない場合は、このボックスのチェックを外してください。ほとんどのユーザーが決してログインしない場合に便利です。',
'text_pt' => 'pt',
'thumbnail_max_h' => 'サムネイルの最大の高さ',
'thumbnail_max_h_help' => 'サムネイルのリストビューに表示される最大の高さ。25~500。',
'two_factor' => '2段階認証',
'two_factor_secret' => '二段階認証コード',
'two_factor_enrollment' => '二段階認証登録',
'two_factor_enabled_text' => '二段階認証を有効',
'two_factor_reset' => '二段階認証をリセット',
'two_factor_reset_help' => 'ユーザーはGoogle Authenticatorでデバイスを再度登録する必要があります。これは、現在登録されているデバイスを紛失または盗難した場合に便利です。 ',
'two_factor_reset_success' => '二段階認証は正常にリセットされました。',
'two_factor_reset_error' => '二段階認証のデバイスリセットに失敗しました。',
'two_factor_enabled_warning' => '二段階認証を有効にすると、Google Authenticatorでの認証が強制されます。あなたがお持ちのデバイスを登録することができます。',
'two_factor_enabled_help' => 'これにより、Google Authenticatorを使用した2要素認証が有効になります。',
'two_factor_optional' => '選択可能(ユーザーは自由に有効・無効にできます)',
'two_factor_required' => '全てのユーザーに必須',
'two_factor_disabled' => '無効',
'two_factor_enter_code' => '二段階認証コードを入力',
'two_factor_config_complete' => '送信',
'two_factor_enabled_edit_not_allowed' => '管理者はこの設定を編集することを許可していません。',
'two_factor_enrollment_text' => "二段階認証の登録が必要ですが、あなたのデバイスはまだ登録されていません。Google Authenticatorアプリを開き、下のQRコードをスキャンして端末を登録してください。端末を登録したら以下のコードを入力してください。",
'require_accept_signature' => 'シグネチャリクエスト',
'require_accept_signature_help_text' => 'この機能を有効にするには、ユーザーが資産を受け入れる際に物理的にサインオフする必要があります。',
'left' => '左',
'right' => '右',
'top' => '上',
'bottom' => '下',
'vertical' => '垂直',
'horizontal' => '水平方向',
'unique_serial' => '一意のシリアル番号',
'unique_serial_help_text' => 'このチェックボックスをオンにすると、資産のシリアル番号に一意性制約が適用されます',
'zerofill_count' => '資産タグの長さ (ゼロ埋め含む)',
);