35 lines
885 B
PHP
35 lines
885 B
PHP
<?php
|
|
$lang ['admin'] ['head'] = '管理者用ページ';
|
|
|
|
$lang ['admin'] ['panels'] = array(
|
|
'main' => 'メイン',
|
|
'config' => '設定',
|
|
// 'users' => 'Users',
|
|
'entry' => 'ブログ記事',
|
|
'static' => '固定ページ',
|
|
'uploader' => 'アップローダー',
|
|
'widgets' => 'ウィジェット',
|
|
// 'add' => 'Add',
|
|
// 'edit' => 'Edit/Delete',
|
|
'maintain' => 'メンテナンス',
|
|
'plugin' => 'プラグイン',
|
|
'themes' => 'テーマ'
|
|
// 'updates' => 'Updates',
|
|
);
|
|
|
|
$lang ['admin'] ['general'] = array(
|
|
'id' => 'ID', # for entry ids
|
|
'name' => '名前', # for file names
|
|
'title' => 'タイトル', # for entry/posts/static titles
|
|
'comments' => 'コメント数',
|
|
'author' => '作成者',
|
|
'actdel' => '削除',
|
|
'actedit' => '編集',
|
|
'actenable' => '有効',
|
|
'actdisable' => '無効',
|
|
'startpage' => 'スタートページ',
|
|
'logout' => 'ログアウト'
|
|
);
|
|
|
|
?>
|