Skip to content

Commit

Permalink
Fixed issue #18465: ComfortUpdate shows error message to contact the …
Browse files Browse the repository at this point in the history
…LimeSurvey team, while just retrying usually works
  • Loading branch information
c-schmitz committed Jun 20, 2023
1 parent 9a4a208 commit 43b0444
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions application/views/admin/update/updater/_error.php
Expand Up @@ -77,25 +77,25 @@

case 'file_locked':
$title = gT('Update server busy');
$message = gT('The update server is currently busy. This usually happens when the update files for a new version are being prepared.') . '<br/>' . gT('Please be patient and try again in about 5 minutes.');
$message = gT('The update server is currently busy.') . ' ' . gT('Most likely this is a temporary problem, so please try again in 5 minutes. If the issue persists, please contact LimeSurvey support.');
$buttons = 0;
break;

case 'server_error_creating_zip_update':
$title = gT('Server error!');
$message = gT('An error occurred while creating your update package file.') . ' ' . gT('Please contact the LimeSurvey team.');
$message = gT('An error occurred while creating your update package file.') . ' ' . gT('Most likely this is a temporary problem, so please try again in 5 minutes. If the issue persists, please contact LimeSurvey support.');
$buttons = 0;
break;

case 'server_error_getting_checksums':
$title = gT('Server error!');
$message = gT('An error occurred while getting checksums.') . ' ' . gT('Please contact the LimeSurvey team.');
$message = gT('An error occurred while getting checksums.') . ' ' . gT('Most likely this is a temporary problem, so please try again in 5 minutes. If the issue persists, please contact LimeSurvey support.');
$buttons = 0;
break;

case 'cant_get_changeset':
$title = gT('Server error!');
$message = gT('An error occurred while getting the changeset.') . ' ' . gT('Please contact the LimeSurvey team.');
$message = gT('An error occurred while getting the changeset.') . ' ' . gT('Most likely this is a temporary problem, so please try again in 5 minutes. If the issue persists, please contact LimeSurvey support.');
$buttons = 0;
break;

Expand Down Expand Up @@ -123,7 +123,7 @@
break;

case 'cant_remove_deleted_directory':
$title = gT("Could not remove the deleted directories");
$title = gT("Could not remove deleted directories");
$message = gT("ComfortUpdate couldn't remove one or more directories that were deleted with the update.");
break;

Expand Down

0 comments on commit 43b0444

Please sign in to comment.