From 70ed651cd160584ac91dff545ee8fcfa0553e460 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Pie=C5=82a?= Date: Mon, 4 Jan 2021 20:50:30 +0100 Subject: [PATCH] =?UTF-8?q?Dodawanie=20t=C5=82umaczenia=20topic=20prefixes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- phpbb/topicprefixes/pl/acp_topic_prefixes.php | 46 +++++++++++++++++++ .../pl/info_acp_topic_prefixes.php | 31 +++++++++++++ phpbb/topicprefixes/pl/topic_prefixes.php | 26 +++++++++++ 3 files changed, 103 insertions(+) create mode 100644 phpbb/topicprefixes/pl/acp_topic_prefixes.php create mode 100644 phpbb/topicprefixes/pl/info_acp_topic_prefixes.php create mode 100644 phpbb/topicprefixes/pl/topic_prefixes.php diff --git a/phpbb/topicprefixes/pl/acp_topic_prefixes.php b/phpbb/topicprefixes/pl/acp_topic_prefixes.php new file mode 100644 index 0000000..200e523 --- /dev/null +++ b/phpbb/topicprefixes/pl/acp_topic_prefixes.php @@ -0,0 +1,46 @@ + + * @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_PREFIXES' => 'Prefiksy tematów', + 'TOPIC_PREFIXES_EXPLAIN' => 'Z tej strony możesz zarządzać prefikasmi tematów dla forów.', + + 'TOPIC_PREFIX_TAG' => 'Etykieta prefiksu', + 'TOPIC_PREFIX_ENABLED' => 'Włączony prefiks', + 'TOPIC_PREFIXES_EMPTY' => 'Nie ustawiłeś prefiksów dla tego forum.', + 'TOPIC_PREFIX_PLACEHOLDER' => '[Mój Prefiks]', + + 'CREATE_TOPIC_PREFIX' => 'Stwórz nowy prefiks', + 'DELETE_TOPIC_PREFIX_CONFIRM' => 'Czy na pewno chcesz usunąć ten prefiks?', + 'TOPIC_PREFIX_DELETED' => 'Prefiks tematu został usunięty.', + + 'TOPIC_PREFIX_TOGGLE_STATE' => array( + 0 => 'Kliknij aby włączyć', + 1 => 'Kliknij aby wyłączyć', + ), + + // Nested set exception messages + 'TOPIC_PREFIXES_LOCK_FAILED_ACQUIRE' => 'Nastąpił błąd w rozszerzeniu prefiksu tematu z powodu nie otrzymania możliwośći blokady tabeli.', + 'TOPIC_PREFIXES_INVALID_ITEM' => 'Żądany prefiks tematu nie istnieje.', + 'TOPIC_PREFIXES_INVALID_PARENT' => 'Żadany prefiks tematu nie ma rodzica.', +)); diff --git a/phpbb/topicprefixes/pl/info_acp_topic_prefixes.php b/phpbb/topicprefixes/pl/info_acp_topic_prefixes.php new file mode 100644 index 0000000..d1efaad --- /dev/null +++ b/phpbb/topicprefixes/pl/info_acp_topic_prefixes.php @@ -0,0 +1,31 @@ + + * @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' => 'Stworzono nowy prefiks tematu
» %1$s na forum: %2$s', + 'ACP_LOG_PREFIX_DELETED' => 'Usunięto prefiks tematu
» %1$s z forum: %2$s', +)); diff --git a/phpbb/topicprefixes/pl/topic_prefixes.php b/phpbb/topicprefixes/pl/topic_prefixes.php new file mode 100644 index 0000000..3cb64a5 --- /dev/null +++ b/phpbb/topicprefixes/pl/topic_prefixes.php @@ -0,0 +1,26 @@ + + * @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', +));