This commit is contained in:
Dennis Vorobyov 2026-06-15 14:13:19 +08:00 committed by GitHub
commit e52fde1302
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 0 deletions

View File

@ -82,6 +82,7 @@ AJAX.registerOnload('table/operations.js', function () {
const $form = $(this);
prepareForAjaxRequest($form);
const argsep = CommonParams.get('arg_separator');
ajaxShowMessage(window.Messages.strCopyingTable, false);
$.post($form.attr('action'), $form.serialize() + argsep + 'submit_copy=Go', function (data) {
if (typeof data !== 'undefined' && data.success === true) {
if ($form.find('input[name=\'switch_to_new\']').prop('checked')) {

View File

@ -343,6 +343,9 @@ final readonly class JavaScriptMessagesController implements InvocableController
'strChangingCharset' => __('Changing charset'),
'strNo' => __('No'),
/* For table/operations.js */
'strCopyingTable' => __('Copying table'),
/* For Foreign key checks */
'strForeignKeyCheck' => __('Enable foreign key checks'),