Update of /cvsroot/phpbbswedtran/phpbb3se/language/sv
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv29843
Added Files:
captcha_qa.php
Log Message:
Ny fil i 3.0.6 för QA-CAPTCHA
--- NEW FILE: captcha_qa.php ---
<?php
/**
*
* captcha_qa[Swedish] (version for phpBB 3.0.6)
*
* @package language
* @copyright (c) 2006 phpBB Group, modified and translated by Swedish translation team
* @source file is copyright (c) 2005 phpBB Group, modified and translated by Swedish translation team
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
* @author (c) 2008-2009 Peetra
* Translators: Swedish translation team, working at http://www.phpbb-se.com contact translation team leader at pee...@gm...
*
* This file is part of the Swedish language package for phpBB 3.0.x.
* Copyright (c) 2006-2009 Swedish translation team
*
* The Swedish language package for phpBB 3.0.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 Swedish Language package for phpBB 3.0.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(
'CAPTCHA_QA' => 'Q&A CAPTCHA',
'CONFIRM_QUESTION_EXPLAIN' => 'Den här frågan är till för att indentifiera och förebygga automatiska registreringar.',
'CONFIRM_QUESTION_WRONG' => 'Du har tillhandahållit ett felaktigt svar på bekräftelsefrågan.',
'QUESTION_ANSWERS' => 'Svar',
'ANSWERS_EXPLAIN' => 'Var god och ange korrekta svar på frågan',
'CONFIRM_QUESTION' => 'Fråga',
'ANSWER' => 'Svar',
'EDIT_QUESTION' => 'Redigera fråga',
'QUESTIONS' => 'Frågor',
'QUESTIONS_EXPLAIN' => 'Här ska du specificiera frÃ¥gorna, som användare bör besvara i samband med registreringen. För att använda detta tillägg, mÃ¥ste Ã¥tminstone en frÃ¥ga vara tillgänglig pÃ¥ forumets standardsprÃ¥k. Dessa frÃ¥gor bör vara enkla för din mÃ¥lgrupp att besvara, men omöjliga att besvara genom en automatisk robotsökning med Googleâ¢. Det bästa resultatet uppnÃ¥r du genom att använda ett stort urval frÃ¥gor, som regelbundet bytes ut. Inaktivera strikt kontroll, om din frÃ¥ga baserar sig pÃ¥ kommatering eller skrivning med stor begynnelsebokstav.',
'QUESTION_DELETED' => 'Frågan togs bort',
'QUESTION_LANG' => 'Språk',
'QUESTION_LANG_EXPLAIN' => 'Språket, som den här frågan, med tillhörnade svar är skrivet på.',
'QUESTION_STRICT' => 'Strikt kontroll',
'QUESTION_STRICT_EXPLAIN' => 'Aktivera för att påtvinga skrivning med stor begynnelsebokstav och blanktecken.',
'QUESTION_TEXT' => 'Fråga',
'QUESTION_TEXT_EXPLAIN' => 'Frågan kommer at ställas i samband med registreringen.',
'QA_ERROR_MSG' => 'Var god fyll i alla fält och ange minst ett svar.',
));
?>
|