[ Index ] |
|
Code source de GeekLog 1.4.1 |
1 <?php 2 3 ############################################################################### 4 # dutch.php 5 # This is the Dutch language file for the Geeklog Links plugin 6 # 7 # Copyright (C) 2001 Tony Bibbs 8 # tony@tonybibbs.com 9 # Copyright (C) 2005 Trinity Bays 10 # trinity93@gmail.com 11 # 12 # This program is free software; you can redistribute it and/or 13 # modify it under the terms of the GNU General Public License 14 # as published by the Free Software Foundation; either version 2 15 # of the License, or (at your option) any later version. 16 # 17 # This program is distributed in the hope that it will be useful, 18 # but WITHOUT ANY WARRANTY; without even the implied warranty of 19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 # GNU General Public License for more details. 21 # 22 # You should have received a copy of the GNU General Public License 23 # along with this program; if not, write to the Free Software 24 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 25 # 26 ############################################################################### 27 # $Id: dutch.php,v 1.2 2006/05/13 17:13:08 dhaun Exp $ 28 29 /** 30 * This is the english language page for the Geeklog links Plug-in! 31 * 32 * @package Links 33 * @subpackage Language 34 * @filesource 35 * @version 1.0 36 * @since GL 1.4.0 37 * @copyright Copyright © 2005 38 * @license http://opensource.org/licenses/gpl-license.php GNU Public License 39 * @author Trinity Bays <trinity93@steubentech.com> 40 * @author Tony Bibbs <tony@tonybibbs.com> 41 * @author Tom Willett <twillett@users.sourceforge.net> 42 * @author Blaine Lang <langmail@sympatico.ca> 43 * @author Dirk Haun <dirk@haun-online.de> 44 * 45 */ 46 47 48 ############################################################################### 49 # Array Format: 50 # $LANGXX[YY]: $LANG - variable name 51 # XX - file id number 52 # YY - phrase id number 53 ############################################################################### 54 /** 55 * the link plugin's lang array 56 * 57 * @global array $LANG_LINKS 58 */ 59 $LANG_LINKS= array( 60 10 => 'Ingezonden links', 61 14 => 'Links', 62 84 => 'LINKS', 63 88 => 'Geen recente nieuwe links', 64 114 => 'Links', 65 116 => 'Link toevoegen' 66 ); 67 68 ############################################################################### 69 # for stats 70 /** 71 * the link plugin's lang stats array 72 * 73 * @global array $LANG_LINKS_STATS 74 */ 75 $LANG_LINKS_STATS = array( 76 'links' => 'Links (Kliks) in het systeem', 77 'stats_headline' => 'Top Tien Links', 78 'stats_page_title' => 'Links', 79 'stats_hits' => 'Hits', 80 'stats_no_hits' => 'Er zijn nog geen links aanwezig of er is nog niet op geklikt.', 81 ); 82 83 ############################################################################### 84 # for the search 85 /** 86 * the link plugin's lang search array 87 * 88 * @global array $LANG_LINKS_SEARCH 89 */ 90 $LANG_LINKS_SEARCH = array( 91 'results' => 'Link resultaten', 92 'title' => 'Titel', 93 'date' => 'Toegevoegd op', 94 'author' => 'Ingezonden door', 95 'hits' => 'Kliks' 96 ); 97 ############################################################################### 98 # for the submission form 99 /** 100 * the link plugin's lang submit form array 101 * 102 * @global array $LANG_LINKS_SUBMIT 103 */ 104 $LANG_LINKS_SUBMIT = array( 105 1 => 'Link voorstellen', 106 2 => 'Link', 107 3 => 'Categorie', 108 4 => 'Anders', 109 5 => 'Indien anders, geef op', 110 6 => 'Fout: categorie ontbreekt', 111 7 => 'Wanneer "Anders" is geselecteerd geef dan naam van de nieuwe categorie op', 112 8 => 'Titel', 113 9 => 'URL', 114 10 => 'Categorie', 115 11 => 'Ingezonden links' 116 ); 117 118 ############################################################################### 119 # Messages for COM_showMessage the submission form 120 121 $PLG_links_MESSAGE1 = "Hartelijk dank voor het voorstellen van uw link op {$_CONF['site_name']}. De link is voorgesteld aan de beheerder ter goedkeuring. Indien accoord, wordt uw link opgenomen in de <a href={$_CONF['site_url']}/links/index.php>links</a> directory."; 122 $PLG_links_MESSAGE2 = 'De link is opgeslagen.'; 123 $PLG_links_MESSAGE3 = 'De link is verwijderd.'; 124 $PLG_links_MESSAGE4 = "Hartelijk dank voor het toevoegen van uw link op {$_CONF['site_name']}. De link is opgenomen in de <a href={$_CONF['site_url']}/links/index.php>links</a> directory."; 125 126 // Messages for the plugin upgrade 127 $PLG_links_MESSAGE3002 = $LANG32[9]; 128 129 ############################################################################### 130 # admin/link.php 131 /** 132 * the link plugin's lang admin array 133 * 134 * @global array $LANG_LINKS_ADMIN 135 */ 136 $LANG_LINKS_ADMIN = array( 137 1 => 'Link Editor', 138 2 => 'Link ID', 139 3 => 'Link Titel', 140 4 => 'Link URL', 141 5 => 'Categorie', 142 6 => '(inclusief http://)', 143 7 => 'Anders', 144 8 => 'Link Hits', 145 9 => 'Link omschrijving', 146 10 => 'U dient een link titel, URL en omschrijving op te geven.', 147 11 => 'Link Manager', 148 12 => 'Om een link te wijzigen of verwijderen, klik op het Edit icoontje naast de link. Om een nieuwe link toe te voegen, klik op "Link toevoegen" hierboven.', 149 14 => 'Link Categorie', 150 16 => 'Toegang geweigerd', 151 17 => "U probeert een link waar u geen toegang toe heeft te bewerken. Deze poging is vastgelegd. Ga AUB terug naar de <a href=\"{$_CONF['site_admin_url']}/plugins/links/index.php\">linkmanager</a>.", 152 20 => 'Indien anders, geef op', 153 21 => 'opslaan', 154 22 => 'annuleer', 155 23 => 'verwijder' 156 ); 157 158 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Wed Nov 21 12:27:40 2007 | par Balluche grâce à PHPXref 0.7 |
![]() |