Translate to Catalan

This commit is contained in:
ricola 2025-04-06 17:04:31 -06:00
parent 3fa8c69a49
commit e826d79240
12 changed files with 502 additions and 110 deletions

View file

@ -1,13 +1,13 @@
<h1>New vote</h1>
<h1><%= _("New vote") %></h1>
<form action="/votes" method="post">
<p>
<label for="title">Title</label>
<label for="title"><%= _("Title") %></label>
<input type="text" name="title">
</p>
<p>
<label for="description">Description</label>
<label for="description"><%= _("Description") %></label>
<input type="text" name="description">
</p>
<button type="submit">Create new vote</button>
<button type="submit"><%= _("Create new vote") %></button>
</form>