feat: add i18n #3

Merged
vavakado merged 7 commits from i18n into main 2024-12-12 18:56:59 +02:00
2 changed files with 8 additions and 4 deletions
Showing only changes of commit 094b0f0324 - Show all commits

View file

@ -39,7 +39,7 @@
method="delete"
class="text-[0.8125rem] leading-6 text-zinc-900 font-semibold hover:text-zinc-700 dark:text-zinc-300 dark:hover:text-zinc-100"
>
<%= gettext("Log out") %>
<%= gettext("Log out") %>
</.link>
</li>
<% else %>

View file

@ -1,10 +1,14 @@
<.header>
<%= gettext("Listing Exams") %>
<div>
<button phx-click="sort" phx-value-by="subject" class="font-light"><%= gettext("Sort by Subject") %></button>
<button phx-click="sort" phx-value-by="subject" class="font-light">
<%= gettext("Sort by Subject") %>
</button>
<a>|</a>
<button phx-click="sort" phx-value-by="date" class="font-light"><%= gettext("Sort by Date") %></button>
<button phx-click="sort" phx-value-by="date" class="font-light">
<%= gettext("Sort by Date") %>
</button>
</div>
<:actions>
<.link patch={~p"/exams/new"}>
@ -27,7 +31,7 @@
0 -> gettext("Today")
1 -> gettext("Tomorrow")
x when x > 1 -> "#{x} #{gettext("days left")}"
x when x < 0 -> "#{x*-1} #{gettext("days passed")}"
x when x < 0 -> "#{x * -1} #{gettext("days passed")}"
end %>
</b>
</div>