Dodawanie tłumaczenia topic prefixes
This commit is contained in:
parent
5c445aa5d0
commit
70ed651cd1
3 changed files with 103 additions and 0 deletions
31
phpbb/topicprefixes/pl/info_acp_topic_prefixes.php
Normal file
31
phpbb/topicprefixes/pl/info_acp_topic_prefixes.php
Normal file
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* Topic Prefixes extension for the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) 2016 phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_TOPIC_PREFIXES' => 'Prefiksy tematu',
|
||||
'ACP_MANAGE_PREFIXES' => 'Zarządzaj prefiksami',
|
||||
|
||||
// ACP Log messages
|
||||
'ACP_LOG_PREFIX_ADDED' => '<strong>Stworzono nowy prefiks tematu</strong><br />» %1$s na forum: %2$s',
|
||||
'ACP_LOG_PREFIX_DELETED' => '<strong>Usunięto prefiks tematu</strong><br />» %1$s z forum: %2$s',
|
||||
));
|
Loading…
Add table
Add a link
Reference in a new issue