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

View file

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