diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ce8cb4..899b6bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +2023.04.22 +- require dotclea r2.26 +- require php 8.1 +- add plugin Uninstaller features +- use latest helper namespace +- fix nullsafe warnings + 2023.03.25 - require dotclea r2.26 - require php 8.1 diff --git a/_define.php b/_define.php index 1c56d2f..a3facd5 100644 --- a/_define.php +++ b/_define.php @@ -18,7 +18,7 @@ $this->registerModule( 'License bootstrap', 'Add license to your plugins and themes', 'Jean-Christian Denis', - '2023.03.25', + '2023.04.22', [ 'requires' => [['core', '2.26']], 'permissions' => null, diff --git a/dcstore.xml b/dcstore.xml index bedc90e..27d0d33 100644 --- a/dcstore.xml +++ b/dcstore.xml @@ -2,10 +2,10 @@ License bootstrap - 2023.03.25 + 2023.04.22 Jean-Christian Denis Add license to your plugins and themes - https://github.com/JcDenis/licenseBootstrap/releases/download/v2023.03.25/plugin-licenseBootstrap.zip + https://github.com/JcDenis/licenseBootstrap/releases/download/v2023.04.22/plugin-licenseBootstrap.zip 2.26 https://plugins.dotaddict.org/dc2/details/licenseBootstrap https://github.com/JcDenis/licenseBootstrap diff --git a/locales/fr/main.lang.php b/locales/fr/main.lang.php index 1734a0f..8a59f79 100644 --- a/locales/fr/main.lang.php +++ b/locales/fr/main.lang.php @@ -9,17 +9,19 @@ # 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'; +use Dotclear\Helper\L10n; + +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';