<?php 
/* 
 You may not change or alter any portion of this comment or credits 
 of supporting developers from this source code or any supporting source code 
 which is considered copyrighted (c) material of the original comment or credit authors. 
 
 This program is distributed in the hope that it will be useful, 
 but WITHOUT ANY WARRANTY; without even the implied warranty of 
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
 */ 
 
/** 
 * wgGallery module 
 * 
 * @copyright       XOOPS Project (https://xoops.org) 
 * @license         GNU GPL 2 or later (https://www.gnu.org/licenses/gpl-2.0.html) 
 * @package         wgGallery 
 * @since           3.23 
 * @author          Xoops Development Team 
 */ 
\define('_DC_WGGALLERY_AVAILABLE', "<span style='color: green;'>Der Ordner ist verfügbar</span>"); 
\define('_DC_WGGALLERY_NOTAVAILABLE', "<span style='color: red;'> Der Ordner ist nicht verfügbar</span>"); 
\define('_DC_WGGALLERY_NOTWRITABLE', "<span style='color: red;'>Sollte die Berechtigung haben ( %d ), aber es hat ( %d )</span>"); 
\define('_DC_WGGALLERY_CREATETHEDIR', 'Erstellen'); 
\define('_DC_WGGALLERY_SETMPERM', 'Berechtigung setzen'); 
\define('_DC_WGGALLERY_DIRCREATED', 'Das Verzeichnis wurde erstellt'); 
\define('_DC_WGGALLERY_DIRNOTCREATED', 'Das Verzeichnis konnte nicht erstellt werden'); 
\define('_DC_WGGALLERY_PERMSET', 'Die Berechtigungen wurden erteilt'); 
\define('_DC_WGGALLERY_PERMNOTSET', 'Die Berechtigung konnte nicht gesetzt werden'); 
 
 |