[ Index ] |
PHP Cross Reference of phpBB-3.1.12-deutsch |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * This file is part of the phpBB Forum Software package. 5 * 6 * @copyright (c) phpBB Limited <https://www.phpbb.com> 7 * @license GNU General Public License, version 2 (GPL-2.0) 8 * 9 * For full copyright and license information, please see 10 * the docs/CREDITS.txt file. 11 * 12 * Deutsche Übersetzung durch die Übersetzer-Gruppe von phpBB.de: 13 * siehe language/de_x_sie/AUTHORS.md und https://www.phpbb.de/go/ubersetzerteam 14 * 15 */ 16 17 /** 18 * DO NOT CHANGE 19 */ 20 if (!defined('IN_PHPBB')) 21 { 22 exit; 23 } 24 25 if (empty($lang) || !is_array($lang)) 26 { 27 $lang = array(); 28 } 29 30 // DEVELOPERS PLEASE NOTE 31 // 32 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 33 // 34 // Placeholders can now contain order information, e.g. instead of 35 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 36 // translators to re-order the output of data while ensuring it remains correct 37 // 38 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 39 // equally where a string contains only two placeholders which are used to wrap text 40 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 41 42 $lang = array_merge($lang, array( 43 'RECAPTCHA_LANG' => 'de', 44 'RECAPTCHA_NOT_AVAILABLE' => 'Um reCaptcha nutzen zu können, müssen Sie sich ein Konto auf <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a> anlegen.', 45 'CAPTCHA_RECAPTCHA' => 'reCaptcha', 46 'RECAPTCHA_INCORRECT' => 'Der von Ihnen eingegebene Bestätigungscode ist falsch', 47 48 'RECAPTCHA_PUBLIC' => 'Öffentlicher reCaptcha-Schlüssel', 49 'RECAPTCHA_PUBLIC_EXPLAIN' => 'Ihr öffentlicher reCaptcha-Schlüssel. Schlüssel können über <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a> bezogen werden.', 50 'RECAPTCHA_PRIVATE' => 'Privater reCaptcha-Schlüssel', 51 'RECAPTCHA_PRIVATE_EXPLAIN' => 'Ihr privater reCaptcha-Schlüssel. Schlüssel können über <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a> bezogen werden.', 52 53 'RECAPTCHA_EXPLAIN' => 'Um automatische Eingaben zu unterbinden, müssen Sie den angezeigten Text in das untenstehende Feld eingeben.', 54 'RECAPTCHA_SOCKET_ERROR' => 'Bei der Verbindung mit dem reCaptcha-Dienst ist ein Problem aufgetreten: Socket konnte nicht geöffnet werden. Bitte versuchen Sie es später erneut.', 55 ));
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Jan 11 00:25:41 2018 | Cross-referenced by PHPXref 0.7.1 |