#################################################################
## MOD Title: phpBB 2.0.15-deutsch Änderungen
## MOD Author: phpbb.de <
webmaster@phpbb.de> (N/A) N/A
## MOD Description: Durch diesen Mod wird ein phpBB 2.0.15 zu einem phpBB 2.0.15-deutsch.
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: 5-10 Minutes
## Files To Edit:
## common.php
## includes/functions.php
## templates/subSilver/admin/board_config_body.tpl
## templates/subSilver/agreement.tpl
##
## Included Files: language/lang_german/, templates/subSilver/images/lang_german/
##############################################################
## For Security Purposes, Please Check:
http://www.phpbb.de/moddb/ for the
## latest version of this MOD.
##
##############################################################
## MOD History:
##
## 2005-05-10 - Version 1.0.0
##
##############################################################
## Bevor du diesen MOD installierst, solltest du alle Dateien sichern.
##############################################################
#
#-----[ COPY ]------------------------------------------
#
copy language/lang_german to language/lang_german
copy templates/subSilver/images/lang_german/ to templates/subSilver/images/lang_german/
#
#-----[ OPEN ]---------------------------------------------
#
common.php
#
#-----[ FIND ]---------------------------------------------
#
/***************************************************************************
*
* 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.
*
***************************************************************************/
#
#-----[ AFTER, ADD ]---------------------------------------------
#
/***************************************************************************
*
* Deutsche Version (c) 2004 phpBB.de
*
* Loescherinngerung /install und /contrib uebersetzt.
*
***************************************************************************/
#
#-----[ FIND ]---------------------------------------------
#
message_die(GENERAL_MESSAGE, 'Please ensure both the install/ and contrib/ directories are deleted');
#
#-----[ REPLACE WITH ]---------------------------------------------
#
message_die(GENERAL_MESSAGE, 'Bitte stelle sicher, das Du die Verzeichnisse install/ und contrib/ gelöscht oder zumindest umbenannt hast.');
#
#-----[ OPEN ]---------------------------------------------
#
includes/functions.php
#
#-----[ FIND ]---------------------------------------------
#
/***************************************************************************
*
* 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.
*
*
***************************************************************************/
#
#-----[ AFTER, ADD ]---------------------------------------------
#
/***************************************************************************
*
* Deutsche Version (c) 2004 phpBB.de
*
* Aenderungen an create_date() und message_die()
*
* create_date: Sommerzeitfix (DST fix)
* message_die: Deutsch als Standardsprache (Messages in German)
*
***************************************************************************/
#
#-----[ FIND ]---------------------------------------------
#
return ( !empty($translate) ) ? strtr(@gmdate($format, $gmepoch + (3600 * $tz)), $translate) : @gmdate($format, $gmepoch + (3600 * $tz));
#
#-----[ REPLACE WITH ]---------------------------------------------
#
return ( !empty($translate) ) ? strtr(@gmdate($format, $gmepoch + (3600 * ($tz+date("I")))), $translate) : @gmdate($format, $gmepoch + (3600 * ($tz+date("I"))));
#
#-----[ FIND ]---------------------------------------------
#
include($phpbb_root_path . 'language/lang_english/lang_main.'.$phpEx);
#
#-----[ REPLACE WITH ]---------------------------------------------
#
include($phpbb_root_path . 'language/lang_german/lang_main.'.$phpEx);
#
#-----[ FIND ]---------------------------------------------
#
include($phpbb_root_path . 'language/lang_english/lang_main.'.$phpEx);
#
#-----[ REPLACE WITH ]---------------------------------------------
#
include($phpbb_root_path . 'language/lang_german/lang_main.'.$phpEx);
#
#-----[ OPEN ]---------------------------------------------
#
templates/subSilver/admin/board_config_body.tpl
#
#-----[ FIND ]---------------------------------------------
#
<h1>{L_CONFIGURATION_TITLE}</h1>
#
#-----[ BEFORE, ADD ]---------------------------------------------
#
<!-- COPPA removed. See below. Sascha Carlin, phpBB.de -->
#
#-----[ FIND ]---------------------------------------------
#
<tr>
<td class="row1">{L_AVATAR_GALLERY_PATH} <br /><span class="gensmall">{L_AVATAR_GALLERY_PATH_EXPLAIN}</span></td>
<td class="row2"><input class="post" type="text" size="20" maxlength="255" name="avatar_gallery_path" value="{AVATAR_GALLERY_PATH}" /></td>
</tr>
#
#-----[ AFTER, ADD ]---------------------------------------------
#
<!-- Um die COPPA-Einstellungen wieder zu aktivieren, bitte diese Zeile loeschen
#
#-----[ FIND ]---------------------------------------------
#
<tr>
<td class="row1">{L_COPPA_MAIL}<br /><span class="gensmall">{L_COPPA_MAIL_EXPLAIN}</span></td>
<td class="row2"><textarea name="coppa_mail" rows="5" cols="30">{COPPA_MAIL}</textarea></td>
</tr>
#
#-----[ AFTER, ADD ]---------------------------------------------
#
Um die COPPA-Einstellungen wieder zu aktivieren, bitte diese Zeile loeschen -->
#
#-----[ OPEN ]---------------------------------------------
#
templates/subSilver/agreement.tpl
#
#-----[ FIND ]---------------------------------------------
#
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
#
#-----[ BEFORE, ADD ]---------------------------------------------
#
<!-- COPPA removed. See below. Sascha Carlin, phpBB.de -->
#
#-----[ FIND ]---------------------------------------------
#
<td><span class="genmed"><br />{AGREEMENT}<br /><br /><br /><div align="center"><a href="{U_AGREE_OVER13}" class="genmed">{AGREE_OVER_13}</a><br /><br /><a href="{U_AGREE_UNDER13}" class="genmed">{AGREE_UNDER_13}</a><br /><br /><a href="{U_INDEX}" class="genmed">{DO_NOT_AGREE}</a></div><br /></span></td>
#
#-----[ REPLACE WITH ]---------------------------------------------
#
<td><span class="genmed"><br />{AGREEMENT}<br /><br /><br /><div align="center"><a href="{U_AGREE_OVER13}" class="genmed">{AGREE_OVER_13}</a><br /><br /><a href="{U_INDEX}" class="genmed">{DO_NOT_AGREE}</a></div><br /></span></td>
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM