[Phpbb-3-dk-checkinsphpbb32x] SF.net SVN: phpbb-3-dk:[84] phpBB/root/language/da/recaptcha.php
Status: Beta
Brought to you by:
john-hjorth
|
From: <ja...@us...> - 2008-10-08 19:02:21
|
Revision: 84
http://phpbb-3-dk.svn.sourceforge.net/phpbb-3-dk/?rev=84&view=rev
Author: jansk
Date: 2008-10-08 19:02:16 +0000 (Wed, 08 Oct 2008)
Log Message:
-----------
Ok recaptcha.php kommer her :-)
Added Paths:
-----------
phpBB/root/language/da/recaptcha.php
Added: phpBB/root/language/da/recaptcha.php
===================================================================
--- phpBB/root/language/da/recaptcha.php (rev 0)
+++ phpBB/root/language/da/recaptcha.php 2008-10-08 19:02:16 UTC (rev 84)
@@ -0,0 +1,67 @@
+<?php
+/**
+*
+* recaptcha.php [Danish]
+*
+* @package language
+* @version Id: recaptcha.php 8903 2008-03-29 00:08:34Z Kellanved $
+* @version $Id: $
+* @copyright (c) 2008 phpBB Group
+* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+* Translators: Olympus DK Team, working at http://www.phpBB3.dk and http://area51.phpBB3.dk
+*
+* This file is part of the Danish language package for phpBB 3.2.x.
+* Copyright (c) 2008 Olympus DK Team
+*
+* The Danish language package for phpBB 3.2.x is free software; you can redistribute it and/or
+* modify it under the terms of the GNU General Public License as published by the Free Software
+* Foundation, version 2 of the License.
+*
+* The Danish language package for phpBB 3.2.x is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
+* A PARTICULAR PURPOSE. See the GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License along with this language
+* package. If not, see <http://www.gnu.org/licenses/old-licenses/gpl-2.0.html>.
+*
+*/
+
+/**
+* DO NOT CHANGE
+*/
+if (!defined('IN_PHPBB'))
+{
+ exit;
+}
+
+if (empty($lang) || !is_array($lang))
+{
+ $lang = array();
+}
+
+// DEVELOPERS PLEASE NOTE
+//
+// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
+//
+// Placeholders can now contain order information, e.g. instead of
+// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
+// translators to re-order the output of data while ensuring it remains correct
+//
+// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
+// equally where a string contains only two placeholders which are used to wrap text
+// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
+
+$lang = array_merge($lang, array(
+ 'RECAPTCHA_LANG' => 'da',
+ 'RECAPTCHA_NOT_AVAILABLE' => 'Du skal tilmelde dig for at anvende reCaptcha på <a href="http://recaptcha.net">reCaptcha.net</a>.',
+ 'CAPTCHA_RECAPTCHA' => 'reCaptcha',
+ 'RECAPTCHA_INCORRECT' => 'Den visuelle bekræftelseskode var ikke korrekt',
+
+ 'RECAPTCHA_PUBLIC' => 'Offentlig reCaptcha nøgle',
+ 'RECAPTCHA_PUBLIC_EXPLAIN' => 'Din offentlige reCaptcha nøgle. Du kan hente nøgler på <a href="http://recaptcha.net">reCaptcha.net</a>.',
+ 'RECAPTCHA_PRIVATE' => 'Privat reCaptcha nøgle',
+ 'RECAPTCHA_PRIVATE_EXPLAIN' => 'Din private reCaptcha nøgle. Du kan hente nøgler på <a href="http://recaptcha.net">reCaptcha.net</a>.',
+
+));
+
+?>
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|