3 /* Reminder: always indent with 4 spaces (no tabs). */
4 // +---------------------------------------------------------------------------+
5 // | XMLSitemap Plugin |
6 // +---------------------------------------------------------------------------+
7 // | japanese_utf-8.php |
8 // +---------------------------------------------------------------------------+
9 // | Copyright (C) 2009 by the following authors: |
11 // | Authors: Kenji ITO - geeklog AT mystral-kk DOT net |
12 // | Dirk Haun - dirk AT haun-online DOT de |
13 // +---------------------------------------------------------------------------|
14 // | This program is free software; you can redistribute it and/or |
15 // | modify it under the terms of the GNU General Public License |
16 // | as published by the Free Software Foundation; either version 2 |
17 // | of the License, or (at your option) any later version. |
19 // | This program is distributed in the hope that it will be useful, |
20 // | but WITHOUT ANY WARRANTY; without even the implied warranty of |
21 // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
22 // | GNU General Public License for more details. |
24 // | You should have received a copy of the GNU General Public License |
25 // | along with this program; if not, write to the Free Software |
26 // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA|
28 // +---------------------------------------------------------------------------|
32 $LANG_XMLSMAP = array(
33 'plugin' => 'XMLSitemap',
34 'admin' => 'XMLSitemap管理'
37 // Localization of the Admin Configuration UI
38 $LANG_configsections['xmlsitemap'] = array(
39 'label' => 'XMLSitemap',
40 'title' => 'XMLSitemapの設定'
43 $LANG_confignames['xmlsitemap'] = array(
44 'sitemap_file' => 'サイトマップファイル名',
45 'mobile_sitemap_file' => 'モバイルサイトマップ名',
46 'types' => 'サイトマップの内容',
47 'exclude' => '除外するプラグイン',
52 $LANG_configsubgroups['xmlsitemap'] = array(
56 $LANG_fs['xmlsitemap'] = array(
57 'fs_main' => 'XMLSitemapの主要設定',
58 'fs_pri' => '優先度(既定値 = 0.5、0.0 = 最低、1.0 = 最高)',
62 // Note: entries 0, 1, 9, and 12 are the same as in $LANG_configselects['Core']
63 $LANG_configselects['xmlsitemap'] = array(
64 0 => array('はい' => 1, 'いいえ' => 0),
65 1 => array('はい' => true, 'いいえ' => false),
66 9 => array('Forward to page' => 'item', 'Display List' => 'list', 'Display Home' => 'home', 'Display Admin' => 'admin'),
67 12 => array('アクセス不可' => 0, '表示' => 2, '表示・編集' => 3),
68 20 => array('常時' => 'always', '毎時間' => 'hourly', '毎日' => 'daily', '毎週' => 'weekly', '毎月' => 'monthly', '毎年' => 'yearly', '更新しない' => 'never')