Просмотр файла vendor/verot/class.upload.php/src/lang/class.upload.de_DE.php

Размер файла: 6.39Kb
  1. <?php
  2. // +------------------------------------------------------------------------+
  3. // | class.upload.de_DE.php |
  4. // +------------------------------------------------------------------------+
  5. // | Copyright (c) some dude from Germany 2010. All rights reserved. |
  6. // | Version 0.25 |
  7. // | Last modified 09/10/2010 |
  8. // +------------------------------------------------------------------------+
  9. // | This program is free software; you can redistribute it and/or modify |
  10. // | it under the terms of the GNU General Public License version 2 as |
  11. // | published by the Free Software Foundation. |
  12. // | |
  13. // | This program is distributed in the hope that it will be useful, |
  14. // | but WITHOUT ANY WARRANTY; without even the implied warranty of |
  15. // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
  16. // | GNU General Public License for more details. |
  17. // | |
  18. // | You should have received a copy of the GNU General Public License |
  19. // | along with this program; if not, write to the |
  20. // | Free Software Foundation, Inc., 59 Temple Place, Suite 330, |
  21. // | Boston, MA 02111-1307 USA |
  22. // | |
  23. // | Please give credit on sites that use class.upload and submit changes |
  24. // | of the script so other people can use them as well. |
  25. // | This script is free to use, don't abuse. |
  26. // +------------------------------------------------------------------------+
  27.  
  28. /**
  29. * Class upload german translation
  30. *
  31. * @version 0.25
  32. * @author some dude from Germany
  33. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  34. * @copyright some dude from Germany
  35. * @package cmf
  36. * @subpackage external
  37. */
  38.  
  39. $translation = array();
  40. $translation['file_error'] = 'Dateifehler. Bitte versuchen Sie es erneut.';
  41. $translation['local_file_missing'] = 'Lokale Datei existiert nicht.';
  42. $translation['local_file_not_readable'] = 'Lokale Datei ist nicht lesbar.';
  43. $translation['uploaded_too_big_ini'] = 'Datei Ladefehler (die hochgeladene Datei überschreitet die upload_max_filesize Anweisung der php.ini).';
  44. $translation['uploaded_too_big_html'] = 'Datei Ladefehler (die hochgeladene Datei überschreitet die MAX_FILE_SIZE Anweisung, die im html Formular definiert wurde).';
  45. $translation['uploaded_partial'] = 'Datei Ladefehler (die hochgeladene Datei wurde nur teilweise hochgeladen).';
  46. $translation['uploaded_missing'] = 'Datei Ladefehler (es wurde keine Datei hochgeladen).';
  47. $translation['uploaded_unknown'] = 'Datei Ladefehler (unbekannter Fehler Code).';
  48. $translation['try_again'] = 'Datei Ladefehler. Bitte versuchen Sie es erneut.';
  49. $translation['file_too_big'] = 'Die Datei ist zu groß.';
  50. $translation['no_mime'] = 'MIME type kann nicht erkannt werden.';
  51. $translation['incorrect_file'] = 'Falscher Dateityp.';
  52. $translation['image_too_wide'] = 'Bild zu breit.';
  53. $translation['image_too_narrow'] = 'Bild zu schmal.';
  54. $translation['image_too_high'] = 'Bild zu hoch.';
  55. $translation['image_too_short'] = 'Bild zu kurz.';
  56. $translation['ratio_too_high'] = 'Bildverhältnis zu hoch (Bild zu breit).';
  57. $translation['ratio_too_low'] = 'Bildverhältnis zu gering (Bild zu hoch).';
  58. $translation['too_many_pixels'] = 'Das Bild hat zu viele Pixel.';
  59. $translation['not_enough_pixels'] = 'Das Bild hat nicht genug Pixel.';
  60. $translation['file_not_uploaded'] = 'Datei nicht hochgeladen. Prozess nicht ausführbar.';
  61. $translation['already_exists'] = '%s existiert bereits. Bitte ändern Sie den Dateinamen.';
  62. $translation['temp_file_missing'] = 'Keine korrekte temporäre Originaldatei. Prozess nicht ausführbar.';
  63. $translation['source_missing'] = 'Keine korrekte Upload Originaldatei. Prozess nicht ausführbar.';
  64. $translation['destination_dir'] = 'Zielverzeichnis kann nicht erstellt werden. Prozess nicht ausführbar.';
  65. $translation['destination_dir_missing'] = 'Zielverzeichnis existiert nicht. Prozess nicht ausführbar.';
  66. $translation['destination_path_not_dir'] = 'Zielpfad ist kein Verzeichnis. Prozess nicht ausführbar.';
  67. $translation['destination_dir_write'] = 'Zielverzeichnis ist nicht beschreibbar. Prozess nicht ausführbar.';
  68. $translation['destination_path_write'] = 'Zielpfad ist nicht beschreibbar. Prozess nicht ausführbar.';
  69. $translation['temp_file'] = 'Kann keine temporäre Datei erstellen. Prozess nicht ausführbar.';
  70. $translation['source_not_readable'] = 'Originaldatei ist nicht lesbar. Prozess nicht ausführbar.';
  71. $translation['no_create_support'] = 'Erstellung von %s wird nicht unterstützt.';
  72. $translation['create_error'] = 'Fehler beim Erstellen des %s Bildes von der Originaldatei.';
  73. $translation['source_invalid'] = 'Originaldatei nicht lesbar. Kein Bild?';
  74. $translation['gd_missing'] = 'GD scheint nicht präsent zu sein.';
  75. $translation['watermark_no_create_support'] = 'Erstellung von %s nicht möglich, da Wasserzeichen nicht lesbar.';
  76. $translation['watermark_create_error'] = 'Erstellung von %s nicht möglich, da Wasserzeichen nicht erstellbar.';
  77. $translation['watermark_invalid'] = 'Unbekanntes Bildformat, Wasserzeichen nicht lesbar.';
  78. $translation['file_create'] = 'Erstellung %s wird nicht unterstützt.';
  79. $translation['no_conversion_type'] = 'Kein Konvertierungstyp definiert.';
  80. $translation['copy_failed'] = 'Fehler beim Kopieren der Datei auf den Server. Kopiervorgang missglückt.';
  81. $translation['reading_failed'] = 'Fehler beim Lesen der Datei.';
  82. ?>