<?php
/**************************************************
  Coppermine Plugin - PotD/PotW
  *************************************************
  Copyright (c) 2006 Paul Van Rompay
  Plugin based on Mod by Casper, Copyright 2005
  *************************************************
  This program 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; either version 2 of the License, or
  (at your option) any later version.
  *************************************************
  translated into German by nointerest
  Comment by nointerest: I include a translated version of the README.txt - its called README-GER.txt
***************************************************/

if (!defined('IN_COPPERMINE')) { die('Not in Coppermine...'); }

global $lang_meta_album_names, $lang_editpics_php; 

$lang_plugin_potd = array(
  'display_name' => 'Picture of the Day/Week',		// Display Name
  'config_title'  => 'Konfiguriere das "Picture of the Day" Plugin',	// Title of the button on the gallery config menu
  'config_button' => 'POTD/W',			// Label of the button on the gallery config menu
  'page_success'  => 'Die Einstellungen wurden aktualisiert.',		// Page success message
  'page_failure'  => 'Die Einstellungen konnten NICHT aktualisiert werden.',		// Page failure message
  'install_done'  => 'Installation abgeschlossen.',		// Message after complete installation
  'install_note'  => 'Stelle sicher dass Du den Hack für die include/functions.inc.php wie in der README-GER.txt beschrieben angewendet hast.',
);
//   'install_note'  => 'Benutze den Button in der Admin-Toolbar um das Plugin zu konfigurieren.',	// Note about configuring plugin

$lang_plugin_potd_config = array(
  'choice_yes'   => 'Ja',				// Choice: yes
  'choice_no'    => 'Nein',				// Choice: no

  'button_done'  => 'Fertig und Übertragen',				// Config submit button
);

$plugin_meta_album_names = array(
  'potd' => 'Foto des Tages',
  'potdarch' => 'Foto des Tages - Archiv',
  'potw' => 'Foto der Woche',
  'potwarch' => 'Foto der Woche - Archiv',
  'by' => 'von unserem Mitglied ',
);
$lang_meta_album_names = array_merge($lang_meta_album_names, $plugin_meta_album_names);

$plugin_editpics_php = array(
  'potdnew' => 'Als Foto des Tages einrichten',
  'potdold' => 'In das Foto des Tages - Archiv verschieben',
  'potwnew' => 'Als Foto der Woche einrichten',
  'potwold' => 'In das Foto der Woche - Archiv verschieben',
);
if (defined('EDITPICS_PHP')) $lang_editpics_php = array_merge($lang_editpics_php, $plugin_editpics_php);

?>
