Your phpBB Type: Standard phpBB (also called Vanilla (phpBB2) or Olympus (phpBB3))
MODs installed: Yes
Your knowledge: Basic Knowledge
What have you done before the problem was there?
What have you already tryed to solve the problem?
Description and Message
Hello friends, I have a small error in the User Control Panel on my forum, the language file is in the folder ... language / en / mods / thanks.php and I've cleaned the cache several times but the problem continues, I posted below my language file, does it have any errors?
Code: Alles auswählen
<?php
/**
* //Thank Post MOD
* thanks [Deutsch â۠Du]
*
* @package language
* @version $Id: thanks.php 1 2008-08-01 14:31:04Z nickvergessen $
* @copyright (c) 2008 Mahony
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
* Deutsche Übersetzung durch Mahony
*
*
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
// DEVELOPERS PLEASE NOTE
//
// 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
// '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
//
// 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
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » „ “ â۠…
//
//
$lang = array_merge($lang, array(
'THANKS' => 'Thanks',
'THANKS1' => 'Thanks',
'THANKED' => 'Thanked',
'THANKED_IN' => 'times in %s posts',
'THANKS_FROM' => 'The following user would like to thank %s for this post',
'THANKS_REMOVE' => 'Remove thanks',
'THANKS_CANT_ADD' => 'You have already given thanks in this post.',
'THANKS_CANT_REMOVE' => 'You have not given thanks in this post.',
'THANKS_DISALLOW' => 'You are not allowed to give thanks in this post.',
'THANKS_POST' => ' post',
'THANKS_POSTS' => ' posts',
'THANKS_TIME' => ' time',
'THANKS_TIMES' => ' times',
'RESYNC_THANKSCOUNTS' => 'Resynchronise thanks counts',
'RESYNC_THANKSCOUNTS_EXPLAIN' => 'Recalculate the number of thanks count. You need to perform this action after deleting posts or topics.',
'RESYNC_THANKSCOUNTS_CONFIRM' => 'Are you sure you wish to resynchronise thanks counts?',
'LOG_RESYNC_THANKSCOUNTS' => '<strong>User thanks counts resynchronised</strong>',
'IMG_ICON_POST_THANKS' => 'Thanks',
));
//Thank Post MOD
?>