-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
170 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
/* | ||
* Node Bundle for Contao Open Source CMS. | ||
* | ||
* @copyright Copyright (c) 2019, terminal42 gmbh | ||
* @author terminal42 <https://terminal42.ch> | ||
* @license MIT | ||
*/ | ||
|
||
/* | ||
* Content elements | ||
*/ | ||
$GLOBALS['TL_LANG']['CTE']['nodes'] = ['Nodes', 'Začlenit jeden nebo více elementů.']; | ||
|
||
/* | ||
* Errors | ||
*/ | ||
$GLOBALS['TL_LANG']['ERR']['invalidNodes'] = 'Elemnty typu "složka" nejsou povolené: %s'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
/* | ||
* Node Bundle for Contao Open Source CMS. | ||
* | ||
* @copyright Copyright (c) 2019, terminal42 gmbh | ||
* @author terminal42 <https://terminal42.ch> | ||
* @license MIT | ||
*/ | ||
|
||
/* | ||
* Backend modules | ||
*/ | ||
$GLOBALS['TL_LANG']['MOD']['nodes'] = ['Nodes', 'Vytvořit a spravovat nodes s elementy.']; | ||
|
||
/* | ||
* Frontend modules | ||
*/ | ||
$GLOBALS['TL_LANG']['FMD']['nodes'] = &$GLOBALS['TL_LANG']['CTE']['nodes']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
/* | ||
* Node Bundle for Contao Open Source CMS. | ||
* | ||
* @copyright Copyright (c) 2019, terminal42 gmbh | ||
* @author terminal42 <https://terminal42.ch> | ||
* @license MIT | ||
*/ | ||
|
||
$GLOBALS['TL_LANG']['tl_cfg_tag']['sourceRef']['terminal42_node'] = 'Node'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
/* | ||
* Node Bundle for Contao Open Source CMS. | ||
* | ||
* @copyright Copyright (c) 2019, terminal42 gmbh | ||
* @author terminal42 <https://terminal42.ch> | ||
* @license MIT | ||
*/ | ||
|
||
$GLOBALS['TL_LANG']['tl_content']['nodes'] = ['Nodes', 'Vyberte jeden nebo více prvků.']; | ||
$GLOBALS['TL_LANG']['tl_content']['nodesWrapper'] = ['Přidat wrapper', 'Tím bude přidán div kolem vybraného elementu.']; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
/* | ||
* Node Bundle for Contao Open Source CMS. | ||
* | ||
* @copyright Copyright (c) 2019, terminal42 gmbh | ||
* @author terminal42 <https://terminal42.ch> | ||
* @license MIT | ||
*/ | ||
|
||
$GLOBALS['TL_LANG']['tl_node']['name'] = ['Název', 'Zadejte prosím vlastní název tohoto prvku.']; | ||
$GLOBALS['TL_LANG']['tl_node']['type'] = ['Typ', 'Zde můžete vybrat jeden z dostupných typů.']; | ||
$GLOBALS['TL_LANG']['tl_node']['languages'] = ['Jazyky', 'Zde můžete nastavit jazyky, které lze použít pro filtraci prvků v backendu.']; | ||
$GLOBALS['TL_LANG']['tl_node']['tags'] = ['Štítky', 'Sem můžete zadat štítky, které lze použít pro filtraci prvků v backendu.']; | ||
$GLOBALS['TL_LANG']['tl_node']['pid'] = ['Rodičkovský node']; | ||
$GLOBALS['TL_LANG']['tl_node']['tstamp'] = ['Datum změny']; | ||
|
||
/* | ||
* Legends | ||
*/ | ||
$GLOBALS['TL_LANG']['tl_node']['name_legend'] = 'Název a typ'; | ||
$GLOBALS['TL_LANG']['tl_node']['filter_legend'] = 'Nastavení filtru'; | ||
|
||
/* | ||
* Reference | ||
*/ | ||
$GLOBALS['TL_LANG']['tl_node']['typeRef'] = [ | ||
\Terminal42\NodeBundle\Model\NodeModel::TYPE_CONTENT => 'Obsah', | ||
\Terminal42\NodeBundle\Model\NodeModel::TYPE_FOLDER => 'Složka', | ||
]; | ||
|
||
/* | ||
* Buttons | ||
*/ | ||
$GLOBALS['TL_LANG']['tl_node']['new'] = ['Nový prvek', 'Vytvořit nový prvek']; | ||
$GLOBALS['TL_LANG']['tl_node']['show'] = ['Podrobnosti', 'Zobrazit podrobnosti k ID %s']; | ||
$GLOBALS['TL_LANG']['tl_node']['edit'] = ['Upravit prvek', 'Upravit ID %s']; | ||
$GLOBALS['TL_LANG']['tl_node']['editheader'] = ['Upravit nastavení prvku', 'Změnit nastavení prvku']; | ||
$GLOBALS['TL_LANG']['tl_node']['cut'] = ['Přesunout prvek', 'Přesunout prvek ID %s']; | ||
$GLOBALS['TL_LANG']['tl_node']['copy'] = ['Duplikovat prvek', 'Duplikovat ID %s']; | ||
$GLOBALS['TL_LANG']['tl_node']['copyChilds'] = ['Duplikovat prvek i s jeho podprvky', 'Duplikovat prvek i s jeho podprvky ID %s']; | ||
$GLOBALS['TL_LANG']['tl_node']['delete'] = ['Smazat prvek', 'Smazat prvek ID %s']; | ||
$GLOBALS['TL_LANG']['tl_node']['pasteafter'] = ['Včlenit do', 'Včlenit prvek ID %s']; | ||
$GLOBALS['TL_LANG']['tl_node']['pasteinto'] = ['Umístit za', 'Umístit ID %s za']; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?php | ||
|
||
/* | ||
* Node Bundle for Contao Open Source CMS. | ||
* | ||
* @copyright Copyright (c) 2019, terminal42 gmbh | ||
* @author terminal42 <https://terminal42.ch> | ||
* @license MIT | ||
*/ | ||
|
||
$GLOBALS['TL_LANG']['tl_user']['nodeMounts'] = ['Nastavení přístupu', 'Zde můžete nastavit přístup k jednomu nebo více prvkům (Podprvky budou automaticky přidány).']; | ||
$GLOBALS['TL_LANG']['tl_user']['nodePermissions'] = ['Přístupová práva', 'Zde můžete nastavit přístupová práva.']; | ||
|
||
/* | ||
* Reference | ||
*/ | ||
$GLOBALS['TL_LANG']['tl_user']['nodePermissionsRef'] = [ | ||
\Terminal42\NodeBundle\PermissionChecker::PERMISSION_CREATE => 'Vytvořit prvky', | ||
\Terminal42\NodeBundle\PermissionChecker::PERMISSION_EDIT => 'Upravit prvky', | ||
\Terminal42\NodeBundle\PermissionChecker::PERMISSION_DELETE => 'Smazat prvky', | ||
\Terminal42\NodeBundle\PermissionChecker::PERMISSION_CONTENT => 'Spravovat prvky', | ||
\Terminal42\NodeBundle\PermissionChecker::PERMISSION_ROOT => 'Spravovat klíčové prvky', | ||
]; | ||
|
||
/* | ||
* Legends | ||
*/ | ||
$GLOBALS['TL_LANG']['tl_user']['node_legend'] = 'Nastavení'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
/* | ||
* Node Bundle for Contao Open Source CMS. | ||
* | ||
* @copyright Copyright (c) 2019, terminal42 gmbh | ||
* @author terminal42 <https://terminal42.ch> | ||
* @license MIT | ||
*/ | ||
|
||
\Contao\System::loadLanguageFile('tl_user_group'); | ||
|
||
/* | ||
* Legends | ||
*/ | ||
$GLOBALS['TL_LANG']['tl_user_group']['node_legend'] = &$GLOBALS['TL_LANG']['tl_user']['node_legend']; |