fix: still some typos from slate -> base find & replace

This commit is contained in:
Zach Daniel 2022-09-09 02:33:52 -04:00
parent 8b10dcbe0c
commit e62a50b35c
2 changed files with 5 additions and 5 deletions

View file

@ -32,7 +32,7 @@ defmodule AshHqWeb.Components.Search do
>
<div
:on-click-away={AshHqWeb.AppViewLive.toggle_search()}
class="dark:text-white absolute rounded-xl left-1/2 top-1/2 transform -translate-dark-x-1/2 -translate-dark-y-1/2 w-3/4 h-3/4 bg-white dark:bg-base-dark-900 border-2 dark:border-base-dark-900"
class="dark:text-white absolute rounded-xl left-1/2 top-1/2 transform -translate-x-1/2 -translate-y-1/2 w-3/4 h-3/4 bg-white dark:bg-base-dark-900 border-2 dark:border-base-dark-900"
:on-window-keydown="select-previous"
phx-key="ArrowUp"
>

View file

@ -8,15 +8,15 @@ defmodule AshHqWeb.Gettext do
import AshHqWeb.Gettext
# Simple translation
gettext("Here is the string to translate-dark")
gettext("Here is the string to translate")
# Plural translation
ngettext("Here is the string to translate-dark",
"Here are the strings to translate-dark",
ngettext("Here is the string to translate",
"Here are the strings to translate",
3)
# Domain-based translation
dgettext("errors", "Here is the error message to translate-dark")
dgettext("errors", "Here is the error message to translate")
See the [Gettext Docs](https://hexdocs.pm/gettext) for detailed usage.
"""