feat: add i18n #3
2 changed files with 8 additions and 4 deletions
|
@ -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 %>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue