[translation] Activity Stats MOD

Post your MOD language files and variables here to allow for translators to translate your MOD into their native language.
Forum rules
MOD Authors: Request translations for your MODs and MODX files here. Post your language file(s) in [ spoiler][ pre]lang file[/pre][/spoiler] BBCode -- this will maintain proper tag spacing. -- If you have many language files included with your MOD, attach it as a download (.txt) file instead.
Please credit translators in your release topic as well as the language file(s).
Important language for MODX: MOD Name, MOD Description, Author Notes, DIY Instructions.
Individual edit comments can be translated as well.

Translators: Post your translated code in [ spoiler][ pre]lang file[/pre][/spoiler] BBCode -- This will retain the proper tabbing and spacing.
Remember to include the language abbriviation for the MODX file (i.e. lang="de").
Please provided your crudentials in the language file as: // @author your_username ( website or email )
Some translations for MODX require exact abbriviation: i.e. "es-ar" or "es-sp"

[translation] Activity Stats MOD

Postby Nico » 31 Mar 2008, 08:50

Modification name: Activity Stats MOD
Author: Highway of Life
Modification description: - Lists of all registered users who have visited the board in the last 24 hours.
- Lists stats on the number of new posts, new topics and new users within the last 24 hours on the index
Modification version: 1.0.0

Mod download and support


Italian translation
Attachments
activity_stats_mod_italian.zip
(997 Bytes) Downloaded 173 times
nico66s Member of the italian phpBB support team at phpBB.it

All my imaginary friends left me because their friends didn't believe I exist..
User avatar
Nico    
Translator
Translator
 
Posts: 26
Joined: 16 May 2007, 03:48
Location: Italy
Gender: Male
phpBB Knowledge: 5


Re: [translation] Activity Stats MOD

Postby JuliusCaesar » 01 Apr 2008, 12:14

here we go, German translation :grin:
Spoiler:
Code: Select all
<?php
/**
*
* activity_stats [German]
*
* @author Highway of Life ( David Lewis ) http://startrekguide.com
* @translator: JuliusCaesar (Julian Lampe)
* @package language
* @version $Id$
* @copyright (c) 2008 Star Trek Guide Group
* @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(
    
'USERS_24HOUR_TOTAL'    => 'Heute waren %d User online.',

    
'24HOUR_TOPICS'            => 'Neue Themen: <strong>%d</strong>',
    
'24HOUR_POSTS'            => 'Neue Beiträge: <strong>%d</strong>',
    
'24HOUR_USERS'            => 'Neue User: <strong>%d</strong>',

    
'24HOUR_STATS'            => 'Tagesstatistik',
));

?>
JuliusCaesar    
Lieutenant Commander
Lieutenant Commander
 
Posts: 430
Joined: 03 Aug 2006, 04:41
Location: Germany
Favorite Team: Germany :D
Gender: Male
phpBB Knowledge: 5

Re: [translation] Activity Stats MOD

Postby ThE KuKa » 11 May 2008, 18:19

Spanish translation: :good:
Spoiler:
Code: Select all
<?php
/**
*
* activity_stats [Spanish]
*
* @author Highway of Life ( David Lewis ) http://startrekguide.com
* @package language
* @version $Id$
* @copyright (c) 2008 Star Trek Guide Group
* @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(
    
'USERS_24HOUR_TOTAL'    => '%d Usuarios nos visitaron en las ultimas 24 horas',

    
'24HOUR_TOPICS'            => 'Nuevos Temas <strong>%d</strong>',
    
'24HOUR_POSTS'            => 'Nuevos Mensajes <strong>%d</strong>',
    
'24HOUR_USERS'            => 'Nuevos Usuarios <strong>%d</strong>',

    
'24HOUR_STATS'            => 'Actividad durante las ultimas 24 horas',
));

?>
User avatar
ThE KuKa    
Supporter
Supporter
 
Posts: 12
Joined: 17 Jan 2008, 14:20
Location: Spain
Favorite Team: F.C. Barcelona
Gender: Male
phpBB Knowledge: 5

Re: [translation] Activity Stats MOD

Postby Raimon » 19 May 2008, 05:38

Dutch translation :yahoo:
Image Activity_Stats_MOD_NL.zip
Raimon    
phpBB Team Member
phpBB Team Member
 
Posts: 28
Joined: 15 Jan 2007, 09:16
Gender: Male

Re: [translation] Activity Stats MOD

Postby Professional » 19 May 2008, 06:33

hi,here is persian translation:
Spoiler:
<?php
/**
*
* activity_stats [English]
*
* @author Highway of Life ( David Lewis ) http://startrekguide.com
* @package language
* @version $Id$
* @copyright (c) 2008 Star Trek Guide Group
* @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(
'USERS_24HOUR_TOTAL' => '%d ????? ??? ??? ?? 24 ???? ????? ?? ????? ???? ???? ??? ',

'24HOUR_TOPICS' => '????? ??? ???? <strong>%d</strong>',
'24HOUR_POSTS' => '??? ??? ???? <strong>%d</strong>',
'24HOUR_USERS' => '??????? ???? <strong>%d</strong>',

'24HOUR_STATS' => '???? ????? ?? 24 ???? ?????',
));

?>
آگهی استخدام - مرجع آموزش موبایل ایرانیان
My Handwritings: Professional Dreams
Every Thing That U Feel,Is Every Thing That I Feel.
Professional    
Borg Drone
Borg Drone
 
Posts: 187
Joined: 30 Mar 2008, 23:42
Gender: Male
phpBB Knowledge: 5

Re: [translation] Activity Stats MOD

Postby SyrianW » 13 Jul 2008, 01:12

??Arabic translation :grin: :
Spoiler:
Code: Select all
<?php
/**
*
* activity_stats [arabic]
*
* @author Highway of Life ( David Lewis ) http://startrekguide.com
* @package language
* @version $Id$
* @copyright (c) 2008 Star Trek Guide Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @translated by: SyrianW hosam kyali
*/

