*語系設定:
1.config檔案設定:
config\app.php
'timezone' => 'Asia/Taipei',
'locale' => 'zh-TW',
'fallback_locale' => 'zh-TW',
---------------
2.語系檔案設定:
*英文:
resources\lang\en\shop.php
<?php
// 檔案位置:resources/lang/en/shop.php
return [
'home' => 'Home',
'transaction' => [
'name' => 'Transaction',
'list' => 'Transaction List',
'buy' => 'Buy',
'fields' => [
'buy-count' => 'Buy Number',
],
],
'merchandise' => [
'name' => 'Merchandise',
'create' => 'Create Merchandise',
'manage' => 'Manage Merchandise',
'edit' => 'Edit Merchandise',
'list' => 'Merchandise List',
'page' => 'Merchandise Page',
'purchase-success' => 'Purchase Success',
'update' => 'Update',
'fields' => [
'id' => 'Id',
'status-name' => 'Status',
'status' => [
'create' => 'Create',
'sell' => 'Sell',
],
'name' => 'Name',
'name-en' => 'English Name',
'introduction' => 'Introduction',
'introduction-en' => 'English Introduction',
'photo' => 'Photo',
'price' => 'Price',
'remain-count' => 'Remain Number',
],
],
'auth' => [
'sign-out' => 'Sign Out',
'sign-in' => 'Sign In',
'sign-up' => 'Sign Up',
'facebook-sign-in' => 'Facebook Sign In',
],
'user' => [
'fields' => [
'nickname' => 'Nickname',
'email' => 'Email',
'password' => 'Password',
'confirm-password' => 'Confirm Password',
'type-name' => 'Type',
'type' => [
'general' => 'General',
'admin' => 'Admin',
],
],
],
];
------------------
*中文:
resources\lang\zh-TW\validation.php
<?php
return [
/*
|--------------------------------------------------------------------------
| Validation Language Lines
|--------------------------------------------------------------------------
|
| The following language lines contain the default error messages used by
| the validator class. Some of these rules have multiple versions such
| as the size rules. Feel free to tweak each of these messages here.
|
*/
'accepted' => '必須接受 :attribute。',
'active_url' => ':attribute 並非一個有效的網址。',
'after' => ':attribute 必須要在 :date 之後。',
'alpha' => ':attribute 只能以字母組成。',
'alpha_dash' => ':attribute 只能以字母、數字及斜線組成。',
'alpha_num' => ':attribute 只能以字母及數字組成。',
'array' => ':attribute 必須為陣列。',
'before' => ':attribute 必須要在 :date 之前。',
'between' => [
'numeric' => ':attribute 必須介乎 :min 至 :max 之間。',
'file' => ':attribute 必須介乎 :min 至 :max kb 之間。 ',
'string' => ':attribute 必須介乎 :min 至 :max 個字元之間。',
'array' => ':attribute: 必須有 :min - :max 個元素。',
],
'boolean' => ':attribute 必須為bool值。',
'confirmed' => ':attribute 確認欄位的輸入並不相符。',
'date' => ':attribute 並非一個有效的日期。',
'date_format' => ':attribute 與 :format 格式不相符。',
'different' => ':attribute 與 :other 必須不同。',
'digits' => ':attribute 必須是 :digits 位數字。',
'digits_between' => ':attribute 必須介乎 :min 至 :max 位數字。',
'before_or_equal' => ':attribute 必須小於 :date 。',
'dimensions' => 'The :attribute has invalid image dimensions.',
'distinct' => ':attribute 已經存在。',
'email' => ':attribute 的格式無效。',
'exists' => '所選擇的 :attribute 選項無效。',
'filled' => ':attribute 不能留空。',
'image' => ':attribute 必須是一張圖片。',
'in' => '所選擇的 :attribute 選項無效。',
'in_array' => ':attribute 沒有在 :other 中。',
'integer' => ':attribute 必須是一個整數。',
'ip' => ':attribute 必須是一個有效的 IP 地址。',
'json' => ':attribute 必須是正確的 JSON 字串。',
'max' => [
'numeric' => ':attribute 不能大於 :max。',
'file' => ':attribute 不能大於 :max kb。',
'string' => ':attribute 不能多於 :max 個字元。',
'array' => ':attribute 最多有 :max 個元素。',
],
'mimes' => ':attribute 必須為 :values 的檔案。',
'min' => [
'numeric' => ':attribute 不能小於 :min。',
'file' => ':attribute 不能小於 :min kb。',
'string' => ':attribute 不能小於 :min 個字元。',
'array' => ':attribute 至少有 :min 個元素。',
],
'not_in' => '所揀選的 :attribute 選項無效。',
'numeric' => ':attribute 必須為一個數字。',
'present' => ':attribute 必須存在。',
'regex' => ':attribute 的格式錯誤。',
'required' => ':attribute 不能留空。',
'required_if' => '當 :other 是 :value 時 :attribute 不能留空。',
'required_unless' => '當 :other 不是 :value 時 :attribute 不能留空。',
'required_with' => '當 :values 出現時 :attribute 不能留空。',
'required_with_all' => '當 :values 出現時 :attribute 不能為空。',
'required_without' => '當 :values 留空時 :attribute field 不能留空。',
'required_without_all' => '當 :values 都不出現時 :attribute 不能留空。',
'same' => ':attribute 與 :other 必須相同。',
'size' => [
'numeric' => ':attribute 的大小必須是 :size。',
'file' => ':attribute 的大小必須是 :size kb。',
'string' => ':attribute 必須是 :size 個字元。',
'array' => ':attribute 必須是 :size 個元素。',
],
'string' => ':attribute 必須是一個字串。',
'timezone' => ':attribute 必須是一個正確的時區值。',
'unique' => ':attribute 已經存在。',
'url' => ':attribute 的格式錯誤。',
/*
|--------------------------------------------------------------------------
| Custom Validation Language Lines
|--------------------------------------------------------------------------
|
| Here you may specify custom validation messages for attributes using the
| convention 'attribute.rule' to name the lines. This makes it quick to
| specify a specific custom language line for a given attribute rule.
|
*/
'custom' => [
'attribute-name' => [
'rule-name' => 'custom-message',
],
],
/*
|--------------------------------------------------------------------------
| Custom Validation Attributes
|--------------------------------------------------------------------------
|
| The following language lines are used to swap attribute place-holders
| with something more reader friendly such as E-Mail Address instead
| of 'email'. This simply helps us make messages a little cleaner.
|
*/
'attributes' => [
// 會員
'nickname' => '暱稱',
'email' => '電子信箱',
'password' => '密碼',
'password_confirmation' => '確認密碼',
// 商品
'name' => '商品名稱',
'name_en' => '商品英文名稱',
'introduction' => '商品介紹',
'introduction_en' => '商品英文介紹',
'price' => '商品價格',
'remain_count' => '商品剩餘數量',
],
];
-----------------
resources\lang\zh-TW\shop.php
<?php
// 檔案位置:resources/lang/zh-TW/shop.php
return [
'home' => '首頁',
'transaction' => [
'name' => '交易',
'list' => '交易紀錄',
'buy' => '購買',
'fields' => [
'buy-count' => '購買數量',
],
],
'merchandise' => [
'name' => '商品',
'create' => '建立商品',
'manage' => '管理商品',
'edit' => '編輯商品',
'list' => '商品列表',
'page' => '商品頁',
'purchase-success' => '購買成功',
'update' => '更新商品資訊',
'fields' => [
'id' => '編號',
'status-name' => '商品狀態',
'status' => [
'create' => '建立中',
'sell' => '可販售',
],
'name' => '商品名稱',
'name-en' => '商品英文名稱',
'introduction' => '商品介紹',
'introduction-en' => '商品英文介紹',
'photo' => '商品照片',
'price' => '商品價格',
'remain-count' => '商品剩餘數量',
],
],
'auth' => [
'sign-out' => '登出',
'sign-in' => '登入',
'sign-up' => '註冊',
'facebook-sign-in' => 'Facebook 登入',
],
'user' => [
'fields' => [
'nickname' => '暱稱',
'email' => '電子信箱',
'password' => '密碼',
'confirm-password' => '確認密碼',
'type-name' => '帳號類型',
'type' => [
'general' => '一般會員',
'admin' => '管理者',
],
],
],
];
沒有留言:
張貼留言