| 1 | # Movable Type (r) Open Source (C) 2005-2008 Six Apart, Ltd. |
|---|
| 2 | # This program is distributed under the terms of the |
|---|
| 3 | # GNU General Public License, version 2. |
|---|
| 4 | # |
|---|
| 5 | # $Id$ |
|---|
| 6 | |
|---|
| 7 | package StyleCatcher::L10N::fr; |
|---|
| 8 | |
|---|
| 9 | use strict; |
|---|
| 10 | use base 'StyleCatcher::L10N::en_us'; |
|---|
| 11 | use vars qw( %Lexicon ); |
|---|
| 12 | |
|---|
| 13 | ## The following is the translation table. |
|---|
| 14 | |
|---|
| 15 | %Lexicon = ( |
|---|
| 16 | ## plugins/StyleCatcher/lib/StyleCatcher/CMS.pm |
|---|
| 17 | 'Your mt-static directory could not be found. Please configure \'StaticFilePath\' to continue.' => 'Le répertoire mt-static n\'a pas pu être trouvé. Veuillez configurer le \'StaticFilePath\' pour continuer.', |
|---|
| 18 | 'Could not create [_1] folder - Check that your \'themes\' folder is webserver-writable.' => 'Impossible de créer le dossier [_1] - Vérifiez que votre dossier \'themes\' et en mode webserveur/écriture.', |
|---|
| 19 | 'Error downloading image: [_1]' => 'Erreur en téléchargeant l\'image : [_1]', |
|---|
| 20 | 'Successfully applied new theme selection.' => 'Sélection de nouveau ThÚme appliquée avec succÚs.', |
|---|
| 21 | 'Invalid URL: [_1]' => 'URL inaccessible : [_1]', |
|---|
| 22 | |
|---|
| 23 | ## plugins/StyleCatcher/tmpl/view.tmpl |
|---|
| 24 | 'Select a Style' => 'Habillages', |
|---|
| 25 | '3-Columns, Wide, Thin, Thin' => '3-colonnes, large, fin, fin', |
|---|
| 26 | '3-Columns, Thin, Wide, Thin' => '3-colonnes, fin, large, fin', |
|---|
| 27 | '2-Columns, Thin, Wide' => '2-colonnes, fin, large', |
|---|
| 28 | '2-Columns, Wide, Thin' => '2-colonnes, large, fin', |
|---|
| 29 | 'None available' => 'Aucun disponible', |
|---|
| 30 | 'Applying...' => 'Appliquer...', |
|---|
| 31 | 'Apply Design' => 'Appliquer l\'habillage', |
|---|
| 32 | 'Error applying theme: ' => 'Erreur en appliquant l\'habillage:', |
|---|
| 33 | 'The selected theme has been applied, but as you have changed the layout, you will need to republish your blog to apply the new layout.' => 'L\'habillage sélectionné a été appliqué. Vous devez republier votre blog afin d\'appliquer la nouvelle mise en page.', |
|---|
| 34 | 'The selected theme has been applied!' => 'L\'habillage sélectionné a été appliqué!', |
|---|
| 35 | 'Error loading themes! -- [_1]' => 'Erreur lors du chargement des habillages ! -- [_1]', |
|---|
| 36 | 'Stylesheet or Repository URL' => 'URL de la feuille de style ou du répertoire', |
|---|
| 37 | 'Stylesheet or Repository URL:' => 'URL de la feuille de style ou du répertoire:', |
|---|
| 38 | 'Download Styles' => 'Télécharger des habillages', |
|---|
| 39 | 'Current theme for your weblog' => 'ThÚme actuel de votre weblog', |
|---|
| 40 | 'Current Style' => 'Habillage actuel', |
|---|
| 41 | 'Locally saved themes' => 'ThÚmes enregistrés localement', |
|---|
| 42 | 'Saved Styles' => 'Habillages enregistrés', |
|---|
| 43 | 'Default Styles' => 'Habillages par défaut', |
|---|
| 44 | 'Single themes from the web' => 'ThÚmes uniques venant du web', |
|---|
| 45 | 'More Styles' => 'Plus d\'habillages', |
|---|
| 46 | 'Selected Design' => 'Habillage sélectionné', |
|---|
| 47 | 'Layout' => 'Mise en page', |
|---|
| 48 | |
|---|
| 49 | ## plugins/StyleCatcher/stylecatcher.pl |
|---|
| 50 | 'StyleCatcher lets you easily browse through styles and then apply them to your blog in just a few clicks. To find out more about Movable Type styles, or for new sources for styles, visit the <a href=\'http://www.sixapart.com/movabletype/styles\'>Movable Type styles</a> page.' => 'StyleCatcher vous permet de naviguer facilement à travers des styles et de les appliquer à votre blog en quelques clics seulement. Pour en savoir plus à propos des styles Movable Type, ou pour avoir de nouvelles sources de styles, visitez la page <a href=\'http://www.sixapart.com/movabletype/styles\'>Movable Type styles</a>.', |
|---|
| 51 | 'MT 4 Style Library' => 'BibliothÚque MT4', |
|---|
| 52 | 'A collection of styles compatible with Movable Type 4 default templates.' => 'Une gamme de styles compatibles avec les gabarits MT4 par défaut', |
|---|
| 53 | 'MT 3 Style Library' => 'BibliothÚque MT3', |
|---|
| 54 | 'A collection of styles compatible with Movable Type 3.3+ default templates.' => 'Une gamme de styles compatibles avec les gabarits MT3.3+ par défaut', |
|---|
| 55 | 'Styles' => 'Habillages', |
|---|
| 56 | '2-Columns, Wide, Medium' => '2-Colonnes, Large, Moyen', # Translate - New |
|---|
| 57 | ); |
|---|
| 58 | |
|---|
| 59 | 1; |
|---|
| 60 | |
|---|