Skip to content

Commit ed52e8b

Browse files
committed
Merge tag '2.2.1'
Hotfix release 2.2.1 - Merge translations
2 parents dfbed4c + 10e6c94 commit ed52e8b

9 files changed

+130
-99
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"extra": {
6161
"contao-manager-plugin": "MetaModels\\AttributeCheckboxBundle\\ContaoManager\\Plugin",
6262
"branch-alias": {
63-
"dev-feature/2.2.0": "2.2.x-dev"
63+
"dev-hotfix/2.2.1": "2.2.1-dev"
6464
}
6565
},
6666
"config": {
Lines changed: 25 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,35 @@
11
<?php
22
/**
3-
* Translations are managed using Transifex. To create a new translation
4-
* or to help to maintain an existing one, please register at transifex.com.
3+
* This file is part of MetaModels/attribute_checkbox.
4+
*
5+
* (c) 2012-2022 The MetaModels team.
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
59
*
6-
* @link http://help.transifex.com/intro/translating.html
7-
* @link https://www.transifex.com/projects/p/metamodels/language/de/
10+
* This project is provided in good faith and hope to be usable by anyone.
811
*
9-
* @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL
12+
* Translations are managed automatically using Transifex. To create a new translation
13+
* or to help to maintain an existing one, please register at transifex.com.
14+
*
15+
* Last-updated: 2022-11-19T17:23:40+01:00
1016
*
11-
* last-updated: 2018-03-29T01:35:33+02:00
17+
* @copyright 2012-2022 The MetaModels team.
18+
* @license https://github.com/MetaModels/attribute_checkbox/blob/master/LICENSE LGPL-3.0-or-later
19+
* @link https://www.transifex.com/metamodels/public/
20+
* @link https://www.transifex.com/signup/?join_project=metamodels
1221
*/
1322

23+
1424
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['0'] = 'Invertierte Anzeigeoption';
15-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['1'] = 'Ist diese Option gesetzt, wird der Status "Veröffentlichen" invertiert (umgekehrt), d.h. das Element wird nicht angezeigt wenn diese Option gesetzt wird (Analog der Einstellung "Unsichtbar" bei den Contao-Inhaltselementen).';
16-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['0'] = 'Listenanzeige-Checkbox ';
17-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['1'] = 'Ist diese Option gesetzt, wird ein zusätzliches Icon in der Listenanzeige des Backends eingefügt.';
18-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['0'] = 'Icon der Listenansicht "aktiv"';
19-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['1'] = 'Dieses Icon wird in der Listenanzeige des Backends für den Status "aktiv" gezeigt.';
20-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['0'] = 'Icon in der Listenansicht "inaktiv"';
21-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['1'] = 'Dieses Icon wird in der Listenanzeige des Backends für den Status "inaktiv" gezeigt.';
22-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['0'] = 'Veröffentlichen';
23-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['1'] = 'Falls aktiviert, werden die Datensätze im Frontend angezeigt. Gleichzeitig ist in der Backend-Ansicht das Symbol \'Auge\' verfügbar, mit dem die Veröffentlichung eines Datensatzes ebenfalls gesteuert werden kann.';
25+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['1'] = 'Wenn dies ausgewählt ist, wird der Umschaltmodus umgekehrt (aktiviertes Kontrollkästchen zeigt inaktives Symbol, deaktiviertes Kontrollkästchen zeigt aktives Symbol).';
26+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['0'] = 'Benutzerdefiniertes Icon';
27+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['1'] = 'Wenn diese Option ausgewählt ist, können Sie das Icon in der Backend-Listenansicht anpassen.';
28+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['0'] = 'Icon Aktiv';
29+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['1'] = 'Das Icon, das in der Backend-Listenansicht angezeigt wird, wenn das Element aktiviert ist.';
30+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['0'] = 'Icon Inaktiv';
31+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['1'] = 'Das Icon, das in der Backend-Listenansicht angezeigt wird, wenn das Element deaktiviert ist.';
32+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['0'] = 'Wechselicon';
33+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['1'] = 'Ist diese Option gesetzt, wird ein zusätzliches Icon ("Auge") in der Listenanzeige des Backends eingefügt.';
2434
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Checkbox';
2535

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
11
<?php
22
/**
3-
* Translations are managed using Transifex. To create a new translation
4-
* or to help to maintain an existing one, please register at transifex.com.
3+
* This file is part of MetaModels/attribute_checkbox.
4+
*
5+
* (c) 2012-2022 The MetaModels team.
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
59
*
6-
* @link http://help.transifex.com/intro/translating.html
7-
* @link https://www.transifex.com/projects/p/metamodels/language/el/
10+
* This project is provided in good faith and hope to be usable by anyone.
811
*
9-
* @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL
12+
* Translations are managed automatically using Transifex. To create a new translation
13+
* or to help to maintain an existing one, please register at transifex.com.
14+
*
15+
* Last-updated: 2022-11-19T17:23:40+01:00
1016
*
11-
* last-updated: 2013-05-13T22:12:22+02:00
17+
* @copyright 2012-2022 The MetaModels team.
18+
* @license https://github.com/MetaModels/attribute_checkbox/blob/master/LICENSE LGPL-3.0-or-later
19+
* @link https://www.transifex.com/metamodels/public/
20+
* @link https://www.transifex.com/signup/?join_project=metamodels
1221
*/
1322

1423

15-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['0'] = 'Δημοσιευση πλαισιου ελεγχου';
16-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['1'] = 'Αν επιλεγεί, τα στοιχεία δεν θα εμφανίζονται στις λίστες στο frontend (θα πάρει το πράσινο "μάτι" για δωρεάν. ';
1724
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Πλαίσιο ελέγχου ';
25+
Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
11
<?php
22
/**
3-
* Translations are managed using Transifex. To create a new translation
4-
* or to help to maintain an existing one, please register at transifex.com.
3+
* This file is part of MetaModels/attribute_checkbox.
4+
*
5+
* (c) 2012-2022 The MetaModels team.
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
59
*
6-
* @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL
10+
* This project is provided in good faith and hope to be usable by anyone.
11+
*
12+
* Translations are managed automatically using Transifex. To create a new translation
13+
* or to help to maintain an existing one, please register at transifex.com.
714
*
8-
* @link https://www.transifex.com/signup/
9-
* @link https://www.transifex.com/projects/p/$$project$$/language/$$lang$$/
15+
* Last-updated: 2022-11-19T17:23:40+01:00
1016
*
11-
* last-updated: 2018-02-06T02:49:29+01:00
17+
* @copyright 2012-2022 The MetaModels team.
18+
* @license https://github.com/MetaModels/attribute_checkbox/blob/master/LICENSE LGPL-3.0-or-later
19+
* @link https://www.transifex.com/metamodels/public/
20+
* @link https://www.transifex.com/signup/?join_project=metamodels
1221
*/
1322

1423

15-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['0'] = 'Nimekirjavaate märkekast';
16-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['0'] = 'Nimekirja vaate ikoon';
17-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['0'] = 'Nimekirjavaate ikoon on välja lülitatud';
18-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['1'] = 'Nimekirjavaate ikoon on välja lülitatud';
19-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['0'] = 'Avaldamise märkekast';
20-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Märkekast';
24+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Märkekast';
2125

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
<?php
22
/**
3-
* Translations are managed using Transifex. To create a new translation
4-
* or to help to maintain an existing one, please register at transifex.com.
3+
* This file is part of MetaModels/attribute_checkbox.
4+
*
5+
* (c) 2012-2022 The MetaModels team.
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
59
*
6-
* @link http://help.transifex.com/intro/translating.html
7-
* @link https://www.transifex.com/projects/p/metamodels/language/fr/
10+
* This project is provided in good faith and hope to be usable by anyone.
811
*
9-
* @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL
12+
* Translations are managed automatically using Transifex. To create a new translation
13+
* or to help to maintain an existing one, please register at transifex.com.
14+
*
15+
* Last-updated: 2022-11-19T17:23:40+01:00
1016
*
11-
* last-updated: 2015-07-11T04:10:50+02:00
17+
* @copyright 2012-2022 The MetaModels team.
18+
* @license https://github.com/MetaModels/attribute_checkbox/blob/master/LICENSE LGPL-3.0-or-later
19+
* @link https://www.transifex.com/metamodels/public/
20+
* @link https://www.transifex.com/signup/?join_project=metamodels
1221
*/
1322

14-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['0'] = 'Ajouter comme case clicable dans la liste du back-office';
15-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['1'] = 'Cochez pour ajouter cette case dans la liste du back-office.';
16-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['0'] = 'Icône pour la liste backend.';
17-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['1'] = 'Icône lorsque la case est cochée.';
18-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['0'] = 'Icône quand la case est décochée.';
19-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['1'] = 'Icône quand la case est décochée.';
20-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['0'] = 'Case à cocher de publication';
21-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['1'] = 'Cochez pour attribuer à cette case à cocher la fonction de publication (l\'œil vert dans les listes du back-office). Cette case servira pour le filtre publication.';
22-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Case à cocher';
23+
24+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Case à cocher';
2325

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
11
<?php
22
/**
3-
* Translations are managed using Transifex. To create a new translation
4-
* or to help to maintain an existing one, please register at transifex.com.
3+
* This file is part of MetaModels/attribute_checkbox.
4+
*
5+
* (c) 2012-2022 The MetaModels team.
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
59
*
6-
* @link http://help.transifex.com/intro/translating.html
7-
* @link https://www.transifex.com/projects/p/metamodels/language/it/
10+
* This project is provided in good faith and hope to be usable by anyone.
811
*
9-
* @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL
12+
* Translations are managed automatically using Transifex. To create a new translation
13+
* or to help to maintain an existing one, please register at transifex.com.
14+
*
15+
* Last-updated: 2022-11-19T17:23:40+01:00
1016
*
11-
* last-updated: 2018-02-06T02:49:29+01:00
17+
* @copyright 2012-2022 The MetaModels team.
18+
* @license https://github.com/MetaModels/attribute_checkbox/blob/master/LICENSE LGPL-3.0-or-later
19+
* @link https://www.transifex.com/metamodels/public/
20+
* @link https://www.transifex.com/signup/?join_project=metamodels
1221
*/
1322

23+
1424
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['0'] = 'Inverti';
15-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['1'] = 'Se q';
16-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['0'] = 'Checkbox pubblicazione';
17-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['1'] = 'Se questa opzione è selezionata, gli elementi verranno visualizzati nelle liste nel frontend.';
1825
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Checkbox';
1926

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,25 @@
11
<?php
22
/**
3-
* Translations are managed using Transifex. To create a new translation
4-
* or to help to maintain an existing one, please register at transifex.com.
3+
* This file is part of MetaModels/attribute_checkbox.
4+
*
5+
* (c) 2012-2022 The MetaModels team.
56
*
6-
* @link http://help.transifex.com/intro/translating.html
7-
* @link https://www.transifex.com/projects/p/metamodels/language/rm/
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
89
*
9-
* @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL
10+
* This project is provided in good faith and hope to be usable by anyone.
11+
*
12+
* Translations are managed automatically using Transifex. To create a new translation
13+
* or to help to maintain an existing one, please register at transifex.com.
1014
*
11-
* last-updated: 2013-05-13T23:08:13+02:00
15+
* Last-updated: 2022-11-19T17:23:40+01:00
16+
*
17+
* @copyright 2012-2022 The MetaModels team.
18+
* @license https://github.com/MetaModels/attribute_checkbox/blob/master/LICENSE LGPL-3.0-or-later
19+
* @link https://www.transifex.com/metamodels/public/
20+
* @link https://www.transifex.com/signup/?join_project=metamodels
1221
*/
1322

14-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['0'] = 'Chaschetta da publicaziun';
15-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['1'] = 'Sche questa chaschetta è tschernida vegnan ils element publitgads en glistas dal front-end (activaziun entras igl egl verd).';
23+
1624
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Chaschetta';
25+

src/Resources/contao/languages/ru/tl_metamodel_attribute.php

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* This file is part of MetaModels/attribute_checkbox.
44
*
5-
* (c) 2012-2019 The MetaModels team.
5+
* (c) 2012-2022 The MetaModels team.
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
@@ -12,24 +12,15 @@
1212
* Translations are managed automatically using Transifex. To create a new translation
1313
* or to help to maintain an existing one, please register at transifex.com.
1414
*
15-
* Last-updated: 2019-01-03T20:12:39+01:00
15+
* Last-updated: 2022-11-19T17:23:40+01:00
1616
*
17-
* @copyright 2012-2019 The MetaModels team.
17+
* @copyright 2012-2022 The MetaModels team.
1818
* @license https://github.com/MetaModels/attribute_checkbox/blob/master/LICENSE LGPL-3.0-or-later
1919
* @link https://www.transifex.com/metamodels/public/
2020
* @link https://www.transifex.com/signup/?join_project=metamodels
2121
*/
2222

2323

24-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['0'] = 'Обратный';
25-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['1'] = 'Если этот параметр выбран, опубликованный режим будет инвертирован (например, элементы контента).';
26-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['0'] = 'ListView чекбокс';
27-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['1'] = 'Если параметр выбран, вы получите дополнительный значок в панели управления listview.';
28-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['0'] = 'Значок ListView';
29-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['1'] = 'Значок, который отображается в панели управления listview';
30-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['0'] = 'Значок ListView отключен';
31-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['1'] = 'Значок ListView отключен';
32-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['0'] = 'Опубликовать чекбокс';
33-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['1'] = 'Если выбрать, элементы будут отображены в списках во внешнем веб-интерфейсе (вы получите зеленый "глаз" бесплатно).';
34-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Чекбокс';
24+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['0'] = 'Обратный';
25+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Чекбокс';
3526

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
<?php
22
/**
3-
* Translations are managed using Transifex. To create a new translation
4-
* or to help to maintain an existing one, please register at transifex.com.
3+
* This file is part of MetaModels/attribute_checkbox.
4+
*
5+
* (c) 2012-2022 The MetaModels team.
6+
*
7+
* For the full copyright and license information, please view the LICENSE
8+
* file that was distributed with this source code.
59
*
6-
* @license http://www.gnu.org/licenses/lgpl-3.0.html LGPL
10+
* This project is provided in good faith and hope to be usable by anyone.
11+
*
12+
* Translations are managed automatically using Transifex. To create a new translation
13+
* or to help to maintain an existing one, please register at transifex.com.
714
*
8-
* @link https://www.transifex.com/signup/
9-
* @link https://www.transifex.com/projects/p/$$project$$/language/$$lang$$/
15+
* Last-updated: 2022-11-19T17:23:40+01:00
1016
*
11-
* last-updated: 2018-02-06T02:49:29+01:00
17+
* @copyright 2012-2022 The MetaModels team.
18+
* @license https://github.com/MetaModels/attribute_checkbox/blob/master/LICENSE LGPL-3.0-or-later
19+
* @link https://www.transifex.com/metamodels/public/
20+
* @link https://www.transifex.com/signup/?join_project=metamodels
1221
*/
1322

1423

15-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['0'] = 'Ters';
16-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['1'] = 'Bu seçilirse, yayınlanan mod ters çevrilir (içerik öğeleri gibi).';
17-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['0'] = 'Liste görünümü onay kutusu';
18-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listview']['1'] = 'Bu seçilirse, arka uç liste görünümünde ek bir simge bulacaksınız.';
19-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['0'] = 'Liste görünümü simgesi';
20-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicon']['1'] = 'Arka planda liste görünümünde gösterilen simge';
21-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['0'] = 'Liste görünümü simgesi devre dışı';
22-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_listviewicondisabled']['1'] = 'Liste görünümü simgesi devre dışı ';
23-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['0'] = 'Yayınlama onay kutusu';
24-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_publish']['1'] = 'Bu seçilirse, öğeler ön uçlardaki listelerde görünür (yeşil "göz" ü ücretsiz alacaksınız.';
25-
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Onay Kutusu';
24+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['check_inverse']['0'] = 'Ters';
25+
$GLOBALS['TL_LANG']['tl_metamodel_attribute']['typeOptions']['checkbox'] = 'Onay Kutusu';
2626

0 commit comments

Comments
 (0)