Commit 81023472 authored by SimonOriginal's avatar SimonOriginal
Browse files

Fix i18n string syntax

parent c97d4bbb
...@@ -351,7 +351,7 @@ class Pipe: ...@@ -351,7 +351,7 @@ class Pipe:
<span class=" font-semibold dark:text-gray-200">{$i18n.t('Warning:')}</span> <span class=" font-semibold dark:text-gray-200">{$i18n.t('Warning:')}</span>
{$i18n.t('Functions allow arbitrary code execution')} <br />— {$i18n.t('Functions allow arbitrary code execution')} <br />—
<span class=" font-medium dark:text-gray-400" <span class=" font-medium dark:text-gray-400"
>{$i18n.t('don't install random functions from sources you don't trust.')}</span >{$i18n.t(`don't install random functions from sources you don't trust.`)}</span
> >
</div> </div>
</div> </div>
......
...@@ -239,7 +239,7 @@ class Tools: ...@@ -239,7 +239,7 @@ class Tools:
<span class=" font-semibold dark:text-gray-200">{$i18n.t('Warning:')}</span> <span class=" font-semibold dark:text-gray-200">{$i18n.t('Warning:')}</span>
{$i18n.t('Tools are a function calling system with arbitrary code execution')} <br />— {$i18n.t('Tools are a function calling system with arbitrary code execution')} <br />—
<span class=" font-medium dark:text-gray-400" <span class=" font-medium dark:text-gray-400"
>{$i18n.t('don't install random tools from sources you don't trust.')}</span >{$i18n.t(`don't install random tools from sources you don't trust.`)}</span
> >
</div> </div>
</div> </div>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment