3 /* Reminder: always indent with 4 spaces (no tabs). */
4 // +---------------------------------------------------------------------------+
5 // | XMLSitemap Plugin |
6 // +---------------------------------------------------------------------------+
7 // | hebrew_utf-8.php |
8 // +---------------------------------------------------------------------------+
9 // | Copyright (C) 2009 by the following authors: |
11 // | Authors: http://lior.weissbrod.com |
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' => 'שם קובץ Sitemap',
45 'mobile_sitemap_file' => 'שם קובץ Mobile Sitemap',
46 'types' => 'תוכן ה-sitemap',
47 'exclude' => 'Plugins שלא יכללו ב-sitemap',
52 $LANG_configsubgroups['xmlsitemap'] = array(
53 'sg_main' => 'הגדרות כלליות'
56 $LANG_fs['xmlsitemap'] = array(
57 'fs_main' => 'ההגדרות הכלליות של XMLSitemap',
58 'fs_pri' => 'עדיפות (ברירת המחדל = 0.5, הכי נמוך = 0.0, הכי גבוה = 1.0)',
59 'fs_freq' => 'תדירות עדכונים'
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('הפנייה לעמוד' => 'item', 'הצגת רשימה' => 'list', 'הצגת דף הבית' => 'home', 'הצגת דף הניהול' => 'admin'),
67 12 => array('אין גישה' => 0, 'קריאה בלבד' => 2, 'קריאה וכתיבה' => 3),
68 20 => array('תמיד' => 'always', 'כל שעה' => 'hourly', 'יומי' => 'daily', 'שבועי' => 'weekly', 'חודשי' => 'monthly', 'שנתי' => 'yearly', 'אף פעם' => 'never')