Unreported: fixed a utf8 bug

This commit is contained in:
Ice
2008-02-05 20:02:43 +00:00
parent 5a0882fab8
commit 71cb5fbcda
2 changed files with 76 additions and 76 deletions

View File

@@ -1,37 +1,37 @@
<?php <?php
/** /**
* *
* @package - Board3portal * @package - Board3portal
* @version $Id$ * @version $Id$
* @copyright (c) kevin / saint ( http://www.board3.de/ ), (c) Ice, (c) nickvergessen ( http://www.flying-bits.org/ ), (c) redbull254 ( http://www.digitalfotografie-foren.de ) * @copyright (c) kevin / saint ( http://www.board3.de/ ), (c) Ice, (c) nickvergessen ( http://www.flying-bits.org/ ), (c) redbull254 ( http://www.digitalfotografie-foren.de )
* @based on: phpBB3 Portal by Sevdin Filiz, www.phpbb3portal.com * @based on: phpBB3 Portal by Sevdin Filiz, www.phpbb3portal.com
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
if (!defined('IN_PHPBB')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
if (empty($lang) || !is_array($lang)) if (empty($lang) || !is_array($lang))
{ {
$lang = array(); $lang = array();
} }
// DEVELOPERS PLEASE NOTE // DEVELOPERS PLEASE NOTE
// //
// All language files should use UTF-8 as their encoding and the files must not contain a BOM. // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
// //
// Placeholders can now contain order information, e.g. instead of // Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct // translators to re-order the output of data while ensuring it remains correct
// //
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text // equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'LOG_CONFIG_GENERAL' => '<strong>Portal: Allgemeine Einstellungen geändert</strong>', 'LOG_CONFIG_GENERAL' => '<strong>Portal: Allgemeine Einstellungen geändert</strong>',
'LOG_CONFIG_NEWS' => '<strong>Portal: Einstellungen für Aktuelle Beiträge geändert</strong>', 'LOG_CONFIG_NEWS' => '<strong>Portal: Einstellungen für Aktuelle Beiträge geändert</strong>',
'LOG_CONFIG_ANNOUNCEMENTS' => '<strong>Portal: Einstellungen für Bekanntmachungen geändert</strong>', 'LOG_CONFIG_ANNOUNCEMENTS' => '<strong>Portal: Einstellungen für Bekanntmachungen geändert</strong>',
@@ -41,11 +41,11 @@ $lang = array_merge($lang, array(
'LOG_CONFIG_PAYPAL' => '<strong>Portal: Einstellungen für PayPal Spenden geändert</strong>', 'LOG_CONFIG_PAYPAL' => '<strong>Portal: Einstellungen für PayPal Spenden geändert</strong>',
'LOG_CONFIG_ATTACHMENTS' => '<strong>Portal: Einstellungen für Dateianhänge geändert</strong>', 'LOG_CONFIG_ATTACHMENTS' => '<strong>Portal: Einstellungen für Dateianhänge geändert</strong>',
'LOG_CONFIG_MEMBERS' => '<strong>Portal: Einstellungen für die neuesten Mitglieder geändert</strong>', 'LOG_CONFIG_MEMBERS' => '<strong>Portal: Einstellungen für die neuesten Mitglieder geändert</strong>',
'LOG_CONFIG_POLLS' => '<strong>Portal: Einstellungen für die Umfragen geändert</strong>', 'LOG_CONFIG_POLLS' => '<strong>Portal: Einstellungen für die Umfragen geändert</strong>',
'LOG_CONFIG_BOTS' => '<strong>Portal: Einstellungen für die letzten Bots geändert</strong>', 'LOG_CONFIG_BOTS' => '<strong>Portal: Einstellungen für die letzten Bots geändert</strong>',
'LOG_CONFIG_POSTER' => '<strong>Portal: Einstellungen für die Vielschreiber geändert</strong>', 'LOG_CONFIG_POSTER' => '<strong>Portal: Einstellungen für die Vielschreiber geändert</strong>',
'LOG_CONFIG_MINICALENDAR' => '<strong>Portal: Einstellungen für den Mini Kalender geändert</strong>', 'LOG_CONFIG_MINICALENDAR' => '<strong>Portal: Einstellungen für den Mini Kalender geändert</strong>',
)); ));
?> ?>

View File

@@ -1,37 +1,37 @@
<?php <?php
/** /**
* *
* @package - Board3portal * @package - Board3portal
* @version $Id$ * @version $Id$
* @copyright (c) kevin / saint ( http://www.board3.de/ ), (c) Ice, (c) nickvergessen ( http://www.flying-bits.org/ ), (c) redbull254 ( http://www.digitalfotografie-foren.de ) * @copyright (c) kevin / saint ( http://www.board3.de/ ), (c) Ice, (c) nickvergessen ( http://www.flying-bits.org/ ), (c) redbull254 ( http://www.digitalfotografie-foren.de )
* @based on: phpBB3 Portal by Sevdin Filiz, www.phpbb3portal.com * @based on: phpBB3 Portal by Sevdin Filiz, www.phpbb3portal.com
* @license http://opensource.org/licenses/gpl-license.php GNU Public License * @license http://opensource.org/licenses/gpl-license.php GNU Public License
* *
*/ */
if (!defined('IN_PHPBB')) if (!defined('IN_PHPBB'))
{ {
exit; exit;
} }
if (empty($lang) || !is_array($lang)) if (empty($lang) || !is_array($lang))
{ {
$lang = array(); $lang = array();
} }
// DEVELOPERS PLEASE NOTE // DEVELOPERS PLEASE NOTE
// //
// All language files should use UTF-8 as their encoding and the files must not contain a BOM. // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
// //
// Placeholders can now contain order information, e.g. instead of // Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct // translators to re-order the output of data while ensuring it remains correct
// //
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text // equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'LOG_CONFIG_GENERAL' => '<strong>Portal: Altered general settings</strong>', 'LOG_CONFIG_GENERAL' => '<strong>Portal: Altered general settings</strong>',
'LOG_CONFIG_NEWS' => '<strong>Portal: Altered news settings</strong>', 'LOG_CONFIG_NEWS' => '<strong>Portal: Altered news settings</strong>',
'LOG_CONFIG_ANNOUNCEMENTS' => '<strong>Portal: Altered announcements settings</strong>', 'LOG_CONFIG_ANNOUNCEMENTS' => '<strong>Portal: Altered announcements settings</strong>',
@@ -41,11 +41,11 @@ $lang = array_merge($lang, array(
'LOG_CONFIG_PAYPAL' => '<strong>Portal: Altered paypal donations settings</strong>', 'LOG_CONFIG_PAYPAL' => '<strong>Portal: Altered paypal donations settings</strong>',
'LOG_CONFIG_ATTACHMENTS' => '<strong>Portal: Altered attachments settings</strong>', 'LOG_CONFIG_ATTACHMENTS' => '<strong>Portal: Altered attachments settings</strong>',
'LOG_CONFIG_MEMBERS' => '<strong>Portal: Altered latest members settings</strong>', 'LOG_CONFIG_MEMBERS' => '<strong>Portal: Altered latest members settings</strong>',
'LOG_CONFIG_POLLS' => '<strong>Portal: Altered poll settings</strong>', 'LOG_CONFIG_POLLS' => '<strong>Portal: Altered poll settings</strong>',
'LOG_CONFIG_BOTS' => '<strong>Portal: Altered last visited bots settings</strong>', 'LOG_CONFIG_BOTS' => '<strong>Portal: Altered last visited bots settings</strong>',
'LOG_CONFIG_POSTER' => '<strong>Portal: Altered most posters settings</strong>', 'LOG_CONFIG_POSTER' => '<strong>Portal: Altered most posters settings</strong>',
'LOG_CONFIG_MINICALENDAR' => '<strong>Portal: Altered mini calendar settings</strong>', 'LOG_CONFIG_MINICALENDAR' => '<strong>Portal: Altered mini calendar settings</strong>',
)); ));
?> ?>