[TRANS REQ] MCP Notepad (LIGHT)

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"

[TRANS REQ] MCP Notepad (LIGHT)

Postby Jaymie1989 » 23 Mar 2008, 16:26

Hi,

Could someone do me some language translations of my mod please?

Here is the english language file
Code: Select all
<?php
/**
*
* mcp_notepad_lite [English]
*
* @package language
* @version $Id: mcp_notepad.php,v 1.1.0 2008/03/18 14:29:06
* @copyright (c) 2008 Jay http://www.jaymie1989.co.nr/ 
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
* Based on the UCP Notepad MOD by Waleed Zuberi
*/

if (!defined('IN_PHPBB'))
{
    die;
}

/**
* DO NOT CHANGE
*/
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:
// ? » ? ? ?
//

// MCP Notepad LITE 1.1.0
$lang array_merge($lang, array(
    
'MCP_NOTEPAD_LITE'            =>    'MCP Notepad Lite',
    
'MCP_NOTEPAD_LITE_EXPLAIN'    =>    'This is a light, private notepad, where you can write notes for yourself or other moderators to read later in the textarea below and save them by clicking <em>Save Notes</em>.',
    
'MCP_NOTEPAD_SAVE'        =>    'Save Notes',
    
'MCP_NOTEPAD_SAVE_DONE'    =>    'Note saved successfully.',
));

?>
Jaymie1989    
Supporter
Supporter
 
Posts: 1370
Joined: 30 Sep 2007, 15:51
Location: Some where in phpbb_users table
Favorite Team: Liverpool FC
Gender: Male
phpBB Knowledge: 5


Greek Language

Postby kingmob » 23 Mar 2008, 17:53

Spoiler:
Code: Select All
<?php
/**
*
* mcp_notepad_lite [Greek]
*
* @package language
* @version $Id: mcp_notepad.php,v 1.1.0 2008/03/18 14:29:06
* @copyright (c) 2008 Jay http://www.jaymie1989.co.nr/
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
* Based on the UCP Notepad MOD by Waleed Zuberi
*/

if (!defined('IN_PHPBB'))
{
die;
}

/**
* DO NOT CHANGE
*/
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:
// ? » ? ? ?
//

// MCP Notepad LITE 1.1.0
$lang = array_merge($lang, array(
'MCP_NOTEPAD_LITE'=>'MCP ????????????? Lite',
'MCP_NOTEPAD_LITE_EXPLAIN'=>'???? ????? ??? ?????? ?????????????, ??? ????? ???????? ?? ??????? ??????????, ??? ???? ? ???? ?????? ??????????? ???? ?? ?? ????????? ????????, ??? ????? ???????? ???????? ??? ?? ??????????? ???????? ?? <em>?????????? ??????????</em>.',
'MCP_NOTEPAD_SAVE'=>'?????????? ??????????',
'MCP_NOTEPAD_SAVE_DONE'=>'???????? ?????????? ??????????.',
));

?>
Sorry for my bad english
User avatar
kingmob    
Translator
Translator
 
Posts: 144
Joined: 05 May 2007, 00:14
Location: Greece
Gender: Male

Re: [TRANS REQ] MCP Notepad (LIGHT)

Postby Jaymie1989 » 24 Mar 2008, 01:01

Thanks Kindmob :good:

Any more people?
Jaymie1989    
Supporter
Supporter
 
Posts: 1370
Joined: 30 Sep 2007, 15:51
Location: Some where in phpbb_users table
Favorite Team: Liverpool FC
Gender: Male
phpBB Knowledge: 5

Re: [TRANS REQ] MCP Notepad (LIGHT)

Postby Semi_Deus » 25 Mar 2008, 06:23

Dutch Translation;
Code: Select all
    <?php
    
/**
    *
    * mcp_notepad_lite [English]
    *
    * @package language
    * @version $Id: mcp_notepad.php,v 1.1.0 2008/03/18 14:29:06
    * @copyright (c) 2008 Jay http://www.jaymie1989.co.nr/ 
    * @license http://opensource.org/licenses/gpl-license.php GNU Public License
    *
    * Based on the UCP Notepad MOD by Waleed Zuberi
    */

    
if (!defined('IN_PHPBB'))
    {
        die;
    }

    
