diff --git a/i18n/en.json b/i18n/en.json index 8c0965d..f9e4804 100644 --- a/i18n/en.json +++ b/i18n/en.json @@ -15,7 +15,7 @@ "other": "Technical sheet" }, "downloadApp": { - "other": "{{ .Name }} is available on {{ .Platforms }}." + "other": "{{ .Name }} v{{ .Version }} is available on {{ .Platforms }}." }, "warnExternalWebsite": { "other": "(external link to {{ . }})" diff --git a/i18n/fr.json b/i18n/fr.json index 089ec1d..4bcd511 100644 --- a/i18n/fr.json +++ b/i18n/fr.json @@ -15,7 +15,7 @@ "other": "Fiche technique" }, "downloadApp": { - "other": "{{ .Name }} est disponible sur {{ .Platforms }}." + "other": "{{ .Name }} v{{ .Version }} est disponible sur {{ .Platforms }}." }, "warnExternalWebsite": { "other": "(lien externe vers {{ . }})" diff --git a/layouts/_default/app.html b/layouts/_default/app.html index 9379907..3a2658b 100644 --- a/layouts/_default/app.html +++ b/layouts/_default/app.html @@ -104,7 +104,7 @@

{{ i18n "download" }}

- {{ i18n "downloadApp" (dict "Name" .Name "Platforms" (delimit $AppData.platforms ", ")) }} + {{ i18n "downloadApp" (dict "Name" .Name "Version" $AppData.version "Platforms" (delimit $AppData.platforms ", ")) }}