I'm looking for translation for my Report2Topic mod.
Language files:
info_acp_report_to_topic.php:
Spoiler:
- Code: Select all
<?php
/**
*
* acp_report_to_topic [English]
*
* @package language
* @version $Id: info_report_to_topic.php 1 2008-07-30 13:57:48Z Erik Frèrejean $
* @copyright (c) 2008 Erik Frèrejean ( N/A ) http://erikphpbbmods.sourceforge.net
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
$lang = array_merge($lang, array(
'ACP_REPORT_TO_TOPIC' => 'Report2Topic',
'ACP_R2T_SETTINGS' => 'Report2Topic settings',
'NO_BOT' => 'You have to specify a user to post the reports!',
'POST_BOT' => 'Poster username',
'POST_BOT_EXPLAIN' => 'Specify the user that is used to post the reports.',
'POST_FORUM' => 'Reports forum',
'POST_FORUM_EXPLAIN' => 'Specify the forum that is used to post the reports.',
'R2T' => 'Report2Topic settings',
'R2T_EXPLAIN' => 'The main settings for the Report2Topic mod.',
'R2T_UPDATED' => 'The Report2Topic settings are successfully updated!',
));
?>
report_to_topic.php:
Spoiler:
- Code: Select all
<?php
/**
*
* acp_users [English]
*
* @package language
* @version $Id: report_to_topic.php 1 2008-07-30 13:57:48Z Erik Frèrejean $
* @copyright (c) 2008 Erik Frèrejean ( N/A ) http://erikphpbbmods.sourceforge.net
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* 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
$lang = array_merge($lang, array(
'R2T_TITLE' => 'Reported post: %s',
'R2T_POST' => 'This post is created to notify you of a reported post. The details of the post are listed below:
[b]Reporter:[/b] %1$s
[b]Reported post:[/b] %2$s
[b]Posted in:[/b] [url=%7$s]%3$s[/url]
[b]Poster:[/b] %4$s
[b]Report reason:[/b]
[quote]%5$s[/quote]
[b]Original post:[/b]
[quote]%6$s[/quote]
[size=80][i]This is an automaticly created message[/i][/size]',
));
?>
I have already a Dutch translation of these files!
MODx:
Spoiler:
- Code: Select all
<title lang="en">Report2Topic</title>
<description lang="en">When a user reports a post, create a topic in a specified forum with all the report details.</description>
<author-notes lang="en">Make sure that you have setup the MOD before the report feature is used!</author-notes>

Proud member of the phpBB support team
STG Support team member
STG Moderator team member



Let's see... Here goes the


.
