49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
|
|
$lang['admin']['themes']['submenu'] = array(
|
|
'default' => 'テーマ',
|
|
'style' => 'テーマのスタイル',
|
|
);
|
|
|
|
/* default panel action (change theme) */
|
|
|
|
$lang['admin']['themes']['default'] = array(
|
|
'head1' => '現在のテーマ',
|
|
|
|
'head2' => '変更用テーマ一覧',
|
|
'descr' => '変更したいテーマを選んでください。',
|
|
|
|
'nodescr' => '説明文なし',
|
|
'noauthor' => '作者不明',
|
|
|
|
);
|
|
|
|
$lang['admin']['themes']['default']['msgs'] = array(
|
|
1 => 'テーマは変更されました。',
|
|
-1 => 'テーマを変更できませんでした。',
|
|
-2 => '選ばれたテーマは存在しません。'
|
|
);
|
|
|
|
|
|
/* select style */
|
|
|
|
$lang['admin']['themes']['style'] = array(
|
|
'head1' => '現在のスタイル',
|
|
|
|
'head2' => '変更用スタイル一覧',
|
|
'descr' => '変更したいスタイルを選んでください。',
|
|
|
|
'nodescr' => '説明文なし',
|
|
'noauthor' => '作者不明',
|
|
);
|
|
|
|
$lang['admin']['themes']['style']['msgs'] = array(
|
|
1 => 'テーマのスタイルは変更されました。',
|
|
-1 => 'テーマのスタイルを変更できませんでした。',
|
|
-2 => '選ばれたスタイルは存在しません。'
|
|
);
|
|
|
|
|
|
?>
|