Skip to content

Commit 0b86ebd

Browse files
authored
fix(astro): webcontainers link to be in plural (#227)
1 parent 694f5ca commit 0b86ebd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/tutorialkit.dev/src/content/docs/reference/configuration.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ type I18nText = {
5858
/**
5959
* Text of the WebContainer link.
6060
*
61-
* @default 'Powered by WebContainer'
61+
* @default 'Powered by WebContainers'
6262
*/
6363
webcontainerLinkText?: string,
6464

packages/astro/src/default/utils/content/default-localization.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const DEFAULT_LOCALIZATION = {
55
noPreviewNorStepsText: 'No preview to run nor steps to show',
66
startWebContainerText: 'Run this tutorial',
77
editPageText: 'Edit this page',
8-
webcontainerLinkText: 'Powered by WebContainer',
8+
webcontainerLinkText: 'Powered by WebContainers',
99
filesTitleText: 'Files',
1010
prepareEnvironmentTitleText: 'Preparing Environment',
1111
toggleTerminalButtonText: 'Toggle Terminal',

packages/types/src/schemas/i18n.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const i18nSchema = z.object({
1818
/**
1919
* Text of the WebContainer link.
2020
*
21-
* @default 'Powered by WebContainer'
21+
* @default 'Powered by WebContainers'
2222
*/
2323
webcontainerLinkText: z.string().optional().describe('Text of the WebContainer link.'),
2424

0 commit comments

Comments
 (0)