Dodawanie tłumaczenia topic prefixes

This commit is contained in:
Mateusz Pieła 2021-01-04 20:50:30 +01:00
parent 5c445aa5d0
commit 70ed651cd1
3 changed files with 103 additions and 0 deletions

View file

@ -0,0 +1,26 @@
<?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(
'TOPIC_PREFIX' => 'Prefiks tematu',
));