diff options
author | Frédéric Guillot <fred@miniflux.net> | 2018-09-21 18:53:29 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@miniflux.net> | 2018-09-21 22:23:23 -0700 |
commit | beb7a0cfcb6a5a76d680707a4c458eee51d87c07 (patch) | |
tree | f6e23ffbffcdd58f8438e2d2711acb4fa86bb83b /template/html/choose_subscription.html | |
parent | f244df62936eea307a5fc3f27fb9968527d402ac (diff) |
Use unique translation IDs instead of English text as key
Diffstat (limited to 'template/html/choose_subscription.html')
-rw-r--r-- | template/html/choose_subscription.html | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/template/html/choose_subscription.html b/template/html/choose_subscription.html index 2b053a1..bac7083 100644 --- a/template/html/choose_subscription.html +++ b/template/html/choose_subscription.html @@ -1,17 +1,17 @@ -{{ define "title"}}{{ t "Choose a Subscription" }}{{ end }} +{{ define "title"}}{{ t "page.add_feed.title" }}{{ end }} {{ define "content"}} <section class="page-header"> - <h1>{{ t "New Subscription" }}</h1> + <h1>{{ t "page.add_feed.title" }}</h1> <ul> <li> - <a href="{{ route "feeds" }}">{{ t "Feeds" }}</a> + <a href="{{ route "feeds" }}">{{ t "menu.feeds" }}</a> </li> <li> - <a href="{{ route "export" }}">{{ t "Export" }}</a> + <a href="{{ route "export" }}">{{ t "menu.export" }}</a> </li> <li> - <a href="{{ route "import" }}">{{ t "Import" }}</a> + <a href="{{ route "import" }}">{{ t "menu.import" }}</a> </li> </ul> </section> @@ -26,7 +26,7 @@ <input type="hidden" name="crawler" value="1"> {{ end }} - <h3>{{ t "Choose a Subscription" }}</h3> + <h3>{{ t "page.add_feed.choose_feed" }}</h3> {{ range .subscriptions }} <div class="radio-group"> @@ -36,7 +36,7 @@ {{ end }} <div class="buttons"> - <button type="submit" class="button button-primary" data-label-loading="{{ t "Loading..." }}">{{ t "Subscribe" }}</button> + <button type="submit" class="button button-primary" data-label-loading="{{ t "form.submit.loading" }}">{{ t "action.subscribe" }}</button> </div> </form> {{ end }} |