additional_plugins/serendipity_event_autoupdate/UTF-8/lang_en.inc.php
Matthias Gutjahr e9732fee04 [event_autoupdate] Add option to disable file integrity checks (#103)
* [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>
2019-08-21 16:11:47 +02:00

15 lines
872 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_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'
);