mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2025-12-24 01:24:28 +01:00
I18n for new strings
This commit is contained in:
committed by
Tony Giorgio
parent
8c3572dd15
commit
71e53bfe43
@@ -232,8 +232,11 @@ function AddFederationForm(props: { refetch?: RefetchType }) {
|
||||
<MiniStringShower text={fed.id} />
|
||||
</KeyValue>
|
||||
<Show when={fed.created_at}>
|
||||
<KeyValue key="created at">
|
||||
{/* todo i18n */}
|
||||
<KeyValue
|
||||
key={i18n.t(
|
||||
"settings.manage_federations.created_at"
|
||||
)}
|
||||
>
|
||||
<time>
|
||||
{timeAgo(fed.created_at)}
|
||||
</time>
|
||||
@@ -244,8 +247,11 @@ function AddFederationForm(props: { refetch?: RefetchType }) {
|
||||
fed.recommendations.length > 0
|
||||
}
|
||||
>
|
||||
<KeyValue key={"recommended by"}>
|
||||
{/* todo i18n */}
|
||||
<KeyValue
|
||||
key={i18n.t(
|
||||
"settings.manage_federations.recommended_by"
|
||||
)}
|
||||
>
|
||||
<div class="flex items-center gap-2 overflow-scroll md:gap-4">
|
||||
<For
|
||||
each={
|
||||
|
||||
Reference in New Issue
Block a user