release 2023.03.25
This commit is contained in:
parent
13ce84c004
commit
18311b9985
@ -1,3 +1,7 @@
|
||||
2023.03.25
|
||||
- require dotclear 2.26
|
||||
- use namespace
|
||||
|
||||
2022.11.20
|
||||
- fix compatibility with Dotclear 2.24 (required)
|
||||
|
||||
|
@ -3,7 +3,7 @@
|
||||
[![Release](https://img.shields.io/github/v/release/JcDenis/lastpostsExtend)](https://github.com/JcDenis/lastpostsExtend/releases)
|
||||
[![Date](https://img.shields.io/github/release-date/JcDenis/lastpostsExtend)](https://github.com/JcDenis/lastpostsExtend/releases)
|
||||
[![Issues](https://img.shields.io/github/issues/JcDenis/lastpostsExtend)](https://github.com/JcDenis/lastpostsExtend/issues)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.24-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.26-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-green.svg)](https://plugins.dotaddict.org/dc2/details/lastpostsExtend)
|
||||
[![License](https://img.shields.io/github/license/JcDenis/lastpostsExtend)](https://github.com/JcDenis/lastpostsExtend/blob/master/LICENSE)
|
||||
|
||||
@ -19,7 +19,7 @@ Like widget lastposts but with more options.
|
||||
lastpostsExtend requires:
|
||||
|
||||
* permissions to manage widgets
|
||||
* Dotclear 2.24
|
||||
* Dotclear 2.26
|
||||
|
||||
## USAGE
|
||||
|
||||
|
12
_define.php
12
_define.php
@ -18,15 +18,15 @@ $this->registerModule(
|
||||
'Last entries (Extended)',
|
||||
'Extended list of entries',
|
||||
'Jean-Christian Denis and contributors',
|
||||
'2022.11.20',
|
||||
'2023.03.25',
|
||||
[
|
||||
'requires' => [['core', '2.24']],
|
||||
'requires' => [['core', '2.26']],
|
||||
'permissions' => dcCore::app()->auth->makePermissions([
|
||||
dcAuth::PERMISSION_ADMIN,
|
||||
]),
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://github.com/JcDenis/lastpostsExtend',
|
||||
'details' => 'http://plugins.dotaddict.org/dc2/details/lastpostsExtend',
|
||||
'repository' => 'https://raw.githubusercontent.com/JcDenis/lastpostsExtend/master/repository.xml',
|
||||
'type' => 'plugin',
|
||||
'support' => 'https://github.com/JcDenis/' . basename(__DIR__),
|
||||
'details' => 'http://plugins.dotaddict.org/dc2/details/' . basename(__DIR__),
|
||||
'repository' => 'https://raw.githubusercontent.com/JcDenis/' . basename(__DIR__) . '/master/repository.xml',
|
||||
]
|
||||
);
|
||||
|
@ -2,11 +2,11 @@
|
||||
<modules xmlns:da="http://dotaddict.org/da/">
|
||||
<module id="lastpostsExtend">
|
||||
<name>Last entries (Extended)</name>
|
||||
<version>2022.11.20</version>
|
||||
<version>2023.03.25</version>
|
||||
<author>Jean-Christian Denis and contributors</author>
|
||||
<desc>Extended list of entries</desc>
|
||||
<file>https://github.com/JcDenis/lastpostsExtend/releases/download/v2022.11.20/plugin-lastpostsExtend.zip</file>
|
||||
<da:dcmin>2.24</da:dcmin>
|
||||
<file>https://github.com/JcDenis/lastpostsExtend/releases/download/v2023.03.25/plugin-lastpostsExtend.zip</file>
|
||||
<da:dcmin>2.26</da:dcmin>
|
||||
<da:details>http://plugins.dotaddict.org/dc2/details/lastpostsExtend</da:details>
|
||||
<da:support>https://github.com/JcDenis/lastpostsExtend</da:support>
|
||||
</module>
|
||||
|
26
locales/fr/main.lang.php
Normal file
26
locales/fr/main.lang.php
Normal file
@ -0,0 +1,26 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Dotclear
|
||||
*
|
||||
* @copyright Olivier Meunier & Association Dotclear
|
||||
* @copyright GPL-2.0-only
|
||||
*/
|
||||
#
|
||||
# DOT NOT MODIFY THIS FILE !
|
||||
#
|
||||
|
||||
l10n::$locales['Last entries (Extended)'] = 'Derniers billets (étendu)';
|
||||
l10n::$locales['Extended list of entries'] = 'Liste étendue de billets';
|
||||
l10n::$locales['Post'] = 'Billet';
|
||||
l10n::$locales['Gallery'] = 'Galerie';
|
||||
l10n::$locales['Protection:'] = 'Protection :';
|
||||
l10n::$locales['only without password'] = 'seulement sans mot de passe';
|
||||
l10n::$locales['only with password'] = 'seulement avec mot de passe';
|
||||
l10n::$locales['Selected entries only'] = 'Billets sélectionnés seulement';
|
||||
l10n::$locales['Updated entries only'] = 'Billets mis à jour seulement';
|
||||
l10n::$locales['Limit to tags:'] = 'Limiter aux mots-clés :';
|
||||
l10n::$locales['Limit to words:'] = 'Limiter aux mots :';
|
||||
l10n::$locales['Show entries first image:'] = 'Afficher la première image du billet :';
|
||||
l10n::$locales['Show entries excerpt'] = 'Afficher l\'extrait';
|
||||
l10n::$locales['Excerpt length:'] = 'Taille de l\'extrait :';
|
||||
l10n::$locales['Show comments count'] = 'Afficher le nombre de commentaires';
|
Loading…
Reference in New Issue
Block a user