2015.07.19
This commit is contained in:
parent
627d0b876d
commit
9c32d31bfa
@ -24,12 +24,12 @@ $this->registerModule(
|
|||||||
/* Author */
|
/* Author */
|
||||||
"Jean-Christian Denis, BG, Pierre Van Glabeke",
|
"Jean-Christian Denis, BG, Pierre Van Glabeke",
|
||||||
/* Version */
|
/* Version */
|
||||||
'2015.04.25',
|
'2015.07.19',
|
||||||
/* Properies */
|
/* Properies */
|
||||||
array(
|
array(
|
||||||
'permissions' => 'admin',
|
'permissions' => 'admin',
|
||||||
'type' => 'plugin',
|
'type' => 'plugin',
|
||||||
'dc_min' => '2.7',
|
'dc_min' => '2.8',
|
||||||
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=331158',
|
'support' => 'http://forum.dotclear.org/viewtopic.php?pid=331158',
|
||||||
'details' => 'http://plugins.dotaddict.org/dc2/details/zoneclearFeedServer'
|
'details' => 'http://plugins.dotaddict.org/dc2/details/zoneclearFeedServer'
|
||||||
)
|
)
|
||||||
|
18
_public.php
18
_public.php
@ -657,9 +657,9 @@ class zcfsTemplate
|
|||||||
|
|
||||||
public static function FeedsEntriesCount($a)
|
public static function FeedsEntriesCount($a)
|
||||||
{
|
{
|
||||||
$none = 'no entries';
|
$none = __('no entries');
|
||||||
$one = 'one entry';
|
$one = __('one entry');
|
||||||
$more = '%d entries';
|
$more = __('%d entries');
|
||||||
|
|
||||||
if (isset($a['none'])) {
|
if (isset($a['none'])) {
|
||||||
$none = addslashes($a['none']);
|
$none = addslashes($a['none']);
|
||||||
@ -733,3 +733,15 @@ class zcfsTemplate
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$core->addBehavior('publicBreadcrumb',array('extZcfeeds','publicBreadcrumb'));
|
||||||
|
|
||||||
|
class extZcfeeds
|
||||||
|
{
|
||||||
|
public static function publicBreadcrumb($context,$separator)
|
||||||
|
{
|
||||||
|
if ($context == 'zoneclearFeedsPage') {
|
||||||
|
return __('List of feeds');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
29
_widgets.php
29
_widgets.php
@ -79,12 +79,7 @@ class zoneclearFeedServerWidget
|
|||||||
10,
|
10,
|
||||||
'text'
|
'text'
|
||||||
);
|
);
|
||||||
$w->zcfssource->setting(
|
$w->zcfssource->setting('pagelink',__('Link to the list of sources:'),__('All sources'));
|
||||||
'pagelink',
|
|
||||||
__('Add link to feeds page'),
|
|
||||||
1,
|
|
||||||
'check'
|
|
||||||
);
|
|
||||||
$w->zcfssource->setting(
|
$w->zcfssource->setting(
|
||||||
'homeonly',
|
'homeonly',
|
||||||
__('Display on:'),
|
__('Display on:'),
|
||||||
@ -96,17 +91,8 @@ class zoneclearFeedServerWidget
|
|||||||
__('Except on home page') => 2
|
__('Except on home page') => 2
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
$w->zcfssource->setting(
|
$w->zcfssource->setting('content_only',__('Content only'),0,'check');
|
||||||
'content_only',
|
$w->zcfssource->setting('class',__('CSS class:'),'');
|
||||||
__('Content only'),
|
|
||||||
0,
|
|
||||||
'check'
|
|
||||||
);
|
|
||||||
$w->zcfssource->setting(
|
|
||||||
'class',
|
|
||||||
__('CSS class:'),
|
|
||||||
''
|
|
||||||
);
|
|
||||||
$w->zcfssource->setting('offline',__('Offline'),0,'check');
|
$w->zcfssource->setting('offline',__('Offline'),0,'check');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -228,14 +214,15 @@ class zoneclearFeedServerWidget
|
|||||||
$i++;
|
$i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($w->pagelink) {
|
|
||||||
$res .= '<li><a href="'.$core->blog->url.$core->url->getBase('zoneclearFeedsPage').'">'.__('All sources').'</a></li>';
|
|
||||||
}
|
|
||||||
|
|
||||||
$res =
|
$res =
|
||||||
($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : '').
|
($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : '').
|
||||||
'<ul>'.$res.'</ul>';
|
'<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);
|
return $w->renderDiv($w->content_only,'zoneclear-sources '.$w->class,'',$res);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3,6 +3,13 @@ zoneclearFeedServer xxxx.xx.xx
|
|||||||
* Added plugin muppet support (request Mathieu M.)
|
* Added plugin muppet support (request Mathieu M.)
|
||||||
* Added log for errors
|
* 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
|
zoneclearFeedServer 2015.04.25 - Pierre Van Glabeke
|
||||||
* modif nom dans liste des plugins
|
* modif nom dans liste des plugins
|
||||||
* modif html5 pour validation
|
* modif html5 pour validation
|
||||||
|
@ -36,9 +36,6 @@
|
|||||||
<tpl:Block name="body-tag"><body class="dc-zcfeeds"></tpl:Block>
|
<tpl:Block name="body-tag"><body class="dc-zcfeeds"></tpl:Block>
|
||||||
|
|
||||||
<tpl:Block name="main-content">
|
<tpl:Block name="main-content">
|
||||||
|
|
||||||
<div id="main" role="main">
|
|
||||||
|
|
||||||
<tpl:zcFeeds sortby="name" order="asc">
|
<tpl:zcFeeds sortby="name" order="asc">
|
||||||
<tpl:zcFeedsHeader>
|
<tpl:zcFeedsHeader>
|
||||||
<div id="content-info">
|
<div id="content-info">
|
||||||
@ -47,7 +44,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</tpl:zcFeedsHeader>
|
</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>
|
<h2 class="post-title">{{tpl:zcFeedName encode_html="1"}}</h2>
|
||||||
|
|
||||||
|
@ -1,25 +1,28 @@
|
|||||||
<!DOCTYPE html>
|
{{tpl:extends parent="__layout.html"}}
|
||||||
<html lang="{{tpl:BlogLanguage}}">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
|
|
||||||
|
|
||||||
<title>{{tpl:lang List of feeds}} - {{tpl:BlogName encode_html="1"}}</title>
|
<tpl:Block name="head-title">
|
||||||
<meta name="description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription cut_string="180" encode_html="1"}}" />
|
<title>{{tpl:lang List of feeds}} - {{tpl:BlogName encode_html="1"}}</title>
|
||||||
<meta name="copyright" content="{{tpl:BlogCopyrightNotice encode_html="1"}}" />
|
</tpl:Block>
|
||||||
<meta name="author" content="{{tpl:BlogEditor encode_html="1"}}" />
|
|
||||||
<meta name="date" content="{{tpl:BlogUpdateDate iso8601="1"}}" />
|
|
||||||
|
|
||||||
<meta property="dc.title" lang="{{tpl:BlogLanguage}}" content="{{tpl:lang List of feeds}} - {{tpl:BlogName encode_html="1"}}" />
|
<tpl:Block name="meta-robots">
|
||||||
<meta property="dc.description" lang="{{tpl:BlogLanguage}}" content="{{tpl:BlogDescription encode_html="1"}}" />
|
<meta name="ROBOTS" content="{{tpl:BlogMetaRobots}}" />
|
||||||
<meta property="dc.language" content="{{tpl:BlogLanguage}}" />
|
</tpl:Block>
|
||||||
<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" />
|
|
||||||
|
|
||||||
<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>
|
<tpl:Categories>
|
||||||
<link rel="section" href="{{tpl:CategoryURL}}" title="{{tpl:CategoryTitle encode_html="1"}}" />
|
<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="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="EditURI" type="application/rsd+xml" title="RSD" href="{{tpl:BlogRSDURL}}" />
|
||||||
<link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />
|
<link rel="meta" type="application/xbel+xml" title="Blogroll" href="{{tpl:BlogrollXbelLink}}" />
|
||||||
|
</tpl:Block>
|
||||||
|
|
||||||
{{tpl:include src="_head.html"}}
|
<tpl:Block name="body-tag"><body class="dc-zcfeeds"></tpl:Block>
|
||||||
</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="main-content">
|
||||||
<tpl:zcFeeds sortby="name" order="asc">
|
<tpl:zcFeeds sortby="name" order="asc">
|
||||||
<tpl:zcFeedsHeader>
|
<tpl:zcFeedsHeader>
|
||||||
<div id="content-info">
|
<div id="content-info">
|
||||||
@ -49,7 +43,8 @@
|
|||||||
<p>{{tpl:zcFeedsCount}} - {{tpl:zcFeedsEntriesCount}}</p>
|
<p>{{tpl:zcFeedsCount}} - {{tpl:zcFeedsEntriesCount}}</p>
|
||||||
</div>
|
</div>
|
||||||
</tpl:zcFeedsHeader>
|
</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>
|
<h2 class="post-title">{{tpl:zcFeedName encode_html="1"}}</h2>
|
||||||
|
|
||||||
@ -66,22 +61,4 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
</tpl:zcFeeds>
|
</tpl:zcFeeds>
|
||||||
</div>
|
</tpl:Block>
|
||||||
</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>
|
|
@ -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 ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"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"
|
"POT-Creation-Date: \n"
|
||||||
"PO-Revision-Date: 2013-11-19T08:03:53+00:00\n"
|
"PO-Revision-Date: 2015-07-19T16:15:38+00:00\n"
|
||||||
"Last-Translator: Jean-Christian Denis\n"
|
"Last-Translator: brol\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
msgid "Mix your blog with a feeds planet"
|
#: _admin.php:34
|
||||||
msgstr "Mixer votre blog avec un planet"
|
#: _admin.php:94
|
||||||
|
#: inc/class.zcfs.feedsactions.php:46
|
||||||
#: _admin.php:35
|
#: inc/class.zcfs.feedsactions.php:317
|
||||||
#: _admin.php:95
|
#: inc/class.zcfs.feedsactions.php:370
|
||||||
#: inc/class.zcfs.feedsactions.php:34
|
#: index.php:434
|
||||||
#: inc/class.zcfs.feedsactions.php:304
|
#: index.php:467
|
||||||
#: inc/class.zcfs.feedsactions.php:357
|
#: index.php:762
|
||||||
#: index.php:435
|
#: index.php:792
|
||||||
#: index.php:468
|
|
||||||
#: index.php:763
|
|
||||||
#: index.php:793
|
|
||||||
msgid "Feeds server"
|
msgid "Feeds server"
|
||||||
msgstr "Serveur de flux"
|
msgstr "Serveur de flux"
|
||||||
|
|
||||||
#: _admin.php:143
|
#: _admin.php:223
|
||||||
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
|
|
||||||
msgid "Edit this feed"
|
msgid "Edit this feed"
|
||||||
msgstr "Modifier ce flux"
|
msgstr "Modifier ce flux"
|
||||||
|
|
||||||
#: _admin.php:230
|
#: _admin.php:229
|
||||||
msgid "Feed source"
|
msgid "Feed source"
|
||||||
msgstr "Source du flux"
|
msgstr "Source du flux"
|
||||||
|
|
||||||
#: _admin.php:232
|
#: _admin.php:231
|
||||||
msgid "feed URL"
|
msgid "feed URL"
|
||||||
msgstr "URL du fil"
|
msgstr "URL du fil"
|
||||||
|
|
||||||
#: _admin.php:233
|
#: _admin.php:232
|
||||||
msgid "site URL"
|
msgid "site URL"
|
||||||
msgstr "URL du site"
|
msgstr "URL du site"
|
||||||
|
|
||||||
#: _config.php:98
|
#: _config.php:97
|
||||||
msgid "Disable"
|
msgid "Disable"
|
||||||
msgstr "Désactiver"
|
msgstr "Désactiver"
|
||||||
|
|
||||||
#: _config.php:99
|
#: _config.php:98
|
||||||
msgid "Before display"
|
msgid "Before display"
|
||||||
msgstr "Avant l'affichage"
|
msgstr "Avant l'affichage"
|
||||||
|
|
||||||
#: _config.php:100
|
#: _config.php:99
|
||||||
msgid "After display"
|
msgid "After display"
|
||||||
msgstr "Après l'affichage"
|
msgstr "Après l'affichage"
|
||||||
|
|
||||||
#: _config.php:101
|
#: _config.php:100
|
||||||
msgid "Through Ajax"
|
msgid "Through Ajax"
|
||||||
msgstr "À travers Ajax"
|
msgstr "À travers Ajax"
|
||||||
|
|
||||||
#: _config.php:108
|
#: _config.php:107
|
||||||
msgid "Keep source case"
|
msgid "Keep source case"
|
||||||
msgstr "Garder la casse de la source"
|
msgstr "Garder la casse de la source"
|
||||||
|
|
||||||
#: _config.php:109
|
#: _config.php:108
|
||||||
msgid "First upper case"
|
msgid "First upper case"
|
||||||
msgstr "Premier caractère en majuscule"
|
msgstr "Premier caractère en majuscule"
|
||||||
|
|
||||||
#: _config.php:110
|
#: _config.php:109
|
||||||
msgid "All lower case"
|
msgid "All lower case"
|
||||||
msgstr "Tout en minuscule"
|
msgstr "Tout en minuscule"
|
||||||
|
|
||||||
#: _config.php:111
|
#: _config.php:110
|
||||||
msgid "All upper case"
|
msgid "All upper case"
|
||||||
msgstr "Tout en majuscule"
|
msgstr "Tout en majuscule"
|
||||||
|
|
||||||
#: _config.php:121
|
#: _config.php:120
|
||||||
msgid "Dotclear cache is not writable or not well configured!"
|
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é !"
|
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"
|
msgid "Enable plugin"
|
||||||
msgstr "Activer le plugin"
|
msgstr "Activer le plugin"
|
||||||
|
|
||||||
#: _config.php:136
|
#: _config.php:138
|
||||||
msgid "View the public list of feeds"
|
msgid "View the public list of feeds"
|
||||||
msgstr "Voir la page publique de la liste des flux"
|
msgstr "Voir la page publique de la liste des flux"
|
||||||
|
|
||||||
#: _config.php:141
|
#: _config.php:142
|
||||||
msgid "Rules"
|
msgid "Rules"
|
||||||
msgstr "Règles"
|
msgstr "Règles"
|
||||||
|
|
||||||
#: _config.php:146
|
#: _config.php:147
|
||||||
msgid "Status of new posts:"
|
msgid "Status of new posts:"
|
||||||
msgstr "Status des nouveaux billets :"
|
msgstr "Status des nouveaux billets :"
|
||||||
|
|
||||||
#: _config.php:150
|
#: _config.php:151
|
||||||
msgid "Owner of entries created by zoneclearFeedServer:"
|
msgid "Owner of entries created by zoneclearFeedServer:"
|
||||||
msgstr "Propriétaire des billets créés par zoneclearFeedServer :"
|
msgstr "Propriétaire des billets créés par zoneclearFeedServer :"
|
||||||
|
|
||||||
#: _config.php:154
|
#: _config.php:155
|
||||||
msgid "How to transform imported tags:"
|
msgid "How to transform imported tags:"
|
||||||
msgstr "Comment tranformer la casse des mots-clés importés :"
|
msgstr "Comment tranformer la casse des mots-clés importés :"
|
||||||
|
|
||||||
#: _config.php:160
|
#: _config.php:161
|
||||||
msgid "Update feeds on public side:"
|
msgid "Update feeds on public side:"
|
||||||
msgstr "Mettre à jour les flux depuis la partie publique :"
|
msgstr "Mettre à jour les flux depuis la partie publique :"
|
||||||
|
|
||||||
#: _config.php:164
|
#: _config.php:165
|
||||||
msgid "Number of feeds to update at one time:"
|
msgid "Number of feeds to update at one time:"
|
||||||
msgstr "Nombre de flux à mettre à jour à la fois :"
|
msgstr "Nombre de flux à mettre à jour à la fois :"
|
||||||
|
|
||||||
#: _config.php:169
|
#: _config.php:170
|
||||||
msgid "Keep active empty feeds"
|
msgid "Keep active empty feeds"
|
||||||
msgstr "Garder actif les flux vides"
|
msgstr "Garder actif les flux vides"
|
||||||
|
|
||||||
#: _config.php:173
|
#: _config.php:174
|
||||||
msgid "Enable public page"
|
msgid "Enable public page"
|
||||||
msgstr "Activer la page publique"
|
msgstr "Activer la page publique"
|
||||||
|
|
||||||
#: _config.php:177
|
#: _config.php:178
|
||||||
msgid "Redirect to original post on:"
|
msgid "Redirect to original post on:"
|
||||||
msgstr "Rediriger vers le billet original sur :"
|
msgstr "Rediriger vers le billet original sur :"
|
||||||
|
|
||||||
#: _config.php:194
|
#: _config.php:195
|
||||||
msgid "Show full content on:"
|
msgid "Show full content on:"
|
||||||
msgstr "Afficher le contenu complet sur :"
|
msgstr "Afficher le contenu complet sur :"
|
||||||
|
|
||||||
#: _public.php:234
|
#: _public.php:302
|
||||||
msgid "Original post on <a href=\"%s\">%s</a>"
|
msgid "Original post on <a href=\"%s\">%s</a>"
|
||||||
msgstr "Billet original sur <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"
|
msgid "Read more details about this feed"
|
||||||
msgstr "Lire plus de détails à propos de ce flux"
|
msgstr "Lire plus de détails à propos de ce flux"
|
||||||
|
|
||||||
#: _widgets.php:35
|
#: _public.php:744
|
||||||
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
|
|
||||||
msgid "List of feeds"
|
msgid "List of feeds"
|
||||||
msgstr "Liste des sources"
|
msgstr "Liste des sources"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:21
|
#: _uninstall.php:25
|
||||||
#: index.php:469
|
msgid "delete all settings"
|
||||||
#: index.php:794
|
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"
|
msgid "Feeds"
|
||||||
msgstr "Flux de syndication"
|
msgstr "Flux de syndication"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:40
|
#: inc/class.zcfs.feedsactions.php:52
|
||||||
msgid "Back to feeds list"
|
msgid "Back to feeds list"
|
||||||
msgstr "Retour à la liste des flux"
|
msgstr "Retour à la liste des flux"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:55
|
#: inc/class.zcfs.feedsactions.php:67
|
||||||
msgid "Feeds actions"
|
msgid "Feeds actions"
|
||||||
msgstr "Actions sur les flux"
|
msgstr "Actions sur les flux"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:95
|
#: inc/class.zcfs.feedsactions.php:108
|
||||||
msgid "Change update interval"
|
msgid "Change update interval"
|
||||||
msgstr "Changer l'interval de mise à jour"
|
msgstr "Changer l'interval de mise à jour"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:99
|
#: inc/class.zcfs.feedsactions.php:112
|
||||||
msgid "Disable feed update"
|
msgid "Disable feed update"
|
||||||
msgstr "Désactiver la mise à jour du flux"
|
msgstr "Désactiver la mise à jour du flux"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:103
|
#: inc/class.zcfs.feedsactions.php:116
|
||||||
msgid "Enable feed update"
|
msgid "Enable feed update"
|
||||||
msgstr "Activer la mise à jour du flux"
|
msgstr "Activer la mise à jour du flux"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:107
|
#: inc/class.zcfs.feedsactions.php:120
|
||||||
msgid "Reset last update"
|
msgid "Reset last update"
|
||||||
msgstr "Remettre à zéro le chronomètre de mise à jour"
|
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"
|
msgid "Update (check) feed"
|
||||||
msgstr "Mettre à jour (vérifier) le flux"
|
msgstr "Mettre à jour (vérifier) le flux"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:115
|
#: inc/class.zcfs.feedsactions.php:128
|
||||||
msgid "Delete related posts"
|
msgid "Delete related posts"
|
||||||
msgstr "Effacer les billets liés"
|
msgstr "Effacer les billets liés"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:119
|
#: inc/class.zcfs.feedsactions.php:132
|
||||||
msgid "Delete feed (without related posts)"
|
msgid "Delete feed (without related posts)"
|
||||||
msgstr "Effacer le flux (sans effacer les billets liés)"
|
msgstr "Effacer le flux (sans effacer les billets liés)"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:130
|
#: inc/class.zcfs.feedsactions.php:143
|
||||||
#: inc/class.zcfs.feedsactions.php:169
|
#: inc/class.zcfs.feedsactions.php:182
|
||||||
#: inc/class.zcfs.feedsactions.php:200
|
#: inc/class.zcfs.feedsactions.php:213
|
||||||
#: inc/class.zcfs.feedsactions.php:223
|
#: inc/class.zcfs.feedsactions.php:236
|
||||||
#: inc/class.zcfs.feedsactions.php:246
|
#: inc/class.zcfs.feedsactions.php:259
|
||||||
#: inc/class.zcfs.feedsactions.php:273
|
#: inc/class.zcfs.feedsactions.php:286
|
||||||
#: inc/class.zcfs.feedsactions.php:330
|
#: inc/class.zcfs.feedsactions.php:343
|
||||||
msgid "No feeds selected"
|
msgid "No feeds selected"
|
||||||
msgstr "Aucun flux selectionné"
|
msgstr "Aucun flux selectionné"
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:140
|
#: inc/class.zcfs.feedsactions.php:203
|
||||||
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
|
|
||||||
msgid "Entries have been successfully deleted."
|
msgid "Entries have been successfully deleted."
|
||||||
msgstr "Les billets ont été effacé avec succès."
|
msgstr "Les billets ont été effacé avec succès."
|
||||||
|
|
||||||
#: inc/class.zcfs.feedsactions.php:209
|
#: inc/class.zcfs.feedsactions.php:372
|
||||||
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
|
|
||||||
msgid "Change update frequency for this selection"
|
msgid "Change update frequency for this selection"
|
||||||
msgstr "Changer la fréquence de mise à jour pour la 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:"
|
msgid "Frequency:"
|
||||||
msgstr "Fréquence :"
|
msgstr "Fréquence :"
|
||||||
|
|
||||||
@ -389,7 +370,7 @@ msgid "There is no feed"
|
|||||||
msgstr "Il n'y a pas de flux"
|
msgstr "Il n'y a pas de flux"
|
||||||
|
|
||||||
#: inc/lib.zcfs.list.php:44
|
#: inc/lib.zcfs.list.php:44
|
||||||
#: index.php:494
|
#: index.php:493
|
||||||
msgid "Feed"
|
msgid "Feed"
|
||||||
msgstr "Flux"
|
msgstr "Flux"
|
||||||
|
|
||||||
@ -405,144 +386,155 @@ msgstr "jamais"
|
|||||||
msgid "View entries"
|
msgid "View entries"
|
||||||
msgstr "Voir les billets"
|
msgstr "Voir les billets"
|
||||||
|
|
||||||
#: inc/lib.zcfs.socialmewriter.php:32
|
#: inc/lib.zcfs.socialmewriter.php:31
|
||||||
msgid "New Zoneclear post"
|
msgid "New Zoneclear post"
|
||||||
msgstr "Nouveu billet Zoneclear"
|
msgstr "Nouveu billet Zoneclear"
|
||||||
|
|
||||||
#: inc/lib.zcfs.socialmewriter.php:33
|
#: inc/lib.zcfs.socialmewriter.php:32
|
||||||
msgid "When a feed has new entry"
|
msgid "When a feed has new entry"
|
||||||
msgstr "Lorsqu'un flux a un nouveau billet"
|
msgstr "Lorsqu'un flux a un nouveau billet"
|
||||||
|
|
||||||
#: inc/lib.zcfsr.activityreport.php:23
|
#: inc/lib.zcfsr.activityreport.php:22
|
||||||
msgid "Plugin zoneclearFeedServer"
|
msgid "Plugin zoneclearFeedServer"
|
||||||
msgstr "Extension zoneclearFeedServer"
|
msgstr "Extension zoneclearFeedServer"
|
||||||
|
|
||||||
#: inc/lib.zcfsr.activityreport.php:30
|
#: inc/lib.zcfsr.activityreport.php:29
|
||||||
msgid "feed creation"
|
msgid "feed creation"
|
||||||
msgstr "création d'un flux"
|
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\""
|
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\""
|
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"
|
msgid "updating feed info"
|
||||||
msgstr "mise à jour des informations du flux (administration)"
|
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\""
|
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\""
|
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"
|
msgid "updating feed records"
|
||||||
msgstr "mise à jour des enregistrements du flux (automatique)"
|
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"
|
msgid "Records of the feed named \"%s\" have been updated automatically"
|
||||||
msgstr "Les enregistrements du flux nommé \"%s\" ont été automatiquement mis à jour"
|
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"
|
msgid "feed deletion"
|
||||||
msgstr "suppression d'un flux"
|
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\""
|
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\""
|
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"
|
msgid "feed status"
|
||||||
msgstr "status d'un flux"
|
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\""
|
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\""
|
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."
|
msgid "This feed does not exist."
|
||||||
msgstr "Ce flux n'existe pas."
|
msgstr "Ce flux n'existe pas."
|
||||||
|
|
||||||
#: index.php:115
|
#: index.php:114
|
||||||
msgid "next feed"
|
msgid "next feed"
|
||||||
msgstr "flux suivant"
|
msgstr "flux suivant"
|
||||||
|
|
||||||
#: index.php:122
|
#: index.php:121
|
||||||
msgid "previous feed"
|
msgid "previous feed"
|
||||||
msgstr "flux précédent"
|
msgstr "flux précédent"
|
||||||
|
|
||||||
#: index.php:151
|
#: index.php:150
|
||||||
msgid "Record with same feed URL already exists."
|
msgid "Record with same feed URL already exists."
|
||||||
msgstr "Un enregistrement avec la même URL de flux existe déjà."
|
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."
|
msgid "You must provide a name."
|
||||||
msgstr "Vous devez indiquer un nom."
|
msgstr "Vous devez indiquer un nom."
|
||||||
|
|
||||||
#: index.php:157
|
#: index.php:156
|
||||||
msgid "You must provide an owner."
|
msgid "You must provide an owner."
|
||||||
msgstr "Vous devez indiquer un propriétaire."
|
msgstr "Vous devez indiquer un propriétaire."
|
||||||
|
|
||||||
#: index.php:160
|
#: index.php:159
|
||||||
msgid "You must provide valid site URL."
|
msgid "You must provide valid site URL."
|
||||||
msgstr "Vous devez donner une URL de site valide."
|
msgstr "Vous devez donner une URL de site valide."
|
||||||
|
|
||||||
#: index.php:163
|
#: index.php:162
|
||||||
msgid "You must provide valid feed URL."
|
msgid "You must provide valid feed URL."
|
||||||
msgstr "Vous devez donner une URL de flux valide."
|
msgstr "Vous devez donner une URL de flux valide."
|
||||||
|
|
||||||
#: index.php:167
|
#: index.php:166
|
||||||
msgid "You must provide valid category."
|
msgid "You must provide valid category."
|
||||||
msgstr "Vous devez donner une catégorie valide."
|
msgstr "Vous devez donner une catégorie valide."
|
||||||
|
|
||||||
#: index.php:213
|
#: index.php:212
|
||||||
msgid "Feed successfully updated."
|
msgid "Feed successfully updated."
|
||||||
msgstr "Flux mis à jour avec succès."
|
msgstr "Flux mis à jour avec succès."
|
||||||
|
|
||||||
#: index.php:241
|
#: index.php:240
|
||||||
msgid "Feed successfully created."
|
msgid "Feed successfully created."
|
||||||
msgstr "Flux créé avec succcès."
|
msgstr "Flux créé avec succcès."
|
||||||
|
|
||||||
#: index.php:470
|
#: index.php:469
|
||||||
msgid "Edit feed"
|
msgid "Edit feed"
|
||||||
msgstr "Edition de flux"
|
msgstr "Edition de flux"
|
||||||
|
|
||||||
#: index.php:470
|
#: index.php:469
|
||||||
#: index.php:801
|
#: index.php:800
|
||||||
msgid "New feed"
|
msgid "New feed"
|
||||||
msgstr "Nouveau flux"
|
msgstr "Nouveau flux"
|
||||||
|
|
||||||
#: index.php:500
|
#: index.php:499
|
||||||
msgid "Feed information"
|
msgid "Feed information"
|
||||||
msgstr "Information sur le flux"
|
msgstr "Information sur le flux"
|
||||||
|
|
||||||
#: index.php:510
|
#: index.php:509
|
||||||
msgid "Owner:"
|
msgid "Owner:"
|
||||||
msgstr "Propriétaire :"
|
msgstr "Propriétaire :"
|
||||||
|
|
||||||
#: index.php:516
|
#: index.php:515
|
||||||
msgid "Tweeter or Identica ident:"
|
msgid "Tweeter or Identica ident:"
|
||||||
msgstr "Identifiant Twiiter ou Identi.ca :"
|
msgstr "Identifiant Twiiter ou Identi.ca :"
|
||||||
|
|
||||||
#: index.php:522
|
#: index.php:521
|
||||||
msgid "Site URL:"
|
msgid "Site URL:"
|
||||||
msgstr "URL du site :"
|
msgstr "URL du site :"
|
||||||
|
|
||||||
#: index.php:546
|
#: index.php:545
|
||||||
msgid "Local settings"
|
msgid "Local settings"
|
||||||
msgstr "Paramètres locaux"
|
msgstr "Paramètres locaux"
|
||||||
|
|
||||||
#: index.php:556
|
#: index.php:555
|
||||||
msgid "Update:"
|
msgid "Update:"
|
||||||
msgstr "Mise à jour :"
|
msgstr "Mise à jour :"
|
||||||
|
|
||||||
#: index.php:566
|
#: index.php:565
|
||||||
msgid "Import tags from feed"
|
msgid "Import tags from feed"
|
||||||
msgstr "Importer les tags depuis le flux"
|
msgstr "Importer les tags depuis le flux"
|
||||||
|
|
||||||
#: index.php:708
|
#: index.php:707
|
||||||
msgid "Date of update"
|
msgid "Date of update"
|
||||||
msgstr "Date de mise à jour"
|
msgstr "Date de mise à jour"
|
||||||
|
|
||||||
#: index.php:833
|
#: index.php:832
|
||||||
msgid "Selected feeds action:"
|
msgid "Selected feeds action:"
|
||||||
msgstr "Action sur les flux sélectionnés :"
|
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"
|
||||||
|
Loading…
Reference in New Issue
Block a user