Skip to content

Commit fd5082d

Browse files
committed
feat: 添加土耳其语 config.ts 配置文件
- 为 tr 语言创建缺失的 config.ts 文件 - 包含土耳其语导航菜单和配置 - 与其他语言版本保持一致的结构
1 parent b916b7b commit fd5082d

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

docs/tr/config.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import { defineAdditionalConfig } from 'vitepress'
2+
import { sidebar } from './sidebar'
3+
4+
export default defineAdditionalConfig({
5+
lang: 'tr-TR',
6+
description: 'RustFS - MinIO alternatifi, yüksek performanslı dağıtık depolama çözümü',
7+
8+
themeConfig: {
9+
nav: [
10+
{ text: 'Ana Sayfa', link: 'https://rustfs.com' },
11+
{ text: 'Kurulum', link: '/tr/installation/linux' },
12+
{ text: 'SDK', link: '/tr/sdk' },
13+
{ text: 'Demo', link: 'https://play.rustfs.com' },
14+
{ text: 'Topluluk', link: 'https://github.com/rustfs/rustfs/discussions' },
15+
{ text: 'Hakkında', link: '/tr/about' },
16+
],
17+
18+
sidebar: {
19+
'/tr/': sidebar,
20+
},
21+
22+
editLink: {
23+
pattern: 'https://github.com/rustfs/docs.rustfs.com/edit/main/docs/:path',
24+
text: 'Bu sayfayı GitHub\'da düzenle'
25+
},
26+
27+
footer: {
28+
message: 'Apache License 2.0 altında yayınlanmıştır.',
29+
copyright: 'Copyright © 2025 RustFS'
30+
}
31+
}
32+
})

0 commit comments

Comments
 (0)