check translation
parent
fde6c171e9
commit
a2663368ed
|
@ -15,13 +15,19 @@ and they will be publish ones after the others every week.
|
||||||
|
|
||||||
* admin permissions to configure plugin
|
* admin permissions to configure plugin
|
||||||
* usage,contentadmin permissions to link feeds
|
* usage,contentadmin permissions to link feeds
|
||||||
* Dotclear 2.6
|
* Dotclear 2.19
|
||||||
|
|
||||||
|
## NOTICE
|
||||||
|
|
||||||
|
This plugin creates a new table on Dotclear database !
|
||||||
|
|
||||||
## USAGE
|
## USAGE
|
||||||
|
|
||||||
First install periodical, manualy from a zip package or from
|
First install periodical, manualy from a zip package or from
|
||||||
Dotaddict repository. (See Dotclear's documentation to know how do this)
|
Dotaddict repository. (See Dotclear's documentation to know how do this)
|
||||||
|
|
||||||
|
Main settings are accessible from blog preference page.
|
||||||
|
|
||||||
When enabled you have a menu in main sidebar menu called "Periodical"
|
When enabled you have a menu in main sidebar menu called "Periodical"
|
||||||
under "Plugins" group, follow it to manage periods.
|
under "Plugins" group, follow it to manage periods.
|
||||||
|
|
||||||
|
|
|
@ -19,7 +19,7 @@ $this->registerModule(
|
||||||
'Periodical',
|
'Periodical',
|
||||||
'Published periodically entries',
|
'Published periodically entries',
|
||||||
'Jean-Christian Denis and contributors',
|
'Jean-Christian Denis and contributors',
|
||||||
'2021.08.20',
|
'2021.08.23',
|
||||||
[
|
[
|
||||||
'permissions' => 'usage,contentadmin',
|
'permissions' => 'usage,contentadmin',
|
||||||
'type' => 'plugin',
|
'type' => 'plugin',
|
||||||
|
|
|
@ -1,179 +1,184 @@
|
||||||
<?php
|
<?php
|
||||||
// Language: Français
|
// Language: Français
|
||||||
// Module: periodical - 2013.11.11
|
// Module: periodical - 2021.08.23
|
||||||
// Date: 2013-11-12 08:11:54
|
// Date: 2021-08-23 23:40:28
|
||||||
// Translated with dcTranslater - 2013.05.11
|
// Translated with dcTranslater - 2021.08.18
|
||||||
|
|
||||||
#_admin.php:25
|
#_admin.php:32
|
||||||
#_admin.php:84
|
#_admin.php:109
|
||||||
#_admin.php:142
|
#_admin.php:158
|
||||||
#_admin.php:155
|
#_admin.php:215
|
||||||
#_admin.php:311
|
#_admin.php:223
|
||||||
#index.php:456
|
#_admin.php:374
|
||||||
#index.php:468
|
#index.php:437
|
||||||
#index.php:519
|
#index.php:449
|
||||||
#index.php:738
|
#index.php:500
|
||||||
#index.php:764
|
#index.php:714
|
||||||
|
#index.php:740
|
||||||
$GLOBALS['__l10n']['Periodical'] = 'Publications périodiques';
|
$GLOBALS['__l10n']['Periodical'] = 'Publications périodiques';
|
||||||
|
|
||||||
#_admin.php:143
|
#_admin.php:91
|
||||||
$GLOBALS['__l10n']['Add to periodical'] = 'Ajouter aux publications périodiques';
|
#inc/lib.index.pager.php:117
|
||||||
|
|
||||||
#_admin.php:156
|
|
||||||
#index.php:519
|
|
||||||
$GLOBALS['__l10n']['Remove from periodical'] = 'Retirer des publications périodiques';
|
|
||||||
|
|
||||||
#_admin.php:188
|
|
||||||
$GLOBALS['__l10n']['Posts have been removed from periodical.'] = 'Billets retirés des publications périodiques.';
|
|
||||||
|
|
||||||
#_admin.php:216
|
|
||||||
$GLOBALS['__l10n']['Posts have been added to periodical.'] = 'Billets ajoutés aux publications périodiques.';
|
|
||||||
|
|
||||||
#_admin.php:226
|
|
||||||
$GLOBALS['__l10n']['Add a period to this selection'] = 'Ajouter une période à cette liste';
|
|
||||||
|
|
||||||
#_config.php:25
|
|
||||||
#inc/lib.index.pager.php:120
|
|
||||||
$GLOBALS['__l10n']['Create date'] = 'Date de création';
|
$GLOBALS['__l10n']['Create date'] = 'Date de création';
|
||||||
|
|
||||||
#_config.php:64
|
#_admin.php:115
|
||||||
$GLOBALS['__l10n']['Configuration has been successfully updated.'] = 'La configuration a été mise à jour avec succés.';
|
|
||||||
|
|
||||||
#_config.php:84
|
|
||||||
$GLOBALS['__l10n']['Enable plugin'] = 'Activer le plugin';
|
$GLOBALS['__l10n']['Enable plugin'] = 'Activer le plugin';
|
||||||
|
|
||||||
#_config.php:89
|
#_admin.php:116
|
||||||
$GLOBALS['__l10n']['Dates of published entries'] = 'Dates de billets publiés';
|
$GLOBALS['__l10n']['Dates of published entries'] = 'Dates de billets publiés';
|
||||||
|
|
||||||
#_config.php:93
|
#_admin.php:119
|
||||||
$GLOBALS['__l10n']['Update post date'] = 'Mettre à jour la date du billet';
|
$GLOBALS['__l10n']['Update post date'] = 'Mettre à jour la date du billet';
|
||||||
|
|
||||||
#_config.php:97
|
#_admin.php:122
|
||||||
$GLOBALS['__l10n']['Update post url'] = 'Mettre à jour l\'URL du billet';
|
$GLOBALS['__l10n']['Update post url'] = 'Mettre à jour l\'URL du billet';
|
||||||
|
|
||||||
#_config.php:102
|
#_admin.php:125
|
||||||
$GLOBALS['__l10n']['Order of publication of entries'] = 'Ordre de publication des billets';
|
$GLOBALS['__l10n']['Order of publication of entries'] = 'Ordre de publication des billets';
|
||||||
|
|
||||||
#inc/class.periodical.php:318
|
#_admin.php:215
|
||||||
$GLOBALS['__l10n']['Hourly'] = 'Toutes les heures';
|
$GLOBALS['__l10n']['Add to periodical'] = 'Ajouter aux publications périodiques';
|
||||||
|
|
||||||
#inc/class.periodical.php:319
|
#_admin.php:223
|
||||||
$GLOBALS['__l10n']['twice a day'] = 'Deux fois par jour';
|
#index.php:500
|
||||||
|
$GLOBALS['__l10n']['Remove from periodical'] = 'Retirer des publications périodiques';
|
||||||
|
|
||||||
|
#_admin.php:253
|
||||||
|
$GLOBALS['__l10n']['Posts have been removed from periodical.'] = 'Billets retirés des publications périodiques.';
|
||||||
|
|
||||||
|
#_admin.php:281
|
||||||
|
$GLOBALS['__l10n']['Posts have been added to periodical.'] = 'Billets ajoutés aux publications périodiques.';
|
||||||
|
|
||||||
|
#_admin.php:291
|
||||||
|
$GLOBALS['__l10n']['Add a period to this selection'] = 'Ajouter une période à cette liste';
|
||||||
|
|
||||||
#inc/class.periodical.php:320
|
#inc/class.periodical.php:320
|
||||||
$GLOBALS['__l10n']['Daily'] = 'Une fois par jour';
|
$GLOBALS['__l10n']['Hourly'] = 'Toutes les heures';
|
||||||
|
|
||||||
#inc/class.periodical.php:321
|
#inc/class.periodical.php:321
|
||||||
$GLOBALS['__l10n']['Weekly'] = 'Une fois par semaine';
|
$GLOBALS['__l10n']['twice a day'] = 'Deux fois par jour';
|
||||||
|
|
||||||
#inc/class.periodical.php:322
|
#inc/class.periodical.php:322
|
||||||
|
$GLOBALS['__l10n']['Daily'] = 'Une fois par jour';
|
||||||
|
|
||||||
|
#inc/class.periodical.php:323
|
||||||
|
$GLOBALS['__l10n']['Weekly'] = 'Une fois par semaine';
|
||||||
|
|
||||||
|
#inc/class.periodical.php:324
|
||||||
$GLOBALS['__l10n']['Monthly'] = 'Un fois par mois';
|
$GLOBALS['__l10n']['Monthly'] = 'Un fois par mois';
|
||||||
|
|
||||||
#inc/class.periodical.php:354
|
#inc/class.periodical.php:356
|
||||||
#inc/lib.index.pager.php:84
|
#inc/lib.index.pager.php:81
|
||||||
$GLOBALS['__l10n']['Unknow frequence'] = 'Fréquence inconnue';
|
$GLOBALS['__l10n']['Unknow frequence'] = 'Fréquence inconnue';
|
||||||
|
|
||||||
#inc/lib.index.pager.php:31
|
#inc/lib.index.pager.php:29
|
||||||
$GLOBALS['__l10n']['No period'] = 'Pas de période';
|
$GLOBALS['__l10n']['No period'] = 'Pas de période';
|
||||||
|
|
||||||
#inc/lib.index.pager.php:44
|
#inc/lib.index.pager.php:41
|
||||||
#index.php:684
|
#index.php:661
|
||||||
$GLOBALS['__l10n']['Next update'] = 'Prochaine mise à jour';
|
$GLOBALS['__l10n']['Next update'] = 'Prochaine mise à jour';
|
||||||
|
|
||||||
#inc/lib.index.pager.php:46
|
#inc/lib.index.pager.php:43
|
||||||
$GLOBALS['__l10n']['Publications'] = 'Publications';
|
$GLOBALS['__l10n']['Publications'] = 'Publications';
|
||||||
|
|
||||||
#inc/lib.index.pager.php:48
|
#inc/lib.index.pager.php:45
|
||||||
#index.php:685
|
#index.php:662
|
||||||
$GLOBALS['__l10n']['End date'] = 'Date de fin';
|
$GLOBALS['__l10n']['End date'] = 'Date de fin';
|
||||||
|
|
||||||
#inc/lib.index.pager.php:81
|
#inc/lib.index.pager.php:78
|
||||||
$GLOBALS['__l10n']['view related entries'] = 'voir les billets liés';
|
$GLOBALS['__l10n']['view related entries'] = 'voir les billets liés';
|
||||||
|
|
||||||
#inc/lib.index.pager.php:89
|
#inc/lib.index.pager.php:87
|
||||||
$GLOBALS['__l10n']['edit period'] = 'modifier la période';
|
$GLOBALS['__l10n']['edit period'] = 'modifier la période';
|
||||||
|
|
||||||
#inc/lib.periodical.socialmewriter.php:23
|
#inc/lib.index.pager.php:182
|
||||||
$GLOBALS['__l10n']['New periodical publication'] = 'Nouvelle publication périodique';
|
$GLOBALS['__l10n']['protected'] = 'protégé';
|
||||||
|
|
||||||
|
#inc/lib.index.pager.php:187
|
||||||
|
$GLOBALS['__l10n']['selected'] = 'sélectionné';
|
||||||
|
|
||||||
#inc/lib.periodical.socialmewriter.php:24
|
#inc/lib.periodical.socialmewriter.php:24
|
||||||
|
$GLOBALS['__l10n']['New periodical publication'] = 'Nouvelle publication périodique';
|
||||||
|
|
||||||
|
#inc/lib.periodical.socialmewriter.php:25
|
||||||
$GLOBALS['__l10n']['When an entry is published on a period'] = 'Lorsque qu\'un billet st marqué comme publié par une période';
|
$GLOBALS['__l10n']['When an entry is published on a period'] = 'Lorsque qu\'un billet st marqué comme publié par une période';
|
||||||
|
|
||||||
#index.php:43
|
#index.php:41
|
||||||
$GLOBALS['__l10n']['One post per day'] = 'Un billet par jour';
|
$GLOBALS['__l10n']['One post per day'] = 'Un billet par jour';
|
||||||
|
|
||||||
#index.php:55
|
#index.php:53
|
||||||
$GLOBALS['__l10n']['This period does not exist.'] = 'Cette période n\'existe pas.';
|
$GLOBALS['__l10n']['This period does not exist.'] = 'Cette période n\'existe pas.';
|
||||||
|
|
||||||
#index.php:99
|
#index.php:95
|
||||||
$GLOBALS['__l10n']['Period title is already taken'] = 'Le titre de la période est déjà pris';
|
$GLOBALS['__l10n']['Period title is already taken'] = 'Le titre de la période est déjà pris';
|
||||||
|
|
||||||
#index.php:104
|
#index.php:100
|
||||||
$GLOBALS['__l10n']['Period title is required'] = 'Le titre de la période est requis';
|
$GLOBALS['__l10n']['Period title is required'] = 'Le titre de la période est requis';
|
||||||
|
|
||||||
#index.php:107
|
#index.php:103
|
||||||
$GLOBALS['__l10n']['Start date must be older than end date'] = 'La date de début doit être plus ancienne que la date de fin';
|
$GLOBALS['__l10n']['Start date must be older than end date'] = 'La date de début doit être plus ancienne que la date de fin';
|
||||||
|
|
||||||
#index.php:126
|
#index.php:122
|
||||||
$GLOBALS['__l10n']['Period successfully updated.'] = 'Période mise à jour.';
|
$GLOBALS['__l10n']['Period successfully updated.'] = 'Période mise à jour.';
|
||||||
|
|
||||||
#index.php:135
|
#index.php:130
|
||||||
$GLOBALS['__l10n']['Period successfully created.'] = 'Période crée.';
|
$GLOBALS['__l10n']['Period successfully created.'] = 'Période crée.';
|
||||||
|
|
||||||
#index.php:159
|
#index.php:154
|
||||||
$GLOBALS['__l10n']['Entries successfully published.'] = 'Billets publiés.';
|
$GLOBALS['__l10n']['Entries successfully published.'] = 'Billets publiés.';
|
||||||
|
|
||||||
#index.php:182
|
#index.php:176
|
||||||
$GLOBALS['__l10n']['Entries successfully unpublished.'] = 'Billets mis hors ligne.';
|
$GLOBALS['__l10n']['Entries successfully unpublished.'] = 'Billets mis hors ligne.';
|
||||||
|
|
||||||
#index.php:204
|
#index.php:197
|
||||||
$GLOBALS['__l10n']['Entries successfully removed.'] = 'Billets retirés.';
|
$GLOBALS['__l10n']['Entries successfully removed.'] = 'Billets retirés.';
|
||||||
|
|
||||||
#index.php:469
|
#index.php:450
|
||||||
#index.php:477
|
#index.php:458
|
||||||
#index.php:770
|
#index.php:746
|
||||||
$GLOBALS['__l10n']['New period'] = 'Nouvelle période';
|
$GLOBALS['__l10n']['New period'] = 'Nouvelle période';
|
||||||
|
|
||||||
#index.php:469
|
#index.php:450
|
||||||
#index.php:477
|
#index.php:458
|
||||||
$GLOBALS['__l10n']['Edit period'] = 'Modifier la période';
|
$GLOBALS['__l10n']['Edit period'] = 'Modifier la période';
|
||||||
|
|
||||||
#index.php:486
|
#index.php:467
|
||||||
$GLOBALS['__l10n']['Next update:'] = 'Prochaine mise à jour :';
|
$GLOBALS['__l10n']['Next update:'] = 'Prochaine mise à jour :';
|
||||||
|
|
||||||
#index.php:489
|
#index.php:470
|
||||||
$GLOBALS['__l10n']['End date:'] = 'Date de fin :';
|
$GLOBALS['__l10n']['End date:'] = 'Date de fin :';
|
||||||
|
|
||||||
#index.php:494
|
#index.php:475
|
||||||
$GLOBALS['__l10n']['Publication frequency:'] = 'Fréquence de publication :';
|
$GLOBALS['__l10n']['Publication frequency:'] = 'Fréquence de publication :';
|
||||||
|
|
||||||
#index.php:497
|
#index.php:478
|
||||||
$GLOBALS['__l10n']['Number of entries to publish every time:'] = 'Nombre de billets à publier à chaque fois :';
|
$GLOBALS['__l10n']['Number of entries to publish every time:'] = 'Nombre de billets à publier à chaque fois :';
|
||||||
|
|
||||||
#index.php:539
|
#index.php:520
|
||||||
$GLOBALS['__l10n']['Entries linked to this period'] = 'Billets liés à cette période';
|
$GLOBALS['__l10n']['Entries linked to this period'] = 'Billets liés à cette période';
|
||||||
|
|
||||||
#index.php:648
|
#index.php:627
|
||||||
$GLOBALS['__l10n']['Periods removed.'] = 'Périodes retirées.';
|
$GLOBALS['__l10n']['Periods removed.'] = 'Périodes retirées.';
|
||||||
|
|
||||||
#index.php:669
|
#index.php:647
|
||||||
$GLOBALS['__l10n']['Periods emptied.'] = 'Périodes vidées.';
|
$GLOBALS['__l10n']['Periods emptied.'] = 'Périodes vidées.';
|
||||||
|
|
||||||
#index.php:686
|
#index.php:663
|
||||||
$GLOBALS['__l10n']['Frequence'] = 'Fréquence';
|
$GLOBALS['__l10n']['Frequence'] = 'Fréquence';
|
||||||
|
|
||||||
#index.php:695
|
#index.php:672
|
||||||
$GLOBALS['__l10n']['empty periods'] = 'vider les périodes';
|
$GLOBALS['__l10n']['empty periods'] = 'vider les périodes';
|
||||||
|
|
||||||
#index.php:696
|
#index.php:673
|
||||||
$GLOBALS['__l10n']['delete periods'] = 'effacer les périodes';
|
$GLOBALS['__l10n']['delete periods'] = 'effacer les périodes';
|
||||||
|
|
||||||
#index.php:794
|
#index.php:770
|
||||||
$GLOBALS['__l10n']['Results per page :'] = 'Résultats par page :';
|
$GLOBALS['__l10n']['Results per page :'] = 'Résultats par page :';
|
||||||
|
|
||||||
#index.php:818
|
#index.php:794
|
||||||
$GLOBALS['__l10n']['Selected periods action:'] = 'Action sur les périodes selectionnées :';
|
$GLOBALS['__l10n']['Selected periods action:'] = 'Action sur les périodes selectionnées :';
|
||||||
|
|
||||||
|
$GLOBALS['__l10n']['Configuration has been successfully updated.'] = 'La configuration a été mise à jour avec succés.';
|
||||||
|
|
||||||
$GLOBALS['__l10n']['Published periodically entries'] = 'Publier périodiquement des billets';
|
$GLOBALS['__l10n']['Published periodically entries'] = 'Publier périodiquement des billets';
|
||||||
|
|
||||||
?>
|
|
|
@ -1,240 +1,249 @@
|
||||||
# Language: Français
|
# Language: Français
|
||||||
# Module: periodical - 2013.11.11
|
# Module: periodical - 2021.08.23
|
||||||
# Date: 2013-11-12 08:11:55
|
# Date: 2021-08-23 23:40:28
|
||||||
# Translated with translater 2013.05.11
|
# Translated with translater 2021.08.18
|
||||||
|
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Project-Id-Version: periodical 2013.11.11\n"
|
"Project-Id-Version: periodical 2021.08.23\n"
|
||||||
"POT-Creation-Date: \n"
|
"POT-Creation-Date: \n"
|
||||||
"PO-Revision-Date: 2013-11-12T08:11:55+00:00\n"
|
"PO-Revision-Date: 2021-08-23T23:40:28+00:00\n"
|
||||||
"Last-Translator: Jean-Christian Denis\n"
|
"Last-Translator: Jean-Christian Denis\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"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||||
|
|
||||||
#: _admin.php:25
|
#: _admin.php:32
|
||||||
#: _admin.php:84
|
#: _admin.php:109
|
||||||
#: _admin.php:142
|
#: _admin.php:158
|
||||||
#: _admin.php:155
|
#: _admin.php:215
|
||||||
#: _admin.php:311
|
#: _admin.php:223
|
||||||
#: index.php:456
|
#: _admin.php:374
|
||||||
#: index.php:468
|
#: index.php:437
|
||||||
#: index.php:519
|
#: index.php:449
|
||||||
#: index.php:738
|
#: index.php:500
|
||||||
#: index.php:764
|
#: index.php:714
|
||||||
|
#: index.php:740
|
||||||
msgid "Periodical"
|
msgid "Periodical"
|
||||||
msgstr "Publications périodiques"
|
msgstr "Publications périodiques"
|
||||||
|
|
||||||
#: _admin.php:143
|
#: _admin.php:91
|
||||||
msgid "Add to periodical"
|
#: inc/lib.index.pager.php:117
|
||||||
msgstr "Ajouter aux publications périodiques"
|
|
||||||
|
|
||||||
#: _admin.php:156
|
|
||||||
#: index.php:519
|
|
||||||
msgid "Remove from periodical"
|
|
||||||
msgstr "Retirer des publications périodiques"
|
|
||||||
|
|
||||||
#: _admin.php:188
|
|
||||||
msgid "Posts have been removed from periodical."
|
|
||||||
msgstr "Billets retirés des publications périodiques."
|
|
||||||
|
|
||||||
#: _admin.php:216
|
|
||||||
msgid "Posts have been added to periodical."
|
|
||||||
msgstr "Billets ajoutés aux publications périodiques."
|
|
||||||
|
|
||||||
#: _admin.php:226
|
|
||||||
msgid "Add a period to this selection"
|
|
||||||
msgstr "Ajouter une période à cette liste"
|
|
||||||
|
|
||||||
#: _config.php:25
|
|
||||||
#: inc/lib.index.pager.php:120
|
|
||||||
msgid "Create date"
|
msgid "Create date"
|
||||||
msgstr "Date de création"
|
msgstr "Date de création"
|
||||||
|
|
||||||
#: _config.php:64
|
#: _admin.php:115
|
||||||
msgid "Configuration has been successfully updated."
|
|
||||||
msgstr "La configuration a été mise à jour avec succés."
|
|
||||||
|
|
||||||
#: _config.php:84
|
|
||||||
msgid "Enable plugin"
|
msgid "Enable plugin"
|
||||||
msgstr "Activer le plugin"
|
msgstr "Activer le plugin"
|
||||||
|
|
||||||
#: _config.php:89
|
#: _admin.php:116
|
||||||
msgid "Dates of published entries"
|
msgid "Dates of published entries"
|
||||||
msgstr "Dates de billets publiés"
|
msgstr "Dates de billets publiés"
|
||||||
|
|
||||||
#: _config.php:93
|
#: _admin.php:119
|
||||||
msgid "Update post date"
|
msgid "Update post date"
|
||||||
msgstr "Mettre à jour la date du billet"
|
msgstr "Mettre à jour la date du billet"
|
||||||
|
|
||||||
#: _config.php:97
|
#: _admin.php:122
|
||||||
msgid "Update post url"
|
msgid "Update post url"
|
||||||
msgstr "Mettre à jour l'URL du billet"
|
msgstr "Mettre à jour l'URL du billet"
|
||||||
|
|
||||||
#: _config.php:102
|
#: _admin.php:125
|
||||||
msgid "Order of publication of entries"
|
msgid "Order of publication of entries"
|
||||||
msgstr "Ordre de publication des billets"
|
msgstr "Ordre de publication des billets"
|
||||||
|
|
||||||
#: inc/class.periodical.php:318
|
#: _admin.php:215
|
||||||
|
msgid "Add to periodical"
|
||||||
|
msgstr "Ajouter aux publications périodiques"
|
||||||
|
|
||||||
|
#: _admin.php:223
|
||||||
|
#: index.php:500
|
||||||
|
msgid "Remove from periodical"
|
||||||
|
msgstr "Retirer des publications périodiques"
|
||||||
|
|
||||||
|
#: _admin.php:253
|
||||||
|
msgid "Posts have been removed from periodical."
|
||||||
|
msgstr "Billets retirés des publications périodiques."
|
||||||
|
|
||||||
|
#: _admin.php:281
|
||||||
|
msgid "Posts have been added to periodical."
|
||||||
|
msgstr "Billets ajoutés aux publications périodiques."
|
||||||
|
|
||||||
|
#: _admin.php:291
|
||||||
|
msgid "Add a period to this selection"
|
||||||
|
msgstr "Ajouter une période à cette liste"
|
||||||
|
|
||||||
|
#: inc/class.periodical.php:320
|
||||||
msgid "Hourly"
|
msgid "Hourly"
|
||||||
msgstr "Toutes les heures"
|
msgstr "Toutes les heures"
|
||||||
|
|
||||||
#: inc/class.periodical.php:319
|
#: inc/class.periodical.php:321
|
||||||
msgid "twice a day"
|
msgid "twice a day"
|
||||||
msgstr "Deux fois par jour"
|
msgstr "Deux fois par jour"
|
||||||
|
|
||||||
#: inc/class.periodical.php:320
|
#: inc/class.periodical.php:322
|
||||||
msgid "Daily"
|
msgid "Daily"
|
||||||
msgstr "Une fois par jour"
|
msgstr "Une fois par jour"
|
||||||
|
|
||||||
#: inc/class.periodical.php:321
|
#: inc/class.periodical.php:323
|
||||||
msgid "Weekly"
|
msgid "Weekly"
|
||||||
msgstr "Une fois par semaine"
|
msgstr "Une fois par semaine"
|
||||||
|
|
||||||
#: inc/class.periodical.php:322
|
#: inc/class.periodical.php:324
|
||||||
msgid "Monthly"
|
msgid "Monthly"
|
||||||
msgstr "Un fois par mois"
|
msgstr "Un fois par mois"
|
||||||
|
|
||||||
#: inc/class.periodical.php:354
|
#: inc/class.periodical.php:356
|
||||||
#: inc/lib.index.pager.php:84
|
#: inc/lib.index.pager.php:81
|
||||||
msgid "Unknow frequence"
|
msgid "Unknow frequence"
|
||||||
msgstr "Fréquence inconnue"
|
msgstr "Fréquence inconnue"
|
||||||
|
|
||||||
#: inc/lib.index.pager.php:31
|
#: inc/lib.index.pager.php:29
|
||||||
msgid "No period"
|
msgid "No period"
|
||||||
msgstr "Pas de période"
|
msgstr "Pas de période"
|
||||||
|
|
||||||
#: inc/lib.index.pager.php:44
|
#: inc/lib.index.pager.php:41
|
||||||
#: index.php:684
|
#: index.php:661
|
||||||
msgid "Next update"
|
msgid "Next update"
|
||||||
msgstr "Prochaine mise à jour"
|
msgstr "Prochaine mise à jour"
|
||||||
|
|
||||||
#: inc/lib.index.pager.php:46
|
#: inc/lib.index.pager.php:43
|
||||||
msgid "Publications"
|
msgid "Publications"
|
||||||
msgstr "Publications"
|
msgstr "Publications"
|
||||||
|
|
||||||
#: inc/lib.index.pager.php:48
|
#: inc/lib.index.pager.php:45
|
||||||
#: index.php:685
|
#: index.php:662
|
||||||
msgid "End date"
|
msgid "End date"
|
||||||
msgstr "Date de fin"
|
msgstr "Date de fin"
|
||||||
|
|
||||||
#: inc/lib.index.pager.php:81
|
#: inc/lib.index.pager.php:78
|
||||||
msgid "view related entries"
|
msgid "view related entries"
|
||||||
msgstr "voir les billets liés"
|
msgstr "voir les billets liés"
|
||||||
|
|
||||||
#: inc/lib.index.pager.php:89
|
#: inc/lib.index.pager.php:87
|
||||||
msgid "edit period"
|
msgid "edit period"
|
||||||
msgstr "modifier la période"
|
msgstr "modifier la période"
|
||||||
|
|
||||||
#: inc/lib.periodical.socialmewriter.php:23
|
#: inc/lib.index.pager.php:182
|
||||||
|
msgid "protected"
|
||||||
|
msgstr "protégé"
|
||||||
|
|
||||||
|
#: inc/lib.index.pager.php:187
|
||||||
|
msgid "selected"
|
||||||
|
msgstr "sélectionné"
|
||||||
|
|
||||||
|
#: inc/lib.periodical.socialmewriter.php:24
|
||||||
msgid "New periodical publication"
|
msgid "New periodical publication"
|
||||||
msgstr "Nouvelle publication périodique"
|
msgstr "Nouvelle publication périodique"
|
||||||
|
|
||||||
#: inc/lib.periodical.socialmewriter.php:24
|
#: inc/lib.periodical.socialmewriter.php:25
|
||||||
msgid "When an entry is published on a period"
|
msgid "When an entry is published on a period"
|
||||||
msgstr "Lorsque qu'un billet st marqué comme publié par une période"
|
msgstr "Lorsque qu'un billet st marqué comme publié par une période"
|
||||||
|
|
||||||
#: index.php:43
|
#: index.php:41
|
||||||
msgid "One post per day"
|
msgid "One post per day"
|
||||||
msgstr "Un billet par jour"
|
msgstr "Un billet par jour"
|
||||||
|
|
||||||
#: index.php:55
|
#: index.php:53
|
||||||
msgid "This period does not exist."
|
msgid "This period does not exist."
|
||||||
msgstr "Cette période n'existe pas."
|
msgstr "Cette période n'existe pas."
|
||||||
|
|
||||||
#: index.php:99
|
#: index.php:95
|
||||||
msgid "Period title is already taken"
|
msgid "Period title is already taken"
|
||||||
msgstr "Le titre de la période est déjà pris"
|
msgstr "Le titre de la période est déjà pris"
|
||||||
|
|
||||||
#: index.php:104
|
#: index.php:100
|
||||||
msgid "Period title is required"
|
msgid "Period title is required"
|
||||||
msgstr "Le titre de la période est requis"
|
msgstr "Le titre de la période est requis"
|
||||||
|
|
||||||
#: index.php:107
|
#: index.php:103
|
||||||
msgid "Start date must be older than end date"
|
msgid "Start date must be older than end date"
|
||||||
msgstr "La date de début doit être plus ancienne que la date de fin"
|
msgstr "La date de début doit être plus ancienne que la date de fin"
|
||||||
|
|
||||||
#: index.php:126
|
#: index.php:122
|
||||||
msgid "Period successfully updated."
|
msgid "Period successfully updated."
|
||||||
msgstr "Période mise à jour."
|
msgstr "Période mise à jour."
|
||||||
|
|
||||||
#: index.php:135
|
#: index.php:130
|
||||||
msgid "Period successfully created."
|
msgid "Period successfully created."
|
||||||
msgstr "Période crée."
|
msgstr "Période crée."
|
||||||
|
|
||||||
#: index.php:159
|
#: index.php:154
|
||||||
msgid "Entries successfully published."
|
msgid "Entries successfully published."
|
||||||
msgstr "Billets publiés."
|
msgstr "Billets publiés."
|
||||||
|
|
||||||
#: index.php:182
|
#: index.php:176
|
||||||
msgid "Entries successfully unpublished."
|
msgid "Entries successfully unpublished."
|
||||||
msgstr "Billets mis hors ligne."
|
msgstr "Billets mis hors ligne."
|
||||||
|
|
||||||
#: index.php:204
|
#: index.php:197
|
||||||
msgid "Entries successfully removed."
|
msgid "Entries successfully removed."
|
||||||
msgstr "Billets retirés."
|
msgstr "Billets retirés."
|
||||||
|
|
||||||
#: index.php:469
|
#: index.php:450
|
||||||
#: index.php:477
|
#: index.php:458
|
||||||
#: index.php:770
|
#: index.php:746
|
||||||
msgid "New period"
|
msgid "New period"
|
||||||
msgstr "Nouvelle période"
|
msgstr "Nouvelle période"
|
||||||
|
|
||||||
#: index.php:469
|
#: index.php:450
|
||||||
#: index.php:477
|
#: index.php:458
|
||||||
msgid "Edit period"
|
msgid "Edit period"
|
||||||
msgstr "Modifier la période"
|
msgstr "Modifier la période"
|
||||||
|
|
||||||
#: index.php:486
|
#: index.php:467
|
||||||
msgid "Next update:"
|
msgid "Next update:"
|
||||||
msgstr "Prochaine mise à jour :"
|
msgstr "Prochaine mise à jour :"
|
||||||
|
|
||||||
#: index.php:489
|
#: index.php:470
|
||||||
msgid "End date:"
|
msgid "End date:"
|
||||||
msgstr "Date de fin :"
|
msgstr "Date de fin :"
|
||||||
|
|
||||||
#: index.php:494
|
#: index.php:475
|
||||||
msgid "Publication frequency:"
|
msgid "Publication frequency:"
|
||||||
msgstr "Fréquence de publication :"
|
msgstr "Fréquence de publication :"
|
||||||
|
|
||||||
#: index.php:497
|
#: index.php:478
|
||||||
msgid "Number of entries to publish every time:"
|
msgid "Number of entries to publish every time:"
|
||||||
msgstr "Nombre de billets à publier à chaque fois :"
|
msgstr "Nombre de billets à publier à chaque fois :"
|
||||||
|
|
||||||
#: index.php:539
|
#: index.php:520
|
||||||
msgid "Entries linked to this period"
|
msgid "Entries linked to this period"
|
||||||
msgstr "Billets liés à cette période"
|
msgstr "Billets liés à cette période"
|
||||||
|
|
||||||
#: index.php:648
|
#: index.php:627
|
||||||
msgid "Periods removed."
|
msgid "Periods removed."
|
||||||
msgstr "Périodes retirées."
|
msgstr "Périodes retirées."
|
||||||
|
|
||||||
#: index.php:669
|
#: index.php:647
|
||||||
msgid "Periods emptied."
|
msgid "Periods emptied."
|
||||||
msgstr "Périodes vidées."
|
msgstr "Périodes vidées."
|
||||||
|
|
||||||
#: index.php:686
|
#: index.php:663
|
||||||
msgid "Frequence"
|
msgid "Frequence"
|
||||||
msgstr "Fréquence"
|
msgstr "Fréquence"
|
||||||
|
|
||||||
#: index.php:695
|
#: index.php:672
|
||||||
msgid "empty periods"
|
msgid "empty periods"
|
||||||
msgstr "vider les périodes"
|
msgstr "vider les périodes"
|
||||||
|
|
||||||
#: index.php:696
|
#: index.php:673
|
||||||
msgid "delete periods"
|
msgid "delete periods"
|
||||||
msgstr "effacer les périodes"
|
msgstr "effacer les périodes"
|
||||||
|
|
||||||
#: index.php:794
|
#: index.php:770
|
||||||
msgid "Results per page :"
|
msgid "Results per page :"
|
||||||
msgstr "Résultats par page :"
|
msgstr "Résultats par page :"
|
||||||
|
|
||||||
#: index.php:818
|
#: index.php:794
|
||||||
msgid "Selected periods action:"
|
msgid "Selected periods action:"
|
||||||
msgstr "Action sur les périodes selectionnées :"
|
msgstr "Action sur les périodes selectionnées :"
|
||||||
|
|
||||||
|
msgid "Configuration has been successfully updated."
|
||||||
|
msgstr "La configuration a été mise à jour avec succés."
|
||||||
|
|
||||||
msgid "Published periodically entries"
|
msgid "Published periodically entries"
|
||||||
msgstr "Publier périodiquement des billets"
|
msgstr "Publier périodiquement des billets"
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue