2015.07.19

master
brol 2015-07-20 01:17:56 +02:00
parent 627d0b876d
commit 9c32d31bfa
7 changed files with 291 additions and 319 deletions

View File

@ -24,12 +24,12 @@ $this->registerModule(
/* Author */
"Jean-Christian Denis, BG, Pierre Van Glabeke",
/* Version */
'2015.04.25',
'2015.07.19',
/* Properies */
array(
'permissions' => 'admin',
'type' => 'plugin',
'dc_min' => '2.7',
'dc_min' => '2.8',
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=331158',
'details' => 'http://plugins.dotaddict.org/dc2/details/zoneclearFeedServer'
)

View File

@ -657,9 +657,9 @@ class zcfsTemplate
public static function FeedsEntriesCount($a)
{
$none = 'no entries';
$one = 'one entry';
$more = '%d entries';
$none = __('no entries');
$one = __('one entry');
$more = __('%d entries');
if (isset($a['none'])) {
$none = addslashes($a['none']);
@ -732,4 +732,16 @@ class zcfsTemplate
return '&&';
}
}
}
$core->addBehavior('publicBreadcrumb',array('extZcfeeds','publicBreadcrumb'));
class extZcfeeds
{
public static function publicBreadcrumb($context,$separator)
{
if ($context == 'zoneclearFeedsPage') {
return __('List of feeds');
}
}
}

View File

@ -79,12 +79,7 @@ class zoneclearFeedServerWidget
10,
'text'
);
$w->zcfssource->setting(
'pagelink',
__('Add link to feeds page'),
1,
'check'
);
$w->zcfssource->setting('pagelink',__('Link to the list of sources:'),__('All sources'));
$w->zcfssource->setting(
'homeonly',
__('Display on:'),
@ -96,17 +91,8 @@ class zoneclearFeedServerWidget
__('Except on home page') => 2
)
);
$w->zcfssource->setting(
'content_only',
__('Content only'),
0,
'check'
);
$w->zcfssource->setting(
'class',
__('CSS class:'),
''
);
$w->zcfssource->setting('content_only',__('Content only'),0,'check');
$w->zcfssource->setting('class',__('CSS class:'),'');
$w->zcfssource->setting('offline',__('Offline'),0,'check');
}
@ -228,14 +214,15 @@ class zoneclearFeedServerWidget
$i++;
}
if ($w->pagelink) {
$res .= '<li><a href="'.$core->blog->url.$core->url->getBase('zoneclearFeedsPage').'">'.__('All sources').'</a></li>';
}
$res =
($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : '').
'<ul>'.$res.'</ul>';
if ($w->pagelink) {
$res .= '<p><strong><a href="'.$core->blog->url.$core->url->getBase('zoneclearFeedsPage').'">'.
html::escapeHTML($w->pagelink).'</a></strong></p>';
}
return $w->renderDiv($w->content_only,'zoneclear-sources '.$w->class,'',$res);
}

View File

@ -3,6 +3,13 @@ zoneclearFeedServer xxxx.xx.xx
* Added plugin muppet support (request Mathieu M.)
* Added log for errors
zoneclearFeedServer 2015.07.19 - Pierre Van Glabeke
* modif lien vers tous les flux
* héritage thème mustek
* ajout breadcrumb
* localisation
* dc2.8 requis
zoneclearFeedServer 2015.04.25 - Pierre Van Glabeke
* modif nom dans liste des plugins
* modif html5 pour validation

View File

@ -36,9 +36,6 @@
<tpl:Block name="body-tag"><body class="dc-zcfeeds"></tpl:Block>
<tpl:Block name="main-content">
<div id="main" role="main">
<tpl:zcFeeds sortby="name" order="asc">
<tpl:zcFeedsHeader>
<div id="content-info">
@ -47,7 +44,7 @@
</div>
</tpl:zcFeedsHeader>
<div id="p{{tpl:zcFeedID}}" class="post {{tpl:zcFeedIfOdd}} {{tpl:zcFeedIfFirst}}" lang="{{tpl:zcFeedLang}}" xml:lang="{{tpl:zcFeedLang}}">
<div id="p{{tpl:zcFeedID}}" class="post {{tpl:zcFeedIfOdd}} {{tpl:zcFeedIfFirst}}" lang="{{tpl:zcFeedLang}}" role="article">
<h2 class="post-title">{{tpl:zcFeedName encode_html="1"}}</h2>

View File

@ -1,25 +1,28 @@
<!DOCTYPE html>
<html lang="{{tpl:BlogLanguage}}">
<head>
<meta charset="UTF-8" />
<meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
{{tpl:extends parent="__layout.html"}}
<title>{{tpl:lang List of feeds}} - {{tpl:BlogName encode_html="1"}}</title>
<meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription cut_string="180" encode_html="1"}}" />
<meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
<meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
<meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
<tpl:Block name="head-title">
<title>{{tpl:lang List of feeds}} - {{tpl:BlogName encode_html="1"}}</title>
</tpl:Block>
<meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang List of feeds}} - {{tpl:BlogName encode_html="1"}}" />
<meta property="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription encode_html="1"}}" />
<meta property="dc.language" content="{{tpl:BlogLanguage}}" />
<meta property="dc.publisher" content="{{tpl:BlogEditor encode_html="1"}}" />
<meta property="dc.rights" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
<meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
<meta property="dc.type" content="text" />
<meta property="dc.format" content="text/html" />
<tpl:Block name="meta-robots">
<meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
</tpl:Block>
<link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
<tpl:Block name="meta-entry">
<meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription encode_html="1" cut_string="180"}}" />
<meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
<meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
</tpl:Block>
<tpl:Block name="dc-entry">
<meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang List of feeds}} - {{tpl:BlogName encode_html="1"}}" />
<meta property="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription remove_html="1"}}" />
<meta property="dc.language" content="{{tpl:BlogLanguage}}" />
<meta property="dc.date" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
</tpl:Block>
<tpl:Block name="head-linkrel">
<link rel="contents" href="{{tpl:BlogArchiveURL}}" title="{{tpl:lang Archives}}" />
<tpl:Categories>
<link rel="section" href="{{tpl:CategoryURL}}" title="{{tpl:CategoryTitle encode_html="1"}}" />
@ -28,20 +31,11 @@
<link rel="alternate" type="application/atom+xml" title="Atom 1.0" href="{{tpl:BlogFeedURL type="atom"}}" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="{{tpl:BlogRSDURL}}" />
<link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />
</tpl:Block>
{{tpl:include src="_head.html"}}
</head>
<body class="dc-zcfeeds">
<div id="page">
{{tpl:include src="_top.html"}}
<div id="wrapper">
<div id="main" role="main">
<div id="content">
<tpl:Block name="body-tag"><body class="dc-zcfeeds"></tpl:Block>
<tpl:Block name="main-content">
<tpl:zcFeeds sortby="name" order="asc">
<tpl:zcFeedsHeader>
<div id="content-info">
@ -49,7 +43,8 @@
<p>{{tpl:zcFeedsCount}} - {{tpl:zcFeedsEntriesCount}}</p>
</div>
</tpl:zcFeedsHeader>
<div id="p{{tpl:zcFeedID}}" class="post {{tpl:zcFeedIfOdd}} {{tpl:zcFeedIfFirst}}" lang="{{tpl:zcFeedLang}}" xml:lang="{{tpl:zcFeedLang}}">
<div id="p{{tpl:zcFeedID}}" class="post {{tpl:zcFeedIfOdd}} {{tpl:zcFeedIfFirst}}" lang="{{tpl:zcFeedLang}}" role="article">
<h2 class="post-title">{{tpl:zcFeedName encode_html="1"}}</h2>
@ -66,22 +61,4 @@
</div>
</tpl:zcFeeds>
</div>
</div> <!-- End #main -->
<div id="sidebar" role="complementary">
<div id="blognav">
{{tpl:Widgets type="nav"}}
</div> <!-- End #blognav -->
<div id="blogextra">
{{tpl:Widgets type="extra"}}
</div> <!-- End #blogextra -->
</div>
</div> <!-- End #wrapper -->
{{tpl:include src="_footer.html"}}
</div> <!-- End #page -->
</body>
</html>
</tpl:Block>

View File

