diff --git a/src/lib/components/layout/SearchModal.svelte b/src/lib/components/layout/SearchModal.svelte index d9e18236be..c69bbf6346 100644 --- a/src/lib/components/layout/SearchModal.svelte +++ b/src/lib/components/layout/SearchModal.svelte @@ -24,7 +24,7 @@ let actions = [ { - label: 'Start a new conversation', + label: $i18n.t('Start a new conversation'), onClick: async () => { await goto(`/${query ? `?q=${query}` : ''}`); show = false; @@ -231,7 +231,7 @@ ($user?.role === 'admin' || ($user?.permissions?.features?.notes ?? true)) ? [ { - label: 'Create a new note', + label: $i18n.t('Create a new note'), onClick: async () => { await goto(`/notes${query ? `?content=${query}` : ''}`); show = false;