Capitalize links to creation form

This commit is contained in:
Edgar P. Burkhart 2023-04-20 12:06:01 +02:00
parent 45d12d0b07
commit e87893ae0c
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
3 changed files with 13 additions and 13 deletions

View File

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: 0.0.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-20 12:02+0200\n"
"POT-Creation-Date: 2023-04-20 12:05+0200\n"
"PO-Revision-Date: 2022-12-21 17:30+0100\n"
"Last-Translator: edpibu <git@edgarpierre.fr>\n"
"Language-Team: edpibu <git@edgarpierre.fr>\n"
@ -175,20 +175,20 @@ msgid "Snapshots"
msgstr "Relevés"
#: .\templates\main\base.html:56
msgid "Create account"
msgstr "Créer compte"
msgid "Create Account"
msgstr "Créer Compte"
#: .\templates\main\base.html:61
msgid "Create snapshot"
msgstr "Créer relevé"
msgid "Create Snapshot"
msgstr "Créer Relevé"
#: .\templates\main\base.html:66
msgid "Create category"
msgstr "Créer catégorie"
msgid "Create Category"
msgstr "Créer Catégorie"
#: .\templates\main\base.html:71
msgid "Create transaction"
msgstr "Créer transaction"
msgid "Create Transaction"
msgstr "Créer Transaction"
#: .\templates\main\base.html:79
msgid "Log out"

View File

@ -53,22 +53,22 @@
<li>
<a href="{% url 'account' %}"
class="{% if request.resolver_match.url_name == 'account' %}cur{% endif %}"
accesskey="a">{% translate "Create account" %}</a>
accesskey="a">{% translate "Create Account" %}</a>
</li>
<li>
<a href="{% url 'snapshot' %}"
class="{% if request.resolver_match.url_name == 'snapshot' %}cur{% endif %}"
accesskey="s">{% translate "Create snapshot" %}</a>
accesskey="s">{% translate "Create Snapshot" %}</a>
</li>
<li>
<a href="{% url 'category' %}"
class="{% if request.resolver_match.url_name == 'category' %}cur{% endif %}"
accesskey="c">{% translate "Create category" %}</a>
accesskey="c">{% translate "Create Category" %}</a>
</li>
<li>
<a href="{% url 'transaction' %}"
class="{% if request.resolver_match.url_name == 'transaction' %}cur{% endif %}"
accesskey="t">{% translate "Create transaction" %}</a>
accesskey="t">{% translate "Create Transaction" %}</a>
</li>
<li>
<a href="{% url 'search' %}"