additional_plugins/serendipity_event_autoupdate/lang_de.inc.php
Matthias Gutjahr 907b27c94a Improve handling of failed integrity checks (#104)
* [event_autoupdate] Add option to disable file integrity checks for one
run of the auto updater.

Signed-off-by: Matthias Gutjahr <mattsches@gmail.com>

* [event_autoupdate] Add button to retry auto update without integrity
checks after failure

Signed-off-by: Matthias Gutjahr <mattsches@gmail.com>

* [event_autoupdate] Remove wrong return statement

Signed-off-by: Matthias Gutjahr <mattsches@gmail.com>

* [event_autoupdate] Repeat file integrity check for text files that were
treated as binary files in S9y versions < 2.3

Signed-off-by: Matthias Gutjahr <mattsches@gmail.com>

* Automagic XML sync

* [event_autoupdate] Show error message and list of files with wrong
checksum

Signed-off-by: Matthias Gutjahr <mattsches@gmail.com>
2019-08-24 16:53:01 +02:00

16 lines
1.1 KiB
PHP

<?php
@define('PLUGIN_EVENT_AUTOUPDATE_NAME', 'Serendipity Autoupdate');
@define('PLUGIN_EVENT_AUTOUPDATE_DESC', 'Sobald das Dashboard Plugin (einmal am Tag) ein Serendipity Update entdeckt, setzt dieses Plugin eine Ein-Klick Option in das Dashboard des Backends, um ein manuelles Download oder ein automatisches und gesichertes Upgrade der Blogsoftware zu starten.');
@define('PLUGIN_EVENT_AUTOUPDATE_UPDATEBUTTON', 'Automatisches Upgrade starten');
@define('PLUGIN_EVENT_AUTOUPDATE_ERROR_INTEGRITY_CHECKS', 'Upgrade nicht erfolgreich, weil die Integritätsprüfung für folgende Dateien fehlgeschlagen ist:');
@define('PLUGIN_EVENT_AUTOUPDATE_DISABLE_INTEGRITY_CHECKS', 'Deaktiviere Integritätsprüfung (ACHTUNG!)');
@define(
'PLUGIN_EVENT_AUTOUPDATE_DISABLE_INTEGRITY_CHECKS_DESC',
'Diese Einstellung deaktiviert die Integritätsprüfung für Dateien für einen Durchlauf des automatischen Updates. Sie wird danach automatisch wieder auf `Nein` gesetzt.'
);
@define(
'PLUGIN_EVENT_AUTOUPDATE_RETRY_NO_INTEGRITY_CHECKS_BUTTON',
'Automatisches Upgrade ohne Integritätsprüfung wiederholen'
);