[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

/language/de/ -> app.php (source)

   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/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  // Some characters you may want to copy&paste:
  43  // ’ » „ “ — …
  44  //
  45  
  46  $lang = array_merge($lang, array(
  47      'CONTROLLER_ARGUMENT_VALUE_MISSING'    => 'Fehlender Wert für Argument #%1$s: <strong>%3$s</strong> in Klasse <strong>%2$s</strong>',
  48      'CONTROLLER_NOT_SPECIFIED'            => 'Es wurde kein Controller (Steuerungsklasse) definiert.',
  49      'CONTROLLER_METHOD_NOT_SPECIFIED'    => 'Für den Controller (Steuerungsklasse) wurde keine Methode festgelegt.',
  50      'CONTROLLER_SERVICE_UNDEFINED'        => 'Der Dienst für den Controller (Steuerungsklasse) „<strong>%s</strong>“ ist nicht in ./config/services.yml definiert.',
  51  ));


Generated: Thu Jan 11 00:25:41 2018 Cross-referenced by PHPXref 0.7.1