diff --git a/Resources/translations/messages.en.yml b/Resources/translations/messages.en.yml new file mode 100644 index 0000000..88fb09e --- /dev/null +++ b/Resources/translations/messages.en.yml @@ -0,0 +1,31 @@ +dropzone: + button_add_file: Add file + mark_for_deletion: Loaded, mark for deletion + modal_title_error_size: Large file size + modal_error_size: File size exceeds the maximum allowed value. + modal_title_error_format: Invalid format + modal_error_format: Invalid file format. + modal_close: Close + loading_error: An error occurred when loading. + files_uploaded: Files were uploaded + browser_not_support_drag_n_drop: "Your browser does not support drag'n drop uploading." + file_size_too_large: File size too large. + wrong_format: You cannot download files in this format. + disable_adblocker: Most likely you have enabled adblocker. Disable it for this site. + cancel_upload: Cancel download + cancel_upload_confirmation: Are you sure you want to cancel the download? + remove_file: Delete a file + max_files_exceeded: You can not upload more files. + drag_or_click_files: Drag files here (or click) + reached_maximum_uploaded_files: You have reached the maximum number of uploaded files. + insert_link: Insert link + image_url: The URL of the image + download: Download + downloading: Downloading + url_must_contain_link_image: The URL must contain a link to an image. + modal_file_delete_confirmation_title: File removal confirmation + modal_file_delete_confirmation_boby: Are you sure you want to delete this file? + delete: Delete + cancel: Cancel + edit: Edit + save: Save \ No newline at end of file diff --git a/Resources/translations/messages.ru.yml b/Resources/translations/messages.ru.yml index ea6122a..475c161 100644 --- a/Resources/translations/messages.ru.yml +++ b/Resources/translations/messages.ru.yml @@ -1,8 +1,31 @@ dropzone: - button_add_file: Добавить файл - mark_for_deletion: Загруженные, пометить на удаление - modal_title_error_size: Большой размер файла - modal_error_size: Размер Файла превышает максимальное допустимое значение: 4 МБ. - modal_title_error_format: Неверный формат - modal_error_format: Неверный формат файла. - modal_close: Закрыть + button_add_file: Добавить файл + mark_for_deletion: Загруженные, пометить на удаление + modal_title_error_size: Большой размер файла + modal_error_size: Размер Файла превышает максимальное допустимое значение. + modal_title_error_format: Неверный формат + modal_error_format: Неверный формат файла. + modal_close: Закрыть + loading_error: При загрузке произошла ошибка. + files_uploaded: Файлы были загружены + browser_not_support_drag_n_drop: "Ваш браузер не поддерживает drag'n drop загрузку." + file_size_too_large: Размер файла слишком большой. + wrong_format: Вы не можете загружать файлы данного формата. + disable_adblocker: Скорее всего у вас включен блокировщик рекламы. Отключите его для данного сайта. + cancel_upload: Отмена загрузки + cancel_upload_confirmation: Вы действительно хотите отменить загрузку? + remove_file: Удаление файла + max_files_exceeded: Вы не можете загрузить больше файлов. + drag_or_click_files: Перетащите или выберите файлы + reached_maximum_uploaded_files: Достигнуто максимальное количество загруженных файлов. + insert_link: Вставьте ссылку + image_url: URL изображения + download: Закачать + downloading: Загрузка + url_must_contain_link_image: URL должен содержать ссылку на изображение. + modal_file_delete_confirmation_title: Подтверждение удаления файла + modal_file_delete_confirmation_boby: Вы уверены, что хотите удалить этот файл? + delete: Удалить + cancel: Отмена + edit: Редактировать + save: Сохранить \ No newline at end of file diff --git a/Resources/views/Form/fields.html.twig b/Resources/views/Form/fields.html.twig index 621396e..77fc468 100644 --- a/Resources/views/Form/fields.html.twig +++ b/Resources/views/Form/fields.html.twig @@ -39,7 +39,6 @@ display: block; float: left; margin-right: 30px; - margin-bottom: 30px; } .dz-progress { @@ -193,7 +192,7 @@ var message = errorMessage; if (typeof errorMessage == "string" && errorMessage.length > 200) { - message = 'При загрузке произошла ошибка.'; + message = "{{ 'dropzone.loading_error'|trans }}"; this.files.pop(); } @@ -214,16 +213,16 @@ return false; } }, - dictDefaultMessage: "Файлы были загружены", - dictFallbackMessage: "Ваш браузер не поддерживает drag'n'drop загрузку.", - dictFileTooBig: "Размер файла слишком большой.", - dictInvalidFileType: "Вы не можете загружать файлы данного формата.", - dictResponseError: "Скорее всего у вас включен блокировщик рекламы. Отключите его для данного сайта.", - dictCancelUpload: "Отмена загрузки", - dictCancelUploadConfirmation: "Вы действительно хотите отменить загрузку?", - dictRemoveFile: "Удаление файла", + dictDefaultMessage: "{{ 'dropzone.files_uploaded'|trans }}", + dictFallbackMessage: "{{ 'dropzone.browser_not_support_drag_n_drop'|trans }}", + dictFileTooBig: "{{ 'dropzone.file_size_too_large'|trans }}", + dictInvalidFileType: "{{ 'dropzone.wrong_format'|trans }}", + dictResponseError: "{{ 'dropzone.disable_adblocker'|trans }}", + dictCancelUpload: "{{ 'dropzone.cancel_upload'|trans }}", + dictCancelUploadConfirmation: "{{ 'dropzone.cancel_upload_confirmation'|trans }}", + dictRemoveFile: "{{ 'dropzone.remove_file'|trans }}", dictRemoveFileConfirmation: null, - dictMaxFilesExceeded: "Вы не можете загрузить больше файлов.", + dictMaxFilesExceeded: "{{ 'dropzone.max_files_exceeded'|trans }}" }); {% for media in files %} diff --git a/Resources/views/Form/view-form.html.twig b/Resources/views/Form/view-form.html.twig index f61322d..d98163a 100644 --- a/Resources/views/Form/view-form.html.twig +++ b/Resources/views/Form/view-form.html.twig @@ -1,6 +1,6 @@
- Перетащите или выберите файлы + {{ 'dropzone.drag_or_click_files'|trans }}
- Достигнуто максимальное количество загруженных файлов. + {{ 'dropzone.reached_maximum_uploaded_files'|trans }}
\ No newline at end of file diff --git a/Resources/views/Form/view-link.html.twig b/Resources/views/Form/view-link.html.twig index 5b97adf..89a5fde 100644 --- a/Resources/views/Form/view-link.html.twig +++ b/Resources/views/Form/view-link.html.twig @@ -2,18 +2,18 @@ diff --git a/Resources/views/Form/view-modal-error-default.html.twig b/Resources/views/Form/view-modal-error-default.html.twig index ce56d9b..7110bcb 100644 --- a/Resources/views/Form/view-modal-error-default.html.twig +++ b/Resources/views/Form/view-modal-error-default.html.twig @@ -13,7 +13,7 @@

