-
Notifications
You must be signed in to change notification settings - Fork 500
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of [email protected]:FrozenNode/Laravel-Administrator…
….git into dev
- Loading branch information
Showing
3 changed files
with
81 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
namespace Frozennode\Administrator\Fields\Relationships; | ||
|
||
class HasMany extends HasOneOrMany { | ||
class HasOne extends HasOneOrMany { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Administrator Language Lines | ||
|-------------------------------------------------------------------------- | ||
| | ||
| ja - Japanese | ||
| | ||
*/ | ||
|
||
'dashboard' => 'ダッシュボード', | ||
'edit' => '編集', | ||
'filters' => '絞り込み', | ||
'loading' => '読み込み中...', | ||
'createnew' => '新規作成', | ||
'new' => '新規', | ||
'viewitem' => ':single を表示', | ||
'id' => 'ID', | ||
'uploadimage' => '画像のアップロード', | ||
'imageuploading' => '画像をアップロード中', | ||
'uploadfile' => 'ファイルをアップロード', | ||
'fileuploading' => 'ファイルをアップロード中', | ||
'none' => 'なし', | ||
'all' => 'すべて', | ||
'itemsperpage' => 'アイテム/ページ', | ||
'noresults' => '該当なし', | ||
'backtosite' => 'サイトに戻る', | ||
'logout' => 'ログアウト', | ||
|
||
'previous' => '前へ', | ||
'next' => '次へ', | ||
|
||
'close' => '閉じる', | ||
'delete' => '削除', | ||
'save' => '保存', | ||
'create' => '作成', | ||
'cancel' => 'キャンセル', | ||
|
||
'active' => 'お待ちください...', | ||
'success' => '成功!', | ||
'error' => '操作の実行中にエラーが発生しました', | ||
|
||
'valid_columns' => "有効な 'columns' 配列を各モデルの設定で指定してください", | ||
'valid_title' => "有効な title と single 名を各モデルの設定で指定してください", | ||
'valid_model' => "有効な 'model' オプションを各モデルの設定で指定してください", | ||
'valid_edit' => "有効な 'edit_fields' 配列を各モデルの設定で指定してください", | ||
'valid_menu' => "有効な 'menu' オプションを administrator.php の設定で指定してください", | ||
'valid_config_path' => "有効な 'model_config_path' オプションを administrator.php の設定で指定してください。このディレクトリは存在していてかつ読取可能にしてください。", | ||
'not_eloquent' => " は Eloquent モデルではありません", | ||
'storage_path_permissions' => "設定ページを作成するにはストレージパスを書き込み可能にしてください", | ||
'valid_home_page' => "有効なメニューアイテムを設定ファイルの home_page オプションで指定してください。", | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
return array( | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| Administrator Language Lines for knockout | ||
|-------------------------------------------------------------------------- | ||
| | ||
| ja - Japanese | ||
| | ||
*/ | ||
|
||
'delete_active_item' => '本当にこのアイテムを削除してもよろしいですか? この操作は元に戻せません。', | ||
'saving' => '保存中...', | ||
'saved' => 'アイテムを保存しました。', | ||
'deleting' => '削除中...', | ||
'deleted' => 'アイテムを削除しました', | ||
'character_left' => ' 文字残り', | ||
'characters_left' => ' 文字残り', | ||
'no_results' => '該当する項目がありません', | ||
'select_options' => 'オプションを選択', | ||
|
||
); |