release 2022.12.22
This commit is contained in:
parent
2d2c735fae
commit
7ca6e67ff8
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,3 +1,14 @@
|
||||
2022.12.22
|
||||
- add wtfpl license
|
||||
- use SVG icon
|
||||
- use anonymous function
|
||||
- use abstract plugin id
|
||||
- change serialize stuff into json stuff
|
||||
- fix pacKman behavoir dis|enable
|
||||
- fix autoload
|
||||
- fix permissions
|
||||
- fix install
|
||||
|
||||
2022.11.20
|
||||
- fix compatibility with Dotclear 2.24 (required)
|
||||
|
||||
|
@ -18,7 +18,7 @@ $this->registerModule(
|
||||
'License bootstrap',
|
||||
'Add license to your plugins and themes',
|
||||
'Jean-Christian Denis',
|
||||
'2022.11.20',
|
||||
'2022.12.22',
|
||||
[
|
||||
'requires' => [['core', '2.24']],
|
||||
'permissions' => null,
|
||||
|
@ -2,10 +2,10 @@
|
||||
<modules xmlns:da="http://dotaddict.org/da/">
|
||||
<module id="licenseBootstrap">
|
||||
<name>License bootstrap</name>
|
||||
<version>2022.11.20</version>
|
||||
<version>2022.12.22</version>
|
||||
<author>Jean-Christian Denis</author>
|
||||
<desc>Add license to your plugins and themes</desc>
|
||||
<file>https://github.com/JcDenis/licenseBootstrap/releases/download/v2022.11.20/plugin-licenseBootstrap.zip</file>
|
||||
<file>https://github.com/JcDenis/licenseBootstrap/releases/download/v2022.12.22/plugin-licenseBootstrap.zip</file>
|
||||
<da:dcmin>2.24</da:dcmin>
|
||||
<da:details>https://plugins.dotaddict.org/dc2/details/licenseBootstrap</da:details>
|
||||
<da:support>https://github.com/JcDenis/licenseBootstrap</da:support>
|
||||
|
25
locales/fr/main.lang.php
Normal file
25
locales/fr/main.lang.php
Normal file
@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/**
|
||||
* @package Dotclear
|
||||
*
|
||||
* @copyright Olivier Meunier & Association Dotclear
|
||||
* @copyright GPL-2.0-only
|
||||
*/
|
||||
#
|
||||
# DOT NOT MODIFY THIS FILE !
|
||||
#
|
||||
|
||||
l10n::$locales['Configuration has been successfully updated.'] = 'La configuration a été mise à jour avec succés.';
|
||||
l10n::$locales['Files'] = 'Fichiers';
|
||||
l10n::$locales['Overwrite existing licenses'] = 'Écraser les licences existantes';
|
||||
l10n::$locales['Add full LICENSE file to module root'] = 'Ajouter le fichier de licence complet à la racine du module';
|
||||
l10n::$locales['Add license block to PHP files'] = 'Ajouter le bloc de licence aux ficheirs PHP';
|
||||
l10n::$locales['Add license block to JS files'] = 'Ajouter le bloc de licence aux ficheirs JS';
|
||||
l10n::$locales['Do not add license block to files from locales folder'] = 'Ne pas ajouter la licence aux fichiers du dossier locales';
|
||||
l10n::$locales['Licenses'] = 'Licences';
|
||||
l10n::$locales['License %s:'] = 'Licence %s :';
|
||||
l10n::$locales['Id'] = 'Id';
|
||||
l10n::$locales['Root'] = 'Racine';
|
||||
l10n::$locales['Add license to selected modules'] = 'Ajouter la licence aux modules selectionner';
|
||||
l10n::$locales['License successfully added.'] = 'Licence ajouter avec succès';
|
||||
l10n::$locales['Configuration'] = 'Configuration';
|
@ -1,17 +1,15 @@
|
||||
<?php
|
||||
|
||||
# -- BEGIN LICENSE BLOCK ----------------------------------
|
||||
#
|
||||
# This file is part of licenseBootstrap, a plugin for Dotclear 2.
|
||||
#
|
||||
# Copyright (c) 2009-2021 Jean-Christian Denis and contributors
|
||||
#
|
||||
# Licensed under the GPL version 2.0 license.
|
||||
# A copy of this license is available in LICENSE file or at
|
||||
# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
||||
#
|
||||
# -- END LICENSE BLOCK ------------------------------------
|
||||
|
||||
/**
|
||||
* @brief licenseBootstrap, a plugin for Dotclear 2
|
||||
*
|
||||
* @package Dotclear
|
||||
* @subpackage Plugin
|
||||
*
|
||||
* @author Jean-Christian Denis
|
||||
*
|
||||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
if (!defined('DC_RC_PATH')) {
|
||||
return null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user