/**
    * DO NOT CHANGE
    */
    
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:
    // ? » ? ? ?
    //

    // MCP Notepad LITE 1.1.0
    
$lang array_merge($lang, array(
        
'MCP_NOTEPAD_LITE'            =>    'MCP Notepad Lite',
        
'MCP_NOTEPAD_LITE_EXPLAIN'    =>    'Dit is een lichte, privé gerichte notepad, waar je notities voor jezelf, of voor andere moderators kan achterlaten om later nog eens na te lezen in het onderstaande tekstgedeelte en ze op te slaan door op <em>Sla notities op</em> te klikken.',
        
'MCP_NOTEPAD_SAVE'        =>    'Sla notities op',
        
'MCP_NOTEPAD_SAVE_DONE'    =>    'Notitie succesvol opgeslagen.',
    ));

    
?>
Former Moderator & Styles team member
Image
User avatar
Semi_Deus
Admiral
Admiral
 
Posts: 2479
Joined: 13 Feb 2007, 13:53
Location: Netherlands
Favorite Team: Ajax
Gender: Male
phpBB Knowledge: 8

Re: [TRANS REQ] MCP Notepad (LIGHT)

Postby Jaymie1989 » 25 Mar 2008, 06:49

Thanks So Much
Jaymie1989    
Supporter
Supporter
 
Posts: 1370
Joined: 30 Sep 2007, 15:51
Location: Some where in phpbb_users table
Favorite Team: Liverpool FC
Gender: Male
phpBB Knowledge: 5

Re: [TRANS REQ] MCP Notepad (LIGHT)

Postby jask » 29 Mar 2008, 08:24

Danish translation

Spoiler:
Code: Select All
<?php
/**
*
* mcp_notepad_lite [Danish]
*
* @package language
* @version $Id: mcp_notepad.php,v 1.1.0 2008/03/18 14:29:06
* @copyright (c) 2008 Jay http://www.jaymie1989.co.nr/
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @author Olympus DK Team ( http://www.phpbb3.dk )
*
* Based on the UCP Notepad MOD by Waleed Zuberi
*/

if (!defined('IN_PHPBB'))
{
die;
}

/**
* DO NOT CHANGE
*/
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:
// ? » ? ? ?
//

// MCP Notepad LITE 1.1.0
$lang = array_merge($lang, array(
'MCP_NOTEPAD_LITE' => 'MCP Notepad Lite',
'MCP_NOTEPAD_LITE_EXPLAIN' => 'Dette er et lille privat tekstredigeringsværktøj. Du kan skrive noter til dig selv eller dine medredaktører. Noterne vises i det lille felt forneden og gemmes ved at trykke på <em>Gem note</em>.',
'MCP_NOTEPAD_SAVE' => 'Gem note',
'MCP_NOTEPAD_SAVE_DONE' => 'Noten er gemt.',
));

?>
User avatar
jask    
Translator
Translator
 
Posts: 18
Joined: 09 Apr 2007, 06:31
Gender: Male

Re: [TRANS REQ] MCP Notepad (LIGHT)

Postby JuliusCaesar » 08 Apr 2008, 14:38

here we go
German translation
Spoiler:
Code: Select all

    <?php
    
/**
    *
    * mcp_notepad_lite [German]
    *
    * @package language
    * @version $Id: mcp_notepad.php,v 1.1.0 2008/03/18 14:29:06
    * @copyright (c) 2008 Jay http://www.jaymie1989.co.nr/ 
    * @license http://opensource.org/licenses/gpl-license.php GNU Public License
    *
    * Based on the UCP Notepad MOD by Waleed Zuberi
    * Translated by JuliusCaesar
    */

    if (!defined('IN_PHPBB'))
    {
        die;
    }

    /**
    * DO NOT CHANGE
    */
    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:
    // ? » ? ? ?
    //

    // MCP Notepad LITE 1.1.0
    $lang = array_merge($lang, array(
        'MCP_NOTEPAD_LITE'            =>    'Notizbuch Lite',
        'MCP_NOTEPAD_LITE_EXPLAIN'    =>    'Dies ist die Lite Version des Notizbuch Mods. Hier kansnt du Notizen für dich und andere Moderatoren verfassen. Du kannst deine Notuzen speichern indem du auf <em>Notiz speichern</em> klickst.',
        'MCP_NOTEPAD_SAVE'        =>    'Notiz speichern',
        'MCP_NOTEPAD_SAVE_DONE'    =>    'Notiz gespeichert!',
    ));

    ?>
