mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 08:14:25 +00: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
27 lines
1.3 KiB
Handlebars
27 lines
1.3 KiB
Handlebars
{{if not .DisableNewPullMirrors}}
|
|
<div class="inline field">
|
|
<label>{{.locale.Tr "repo.migrate_options"}}</label>
|
|
<div class="ui checkbox">
|
|
<input id="mirror" name="mirror" type="checkbox" {{if .mirror}} checked{{end}}>
|
|
<label>{{.locale.Tr "repo.migrate_options_mirror_helper" | Safe}}</label>
|
|
</div>
|
|
</div>
|
|
{{end}}
|
|
{{if .LFSActive}}
|
|
<div class="inline field">
|
|
<label></label>
|
|
<div class="ui checkbox">
|
|
<input id="lfs" name="lfs" type="checkbox" {{if .lfs}} checked{{end}}>
|
|
<label>{{.locale.Tr "repo.migrate_options_lfs"}}</label>
|
|
</div>
|
|
<span id="lfs_settings" style="display:none">(<a id="lfs_settings_show" href="#">{{.locale.Tr "repo.settings.advanced_settings"}}</a>)</span>
|
|
</div>
|
|
<div id="lfs_endpoint" style="display:none">
|
|
<span class="help">{{.locale.Tr "repo.migrate_options_lfs_endpoint.description" "https://github.com/git-lfs/git-lfs/blob/main/docs/api/server-discovery.md#server-discovery" | Str2html}}{{if .ContextUser.CanImportLocal}} {{.locale.Tr "repo.migrate_options_lfs_endpoint.description.local"}}{{end}}</span>
|
|
<div class="inline field {{if .Err_LFSEndpoint}}error{{end}}">
|
|
<label>{{.locale.Tr "repo.migrate_options_lfs_endpoint.label"}}</label>
|
|
<input name="lfs_endpoint" value="{{.lfs_endpoint}}" placeholder="{{.locale.Tr "repo.migrate_options_lfs_endpoint.placeholder"}}">
|
|
</div>
|
|
</div>
|
|
{{end}}
|