additional_plugins/serendipity_event_autoupdate/lang_en.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,012 B
PHP

<?php
@define('PLUGIN_EVENT_AUTOUPDATE_NAME', 'Serendipity Autoupdate');
@define('PLUGIN_EVENT_AUTOUPDATE_DESC', 'When the dashboard-plugin (once a day) detects an update, this plugin adds the option to manually download or start an automatic and secured upgrade of the blog directly with one click from within the adminarea.');
@define('PLUGIN_EVENT_AUTOUPDATE_UPDATEBUTTON', 'Start automatic upgrade');
@define('PLUGIN_EVENT_AUTOUPDATE_ERROR_INTEGRITY_CHECKS', 'Updating failed, because the integrity-test for the following files failed:');
@define('PLUGIN_EVENT_AUTOUPDATE_DISABLE_INTEGRITY_CHECKS', 'Disable integrity checks (CAUTION!)');
@define(
'PLUGIN_EVENT_AUTOUPDATE_DISABLE_INTEGRITY_CHECKS_DESC',
'This setting disables the file integrity checks for one run of the auto updater. It will be automatically reset to `No` after the update.'
);
@define(
'PLUGIN_EVENT_AUTOUPDATE_RETRY_NO_INTEGRITY_CHECKS_BUTTON',
'Retry automatic upgrade with integrity checks disabled'
);