Dodawanie tłumaczenia profile flair
This commit is contained in:
commit
5c445aa5d0
7 changed files with 405 additions and 0 deletions
50
phpbb/profile_flair/pl/common.php
Normal file
50
phpbb/profile_flair/pl/common.php
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* Profile Flair. An extension for the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) 2017, Steve Guidetti, https://github.com/stevotvr
|
||||
* @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();
|
||||
}
|
||||
|
||||
// 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
|
||||
//
|
||||
// Some characters you may want to copy&paste:
|
||||
// ’ » “ ” …
|
||||
//
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'FLAIR_PROFILE_TITLE' => 'Osiągnięcia użytkownika %s',
|
||||
'FLAIR_LEGEND_TITLE' => 'Legenda osiągnięć',
|
||||
|
||||
'FLAIR_NO_FLAIR' => 'Nie stworzono osiągnięć.',
|
||||
|
||||
'FLAIR_UNCATEGORIZED' => 'Bez kategorii.',
|
||||
|
||||
'FLAIR_NOTIFICATION_TITLE' => 'Otrzymałeś nowe osiągnięcie!',
|
||||
'FLAIR_NOTIFICATION_TYPE' => 'Otrzymałem osiągnięcie',
|
||||
));
|
13
phpbb/profile_flair/pl/email/flair.txt
Normal file
13
phpbb/profile_flair/pl/email/flair.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
Subject: Otrzymałeś nowe osiągnięcie
|
||||
|
||||
Witaj {USERNAME},
|
||||
|
||||
Właśnie otrzymałeś nowe osiągnięcie "{FLAIR_NAME}" na stronie "{SITENAME}".
|
||||
|
||||
Aby dowiedzieć się więcej na temat tego osiągnięcia kliknij w poniższy link:
|
||||
{U_FLAIR}
|
||||
|
||||
Aby zobaczyć twoje osiągnięcie, odwiedź twój profil klikając w poniższy odnośnik:
|
||||
{U_PROFILE}
|
||||
|
||||
{EMAIL_SIG}
|
37
phpbb/profile_flair/pl/exceptions.php
Normal file
37
phpbb/profile_flair/pl/exceptions.php
Normal file
|
@ -0,0 +1,37 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* Profile Flair. An extension for the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) 2017, Steve Guidetti, https://github.com/stevotvr
|
||||
* @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(
|
||||
'EXCEPTION_OUT_OF_BOUNDS' => 'To pole `%s` otrzymało wartość poza zakresem.',
|
||||
'EXCEPTION_INVALID_COLOR' => 'To pole `%s` otrzymało nie poprawna wartość koloru. Poprawny kolor składa się z 6 znaków heksadecymetralny (0-9, A-F).',
|
||||
'EXCEPTION_TOO_LONG' => 'To pole `%s` otrzymało wartość dłuższą niż maksymalna długość.',
|
||||
'EXCEPTION_NAME_REQUIRED' => 'Musisz wprowadzić nazwę dla tego osiągnięcia.',
|
||||
'EXCEPTION_CAT_NAME_REQUIRED' => 'Musisz wprowadzić nazwę dla tej kategorii.',
|
||||
'EXCEPTION_IMG_CONFLICT' => 'Obrazek z tą nazwą już istnieje.',
|
||||
'EXCEPTION_IMG_PROCESSING' => 'Nie udało się przetworzyć obrazka z powodu błędu.',
|
||||
|
||||
'EXCEPTION_FIELD_FLAIR_COLOR' => 'Kolor osiągnięcia',
|
||||
'EXCEPTION_FIELD_FLAIR_ICON_COLOR' => 'Kolor ikony osiągnięcia',
|
||||
'EXCEPTION_FIELD_FLAIR_FONT_COLOR' => 'Kolor czcionki osiągnięcia',
|
||||
));
|
150
phpbb/profile_flair/pl/info_acp_main.php
Normal file
150
phpbb/profile_flair/pl/info_acp_main.php
Normal file
|
@ -0,0 +1,150 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* Profile Flair. An extension for the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) 2017, Steve Guidetti, https://github.com/stevotvr
|
||||
* @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();
|
||||
}
|
||||
|
||||
// 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
|
||||
//
|
||||
// Some characters you may want to copy&paste:
|
||||
// ’ » “ ” …
|
||||
//
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_FLAIR_TITLE' => 'Osiągnięcia',
|
||||
|
||||
'ACP_FLAIR_SETTINGS' => 'Ustawienia',
|
||||
'ACP_FLAIR_SETTINGS_TITLE' => 'Ustawienia osiągnięć',
|
||||
'ACP_FLAIR_OPTIONS' => 'Ogólne ustawienia',
|
||||
'ACP_FLAIR_NOTIFY_USERS' => 'Włącz powiadomienia',
|
||||
'ACP_FLAIR_NOTIFY_USERS_EXPLAIN' => 'Włącz aby pozwolić użytkownikom otrzymywać powiadomienia kiedy otrzymają nowę osiągnięcie do odnich profilu.',
|
||||
'ACP_FLAIR_DISPLAY_OPTIONS' => 'Opcje wyświetlania',
|
||||
'ACP_FLAIR_DISPLAY_OPTIONS_EXPLAIN' => 'Te opcje wyświetlenia stosuje się do osiągnięć <strong>Bez kategorii</strong>.',
|
||||
'ACP_FLAIR_SHOW_ON_PROFILE' => 'Wyświetl na profilu',
|
||||
'ACP_FLAIR_SHOW_ON_PROFILE_EXPLAIN' => 'Włącz aby osiągnięcia były widoczne na profilu użytkownika.',
|
||||
'ACP_FLAIR_SHOW_ON_POSTS' => 'Wyświetl na postach',
|
||||
'ACP_FLAIR_SHOW_ON_POSTS_EXPLAIN' => 'Włącz aby osiągnięcia były widoczne w sekcji informacji użytkownika na każdym poście.',
|
||||
'ACP_FLAIR_DISPLAY_LIMIT' => 'Limit wyświetlania',
|
||||
'ACP_FLAIR_DISPLAY_LIMIT_EXPLAIN' => 'Ogranicz ilość widocznych osiągnięć na posta. Wpisz 0 aby bez ograniczeń',
|
||||
'ACP_FLAIR_SETTINGS_SAVED' => 'Ustawienia osiągnięć zostały zapisane',
|
||||
|
||||
'ACP_FLAIR_MANAGE_CATS' => 'Zarządzaj kategoriami',
|
||||
'ACP_FLAIR_MANAGE_CATS_EXPLAIN' => 'Osiągnięcia można pogrupować w kategorie, które można zarządzać tutaj.',
|
||||
'ACP_FLAIR_CATS_EMPTY' => 'Nie ma kategorii',
|
||||
'ACP_FLAIR_ADD_CAT' => 'Dodaj kategorię osiągnięć',
|
||||
'ACP_FLAIR_CATS_ADD_SUCCESS' => 'Kategoria osiągnięć została dodana',
|
||||
'ACP_FLAIR_EDIT_CAT' => 'Edytuj kategorię osiągnięć',
|
||||
'ACP_FLAIR_CATS_EDIT_SUCCESS' => 'Szczegóły kategorii osiągnięć zostały zapisane',
|
||||
'ACP_FLAIR_CAT_DETAILS' => 'Szczegóły kategorii',
|
||||
'ACP_FLAIR_DELETE_CAT' => 'Usuń kategorię',
|
||||
'ACP_FLAIR_CATS_DELETE_SUCCESS' => 'Kategoria osiągnięć została usunięta',
|
||||
'ACP_FLAIR_CATS_DELETE_ERRORED' => 'Powstał błąd w trakcie próby usunięcia kategorii',
|
||||
'ACP_FLAIR_DELETE_FLAIR_CONFIRM' => 'Czy na pewno chcesz usunąć tą rzecz?',
|
||||
'ACP_FLAIR_FORM_CAT_NAME' => 'Nazwa kategorii',
|
||||
'ACP_FLAIR_FORM_DELETE_ALL_FLAIR' => 'Usuń wszystkie osiągnięcia',
|
||||
'ACP_FLAIR_FORM_MOVE_FLAIR_TO' => 'Przenieś osiągnięcia do',
|
||||
|
||||
'ACP_FLAIR_MANAGE' => 'Zarządzaj osiągnięcia',
|
||||
'ACP_FLAIR_MANAGE_EXPLAIN' => 'Tutaj może zarządzać swoimi osiągnięciami',
|
||||
'ACP_FLAIR_EMPTY' => 'Nie masz żadnych osiągnięć',
|
||||
'ACP_FLAIR_ADD' => 'Dodaj osiągnięcie',
|
||||
'ACP_FLAIR_ADD_SUCCESS' => 'Osiągnięcie zostało dodane',
|
||||
'ACP_FLAIR_EDIT' => 'Edytuj osiągnięcie',
|
||||
'ACP_FLAIR_EDIT_SUCCESS' => 'Szczegóły osiągnięcia zostały zapisane',
|
||||
'ACP_FLAIR_DETAILS' => 'Szczegóły osiągnięcia',
|
||||
'ACP_FLAIR_APPEARANCE' => 'Wygląd osiągnięcia',
|
||||
'ACP_FLAIR_AUTO_ASSIGN' => 'Automatycznie przydziel osiągnięcie',
|
||||
'ACP_FLAIR_AUTO_ASSIGN_EXPLAIN' => 'Ustaw opcję poniżęj aby automatycznie przyznawać użytkownikom osiągnięcia. Osiągnięcia które zostały dodane zostaną tam dopóki nie zostaną usunięte przez moderatora.<br><strong>Ilość postów</strong> oraz <strong>dni zarejestrowanych</strong> są niezależnymi od pozostałych oraz będą wyzwolone kiedy każde wymaganie będzie osiągnięte.',
|
||||
'ACP_FLAIR_DELETE_SUCCESS' => 'Osiągnięcie zostało usunięte',
|
||||
'ACP_FLAIR_DELETE_ERRORED' => 'Nie można usunąć osiągnięcia z powodu błędu',
|
||||
'ACP_FLAIR_TYPE' => 'Typ osiągnięcia',
|
||||
'ACP_FLAIR_FORM_CAT' => 'Kategoria osiągnięcia',
|
||||
'ACP_FLAIR_FORM_NAME' => 'Nazwa osiągnięcia',
|
||||
'ACP_FLAIR_FORM_DESC' => 'Opis osiągnięcia',
|
||||
'ACP_FLAIR_FORM_PREVIEW' => 'Podgląd osiągnięcia',
|
||||
'ACP_FLAIR_FORM_COLOR' => 'Kolor osiągnięcia',
|
||||
'ACP_FLAIR_FORM_ICON' => 'Ikona osiągnięcia',
|
||||
'ACP_FLAIR_FORM_ICON_COLOR' => 'Kolor ikony osiągnięcia',
|
||||
'ACP_FLAIR_FORM_IMG' => 'Ikonka osiągnięcia',
|
||||
'ACP_FLAIR_NO_IMGS' => 'Nie znaleziono zestawów ikonek w <b>images/flair</b>.',
|
||||
'ACP_FLAIR_FORM_FONT_COLOR' => 'Kolor czcionki osiągnięcia',
|
||||
'ACP_FLAIR_FORM_GROUPS' => 'Przyznaj grupom',
|
||||
'ACP_FLAIR_FORM_GROUPS_AUTO' => 'Automatycznie przyznaj grupom',
|
||||
|
||||
'ACP_FLAIR_DESC_EXPLAIN' => 'Krótki opcjonalny opis który będzie pojawiał się w legendzie osiągnięcia.',
|
||||
'ACP_FLAIR_COLOR_EXPLAIN' => 'Tło osiągnięcia. Zostaw puste aby wyłączyć tło.',
|
||||
'ACP_FLAIR_ICON_EXPLAIN' => 'Wpisz opcjonalnie identyfikator ikony Font Awesome. [ <a href="https://fontawesome.com/v4.7.0/icons/" target="_blank">Font Awesome lista ikon</a> ]',
|
||||
'ACP_FLAIR_ICON_COLOR_EXPLAIN' => 'Kolor ikony, jeśli dostępny.',
|
||||
'ACP_FLAIR_IMG_EXPLAIN' => 'Niestandardowa ikona.',
|
||||
'ACP_FLAIR_FONT_COLOR_EXPLAIN' => 'Kolor czcionki ilości osiągnięć kiedy użytkownik będzie miał więcej tego samego osiągnięcia. Zostaw puste aby ukryć ilość.',
|
||||
'ACP_FLAIR_GROUPS_EXPLAIN' => 'Członkowie wybranej grupy otrzymają automatycznie przydzielone osiągnięcie.',
|
||||
'ACP_FLAIR_GROUPS_AUTO_EXPLAIN' => 'Jeśli ta opcja będzie włączona, członkowie grup wybranych powyżej otrzymają automatycznie to osiągnięcie. Inaczej, członkowie grub będą mogli sobie przypisać tą osiągnięcie po przez Panel Użytkownika.',
|
||||
|
||||
'ACP_FLAIR_TRIGGER_POST_COUNT' => 'Ilość postów',
|
||||
'ACP_FLAIR_TRIGGER_POST_COUNT_EXPLAIN' => 'Ustaw minimalny próg postów które użytkownik musi przekroczyć aby otrzymać osiągnięcie. Użytkownicy którzy już spełnili wymagania otrzymają to osiągnięcie po dodaniu nowego postu. Zostaw puste aby wyłączyć.',
|
||||
'ACP_FLAIR_TRIGGER_MEMBERSHIP_DAYS' => 'Dni od czasu rejestracji',
|
||||
'ACP_FLAIR_TRIGGER_MEMBERSHIP_DAYS_EXPLAIN' => 'Ustaw ilość dni aby użytkownik musi przekroczyć aby otrzymać osiągnięcie. Użytkownicy którzy już spełnili wymagania otrzymają to osiągnięcie po dodaniu nowego postu. Zostaw puste aby wyłączyć.',
|
||||
|
||||
'ACP_FLAIR_IMAGES' => 'Zarządzaj ikonami',
|
||||
'ACP_FLAIR_IMAGES_EXPLAIN' => 'Tutaj możesz zarządzać twoimi ikonkami. Nie możesz usunąć ikonek które aktualnie wykorzystujesz w osiągnięciach.',
|
||||
'ACP_FLAIR_IMGS_EMPTY' => 'Nie znaleziono zestawów niestandardowych ikonek.',
|
||||
'ACP_FLAIR_ADD_IMG' => 'Dodaj ikona',
|
||||
'ACP_FLAIR_ADD_IMGS' => 'Dodaj ikony',
|
||||
'ACP_FLAIR_IMG_TABLE_EXPLAIN' => 'Możesz wgrać twoje niestandardowe ikonki do <b>images/flair</b>. SVG ikony można wgrać as-is can be uploaded jak jest. Każdy GIF, PNG, lub JPEG ikonka wymaga następujących plików:',
|
||||
'ACP_FLAIR_IMG_TABLE_NAME' => 'Nazwa pliku',
|
||||
'ACP_FLAIR_IMG_TABLE_SIZE' => 'Rekomendowana Wysokość',
|
||||
'ACP_FLAIR_IMG_TABLE_PLACEHOLDER' => 'icon_name',
|
||||
'ACP_FLAIR_IMG_TABLE_PX' => 'px',
|
||||
'ACP_FLAIR_IMG_UPLOADING' => 'Automatycznie wyślij ikonę',
|
||||
'ACP_FLAIR_UPLOAD_IMG' => 'Wgraj ikonę',
|
||||
'ACP_FLAIR_IMG_ADD_SUCCESS' => 'Niestandardowa ikonka została dodana',
|
||||
'ACP_FLAIR_IMG_DELETE_SUCCESS' => 'Niestandardowa ikonka została usunięta',
|
||||
'ACP_FLAIR_IMG_DELETE_ERRORED' => 'Nie można usunąć ikonki z powodu błędu',
|
||||
'ACP_FLAIR_DELETE_IMG_CONFIRM' => 'Czy na pewno chcesz usunąć tą rzecz?',
|
||||
'ACP_FLAIR_FORM_IMG_FILE' => 'Plik ikonki',
|
||||
'ACP_FLAIR_FORM_IMG_FILE_EXPLAIN' => 'Wybierz plik ikonki. Możesz wysłać każdy GIF, PNG, JPEG, lub SVG pliki. Kwadratowy obrazek przynajmniej 66px w wysokości jest rekomendowany.',
|
||||
'ACP_FLAIR_FORM_IMG_OVERWRITE' => 'Nadpisać istniejący',
|
||||
'ACP_FLAIR_FORM_IMG_OVERWRITE_EXPLAIN' => 'Włącz aby nadpisać każdy istniejący obrazek z tą samą nazwą.',
|
||||
|
||||
'ACP_FLAIR_NAME' => 'Nazwa',
|
||||
'ACP_FLAIR_DISPLAY_ON' => 'Wyświetl na',
|
||||
'ACP_FLAIR_PROFILE' => 'Profil',
|
||||
'ACP_FLAIR_POSTS' => 'Post',
|
||||
|
||||
'ACP_FLAIR_TYPE_FA' => 'Font Awesome',
|
||||
'ACP_FLAIR_TYPE_IMG' => 'Niestandardowa ikonka',
|
||||
|
||||
'ACP_ERROR_APPEARANCE_REQUIRED' => 'Musisz ustawić przynajmniej kolor ikonki lub ikonka dla tego osiągnięcia.',
|
||||
'ACP_ERROR_IMG_REQUIRED' => 'Musisz ustawić obrazek dla osiągnięcia.',
|
||||
'ACP_ERROR_NOT_WRITABLE' => 'Katalog <b>images/flair</b> nie jest zapisywalny.',
|
||||
'ACP_ERROR_NO_IMG_LIB' => 'Musisz zainstawlować/włączyć Imagemagick (Rekomendowane) lub GD aby użyć tej funkcji z rastrowymi obrazkami. Tylko SVG obrazki będą dozwolone.',
|
||||
'ACP_ERROR_UPLOAD_INVALID' => 'Plik który wybrałeś jest nieakceptowalnym plikiem obrazka.',
|
||||
'ACP_ERROR_NOT_UPLOADED' => 'Nie można wysłać obrazka na serwer.',
|
||||
));
|
57
phpbb/profile_flair/pl/info_mcp_user.php
Normal file
57
phpbb/profile_flair/pl/info_mcp_user.php
Normal file
|
@ -0,0 +1,57 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* Profile Flair. An extension for the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) 2018, Steve Guidetti, https://github.com/stevotvr
|
||||
* @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();
|
||||
}
|
||||
|
||||
// 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
|
||||
//
|
||||
// Some characters you may want to copy&paste:
|
||||
// ’ » “ ” …
|
||||
//
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'MCP_FLAIR' => 'Osiągnięcia',
|
||||
'MCP_FLAIR_EXPLAIN' => 'Tutaj możesz zarządzać osiągnięciami %s.<ul><li>Kliknij <b>Ustaw</b> przycisk aby ustawić pożądaną ilość osiągnięć.</li><li>Kliknij <b>×</b> aby usunąć osiągnięcie.</li><li>Kliknij <b>+</b> przycisk aby dodać osiągnięcie z ustawioną ilością.</li></ul>',
|
||||
|
||||
'MCP_FLAIR_USER' => 'Zarządzaj osiągnięciami użytkownika',
|
||||
'MCP_FLAIR_FRONT' => 'Przednia strona',
|
||||
|
||||
'MCP_FLAIR_USER_FLAIR' => 'Osiągnięcia %s',
|
||||
'MCP_FLAIR_AVAILABLE' => 'Dostępne osiągnięcia',
|
||||
'MCP_FLAIR_NO_FLAIR' => 'Żadne osiągnięcie nie zostało przypisane do tego profilu użytkownika.',
|
||||
'MCP_FLAIR_NO_AVAILABLE' => 'Nie ma dostępny osiągnięć.',
|
||||
'MCP_FLAIR_ADD_TITLE' => 'Dodaj “%1$s” do %2$s profilu użytkownika',
|
||||
'MCP_FLAIR_SET_COUNT_TITLE' => 'Ustaw ilość “%1$s” na %2$s’s profilu',
|
||||
'MCP_FLAIR_REMOVE_TITLE' => 'Usuń “%1$s” z %2$s profilu',
|
||||
'MCP_FLAIR_REMOVE_CONFIRM' => 'Czy na pewno chcesz usunąć tą rzecz?',
|
||||
|
||||
'MCP_FLAIR_SET' => 'Ustaw',
|
||||
));
|
55
phpbb/profile_flair/pl/info_ucp_main.php
Normal file
55
phpbb/profile_flair/pl/info_ucp_main.php
Normal file
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* Profile Flair. An extension for the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) 2018, Steve Guidetti, https://github.com/stevotvr
|
||||
* @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();
|
||||
}
|
||||
|
||||
// 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
|
||||
//
|
||||
// Some characters you may want to copy&paste:
|
||||
// ’ » “ ” …
|
||||
//
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'UCP_FLAIR' => 'Zarządzaj osiągnięciami',
|
||||
'UCP_FLAIR_EXPLAIN' => 'Tutaj możesz zarządzać twoimi osiągnięciami.<ul><li>Kliknij <i class="fa fa-star"></i>/<i class="fa fa-star-o"></i> przycisk aby dodać do ulubionych/usunąć z ulubionych osiągnięcie. Ulubione są pokazane jako pierwsze na twoim profilu.</li><li>Kliknij <b>×</b> przycisk aby usunąć osiągnięcie. Ta opcja może być nie dostępna do wszystkich ikon.</li><li>Panel <b>dostępnych osiągnięć</b> lista osiągnięć które możesz dodać do twojego profilu.</li></ul>',
|
||||
|
||||
'UCP_USER_FLAIR' => 'Twoje osiągnięcia',
|
||||
'UCP_FLAIR_AVAILABLE' => 'Dostępne osiągnięcia',
|
||||
'UCP_FLAIR_NO_FLAIR' => 'Nie masz żadnych osiągnięć',
|
||||
'UCP_FLAIR_NO_AVAILABLE' => 'Nie masz dostępnych osiągnięć',
|
||||
'UCP_FLAIR_ADD' => 'Dodaj “%s”',
|
||||
'UCP_FLAIR_REMOVE' => 'Usuń “%s”',
|
||||
'UCP_FLAIR_FAV' => 'Dodaj “%s” do ulubionych',
|
||||
'UCP_FLAIR_UNFAV' => 'Usuń “%s” z ulubionych',
|
||||
'UCP_FLAIR_REMOVE_CONFIRM' => 'Czy na pewno chcesz usunąć tą rzecz ?',
|
||||
|
||||
'UCP_FLAIR_ADD_BUTTON' => 'Dodaj do profilu',
|
||||
));
|
43
phpbb/profile_flair/pl/permissions_flair.php
Normal file
43
phpbb/profile_flair/pl/permissions_flair.php
Normal file
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
/**
|
||||
*
|
||||
* Profile Flair. An extension for the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) 2017, Steve Guidetti, https://github.com/stevotvr
|
||||
* @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();
|
||||
}
|
||||
|
||||
// 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
|
||||
//
|
||||
// Some characters you may want to copy&paste:
|
||||
// ’ » “ ” …
|
||||
//
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'ACL_M_MANAGE_FLAIR' => 'Czy może zarządzać osiągnięciami<br /><em>To uprawnienie można przydzielić tylko globalnie. Nie jest ono zależne od forum?</em>',
|
||||
'ACL_U_FLAIR' => 'Czy może samemu-przydzielać oraz ustawiać ulubione osiągnięcia?',
|
||||
));
|
Loading…
Add table
Reference in a new issue