Skip to content

Commit

Permalink
[TR][IT] Re-added the mistakenly deleted Mauron's IT translation
Browse files Browse the repository at this point in the history
  • Loading branch information
brunoais committed Apr 3, 2016
1 parent f6aec67 commit 49783ad
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
33 changes: 33 additions & 0 deletions language/it/acp/permissions_strings.php
@@ -0,0 +1,33 @@
<?php
/**
*
* @package phpBB Extension - brunoais readOthersTopics
* @copyright (c) 2015 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/

/**
* 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.

$lang = array_merge($lang, array(

'ACL_F_READ_OTHERS_TOPICS' => 'Può leggere argomenti aperti da altri',
'BRUNOAIS_ROLE_READ_OTHERS_TOPICS' => 'Accesso standard tranne argomenti aperti da altri',
'BRUNOAIS_ROLE_DESCRIPTION_READ_OTHERS_TOPICS' => 'Può usare molte caratteristiche del forum, come per Accesso standard, ma non può visualizzare gli argomenti aperti da altri utenti.',

));
34 changes: 34 additions & 0 deletions language/it/common.php
@@ -0,0 +1,34 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

/**
* 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.

$lang = array_merge($lang, array(
'SORRY_AUTH_READ_OTHER' => 'Non sei autorizzato a leggere quest’argomento.',

));

0 comments on commit 49783ad

Please sign in to comment.