[Doc] translation of cards on intro page (#58897)

Signed-off-by: DanRoscigno <dan@roscigno.com>
This commit is contained in:
Dan Roscigno 2025-05-12 16:03:46 -04:00 committed by GitHub
parent 85572b1f10
commit 3854fea86a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 115 additions and 1 deletions

View File

@ -208,6 +208,108 @@ const EnglishFeatureList = [
},
];
const JapaneseFeatureList = [
{
title: 'Introduction',
url: '../../introduction/',
description: (
<>
OLAP, features, architecture
</>
),
},
{
title: 'クイックスタート',
url: '../../quick_start/',
description: (
<>
すぐに始めましょう
</>
),
},
{
title: 'データロード',
url: '../../loading/Loading_intro/',
description: (
<>
クリーンアップ変換ロード
</>
),
},
{
title: 'Table Design',
url: '../../table_design/StarRocks_table_design/',
description: (
<>
テーブルインデックスアクセラレーション
</>
),
},
{
title: 'データレイクハウス',
url: '../../data_source/data_lakes/',
description: (
<>
Iceberg, Hive, Delta Lake,
</>
),
},
{
title: 'セミ構造化データ',
url: '../../category/semi-structured/',
description: (
<>
JSON, map, struct, array
</>
),
},
{
title: 'インテグレーション',
url: '../../integrations/',
description: (
<>
BI ツール, IDE, クラウド認証,
</>
),
},
{
title: '管理',
url: '../../administration/',
description: (
<>
スケールバックアップロールと権限
</>
),
},
{
title: 'リファレンス',
url: '../../category/reference/',
description: (
<>
SQL, 関数, エラーコード,
</>
),
},
{
title: 'FAQs',
url: '../../faq/',
description: (
<>
よくある質問
</>
),
},
{
title: 'ベンチマーク',
url: '../../benchmarking/',
description: (
<>
DB パフォーマンス比較ベンチマーク
</>
),
},
];
function Feature({url, title, description}) {
return (
<div className={clsx('col col--6 margin-bottom--lg')}>
@ -235,6 +337,18 @@ export default function Features({language}) {
</div>
</section>
);
} else if (language == "Japanese") {
return (
<section className={styles.features}>
<div className="container">
<div className="row">
{JapaneseFeatureList.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
);
}
else{
return (

View File

@ -18,6 +18,6 @@ StarRocks は MySQL プロトコルと互換性があり、MySQL クライアン
### 人気のトピック
<FeatureList language="English" />
<FeatureList language="Japanese" />
---