Skip to content

Commit bd4e971

Browse files
committed
updating documentation
1 parent efb96cf commit bd4e971

File tree

3 files changed

+22
-22
lines changed

3 files changed

+22
-22
lines changed

locale/en.js

+19-20
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,25 @@ const locale_en = {
66
url: "",
77
name: "Getting Started"
88
}, {
9-
name: "Connection",
10-
links: [{
11-
url: "connection",
12-
name: "Working with Connection"
13-
}, {
14-
url: "using-ormconfig",
15-
name: "Using ormconfig.json"
16-
}, {
17-
url: "connection-options",
18-
name: "Connection Options"
19-
}, {
20-
url: "multiple-connections",
21-
name: "Multiple Connections"
22-
}, {
23-
url: "connection-api",
24-
name: "Connection API"
25-
}]
9+
name: "DataSource",
10+
links: [
11+
{
12+
url: "data-source",
13+
name: "Working with Data Source"
14+
},
15+
{
16+
url: "data-source-options",
17+
name: "Data Source Options"
18+
},
19+
{
20+
url: "multiple-data-sources",
21+
name: "Multiple Data Sources"
22+
},
23+
{
24+
url: "data-source-api",
25+
name: "DataSource API"
26+
}
27+
]
2628
}, {
2729
name: "Entity",
2830
links: [{
@@ -167,9 +169,6 @@ const locale_en = {
167169
// name: "Internals"
168170
// },
169171
{
170-
url: "roadmap",
171-
name: "Roadmap"
172-
}, {
173172
url: "changelog",
174173
name: "Changelog"
175174
}, {

script/component/MainPage.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ const MainPage = {
9191
data: function () {
9292
return {
9393
links: this.$t("links"),
94-
langs: { en: "English", "zh_CN": "简体中文" }
94+
langs: { en: "English"/*, "zh_CN": "简体中文"*/ }
95+
// to enable chinese back we need to update the documentation
9596
};
9697
},
9798
mounted() {

script/constant/Links.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const Links = [
88
links: [
99
{
1010
url: "data-source",
11-
name: "Working with Connection"
11+
name: "Working with Data Source"
1212
},
1313
{
1414
url: "data-source-options",

0 commit comments

Comments
 (0)