root/branches/release-29/php/lib/l10n_nl.php @ 1308

Revision 1308, 3.0 kB (checked in by bsmith, 23 months ago)

Merging commits from release-28 changesets 1274 to 1306

  • Property svn:executable set to *
Line 
1<?php
2# Movable Type (r) Open Source (C) 2001-2008 Six Apart, Ltd.
3# This program is distributed under the terms of the
4# GNU General Public License, version 2.
5#
6# $Id$
7
8global $Lexicon_nl;
9$Lexicon_nl = array(
10
11## php/lib/function.mtvar.php
12        'You used a [_1] tag without a valid name attribute.' => 'U gebruikte een [_1] tag zonder geldig name attribuut',
13        '\'[_1]\' is not a valid function for a hash.' => '\'[_1]\' is geen geldige functie voor een hash.',
14        '\'[_1]\' is not a valid function for an array.' => '\'[_1]\' is geen geldige functie voor een array.',
15        '[_1] [_2] [_3] is illegal.' => '[_1] [_2] [_3] is illegaal.',
16
17## php/lib/archive_lib.php
18        'Page' => 'Pagina',
19        'Individual' => 'per bericht',
20        'Yearly' => 'per jaar',
21        'Monthly' => 'per maand',
22        'Daily' => 'per dag',
23        'Weekly' => 'per week',
24        'Author' => 'Auteur',
25        '(Display Name not set)' => '(Getoonde naam niet ingesteld)',
26        'Author Yearly' => 'per auteur per jaar',
27        'Author Monthly' => 'per auteur per maand',
28        'Author Daily' => 'per auteur per dag',
29        'Author Weekly' => 'per auteur per week',
30        'Category Yearly' => 'per categorie per jaar',
31        'Category Monthly' => 'per categorie per maand',
32        'Category Daily' => 'per categorie per dag',
33        'Category Weekly' => 'per categorie per week',
34
35## php/lib/block.mtsethashvar.php
36
37## php/lib/block.mtif.php
38
39## php/lib/function.mtremotesigninlink.php
40        'TypeKey authentication is not enabled in this blog.  MTRemoteSignInLink can\'t be used.' => 'TypeKey authenticatie is niet ingeschakeld op deze blog.  MTRemoteSignInLink kan niet worden gebruikt.',
41
42## php/lib/block.mtauthorhaspage.php
43        'No author available' => 'Geen auteur beschikbaar',
44
45## php/lib/block.mtauthorhasentry.php
46
47## php/lib/function.mtproductname.php
48        '[_1] [_2]' => '[_1] [_2]',
49
50## php/lib/captcha_lib.php
51        'Captcha' => 'Captcha',
52        'Type the characters you see in the picture above.' => 'Tik te tekens in die u ziet in de afbeelding hierboven.',
53
54## php/lib/function.mtsetvar.php
55        '\'[_1]\' is not a hash.' => '\'[_1]\' is geen hash.',
56        'Invalid index.' => 'Ongeldige index.',
57        '\'[_1]\' is not an array.' => '\'[_1]\' is geen array.',
58        '\'[_1]\' is not a valid function.' => '\'[_1]\' is geen geldige functie.',
59
60## php/lib/block.mtassets.php
61        'sort_by="score" must be used in combination with namespace.' => 'sort_by="score" moet gebruikt worden in combinatie met een namespace.',
62
63## php/lib/block.mtsetvarblock.php
64
65## php/lib/block.mtentries.php
66
67## php/lib/MTUtil.php
68        'userpic-[_1]-%wx%h%x' => 'gebruikersafbeelding-[_1]-%wx%h%x',
69
70## php/lib/function.mtauthordisplayname.php
71
72## php/lib/function.mtentryclasslabel.php
73        'page' => 'pagina',
74        'entry' => 'bericht',
75        'Entry' => 'Bericht',
76);
77function translate_phrase($str, $params = null) {
78    global $Lexicon, $Lexicon_nl;
79    $l10n_str = isset($Lexicon_nl[$str]) ? $Lexicon_nl[$str] : (isset($Lexicon[$str]) ? $Lexicon[$str] : $str);
80    if (extension_loaded('mbstring')) {
81        $str = mb_convert_encoding($l10n_str,mb_internal_encoding(),"UTF-8");
82    } else {
83        $str = $l10n_str;
84    }
85    return translate_phrase_param($str, $params);
86}
87?>
Note: See TracBrowser for help on using the browser.