@ -1,338 +1,319 @@
# Language: Français
# Module: zoneclearFeedServer - 2015.07.19
# Date: 2015-07-19 16:15:38
# Translated with translater 2015.03.02
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: zoneclearFeedServer 2013.07.12\n"
"Project-Id-Version: zoneclearFeedServer 2015.07.19\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: 2013-11-19T08:03:53+00:00\n"
"Last-Translator: Jean-Christian Denis\n"
"PO-Revision-Date: 2015-07-19T16:15:38+00:00\n"
"Last-Translator: brol\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
msgid "Mix your blog with a feeds planet"
msgstr "Mixer votre blog avec un planet"
#: _admin.php:35
#: _admin.php:95
#: inc/class.zcfs.feedsactions.php:34
#: inc/class.zcfs.feedsactions.php:304
#: inc/class.zcfs.feedsactions.php:357
#: index.php:435
#: index.php:468
#: index.php:763
#: index.php:793
#: _admin.php:34
#: _admin.php:94
#: inc/class.zcfs.feedsactions.php:46
#: inc/class.zcfs.feedsactions.php:317
#: inc/class.zcfs.feedsactions.php:370
#: index.php:434
#: index.php:467
#: index.php:762
#: index.php:792
msgid "Feeds server"
msgstr "Serveur de flux"
#: _admin.php:143
msgid "%s feed disabled"
msgid_plural "%s feeds disabled"
msgstr[0] "%s flux désactivé"
msgstr[1] "%s flux désactivés"
#: _admin.php:224
#: _admin.php:223
msgid "Edit this feed"
msgstr "Modifier ce flux"
#: _admin.php:230
#: _admin.php:229
msgid "Feed source"
msgstr "Source du flux"
#: _admin.php:232
#: _admin.php:231
msgid "feed URL"
msgstr "URL du fil"
#: _admin.php:233
#: _admin.php:232
msgid "site URL"
msgstr "URL du site"
#: _config.php:98
#: _config.php:97
msgid "Disable"
msgstr "Désactiver"
#: _config.php:99
#: _config.php:98
msgid "Before display"
msgstr "Avant l'affichage"
#: _config.php:100
#: _config.php:99
msgid "After display"
msgstr "Après l'affichage"
#: _config.php:101
#: _config.php:100
msgid "Through Ajax"
msgstr "À travers Ajax"
#: _config.php:108
#: _config.php:107
msgid "Keep source case"
msgstr "Garder la casse de la source"
#: _config.php:109
#: _config.php:108
msgid "First upper case"
msgstr "Premier caractère en majuscule"
#: _config.php:110
#: _config.php:109
msgid "All lower case"
msgstr "Tout en minuscule"
#: _config.php:111
#: _config.php:110
msgid "All upper case"
msgstr "Tout en majuscule"
#: _config.php:121
#: _config.php:120
msgid "Dotclear cache is not writable or not well configured!"
msgstr "Le cache de Dotclear n'est pas accessible en écriture ou n'est pas configuré !"
#: _config.php:132
#: _config.php:131
msgid "Enable plugin"
msgstr "Activer le plugin"
#: _config.php:136
#: _config.php:138
msgid "View the public list of feeds"
msgstr "Voir la page publique de la liste des flux"
#: _config.php:141
#: _config.php:142
msgid "Rules"
msgstr "Règles"
#: _config.php:146
#: _config.php:147
msgid "Status of new posts:"
msgstr "Status des nouveaux billets :"
#: _config.php:150
#: _config.php:151
msgid "Owner of entries created by zoneclearFeedServer:"
msgstr "Propriétaire des billets créés par zoneclearFeedServer :"
#: _config.php:154
#: _config.php:155
msgid "How to transform imported tags:"
msgstr "Comment tranformer la casse des mots-clés importés :"
#: _config.php:160
#: _config.php:161
msgid "Update feeds on public side:"
msgstr "Mettre à jour les flux depuis la partie publique :"
#: _config.php:164
#: _config.php:165
msgid "Number of feeds to update at one time:"
msgstr "Nombre de flux à mettre à jour à la fois :"
#: _config.php:169
#: _config.php:170
msgid "Keep active empty feeds"
msgstr "Garder actif les flux vides"
#: _config.php:173
#: _config.php:174
msgid "Enable public page"
msgstr "Activer la page publique"
#: _config.php:177
#: _config.php:178
msgid "Redirect to original post on:"
msgstr "Rediriger vers le billet original sur :"
#: _config.php:194
#: _config.php:195
msgid "Show full content on:"
msgstr "Afficher le contenu complet sur :"
#: _public.php:234
#: _public.php:302
msgid "Original post on <a href=\"%s\">%s</a>"
msgstr "Billet original sur <a href=\"%s\">%s</a>"
#: _public.php:245
#: _public.php:313
msgid "Read more details about this feed"
msgstr "Lire plus de détails à propos de ce flux"
#: _widgets.php:35
msgid "Feeds server: sources"
msgstr "Serveur de flux : les sources"
#: _widgets.php:38
msgid "List sources of feeds"
msgstr "Liste des sources du flux"
#: _widgets.php:43
msgid "Feeds sources"
msgstr "Sources des flux"
#: _widgets.php:54
msgid "Create date"
msgstr "Date de création"
#: _widgets.php:69
msgid "Limit:"
msgstr "Limite :"
#: _widgets.php:75
msgid "Add link to feeds page"
msgstr "Ajouter un lien vers la page des flux"
#: _widgets.php:107
msgid "Feeds server: numbers"
msgstr "Serveur de flux : les chiffres"
#: _widgets.php:110
msgid "Show some numbers about feeds"
msgstr "Affciher quelques chiffres à propose du flux"
#: _widgets.php:115
msgid "Feeds numbers"
msgstr "Le flux en chiffres"
#: _widgets.php:122
msgid "Show feeds count"
msgstr "Afficher le nombre de flux"
#: _widgets.php:128
msgid "Title for feeds count:"
msgstr "Titre pour le nombre de flux :"
#: _widgets.php:129
msgid "Feeds:"
msgstr "Flux :"
#: _widgets.php:136
msgid "Show entries count"
msgstr "Afficher le nombre de billets"
#: _widgets.php:142
msgid "Title for entries count:"
msgstr "Titre pour le nombre de billets :"
#: _widgets.php:143
msgid "Entries:"
msgstr "Billets :"
#: _widgets.php:208
msgid "All sources"
msgstr "Toutes les sources"
#: _widgets.php:241
msgid "no sources"
msgstr "aucune source"
#: _widgets.php:244
msgid "one source"
msgstr "une source"
#: _widgets.php:247
msgid "%d sources"
msgstr "%d sources"
#: _widgets.php:270
msgid "no entries"
msgstr "aucun billet"
#: _widgets.php:273
msgid "one entry"
msgstr "un billet"
#: _widgets.php:308
msgid "%d entries"
msgstr "%d billets"
#: default-templates/zcfeeds.html:50
#: _public.php:744
msgid "List of feeds"
msgstr "Liste des sources"
#: inc/class.zcfs.feedsactions.php:21
#: index.php:469
#: index.php:794
#: _uninstall.php:25
msgid "delete all settings"
msgstr "supprimer tous les paramètres"
#: _uninstall.php:31
msgid "delete table"
msgstr "effacer la table"
#: _uninstall.php:37
msgid "delete plugin files"
msgstr "effacer les fichiers du plugin"
#: _uninstall.php:43
msgid "delete the version number"
msgstr "effacer le numéro de version"
#: _uninstall.php:51
msgid "delete all %s settings"
msgstr "effacer tous les paramètres de %s"
#: _uninstall.php:57
msgid "delete %s table"
msgstr "effacer la table %s"
#: _uninstall.php:63
msgid "delete %s plugin files"
msgstr "effacer les fichiers du plugin %s"
#: _uninstall.php:69
msgid "delete %s version number"
msgstr "effacer la version de %s"
#: _widgets.php:44
msgid "Feeds server: sources"
msgstr "Serveur de flux : les sources"
#: _widgets.php:47
msgid "List sources of feeds"
msgstr "Liste des sources du flux"
#: _widgets.php:52
msgid "Feeds sources"
msgstr "Sources des flux"
#: _widgets.php:63
msgid "Create date"
msgstr "Date de création"
#: _widgets.php:78
msgid "Limit:"
msgstr "Limite :"
msgid "Link to the list of sources:"
msgstr "Lien vers la liste des sources :"
#: _widgets.php:82
msgid "All sources"
msgstr "Toutes les sources"
#: _widgets.php:108
msgid "Feeds server: numbers"
msgstr "Serveur de flux : les chiffres"
#: _widgets.php:111
msgid "Show some numbers about feeds"
msgstr "Affciher quelques chiffres à propose du flux"
#: _widgets.php:116
msgid "Feeds numbers"
msgstr "Le flux en chiffres"
#: _widgets.php:123
msgid "Show feeds count"
msgstr "Afficher le nombre de flux"
#: _widgets.php:129
msgid "Title for feeds count:"
msgstr "Titre pour le nombre de flux :"
#: _widgets.php:130
msgid "Feeds:"
msgstr "Flux :"
#: _widgets.php:137
msgid "Show entries count"
msgstr "Afficher le nombre de billets"
#: _widgets.php:143
msgid "Title for entries count:"
msgstr "Titre pour le nombre de billets :"
#: _widgets.php:144
msgid "Entries:"
msgstr "Billets :"
#: _widgets.php:259
msgid "no sources"
msgstr "aucune source"
#: _widgets.php:262
msgid "one source"
msgstr "une source"
#: _widgets.php:265
msgid "%d sources"
msgstr "%d sources"
#: _widgets.php:288
msgid "no entries"
msgstr "aucun billet"
#: _widgets.php:291
msgid "one entry"
msgstr "un billet"
#: inc/class.zcfs.feedsactions.php:33
#: index.php:468
#: index.php:793
msgid "Feeds"
msgstr "Flux de syndication"
#: inc/class.zcfs.feedsactions.php:40
#: inc/class.zcfs.feedsactions.php:52
msgid "Back to feeds list"
msgstr "Retour à la liste des flux"
#: inc/class.zcfs.feedsactions.php:55
#: inc/class.zcfs.feedsactions.php:67
msgid "Feeds actions"
msgstr "Actions sur les flux"
#: inc/class.zcfs.feedsactions.php:95
#: inc/class.zcfs.feedsactions.php:108
msgid "Change update interval"
msgstr "Changer l'interval de mise à jour"
#: inc/class.zcfs.feedsactions.php:99
#: inc/class.zcfs.feedsactions.php:112
msgid "Disable feed update"
msgstr "Désactiver la mise à jour du flux"
#: inc/class.zcfs.feedsactions.php:103
#: inc/class.zcfs.feedsactions.php:116
msgid "Enable feed update"
msgstr "Activer la mise à jour du flux"
#: inc/class.zcfs.feedsactions.php:107
#: inc/class.zcfs.feedsactions.php:120
msgid "Reset last update"
msgstr "Remettre à zéro le chronomètre de mise à jour"
#: inc/class.zcfs.feedsactions.php:111
#: inc/class.zcfs.feedsactions.php:124
msgid "Update (check) feed"
msgstr "Mettre à jour (vérifier) le flux"
#: inc/class.zcfs.feedsactions.php:115
#: inc/class.zcfs.feedsactions.php:128
msgid "Delete related posts"
msgstr "Effacer les billets liés"
#: inc/class.zcfs.feedsactions.php:119
#: inc/class.zcfs.feedsactions.php:132
msgid "Delete feed (without related posts)"
msgstr "Effacer le flux (sans effacer les billets liés)"
#: inc/class.zcfs.feedsactions.php:130
#: inc/class.zcfs.feedsactions.php:169
#: inc/class.zcfs.feedsactions.php:200
#: inc/class.zcfs.feedsactions.php:223
#: inc/class.zcfs.feedsactions.php:246
#: inc/class.zcfs.feedsactions.php:273
#: inc/class.zcfs.feedsactions.php:330
#: inc/class.zcfs.feedsactions.php:143
#: inc/class.zcfs.feedsactions.php:182
#: inc/class.zcfs.feedsactions.php:213
#: inc/class.zcfs.feedsactions.php:236
#: inc/class.zcfs.feedsactions.php:259
#: inc/class.zcfs.feedsactions.php:286
#: inc/class.zcfs.feedsactions.php:343
msgid "No feeds selected"
msgstr "Aucun flux selectionné"
#: inc/class.zcfs.feedsactions.php:140
msgid "%d feed has been successfully enabled."
msgid_plural "%d feeds have been successfully enabled."
msgstr[0] "%s flux activé avec succès."
msgstr[1] "%s flux activés avec succès."
#: inc/class.zcfs.feedsactions.php:146
msgid "%d feed has been successfully disabled."
msgid_plural "%d feeds have been successfully disabled."
msgstr[0] "%s flux désactivé avec succès."
msgstr[1] "%s flux désactivés avec succès."
#: inc/class.zcfs.feedsactions.php:190
#: inc/class.zcfs.feedsactions.php:203
msgid "Entries have been successfully deleted."
msgstr "Les billets ont été effacé avec succès."
#: inc/class.zcfs.feedsactions.php:209
msgid "%d feed has been successfully deleted."
msgid_plural "%d feeds have been successfully deleted."
msgstr[0] "%s flux effacé avec succès."
msgstr[1] "%s flux effacés avec succès."
#: inc/class.zcfs.feedsactions.php:232
msgid "%d feed has been successfully updated."
msgid_plural "%d feeds have been successfully updated."
msgstr[0] "%s flux mis à jour avec succès."
msgstr[1] "%s flux mis à jour avec succès."
#: inc/class.zcfs.feedsactions.php:209
msgid "Last update of %s feed successfully reseted."
msgid_plural "Last update of %s feeds successfully reseted."
msgstr[0] "Date de dernière mise à jour de %s flux remise à zéro avec succès."
msgstr[1] "Dates de dernières mises à jour de %s flux remises à zéro avec succès."
#: inc/class.zcfs.feedsactions.php:286
msgid "Category of %s feed successfully changed."
msgid_plural "Category of %s feeds successfully changed."
msgstr[0] "Catégorie de %s flux mise à jour avec succès."
msgstr[1] "Catégorie de %s flux mise à jour avec succès."
#: inc/class.zcfs.feedsactions.php:343
msgid "Update frequency of %s feed successfully changed."
msgid_plural "Update frequency of %s feeds successfully changed."
msgstr[0] "Fréquence de mise à jour de %s flux modifiée avec succès."
msgstr[1] "Fréquence de mise à jour de %s flux modifiée avec succès."
#: inc/class.zcfs.feedsactions.php:359
#: inc/class.zcfs.feedsactions.php:372
msgid "Change update frequency for this selection"
msgstr "Changer la fréquence de mise à jour pour la selection"
#: inc/class.zcfs.feedsactions.php:365
#: inc/class.zcfs.feedsactions.php:378
msgid "Frequency:"
msgstr "Fréquence :"
@ -389,7 +370,7 @@ msgid "There is no feed"
msgstr "Il n'y a pas de flux"
#: inc/lib.zcfs.list.php:44
#: index.php:494
#: index.php:493
msgid "Feed"
msgstr "Flux"
@ -405,144 +386,155 @@ msgstr "jamais"
msgid "View entries"
msgstr "Voir les billets"
#: inc/lib.zcfs.socialmewriter.php:32
#: inc/lib.zcfs.socialmewriter.php:31
msgid "New Zoneclear post"
msgstr "Nouveu billet Zoneclear"
#: inc/lib.zcfs.socialmewriter.php:33
#: inc/lib.zcfs.socialmewriter.php:32
msgid "When a feed has new entry"
msgstr "Lorsqu'un flux a un nouveau billet"
#: inc/lib.zcfsr.activityreport.php:23
#: inc/lib.zcfsr.activityreport.php:22
msgid "Plugin zoneclearFeedServer"
msgstr "Extension zoneclearFeedServer"
#: inc/lib.zcfsr.activityreport.php:30
#: inc/lib.zcfsr.activityreport.php:29
msgid "feed creation"
msgstr "création d'un flux"
#: inc/lib.zcfsr.activityreport.php:31
#: inc/lib.zcfsr.activityreport.php:30
msgid "A new feed named \"%s\" point to \"%s\" was added by \"%s\""
msgstr "Un nouveau flux nommé \"%s\" pointant vers \"%s\" a été ajouté par \"%s\""
#: inc/lib.zcfsr.activityreport.php:39
#: inc/lib.zcfsr.activityreport.php:38
msgid "updating feed info"
msgstr "mise à jour des informations du flux (administration)"
#: inc/lib.zcfsr.activityreport.php:40
#: inc/lib.zcfsr.activityreport.php:39
msgid "Feed named \"%s\" point to \"%s\" has been updated by \"%s\""
msgstr "Le flux nommé \"%s\" pointant vers \"%s\" a été mis à jour par \"%s\""
#: inc/lib.zcfsr.activityreport.php:48
#: inc/lib.zcfsr.activityreport.php:47
msgid "updating feed records"
msgstr "mise à jour des enregistrements du flux (automatique)"
#: inc/lib.zcfsr.activityreport.php:49
#: inc/lib.zcfsr.activityreport.php:48
msgid "Records of the feed named \"%s\" have been updated automatically"
msgstr "Les enregistrements du flux nommé \"%s\" ont été automatiquement mis à jour"
#: inc/lib.zcfsr.activityreport.php:57
#: inc/lib.zcfsr.activityreport.php:56
msgid "feed deletion"
msgstr "suppression d'un flux"
#: inc/lib.zcfsr.activityreport.php:58
#: inc/lib.zcfsr.activityreport.php:57
msgid "Feed named \"%s\" point to \"%s\" has been deleted by \"%s\""
msgstr "Le flux nommé \"%s\" pointant vers \"%s\" a été supprimé par \"%s\""
#: inc/lib.zcfsr.activityreport.php:66
#: inc/lib.zcfsr.activityreport.php:65
msgid "feed status"
msgstr "status d'un flux"
#: inc/lib.zcfsr.activityreport.php:67
#: inc/lib.zcfsr.activityreport.php:66
msgid "Feed named \"%s\" point to \"%s\" has been set to \"%s\""
msgstr "Le flux nommé \"%s\" pointant vers \"%s\" a été marqué comme \"%s\""
#: index.php:84
#: index.php:83
msgid "This feed does not exist."
msgstr "Ce flux n'existe pas."
#: index.php:115
#: index.php:114
msgid "next feed"
msgstr "flux suivant"
#: index.php:122
#: index.php:121
msgid "previous feed"
msgstr "flux précédent"
#: index.php:151
#: index.php:150
msgid "Record with same feed URL already exists."
msgstr "Un enregistrement avec la même URL de flux existe déjà."
#: index.php:154
#: index.php:153
msgid "You must provide a name."
msgstr "Vous devez indiquer un nom."
#: index.php:157
#: index.php:156
msgid "You must provide an owner."
msgstr "Vous devez indiquer un propriétaire."
#: index.php:160
#: index.php:159
msgid "You must provide valid site URL."
msgstr "Vous devez donner une URL de site valide."
#: index.php:163
#: index.php:162
msgid "You must provide valid feed URL."
msgstr "Vous devez donner une URL de flux valide."
#: index.php:167
#: index.php:166
msgid "You must provide valid category."
msgstr "Vous devez donner une catégorie valide."
#: index.php:213
#: index.php:212
msgid "Feed successfully updated."
msgstr "Flux mis à jour avec succès."
#: index.php:241
#: index.php:240
msgid "Feed successfully created."
msgstr "Flux créé avec succcès."
#: index.php:470
#: index.php:469
msgid "Edit feed"
msgstr "Edition de flux"
#: index.php:470
#: index.php:801
#: index.php:469
#: index.php:800
msgid "New feed"
msgstr "Nouveau flux"
#: index.php:500
#: index.php:499
msgid "Feed information"
msgstr "Information sur le flux"
#: index.php:510
#: index.php:509
msgid "Owner:"
msgstr "Propriétaire :"
#: index.php:516
#: index.php:515
msgid "Tweeter or Identica ident:"
msgstr "Identifiant Twiiter ou Identi.ca :"
#: index.php:522
#: index.php:521
msgid "Site URL:"
msgstr "URL du site :"
#: index.php:546
#: index.php:545
msgid "Local settings"
msgstr "Paramètres locaux"
#: index.php:556
#: index.php:555
msgid "Update:"
msgstr "Mise à jour :"
#: index.php:566
#: index.php:565
msgid "Import tags from feed"
msgstr "Importer les tags depuis le flux"
#: index.php:708
#: index.php:707
msgid "Date of update"
msgstr "Date de mise à jour"
#: index.php:833
#: index.php:832
msgid "Selected feeds action:"
msgstr "Action sur les flux sélectionnés :"
msgid "Mix your blog with a feeds planet"
msgstr "Mixer votre blog avec un planet"
msgid "no entries"
msgstr "aucun billet"
msgid "one entry"
msgstr "un billet"
msgid "%d entries"
msgstr "%d billets"