"examples/inference/inpainting.py" did not exist on "e5b5deaea6b9fedbd343bdb0e90d47171bd6b9f9"
Commit d388c203 authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

enh: codeblock i18n

parent 13403cd7
<script lang="ts">
import hljs from 'highlight.js';
import { loadPyodide } from 'pyodide';
import { getContext } from 'svelte';
import { getContext, getAllContexts } from 'svelte';
import { copyToClipboard } from '$lib/utils';
import 'highlight.js/styles/github-dark.min.css';
......@@ -236,12 +236,12 @@ __builtins__.input = input`);
class="copy-code-button bg-none border-none p-1"
on:click={() => {
executePython(code);
}}>Run</button
}}>{$i18n.t('Run')}</button
>
{/if}
{/if}
<button class="copy-code-button bg-none border-none p-1" on:click={copyCode}
>{copied ? 'Copied' : 'Copy Code'}</button
>{copied ? $i18n.t('Copied') : $i18n.t('Copy Code')}</button
>
</div>
</div>
......
......@@ -3,7 +3,10 @@
import type { Token } from 'marked';
import { revertSanitizedResponseContent, unescapeHtml } from '$lib/utils';
import { onMount } from 'svelte';
import { onMount, getContext, getAllContexts } from 'svelte';
const context = getAllContexts();
const i18n = getContext('i18n');
import Image from '$lib/components/common/Image.svelte';
import CodeBlock from '$lib/components/chat/Messages/CodeBlock.svelte';
......@@ -44,7 +47,7 @@
return;
}
new CodeBlock({
const element = new CodeBlock({
target: codeElement,
props: {
id: `${id}-${codes.length}`,
......@@ -52,7 +55,8 @@
code: revertSanitizedResponseContent(code)
},
hydrate: true,
$$inline: true
$$inline: true,
context: context
});
}
}, 10);
......
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