---
import PlaygroundComponent from "@components/Playground";
import StarlightPage from "@astrojs/starlight/components/StarlightPage.astro";
import type { PlaygroundLang } from "@utils/playground";
const lang: PlaygroundLang = {
header: {
title: "Playground",
buttons: {
build: "Build",
zip: "Download zip",
save: "Save",
reset: "Reset",
},
},
explorer: {
title: "Explorer",
menu: {
delete: "Delete",
rename: "Rename",
renamePrompt: {
label: "New file path",
message: "Enter the path you want the file to be renamed/moved to."
},
cancel: "Cancel",
}
},
};
---