Welcome On Index

Amore a prima vista: come App per gli smartphone
Rispondi
Avatar utente
Darkman
Amministratore
Amministratore
Messaggi: 1204
Iscritto il: marzo 28, 2009, 11:04 pm

Welcome On Index

Messaggio da Darkman »

Extension Name: Welcome On Index
Author: Stoker
Descrizione:
Welcome On Index è ispirato dala Board. vBulletin. Esso mostra una buona accoglienza Box su indice forum con Avatar, un messaggio di benvenuto (cambia durante il giorno), informazioni utente, le statistiche e le informazioni on-line.

Version: 1.0.0


Download:
http://www.phpbb3bbcodes.com/viewtopic.php?f=61&t=2570
Avatar utente
Darkman
Amministratore
Amministratore
Messaggi: 1204
Iscritto il: marzo 28, 2009, 11:04 pm

Re: Welcome On Index

Messaggio da Darkman »

Una delle mie prime MOD del bravo Stoker che ne ha passate tante...

La traduzione è così personalizzabile che non possiamo parlare di una ufficiale, io metto la mia versione:

Codice: Seleziona tutto

<?php
/**
*
* @package phpBB Extension - Welcome on Index
* @copyright (c) 2014 Stoker
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*  @copyright (c) 2014 - translated by Darkman on 2014-11-16

*/

/**
* 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(
    'UP_LATE'             		=> 'Sei in ritardo %1$s...stavi dormendo?',
    'UP_EARLY'             		=> 'Buon Giorno %1$s! Ti sei alzato presto oggi',
    'GOOD_MORNING'           	=> 'Buon Giorno %1$s. Che giornata stupenda!',
   'GOOD_DAY'                 => 'Buona Giornata %1$s! Speriamo che ti trovi bene qui anche oggi',
   'GOOD_AFTERNOON'       		=> 'Buon Pomeriggio %1$s. Finamente sei qui tra noi',
    'GOOD_EVENING'           	=> 'Buona Sera %1$s! Bello rivederti qui',
   	'GOOD_NIGHT'           		=> 'Buona Notte %1$s. È ora di andare a letto',
    'MEMBER_FOR'           		=> 'Membro da:',
    'WELCOME_GUEST'           	=> 'Ospite',
    'WELCOME_HOUR'           	=> 'Ora',
    'WELCOME_HOURS'           	=> 'Ore',
   	'WELCOME_DAY'           	=> 'Giorno',
    'WELCOME_DAYS'           	=> 'Giorni',
    'WELCOME_MONTH'           	=> 'Mese',
    'WELCOME_MONTHS'       		=> 'Mesi',
   	'WELCOME_YEAR'           	=> 'Anno',
    'WELCOME_YEARS'				=> 'Anni',
	'WELCOME_TO_MOD'			=> 'Benvenuto su',
));
Rispondi