plugins/xmlsitemap/language/hebrew_utf-8.php
author Dirk Haun <dirk@haun-online.de>
Sun, 11 Oct 2009 19:18:47 +0200
branchHEAD
changeset 7371 6f0fe25ffbc7
parent 7161 1aa777aacd39
child 8140 84a8d35b9abc
permissions -rw-r--r--
Synced all language files with their English equivalents
     1 <?php
     2 
     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:                              |
    10 // |                                                                           |
    11 // | Authors: http://lior.weissbrod.com                                        |
    12 // |          Version: 1.6#1                                                   |
    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.                    |
    18 // |                                                                           |
    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.                              |
    23 // |                                                                           |
    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|
    27 // |                                                                           |
    28 // +---------------------------------------------------------------------------|
    29 
    30 global $LANG32;
    31 
    32 $LANG_XMLSMAP = array(
    33     'plugin' => 'XMLSitemap',
    34     'admin' => 'ניהול XMLSitemap'
    35 );
    36 
    37 // Localization of the Admin Configuration UI
    38 $LANG_configsections['xmlsitemap'] = array(
    39     'label' => 'XMLSitemap',
    40     'title' => 'כיוון XMLSitemap'
    41 );
    42 
    43 $LANG_confignames['xmlsitemap'] = array(
    44     'sitemap_file' => 'שם קובץ Sitemap',
    45     'mobile_sitemap_file' => 'שם קובץ Mobile Sitemap',
    46     'types' => 'תוכן ה-sitemap',
    47     'exclude' => 'Plugins שלא יכללו ב-sitemap',
    48     'priorities' => '',
    49     'frequencies' => ''
    50 );
    51 
    52 $LANG_configsubgroups['xmlsitemap'] = array(
    53     'sg_main' => 'הגדרות כלליות'
    54 );
    55 
    56 $LANG_fs['xmlsitemap'] = array(
    57     'fs_main' => 'ההגדרות הכלליות של XMLSitemap',
    58     'fs_pri' => 'עדיפות (ברירת המחדל = 0.5, הכי נמוך = 0.0, הכי גבוה = 1.0)',
    59     'fs_freq' => 'תדירות עדכונים'
    60 );
    61 
    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')
    69 );
    70 
    71 ?>