/**
* 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(
   'USERS_24HOUR_TOTAL'   => '%d ??????? ??????? ?? ???  24 ????',

   '24HOUR_TOPICS'         => '???????? ??????? <strong>%d</strong>',
   '24HOUR_POSTS'         => '????????? ??????? <strong>%d</strong>',
   '24HOUR_USERS'         => '??????? ????? <strong>%d</strong>',

   '24HOUR_STATS'         => '?????? ???? ?? 24 ???? ???????',
));

?>
SyrianWindow Admin
try then object, never object before try
User avatar
SyrianW    
Translator
Translator
 
Posts: 68
Joined: 19 Jan 2008, 19:13
Location: Syria
Gender: Male
phpBB Knowledge: 10

Re: [translation] Activity Stats MOD

Postby daroo » 05 Sep 2008, 08:31

Polish translation:
Spoiler:
Code: Select All
<?php
/**
*
* activity_stats [Polish]
*
* @author Highway of Life ( David Lewis ) http://startrekguide.com
* @translator: daroPL ( Dariusz Maciejewski ) http://phpbb.pl
* @package language
* @version $Id$
* @copyright (c) 2008 Star Trek Guide Group
* @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(
'USERS_24HOUR_TOTAL' => '%d u?ytkowników aktywnych przez ostatnie 24 godziny',

'24HOUR_TOPICS' => 'Nowych tematów <strong>%d</strong>',
'24HOUR_POSTS' => 'Nowych postów <strong>%d</strong>',
'24HOUR_USERS' => 'Nowych u?ytkowników <strong>%d</strong>',

'24HOUR_STATS' => 'Aktywno?? przez ostatnie 24 godziny',
));

?>
daroo
MOD Author
MOD Author
 
Posts: 8
Joined: 16 Aug 2008, 09:20
Location: Pozna?, Poland
Gender: Male

Re: [translation] Activity Stats MOD

Postby Los » 16 Mar 2009, 03:46

Norwegian..

Spoiler:
Code: Select all
<?php
/**
*
* activity_stats [Norwegian]
*
* @author Highway of Life ( David Lewis ) http://startrekguide.com
* @package language
* @version $Id$
* @copyright (c) 2008 Star Trek Guide Group
* @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(
   'USERS_24HOUR_TOTAL'   => '%d Aktive brukere siste 24 timer',

   '24HOUR_TOPICS'         => 'Nye emner <strong>%d</strong>',
   '24HOUR_POSTS'         => 'Nye poster <strong>%d</strong>',
   '24HOUR_USERS'         => 'Nye brukere <strong>%d</strong>',

   '24HOUR_STATS'         => 'Aktvitet siste 24 timer',
));

?>
Los
Crewman
Crewman
 
Posts: 6
Joined: 16 May 2008, 03:06
Gender: Male

Re: [translation] Activity Stats MOD

Postby Fire-Fox » 06 Apr 2010, 07:05

Danish
Spoiler:
Code: Select all
<?php
/**
*
* activity_stats [Norwegian]
*
* @author Highway of Life ( David Lewis ) http://startrekguide.com
* @package language
* @version $Id$
* @copyright (c) 2008 Star Trek Guide Group
* @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(
   'USERS_24HOUR_TOTAL'   => '%d Aktive brugere de siste 24 timer',

   '24HOUR_TOPICS'         => 'Nye emner <strong>%d</strong>',
   '24HOUR_POSTS'         => 'Nye indlæg <strong>%d</strong>',
   '24HOUR_USERS'         => 'Nye bruger <strong>%d</strong>',

   '24HOUR_STATS'         => 'Aktvitet de siste 24 timer',
));

?>
GreatZ
Fire-Fox
Denmark
Board : http://androidguides.dk
Fire-Fox    
Supporter
Supporter
 
Posts: 23
Joined: 17 Aug 2009, 11:02
Location: Denmark
Favorite Team: Highslide Mod
Gender: Male


Return to MOD Translations

Who is online

Users browsing this forum: No registered users and 8 guests