plugins/xmlsitemap/language/estonian.php
author Dirk Haun <dirk@haun-online.de>
Sun, 11 Oct 2009 19:18:47 +0200
branchHEAD
changeset 7371 6f0fe25ffbc7
parent 7160 ddf8c4b3ac89
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 // | estonian.php                                                              |
     8 // +---------------------------------------------------------------------------+
     9 // | Copyright (C) 2009 by the following authors:                              |
    10 // |                                                                           |
    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.                    |
    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 Admin'
    35 );
    36 
    37 // Localization of the Admin Configuration UI
    38 $LANG_configsections['xmlsitemap'] = array(
    39     'label' => 'XMLSitemap',
    40     'title' => 'XMLSitemap seaded'
    41 );
    42 
    43 $LANG_confignames['xmlsitemap'] = array(
    44     'sitemap_file' => 'Saidikaardi faili nimi',
    45     'mobile_sitemap_file' => 'Mobile Saidikaardi faili nimi',
    46     'types' => 'Saidikaardi sisu',
    47     'exclude' => 'Saidikaardilt väljajäätavad pluginad',
    48     'priorities' => '',
    49     'frequencies' => ''
    50 );
    51 
    52 $LANG_configsubgroups['xmlsitemap'] = array(
    53     'sg_main' => 'Peaseaded'
    54 );
    55 
    56 $LANG_fs['xmlsitemap'] = array(
    57     'fs_main' => 'XMLSitemap peaseaded',
    58     'fs_pri' => 'Prioriteet (vaikimisi = 0,5, madalaim = 0,0, kõrgeim= 1,0)',
    59     'fs_freq' => 'Uuendamise sagedus'
    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('Jah' => 1, 'Ei' => 0),
    65     1 => array('Jah' => true, 'Ei' => false),
    66     9 => array('Suuna edasi lehele' => 'item', 'Näita loetelu' => 'list', 'Näita avalehte' => 'home', 'Näita admini lehte' => 'admin'),
    67     12 => array('Pole ligipääsu' => 0, 'Ainult loetav' => 2, 'Loetav ja muudetav' => 3),
    68     20 => array('Alati' => 'always', 'Tunni tagant' => 'hourly', 'päeva tagant' => 'daily', 'nädala tagant' => 'weekly', 'kuu tagant' => 'monthly', 'aasta tagant' => 'yearly', 'mitte kunagi' => 'never')
    69 );
    70 
    71 ?>