strings.php 7.07 KB
<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Strings Language Lines
    |--------------------------------------------------------------------------
    |
    | The following language lines are used in strings throughout the system.
    | Regardless where it is placed, a string can be listed here so it is easily
    | found in a intuitive way.
    |
    */

    'backend' => [
        'access' => [
            'users' => [
                'delete_user_confirm' => 'このユーザーを永久に削除してもよろしいですか? このユーザーのIDを参照するアプリケーションのどこでもエラーが発生します。 自己責任で行ってください。 これは、元に戻すことはできません。',
                'if_confirmed_off' => '(確認済みの場合)',
                'restore_user_confirm' => 'このユーザーを元の状態に戻しますか?',
            ],
        ],

        'dashboard' => [
            'title' => 'Administrative Dashboard',
            'welcome' => 'Welcome',
        ],

        'general' => [
            'all_rights_reserved' => 'All Rights Reserved.',
            'are_you_sure' => '本当ですか?',
            'boilerplate_link' => 'Laravel 5 Boilerplate',
            'continue' => 'Continue',
            'member_since' => '会員登録日',
            'minutes' => ' 分',
            'search_placeholder' => '検索中...',
            'timeout' => 'あなたは活動がなかったのでセキュリティ上の理由から自動的にログアウトされました。',

            'see_all' => [
                'messages' => 'すべてのメッセージを見る',
                'notifications' => 'すべて表示',
                'tasks' => 'すべてのタスク表示',
            ],

            'status' => [
                'online' => 'オンライン',
                'offline' => 'オフライン',
            ],

            'you_have' => [
                'messages' => '{0} メッセージなし|{1} 1件メッセージあり|[2,Inf] :number件のメッセージあり',
                'notifications' => '{0} 通知なし|{1} 1件通知あり|[2,Inf] :number件の通知あり',
                'tasks' => '{0} タスクなし|{1} 1件タスクあり|[2,Inf] :number件のタスクあり',
            ],
        ],

        'search' => [
            'empty' => '検索テキストを入力してください。',
            'incomplete' => 'このシステムに独自の検索ロジックを記述する必要があります。',
            'title' => '検索結果',
            'results' => '検索結果 :query',
        ],

        'welcome' => '<p>This is the AdminLTE theme by <a href="https://almsaeedstudio.com/" target="_blank">https://almsaeedstudio.com/</a>. This is a stripped down version with only the necessary styles and scripts to get it running. Download the full version to start adding components to your dashboard.</p>
<p>All the functionality is for show with the exception of the <strong>Access Management</strong> to the left. This boilerplate comes with a fully functional access control library to manage users/roles/permissions.</p>
<p>Keep in mind it is a work in progress and their may be bugs or other issues I have not come across. I will do my best to fix them as I receive them.</p>
<p>Hope you enjoy all of the work I have put into this. Please visit the <a href="https://github.com/rappasoft/laravel-5-boilerplate" target="_blank">GitHub</a> page for more information and report any <a href="https://github.com/rappasoft/Laravel-5-Boilerplate/issues" target="_blank">issues here</a>.</p>
<p><strong>This project is very demanding to keep up with given the rate at which the master Laravel branch changes, so any help is appreciated.</strong></p>
<p>- Anthony Rappa</p>',
    ],

    'emails' => [
        'auth' => [
            'account_confirmed' => 'Your account has been confirmed.',
            'error' => 'Whoops!',
            'greeting' => 'Hello!',
            'regards' => 'Regards,',
            'trouble_clicking_button' => '":action_text" ボタンをクリックしても問題が解決しない場合は、以下のURLをコピーしてウェブブラウザに貼り付けてください:',
            'thank_you_for_using_app' => 'このアプリケーションを使用していただきありがとうございます!',

            'password_reset_subject' => 'パスワードのリセット',
            'password_cause_of_email' => 'あなたのアカウントのパスワードリセットリクエストを受け取りましたので、このメールをお送りしています。',
            'password_if_not_requested' => 'パスワードリセットを要求しなかった場合、これ以上の操作は必要ありません。',
            'reset_password' => 'パスワードをリセットするにはここをクリック',

            'click_to_confirm' => 'あなたのアカウントを確認するにはここをクリックしてください:',
        ],

        'contact' => [
            'email_body_title' => 'You have a new contact form request: Below are the details:',
            'subject' => 'A new :app_name contact form submission!',
        ],
    ],

    'frontend' => [
        'test' => 'Test',

        'tests' => [
            'based_on' => [
                'permission' => 'Permission Based - ',
                'role' => 'Role Based - ',
            ],

            'js_injected_from_controller' => 'Javascript Injected from a Controller',

            'using_blade_extensions' => 'Using Blade Extensions',

            'using_access_helper' => [
                'array_permissions' => 'Using Access Helper with Array of Permission Names or ID\'s where the user does have to possess all.',
                'array_permissions_not' => 'Using Access Helper with Array of Permission Names or ID\'s where the user does not have to possess all.',
                'array_roles' => 'Using Access Helper with Array of Role Names or ID\'s where the user does have to possess all.',
                'array_roles_not' => 'Using Access Helper with Array of Role Names or ID\'s where the user does not have to possess all.',
                'permission_id' => 'Using Access Helper with Permission ID',
                'permission_name' => 'Using Access Helper with Permission Name',
                'role_id' => 'Using Access Helper with Role ID',
                'role_name' => 'Using Access Helper with Role Name',
            ],

            'view_console_it_works' => 'View console, you should see \'it works!\' which is coming from FrontendController@index',
            'you_can_see_because' => 'You can see this because you have the role of \':role\'!',
            'you_can_see_because_permission' => 'You can see this because you have the permission of \':permission\'!',
        ],

        'user' => [
            'profile_updated' => 'プロフィール更新に成功しました。',
            'password_updated' => 'パスワード更新に成功しました。',
        ],

        'welcome_to' => 'Welcome to :place',
    ],
];