diff --git a/Resources/views/Form/view-modal-error-format.html.twig b/Resources/views/Form/view-modal-error-format.html.twig index 51aafee..82d880b 100644 --- a/Resources/views/Form/view-modal-error-format.html.twig +++ b/Resources/views/Form/view-modal-error-format.html.twig @@ -7,13 +7,13 @@ diff --git a/Resources/views/Form/view-modal-error.html.twig b/Resources/views/Form/view-modal-error.html.twig index 2484b15..cd24f10 100644 --- a/Resources/views/Form/view-modal-error.html.twig +++ b/Resources/views/Form/view-modal-error.html.twig @@ -7,13 +7,13 @@ diff --git a/Resources/views/Form/view-modal-remove.html.twig b/Resources/views/Form/view-modal-remove.html.twig index 7a6513a..823ca71 100644 --- a/Resources/views/Form/view-modal-remove.html.twig +++ b/Resources/views/Form/view-modal-remove.html.twig @@ -12,20 +12,20 @@ {# MODAL:HEADER #} {# //MODAL:HEADER #} {# MODAL:BODY #} {# MODAL:BODY #} {# MODAL:FOOTER #} {# MODAL:FOOTER #} diff --git a/Resources/views/Form/view-modal-rename.html.twig b/Resources/views/Form/view-modal-rename.html.twig index a21fbd7..e3dd075 100644 --- a/Resources/views/Form/view-modal-rename.html.twig +++ b/Resources/views/Form/view-modal-rename.html.twig @@ -12,7 +12,7 @@ {# MODAL:HEADER #} {# //MODAL:HEADER #} @@ -31,8 +31,8 @@ {# MODAL:FOOTER #} {# MODAL:FOOTER #}