mirror of
https://github.com/go-gitea/gitea
synced 2024-10-28 17:59:03 +01:00
d55a0b7238
* Refactor `i18n` to `locale` - Currently we're using the `i18n` variable naming for the `locale` struct. This contains locale's specific information and cannot be used for general i18n purpose, therefore refactoring it to `locale` makes more sense. - Ref: https://github.com/go-gitea/gitea/pull/20096#discussion_r906699200 * Update routers/install/install.go
15 lines
536 B
Handlebars
15 lines
536 B
Handlebars
<div
|
|
class="ui dropzone"
|
|
data-link-url="{{.UploadLinkUrl}}"
|
|
data-upload-url="{{.UploadUrl}}"
|
|
data-remove-url="{{.UploadRemoveUrl}}"
|
|
data-accepts="{{.UploadAccepts}}"
|
|
data-max-file="{{.UploadMaxFiles}}"
|
|
data-max-size="{{.UploadMaxSize}}"
|
|
data-default-message="{{.locale.Tr "dropzone.default_message"}}"
|
|
data-invalid-input-type="{{.locale.Tr "dropzone.invalid_input_type"}}"
|
|
data-file-too-big="{{.locale.Tr "dropzone.file_too_big"}}"
|
|
data-remove-file="{{.locale.Tr "dropzone.remove_file"}}"
|
|
>
|
|
<div class="files"></div>
|
|
</div>
|