Skip to content

Commit

Permalink
Merge pull request #2 from qbadev/add-polish-language
Browse files Browse the repository at this point in the history
Add polish language support
  • Loading branch information
trilobit-gmbh committed May 21, 2019
2 parents 8fe0efe + 98d45c0 commit b6d5057
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Resources/contao/languages/pl/modules.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

/*
* @copyright trilobit GmbH
* @author trilobit GmbH <https://github.com/trilobit-gmbh>
* @license LGPL-3.0-or-later
* @link http://github.com/trilobit-gmbh/contao-constants-bundle
*/

// MOD
$GLOBALS['TL_LANG']['MOD']['tl_constants'][0] = 'Stałe wartości';
$GLOBALS['TL_LANG']['MOD']['tl_constants'][1] = 'Załączaj stałe wartości';
42 changes: 42 additions & 0 deletions src/Resources/contao/languages/pl/tl_constants.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<?php

/*
* @copyright trilobit GmbH
* @author trilobit GmbH <https://github.com/trilobit-gmbh>
* @license LGPL-3.0-or-later
* @link http://github.com/trilobit-gmbh/contao-constants-bundle
*/

// legends
$GLOBALS['TL_LANG']['tl_constants']['key_legend'] = 'Stałe wartości';
$GLOBALS['TL_LANG']['tl_constants']['published_legend'] = 'Publikowanie';

// fields
$GLOBALS['TL_LANG']['tl_constants']['title'][0] = 'Opis';
$GLOBALS['TL_LANG']['tl_constants']['title'][1] = 'Wprowadź opis elementu.';
$GLOBALS['TL_LANG']['tl_constants']['value'][0] = 'Wartość';
$GLOBALS['TL_LANG']['tl_constants']['value'][1] = 'Wstaw wartość elementu.';
$GLOBALS['TL_LANG']['tl_constants']['published'][0] = 'Publikuj element';
$GLOBALS['TL_LANG']['tl_constants']['published'][1] = 'Udostępnij element publicznie na stronie.';
$GLOBALS['TL_LANG']['tl_constants']['start'][0] = 'Pokazuj od';
$GLOBALS['TL_LANG']['tl_constants']['start'][1] = 'Nie pokazuj elementu na stronie przed tą datą.';
$GLOBALS['TL_LANG']['tl_constants']['stop'][0] = 'Pokazuj do';
$GLOBALS['TL_LANG']['tl_constants']['stop'][1] = 'Nie pokazuj elementu na stronie po tej dacie.';

// operations
$GLOBALS['TL_LANG']['tl_constants']['new'][0] = 'Nowy element';
$GLOBALS['TL_LANG']['tl_constants']['new'][1] = 'Dodaj nowy element stałej wartości.';
$GLOBALS['TL_LANG']['tl_constants']['edit'][0] = 'Edytuj element';
$GLOBALS['TL_LANG']['tl_constants']['edit'][1] = 'Edytuje element o ID %s';
$GLOBALS['TL_LANG']['tl_constants']['copy'][0] = 'Duplikuj element';
$GLOBALS['TL_LANG']['tl_constants']['copy'][1] = 'Duplikuje element o ID %s';
$GLOBALS['TL_LANG']['tl_constants']['copyChilds'][0] = 'Duplikuj element wraz z jego pod-elementami';
$GLOBALS['TL_LANG']['tl_constants']['copyChilds'][1] = 'Duplikuje element o ID %s wraz ze wszystkimi jego pod-elementami';
$GLOBALS['TL_LANG']['tl_constants']['cut'][0] = 'Przenieś element';
$GLOBALS['TL_LANG']['tl_constants']['cut'][1] = 'Przenosi element o ID %s';
$GLOBALS['TL_LANG']['tl_constants']['toggle'][0] = 'Przełącz widoczność elementu';
$GLOBALS['TL_LANG']['tl_constants']['toggle'][1] = 'Przełącza widoczność elementu o ID %s';
$GLOBALS['TL_LANG']['tl_constants']['delete'][0] = 'Usuń element';
$GLOBALS['TL_LANG']['tl_constants']['delete'][1] = 'Usuwa element o ID %s';
$GLOBALS['TL_LANG']['tl_constants']['show'][0] = 'Pokaż szczegóły elementu';
$GLOBALS['TL_LANG']['tl_constants']['show'][1] = 'Pokazuje szczegóły elementu o ID %s';

0 comments on commit b6d5057

Please sign in to comment.