[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

/language/de_x_sie/ -> plupload.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  * @copyright (c) 2010-2013 Moxiecode Systems AB
   8  * @license GNU General Public License, version 2 (GPL-2.0)
   9  *
  10  * For full copyright and license information, please see
  11  * the docs/CREDITS.txt file.
  12  *
  13  * Deutsche Übersetzung durch die Übersetzer-Gruppe von phpBB.de:
  14  * siehe language/de_x_sie/AUTHORS.md und https://www.phpbb.de/go/ubersetzerteam
  15  *
  16  */
  17  
  18  /**
  19  * DO NOT CHANGE
  20  */
  21  if (!defined('IN_PHPBB'))
  22  {
  23      exit;
  24  }
  25  
  26  if (empty($lang) || !is_array($lang))
  27  {
  28      $lang = array();
  29  }
  30  
  31  // DEVELOPERS PLEASE NOTE
  32  //
  33  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  34  //
  35  // Placeholders can now contain order information, e.g. instead of
  36  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  37  // translators to re-order the output of data while ensuring it remains correct
  38  //
  39  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  40  // equally where a string contains only two placeholders which are used to wrap text
  41  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  42  
  43  $lang = array_merge($lang, array(
  44      'PLUPLOAD_ADD_FILES'        => 'Dateien hinzufügen',
  45      'PLUPLOAD_ADD_FILES_TO_QUEUE'    => 'Fügen Sie die anzuhängenden Dateien der Warteschlange hinzu und klicken Sie auf die Schaltfläche „Warteschlange hochladen“.',
  46      'PLUPLOAD_ALREADY_QUEUED'    => '%s ist bereits in der Warteschlange vorhanden.',
  47      'PLUPLOAD_CLOSE'            => 'Schließen',
  48      'PLUPLOAD_DRAG'                => 'Ziehen Sie neue Dateien in diesen Bereich.',
  49      'PLUPLOAD_DUPLICATE_ERROR'    => 'Doppelte-Datei-Fehler.',
  50      'PLUPLOAD_DRAG_TEXTAREA'    => 'Sie können Dateien auch anhängen, indem Sie sie mit der Maus in den Beitragseditor ziehen.',
  51      'PLUPLOAD_ERR_INPUT'        => 'Eingabestrom konnte nicht geöffnet werden.',
  52      'PLUPLOAD_ERR_MOVE_UPLOADED'    => 'Hochgeladene Datei konnte nicht verschoben werden.',
  53      'PLUPLOAD_ERR_OUTPUT'        => 'Ausgabestrom konnte nicht geöffnet werden.',
  54      'PLUPLOAD_ERR_FILE_TOO_LARGE'    => 'Datei zu groß:',
  55      'PLUPLOAD_ERR_FILE_COUNT'    => 'Dateianzahl-Fehler.',
  56      'PLUPLOAD_ERR_FILE_INVALID_EXT'    => 'Ungültige Dateierweiterung:',
  57      'PLUPLOAD_ERR_RUNTIME_MEMORY'    => 'Der Laufzeitumgebung steht nicht ausreichend Arbeitsspeicher zur Verfügung.',
  58      'PLUPLOAD_ERR_UPLOAD_URL'    => 'Die hochzuladende URL ist entweder fehlerhaft oder existiert nicht.',
  59      'PLUPLOAD_EXTENSION_ERROR'    => 'Dateierweiterungs-Fehler.',
  60      'PLUPLOAD_FILE'                => 'Datei: %s',
  61      'PLUPLOAD_FILE_DETAILS'        => 'Datei: %s, Größe: %d, maximale Dateigröße: %d',
  62      'PLUPLOAD_FILENAME'            => 'Dateiname',
  63      'PLUPLOAD_FILES_QUEUED'        => '%d Dateien in der Warteschlange',
  64      'PLUPLOAD_GENERIC_ERROR'    => 'Allgemeiner Fehler.',
  65      'PLUPLOAD_HTTP_ERROR'        => 'HTTP-Fehler.',
  66      'PLUPLOAD_IMAGE_FORMAT'        => 'Das Bild-Format ist entweder fehlerhaft oder wird nicht unterstützt.',
  67      'PLUPLOAD_INIT_ERROR'        => 'Initialisierungs-Fehler',
  68      'PLUPLOAD_IO_ERROR'            => 'Eingabe-/Ausgabe-Fehler',
  69      'PLUPLOAD_NOT_APPLICABLE'    => 'n/a',
  70      'PLUPLOAD_SECURITY_ERROR'    => 'Sicherheits-Fehler.',
  71      'PLUPLOAD_SELECT_FILES'        => 'Dateien auswählen',
  72      'PLUPLOAD_SIZE'                => 'Größe',
  73      'PLUPLOAD_SIZE_ERROR'        => 'Dateigrößen-Fehler.',
  74      'PLUPLOAD_STATUS'            => 'Status',
  75      'PLUPLOAD_START_UPLOAD'        => 'Hochladen beginnen',
  76      'PLUPLOAD_START_CURRENT_UPLOAD'    => 'Warteschlange hochladen',
  77      'PLUPLOAD_STOP_UPLOAD'        => 'Hochladen stoppen',
  78      'PLUPLOAD_STOP_CURRENT_UPLOAD'    => 'Aktuellen Vorgang stoppen',
  79      // Note: This string is formatted independently by plupload and so does not
  80      // use the same formatting rules as normal phpBB translation strings
  81      'PLUPLOAD_UPLOADED'            => '%d/%d Dateien hochgeladen',
  82  ));


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