Skip to content

Commit 17d18ca

Browse files
committed
feat: add cestina and deutch examples
1 parent e535121 commit 17d18ca

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

src/pages/index.js

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,24 @@ import { height } from '@mui/system';
3636

3737
//Array of Languages on right side of code editor
3838
const languages = [
39-
39+
{
40+
id: "CS",
41+
code3: "ces",
42+
code2: "cs",
43+
name: "Czech",
44+
i18nName: "Čeština",
45+
fontFamily: "'Roboto Mono'",
46+
toEnglishDict: "'languages/cs/cs_native.lang.yaml'",
47+
},
48+
{
49+
id: "DE",
50+
code3: "deu",
51+
code2: "de",
52+
name: "German",
53+
i18nName: "Deutsch",
54+
fontFamily: "'Roboto Mono'",
55+
toEnglishDict: "'languages/de/de_native.lang.yaml'",
56+
},
4057
{
4158
id: "UR",
4259
code3: "urd",
@@ -48,7 +65,6 @@ const languages = [
4865
toEnglishDict: "'languages/ur/ur_native.lang.yaml'",
4966
fontWeights: "bold",
5067
style: {
51-
5268
direction: "rtl"
5369
}
5470
},
@@ -60,7 +76,6 @@ const languages = [
6076
name: "Hindi",
6177
i18nName: "Hindi",
6278
fontFamily: "'Roboto Mono'",
63-
6479
toEnglishDict: "'languages/hi/hi_native.lang.yaml'",
6580
},
6681
{
@@ -70,11 +85,8 @@ const languages = [
7085
name: "English",
7186
i18nName: "English",
7287
fontFamily: "'Roboto Mono'",
73-
7488
}
7589
]
76-
77-
7890
const IDE = ({basicSetup, ...props}) => {
7991

8092
const { colorMode } = useColorMode();

0 commit comments

Comments
 (0)