36 lines
1.3 KiB
Plaintext
36 lines
1.3 KiB
Plaintext
|
<!--
|
||
|
SPDX-FileCopyrightText: 2023 jordi fita mas <jordi@tandem.blog>
|
||
|
SPDX-License-Identifier: AGPL-3.0-only
|
||
|
-->
|
||
|
{{ define "title" -}}
|
||
|
{{- /*gotype: dev.tandem.ws/tandem/camper/pkg/season.seasonL10nForm*/ -}}
|
||
|
{{printf (pgettext "Translate Season to %s" "title") .Locale.Endonym }}
|
||
|
{{- end }}
|
||
|
|
||
|
{{ define "content" -}}
|
||
|
{{- /*gotype: dev.tandem.ws/tandem/camper/pkg/season.seasonL10nForm*/ -}}
|
||
|
<form data-hx-put="/admin/seasons/{{ .Slug }}/{{ .Locale.Language }}">
|
||
|
<h2>
|
||
|
{{printf (pgettext "Translate Season to %s" "title") .Locale.Endonym }}
|
||
|
</h2>
|
||
|
{{ CSRFInput }}
|
||
|
<fieldset>
|
||
|
{{ with .Name -}}
|
||
|
<fieldset>
|
||
|
<legend>{{( pgettext "Name" "input")}}</legend>
|
||
|
{{( gettext "Source:" )}} {{ .Source }}<br>
|
||
|
<label>
|
||
|
{{( pgettext "Translation:" "input" )}}
|
||
|
<input type="text" name="{{ .Name }}" value="{{ .Val }}"
|
||
|
required {{ template "error-attrs" . }}><br>
|
||
|
</label>
|
||
|
{{ template "error-message" . }}
|
||
|
</fieldset>
|
||
|
{{- end }}
|
||
|
</fieldset>
|
||
|
<footer>
|
||
|
<button type="submit">{{( pgettext "Translate" "action" )}}</button>
|
||
|
</footer>
|
||
|
</form>
|
||
|
{{- end }}
|