55	githubOrganizationUrl , 
66	githubRepositoryUrl , 
77	typstOfficialDocsUrl , 
8+ 	version , 
89}  from  "./metadata" ; 
910
1011/** 
@@ -73,6 +74,7 @@ type TranslationKey =
7374	|  "translated" 
7475	|  "translatedMessage" 
7576	|  "siteNoticeBannerTitle" 
77+ 	|  "siteNoticeBannerDescription" 
7678	|  "tutorial" 
7779	|  "tutorialDescription" 
7880	|  "referenceDescription" 
@@ -95,15 +97,13 @@ type TranslationKey =
9597
9698export  type  TranslationProps  = 
9799	|  {  translationKey : TranslationKey  } 
98- 	|  {  translationKey : "definitionOf" ;  name : string  } 
99- 	|  {  translationKey : "siteNoticeBannerDescription" ;  version : string  } ; 
100+ 	|  {  translationKey : "definitionOf" ;  name : string  } ; 
100101
101102/** 
102103 * Translation component for UI text, descriptions, and other content to be embedded as JSX. 
103104 * 
104105 * @example  
105106 * <Translation translationKey="definition" /> 
106-  * <Translation translationKey="siteNoticeBannerDescription" version="1.0.0" /> 
107107 */ 
108108export  const  Translation : FC < TranslationProps >  =  ( props )  =>  { 
109109	switch  ( props . translationKey )  { 
@@ -120,9 +120,9 @@ export const Translation: FC<TranslationProps> = (props) => {
120120		case  "search" :
121121			return  < > 検索</ > ; 
122122		case  "defaultValue" :
123- 			return  < > デフォルト値</ > ; 
123+ 			return  < > デフォルト値: </ > ; 
124124		case  "stringValues" :
125- 			return  < > 使用可能な文字列値</ > ; 
125+ 			return  < > 使用可能な文字列値: </ > ; 
126126		case  "showExample" :
127127			return  < > 例を表示</ > ; 
128128		case  "tableOfContents" :
@@ -241,9 +241,7 @@ export const Translation: FC<TranslationProps> = (props) => {
241241				< > 
242242					当サイトは、Typst GmbHの許諾を得て、日本語コミュニティ「
243243					< a  href = { githubOrganizationUrl } > Typst Japanese Community</ a > 」が
244- 					< a  href = { typstOfficialDocsUrl } > 
245- 						Typst v{ props . version } の公式ドキュメント
246- 					</ a > 
244+ 					< a  href = { typstOfficialDocsUrl } > Typst v{ version } の公式ドキュメント</ a > 
247245					を翻訳したものです。誤訳や古い情報が含まれている可能性があるため、
248246					< a  href = { typstOfficialDocsUrl } > 公式ドキュメント</ a > 
249247					との併用を推奨します。翻訳の改善やサイトの機能向上について、
@@ -253,9 +251,7 @@ export const Translation: FC<TranslationProps> = (props) => {
253251					にぜひご参加ください。
254252					< br  /> 
255253					This site provides a Japanese translation of the{ " " } 
256- 					< a  href = { typstOfficialDocsUrl } > 
257- 						Typst v{ props . version }  documentation
258- 					</ a > { " " } 
254+ 					< a  href = { typstOfficialDocsUrl } > Typst v{ version }  documentation</ a > { " " } 
259255					maintained by the "
260256					< a  href = { githubOrganizationUrl } > Typst Japanese Community</ a > " with
261257					permission from Typst GmbH. We recommend using this alongside the{ " " } 
0 commit comments