
- For future new language packs, a clean basis has been created with the existing language packs. - Removed unnecessary line breaks, spaces and tabs to avoid unexpected views in the responsive design. - Updated links to external sources. - Missing language files created in plugins. - Gallerycaptions plugin: cs-cz, el-gr, es-es, fr-fr, ja-jp, nl-nl - Mediamanager plugin: el-gr, fr-fr - PhotoSwipe plugin: cs-cz, el-gr, es-es, fr-fr, ja-jp, nl-nl - Readmore plugin: el-gr, fr-fr - Seometataginfo plugin: pt-br
40 lines
1.1 KiB
PHP
40 lines
1.1 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 => '選ばれたスタイルは存在しません。'
|
|
);
|
|
?>
|