File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 1
1
FROM node:20-alpine AS base
2
2
3
3
FROM base AS builder
4
- RUN apk add --no-cache libc6-compat
4
+ RUN apk add --no-cache libc6-compat git
5
5
WORKDIR /app
6
6
7
7
ARG NEXT_PUBLIC_APP_URL
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ export default async function Page({
31
31
} }
32
32
lastUpdate = { page . data . lastModified ? new Date ( page . data . lastModified ) : undefined }
33
33
editOnGithub = { {
34
- owner : 'sailos-io ' ,
35
- repo : 'website' ,
34
+ owner : 'labring ' ,
35
+ repo : 'sealos- website' ,
36
36
sha : 'main' ,
37
37
// file path, make sure it's valid
38
38
path : `content/docs/${ page . file . path } ` ,
Original file line number Diff line number Diff line change @@ -18,6 +18,14 @@ export default function LocaleLayout({
18
18
{
19
19
'zh-cn' : {
20
20
search : '搜索' ,
21
+ nextPage : '下一页' ,
22
+ previousPage : '上一页' ,
23
+ lastUpdate : '最后更新于' ,
24
+ editOnGithub : '在 GitHub 上编辑' ,
25
+ searchNoResult : '没有找到相关内容' ,
26
+ toc : '目录' ,
27
+ tocNoHeadings : '没有找到目录' ,
28
+ chooseLanguage : '选择语言' ,
21
29
} ,
22
30
} [ params . lang ]
23
31
}
You can’t perform that action at this time.
0 commit comments