-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into contao413
- Loading branch information
Showing
14 changed files
with
326 additions
and
32 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
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
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
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,26 @@ | ||
<?php | ||
|
||
/** | ||
* TL_ROOT/system/modules/tags/languages/fr/default.php | ||
* | ||
* Contao extension: tags | ||
* Deutsch translation file | ||
* | ||
* Copyright : © Helmut Schottmüller | ||
* License : GNU Lesser Public License (LGPL) | ||
* Author : Helmut Schottmüller (hschottm), https://github.com/hschottm | ||
* Translator: Helmut Schottmüller (hschottm), https://github.com/hschottm | ||
* | ||
* This file was created automatically be the Contao extension repository translation module. | ||
* Do not edit this file manually. Contact the author or translator for this module to establish | ||
* permanent text corrections which are update-safe. | ||
*/ | ||
|
||
$GLOBALS['TL_LANG']['MSC']['tags'] = array('Tags', 'Veuillez entrer un ou plusieurs tags séparés par des virgules pour la catégorisation.'); | ||
$GLOBALS['TL_LANG']['MSC']['notags'] = 'Aucune actualité pour ce tag.'; | ||
$GLOBALS['TL_LANG']['MSC']['emptyarticles'] = 'Il n\'y a pas d\'articles pour ce tag.'; | ||
$GLOBALS['TL_LANG']['MSC']['emptyevents'] = 'Il n\'y a aucun événement pour ce tag.'; | ||
|
||
|
||
|
||
?> |
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,56 @@ | ||
<?php | ||
|
||
/** | ||
* TL_ROOT/system/modules/tags/languages/fr/modules.php | ||
* | ||
* Contao extension: tags | ||
* Deutsch translation file | ||
* | ||
* Copyright : © Helmut Schottmüller | ||
* License : GNU Lesser Public License (LGPL) | ||
* Author : Helmut Schottmüller (hschottm), https://github.com/hschottm | ||
* Translator: Helmut Schottmüller (hschottm), https://github.com/hschottm | ||
* | ||
* This file was created automatically be the Contao extension repository translation module. | ||
* Do not edit this file manually. Contact the author or translator for this module to establish | ||
* permanent text corrections which are update-safe. | ||
*/ | ||
|
||
|
||
/** | ||
* Back end modules | ||
*/ | ||
|
||
|
||
/** | ||
* Front end modules | ||
*/ | ||
$GLOBALS['TL_LANG']['FMD']['tagcloud'] = array('Nuage de tags', 'Ce module affiche un nuage de tags.'); | ||
$GLOBALS['TL_LANG']['FMD']['tagscope'] = array('Portée des tags', 'Ce module affiche la portée des tags sélectionnées.'); | ||
$GLOBALS['TL_LANG']['FMD']['globalArticleList'] = array('Liste d\'articles globale', 'Ce module affiche une liste d\'articles de l\'installation complète de Contao.'); | ||
$GLOBALS['TL_LANG']['FMD']['tagcontentlist'] = array('Liste d\'objets de tags', 'Ce module affiche une liste d\'objets contenant un ensemble de tags.'); | ||
$GLOBALS['TL_LANG']['FMD']['taglistbycategory'] = array('Liste de tags par catégorie', 'Ce module affiche une liste d\'objets pour un tag spécifique qui est classée par les sources des tags.'); | ||
$GLOBALS['TL_LANG']['FMD']['tags'] = 'Tags'; | ||
|
||
// articles | ||
|
||
$GLOBALS['TL_LANG']['FMD']['tagcloudarticles'] = array('Nuage de tags (Articles)', 'Ce module affiche un nuage de tags pour les articles sélectionnés.'); | ||
$GLOBALS['TL_LANG']['FMD']['taggedArticleList'] = array('Liste d\'articles (Tags)', 'Ce module génère une liste d\'articles d\'une colonne dans une sous-arborescence sélectionnée et peut être filtrée par un nuage de tags.'); | ||
|
||
// content | ||
|
||
$GLOBALS['TL_LANG']['FMD']['tagcloudcontent'] = array('Nuage de tags (Éléments de contenu)', 'Ce module affiche un nuage de tags pour les éléments de contenu sélectionnés.'); | ||
|
||
// events | ||
|
||
$GLOBALS['TL_LANG']['FMD']['tagcloudevents'] = array('Nuage de tags (Événements)', 'Ce module affiche un nuage de tags pour les événements du calendrier.'); | ||
|
||
// members | ||
|
||
$GLOBALS['TL_LANG']['FMD']['tagcloudmembers'] = array('Nuage de tags (Membres)', 'Ce module affiche un nuage de tags pour les groupes de membres sélectionnés.'); | ||
|
||
// news | ||
|
||
$GLOBALS['TL_LANG']['FMD']['tagcloudnews'] = array('Nuage de tags (Actualités)', 'Ce module affiche un nuage de tags pour les actualité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,34 @@ | ||
<?php | ||
|
||
/** | ||
* TL_ROOT/system/modules/tags/languages/fr/tl_article.php | ||
* | ||
* Contao extension: tags | ||
* Deutsch translation file | ||
* | ||
* Copyright : © Helmut Schottmüller | ||
* License : GNU Lesser Public License (LGPL) | ||
* Author : Helmut Schottmüller (hschottm), https://github.com/hschottm | ||
* Translator: Helmut Schottmüller (hschottm), https://github.com/hschottm | ||
* | ||
* This file was created automatically be the Contao extension repository translation module. | ||
* Do not edit this file manually. Contact the author or translator for this module to establish | ||
* permanent text corrections which are update-safe. | ||
*/ | ||
|
||
|
||
/** | ||
* Fields | ||
*/ | ||
$GLOBALS['TL_LANG']['tl_article']['tags_jumpto'] = array('Aller à la page', 'Ce paramètre définit vers quelle page un utilisateur sera redirigé en cliquant sur un tag.'); | ||
$GLOBALS['TL_LANG']['tl_article']['tags_max_tags'] = array('Nombre maximal de tags', 'Veuillez entrer le nombre maximum de tags qui doivent être affichés pour l\'article. Si le nombre est 0, tous les tags seront affichés.'); | ||
$GLOBALS['TL_LANG']['tl_article']['tags_showtags'] = array('Afficher les tags', 'Sélectionnez cette option pour afficher les tags attribués à l`\'article.'); | ||
$GLOBALS['TL_LANG']['tl_article']['tags_relevance'] = array('Trier par pertinence', 'Sélectionnez cette option pour trier les balises attribuées par pertinence. Si elle n\'est pas cochée, les tags seront triés par ordre alphabétique.'); | ||
$GLOBALS['TL_LANG']['tl_article']['tags'] = "Tags"; | ||
|
||
/** | ||
* Legends | ||
*/ | ||
$GLOBALS['TL_LANG']['tl_article']['tags_legend'] = 'Tags'; | ||
|
||
?> |
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 | ||
|
||
/** | ||
* TL_ROOT/system/modules/tags/languages/fr/tl_content.php | ||
* | ||
* Contao extension: tags | ||
* Deutsch translation file | ||
* | ||
* Copyright : © Helmut Schottmüller | ||
* License : GNU Lesser Public License (LGPL) | ||
* Author : Helmut Schottmüller (hschottm), https://github.com/hschottm | ||
* Translator: Helmut Schottmüller (hschottm), https://github.com/hschottm | ||
* | ||
* This file was created automatically be the Contao extension repository translation module. | ||
* Do not edit this file manually. Contact the author or translator for this module to establish | ||
* permanent text corrections which are update-safe. | ||
*/ | ||
|
||
/** | ||
* Fields | ||
*/ | ||
$GLOBALS['TL_LANG']['tl_content']['tagsonly'] = array('Afficher uniquement avec les tags', 'Afficher uniquement cet élément de contenu lorsqu\'un balisetag est sélectionné.'); | ||
$GLOBALS['TL_LANG']['tl_content']['tag_filter'] = array('Filtre de tags', 'Veuillez entrer une liste de balises séparées par des virgules pour filtrer les éléments de contenu.'); | ||
$GLOBALS['TL_LANG']['tl_content']['tag_ignore'] = array('Ignorer les tags', 'Forcer ce module à ignorer les actions liées aux tags (e.g. Afficher uniquement le contenu avec le tag selectionné)'); | ||
|
||
$GLOBALS['TL_LANG']['tl_content']['tags_legend'] = "Tags"; | ||
|
||
?> |
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,24 @@ | ||
<?php | ||
|
||
/** | ||
* TL_ROOT/system/modules/tags/languages/fr/tl_member.php | ||
* | ||
* Contao extension: tags | ||
* Deutsch translation file | ||
* | ||
* Copyright : © Helmut Schottmüller | ||
* License : GNU Lesser Public License (LGPL) | ||
* Author : Helmut Schottmüller (hschottm), https://github.com/hschottm | ||
* Translator: Helmut Schottmüller (hschottm), https://github.com/hschottm | ||
* | ||
* This file was created automatically be the Contao extension repository translation module. | ||
* Do not edit this file manually. Contact the author or translator for this module to establish | ||
* permanent text corrections which are update-safe. | ||
*/ | ||
|
||
/** | ||
* Legends | ||
*/ | ||
$GLOBALS['TL_LANG']['tl_member']['categories_legend'] = 'Catégories'; | ||
|
||
?> |
Oops, something went wrong.