forked from withastro/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lunaria.config.json
112 lines (112 loc) · 2.62 KB
/
lunaria.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"$schema": "./node_modules/@lunariajs/core/config.schema.json",
"repository": {
"name": "withastro/docs",
"branch": "main",
"hosting": "github"
},
"files": [
{
"location": "src/i18n/**/(ui|docsearch).ts",
"pattern": "src/i18n/@lang/@path",
"type": "dictionary"
},
{
"location": "src/i18n/**/nav.ts",
"pattern": "src/i18n/@lang/@path",
"type": "universal"
},
{
"location": "src/content/docs/**/*.{mdx,md}",
"pattern": "src/content/docs/@lang/@path",
"type": "universal"
}
],
"defaultLocale": {
"label": "English",
"lang": "en"
},
"locales": [
{
"label": "العربية",
"lang": "ar"
},
{
"label": "Deutsch",
"lang": "de"
},
{
"label": "Español",
"lang": "es"
},
{
"label": "Français",
"lang": "fr"
},
{
"label": "हिन्दी",
"lang": "hi"
},
{
"label": "Italiano",
"lang": "it"
},
{
"label": "日本語",
"lang": "ja"
},
{
"label": "한국어",
"lang": "ko"
},
{
"label": "Polski",
"lang": "pl"
},
{
"label": "Português do Brasil",
"lang": "pt-br"
},
{
"label": "Русский",
"lang": "ru"
},
{
"label": "简体中文",
"lang": "zh-cn"
},
{
"label": "正體中文",
"lang": "zh-tw"
}
],
"dashboard": {
"site": "https://i18n.docs.astro.build/",
"title": "Astro Docs Translation Status",
"description": "Translation progress tracker for the Astro Docs site. See how much has been translated in your language and get involved!",
"favicon": {
"external": [
{
"link": "https://docs.astro.build/favicon.ico",
"type": "image/x-icon"
},
{
"link": "https://docs.astro.build/favicon.svg",
"type": "image/svg+xml"
}
]
},
"customCss": ["./lunaria/styles.css"],
"basesToHide": ["src/content/docs/", "src/i18n/"],
"ui": {
"statusByLocale.heading": "Translation progress by locale",
"statusByLocale.incompleteLocalizationLink": "incomplete translation",
"statusByLocale.outdatedLocalizationLink": "outdated translation",
"statusByLocale.completeLocalization": "This translation is complete, amazing job! 🎉",
"statusByFile.heading": "Translation status by file"
}
},
"ignoreKeywords": ["lunaria-ignore", "typo", "en-only", "broken link", "i18nReady", "i18nIgnore"],
"localizableProperty": "i18nReady",
"renderer": "./lunaria/renderer.config.ts"
}