Last edited by Semi_Deus on 30 Dec 2008, 17:34, edited 1 time in total.
Reason: Added ''Notiz speichern'', because it said you could click: Save Note, while it said: Notiz speichern
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: [TRANS REQ] MCP Notepad (LIGHT)

Postby a200 » 13 Apr 2008, 00:38

French:

Spoiler:
Code: Select all
<?php
/**
*
* mcp_notepad_lite [French]
*
* @package language
* @version $Id: mcp_notepad.php,v 1.1.0 2008/03/18 14:29:06
* @copyright (c) 2008 Jay http://www.jaymie1989.co.nr/
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
* Based on the UCP Notepad MOD by Waleed Zuberi
*/

if (!defined('IN_PHPBB'))
{
    die;
}

/**
* DO NOT CHANGE
*/
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:
// ? » ? ? ?
//

// MCP Notepad LITE 1.1.0
$lang = array_merge($lang, array(
    'MCP_NOTEPAD_LITE'            =>    'Bloc-notes Lite de MCP',
    'MCP_NOTEPAD_LITE_EXPLAIN'    =>    'C'est une lumière, bloc-notes privé, là où vous pouvez écrire des notes pour vous-même ou d'autres modérateurs à lire plus tard dans le secteur des textes ci-dessous et économiser eux en cliquant <em>Économisez Des Notes</em>.',
    'MCP_NOTEPAD_SAVE'        =>    'Économisez Des Notes',
    'MCP_NOTEPAD_SAVE_DONE'    =>    'Notez économisé avec succès.',
));

?>
a200    
Borg Drone
Borg Drone
 
Posts: 67
Joined: 06 May 2007, 00:56
Location: Brisbane, Australia
Gender: Male
phpBB Knowledge: 7

Re: [TRANS REQ] MCP Notepad (LIGHT)

Postby Jaymie1989 » 26 Apr 2008, 03:59

Thanks guys/girls

I will add the other languages in the next release as i dont have my computer and my mods to update them now.

But if there are anymore please come along and help me :D

You all will recive thanks as my way of saying thank you.
Jaymie1989    
Supporter
Supporter
 
Posts: 1370
Joined: 30 Sep 2007, 15:51
Location: Some where in phpbb_users table
Favorite Team: Liverpool FC
Gender: Male
phpBB Knowledge: 5

Re: [TRANS REQ] MCP Notepad (LIGHT)

Postby etgeed » 03 May 2008, 03:45

Mongolian Translation

Spoiler:
Code: Select all
    <?php
    /**
    *
    * mcp_notepad_lite [Mongolian]
    *
    * @package language
    * @version $Id: mcp_notepad.php,v 1.1.0 2008/03/18 14:29:06
    * @copyright (c) 2008 Jay http://www.jaymie1989.co.nr/
    * @license http://opensource.org/licenses/gpl-license.php GNU Public License
    *
    * Based on the UCP Notepad MOD by Waleed Zuberi
    */

    if (!defined('IN_PHPBB'))
    {
        die;
    }

    /**
    * DO NOT CHANGE
    */
    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:
    // ? » ? ? ?
    //

    // MCP Notepad LITE 1.1.0
    $lang = array_merge($lang, array(
        'MCP_NOTEPAD_LITE'            =>    '?????????????? ?????????',
        'MCP_NOTEPAD_LITE_EXPLAIN'    =>    '??? ??? ?????????????? ?????? ?????? ?????? ?????? ????? ???? ????? ?????????????? ???????? ?????????. ????? ?????? ????? ???????? ????????? <em>????????? ????????</em> ??????? ???? ???????????.',
        'MCP_NOTEPAD_SAVE'        =>    '????????? ????????',
        'MCP_NOTEPAD_SAVE_DONE'    =>    '????????? ????????? ????????????.',
    ));

    ?>
User avatar
etgeed
Cadet II
Cadet II
 
Posts: 27
Joined: 31 Mar 2007, 03:11
Location: Mongolia
Gender: Male

Next

Return to MOD Translations

Who is online

Users browsing this forum: AhrefsBot and 17 guests

cron