Kerbal Space Program Wiki:Translation/ja

From Kerbal Space Program Wiki
Jump to: navigation, search

Kerbal Space Program Wiki は英語圏の人々だけでなく、他の言語の方々にも有益なリソースでありたいと考えています。 そこで、翻訳者が望みの言語にページを翻訳できる様にすべく、たくさんの異なる手段を加えました

言語サブページ

KSP wiki は Valve の TF2 公式 wiki 方式の言語サブページをサポートしています。どういう事かというと、翻訳したい言語があれば、そのページ名の末尾に /xx をつけて中身をコピーするだけということです(xx は二文字の言語コードで、ロシア語なら ru、日本語なら ja となります)。 例えば、日本語の Main Page は Main Page/ja です。 英語のサブページは、それがこの wiki のデフォルトの言語であるため接尾辞を持ちません。

もしあなたが翻訳を始めようとしており、その言語がここで見つからなければ、N3X15 (talk) にバグだと知らせれば、彼がその言語をサイドバーに加えます。
言語 ページ名の例 ページ名の接尾辞
English Main Page
Czech (čeština) Main Page/cs cs
Danish (dansk) Main Page/da da
German (Deutsch) Main Page/de de
Spanish (español) Main Page/es es
Finish (suomi) Main Page/fi fi
French (français) Main Page/fr fr
Hebrew (עברית) Main Page/he he
Croatian (hrvatski) Main Page/hr hr
Hungarian (magyar) Main Page/hu hu
Italian (italiano) Main Page/it it
Korean (한국어) Main Page/ko ko
Dutch (Nederlands) Main Page/nl nl
Norwegian (norsk bokmål) Main Page/no no
Polish (polski) Main Page/pl pl
Portuguese (português) Main Page/pt pt
Russian (русский) Main Page/ru ru
Swedish (svenska) Main Page/sv sv
Thai (ไทย) Main Page/th th
Turkish (Türkçe) Main Page/tr tr
Chinese (中文(中国大陆)‎) Main Page/zh-cn zh-cn
Chinese, Taiwan (中文(台灣)‎) Main Page/zh-tw zh-tw
Japanese (日本語) Main Page/ja ja

一度そのページが作られたら、他の言語ページもサイドバーの言語ツールボックスを介してリンクを作成します。 幾つかの名前空間では、念のため一切の言語が表示されない事に留意してください。 必ず英語のページ名を元にした(用語集用語集/ja ではなく Terminology/ja という様な)名前を使ってください。 正しい記事へリダイレクトされてしまう様な非英語ページ名は作らないで下さい。特にそのページへのリンクは貼らないで下さい(テストや文書化を目的としたものは別として)。 このトピックが議論されるまで、名前付けだけがページの問題であっても、現在のページは削除されません。

分類

すべての翻訳ページは、それらが翻訳されたカテゴリに分類されるべきです。KerbinCategory:Planets にあるべきで、Kerbin/jaCategory:Planets/ja にあるべきです。

テンプレート

複数言語をサポートしたテンプレートもあり、そのテンプレートコードは他の言語用に重複させる必要はありません。 以下の3つの選択肢があります:

  1. 翻訳され得るテキストが、別のパラメタを持つ
  2. 別の言語に翻訳されるテキストに {{lang}} を使う 
  3. dictionary template を使い、テキストを翻訳する

例えば {{Main Page Layout}} テンプレートは最初のオプションに {{Infobox/Part}} を使い、そのサブテンプレートは二番目、三番目のオプションの組み合わせを使います。 通常は最初のオプションに組み合わせを利用しません。

The {{Main Page Layout}} template for example uses the first option while {{Infobox/Part}} and their subtemplates uses a combination of the second and third option. Usually there is no combination with the first option.

パラメタを介した翻訳

この戦術は分かりやすいものの欠点があり、変数等の他のパラメタが簡単に再利用できません。ですから、このサイトが静的で有れば、このシステムは上手く動作します。 This strategy is easy to understand but has the drawback, that other parameters like values can't be easily reused. So if the site is static this system works fine.

この方法で記事を翻訳するには、接尾辞に(例えば Main Page/de)言語コードを付けて新しい記事を作成しなければなりません。この新規記事は汎用テンプレートを利用し(Main Page/deだと{{Main Page Layout}}です)、各パラメタに翻訳テキストを追加します。 To translate an article using this method a new created article with the language code as a suffix (e.g. Main Page/de) must be created. This new article uses the generic template (for Main Page/de would be {{Main Page Layout}}) and adds for each parameter the translation the text.

{{lang}} を介した翻訳

他にもテンプレート {{lang}} を使ってページを翻訳する方法があります。これは他の言語への翻訳を固定します。新たに翻訳を追加するには、言語コードの付いた新たなパラメタを下のように追加するだけです: Another way to translate a page, is by using the template {{lang}}. This holds the translation for a text into other languages. To add a new translation simply add a new parameter with the language code and translation like:

Before adding After adding
{{lang
|en=[[w:Mass|Mass]]
|nl=[[w:nl:Massa|Massa]]
|fr=[[w:fr:Masse|Masse]]
|pl=[[w:pl:Masa_(fizyka)|Masa]]
|ru=[[w:ru:Масса|Масса]]
|de=[[w:de:Masse (Physik)|Masse]]
}}
{{lang
|en=[[w:Mass|Mass]]
|nl=[[w:nl:Massa|Massa]]
|fr=[[w:fr:Masse|Masse]]
|pl=[[w:pl:Masa_(fizyka)|Masa]]
|ru=[[w:ru:Масса|Масса]]
|de=[[w:de:Masse (Physik)|Masse]]
|tlh=ngI'
}}

このテンプレートは英語をデフォルト値に使っており、言語が翻訳されなかったときにそれが使われます。より進んだ仕組みでは、辞書テンプレートを使います。

This template uses the default value and at last the English value if there is no translation for the given language. The more advanced system uses dictionary templates.

辞書テンプレートを介した翻訳

辞書テンプレートでは翻訳の再利用が出来るようになります。 新たな言語を加えるには、あるテンプレートだけを編集するようにしなければなりません。

A dictionary template allows a template to reuse a translation. To add a new language only one template has to be edited. All dictionary templates should be sorted in the Category:Dictionary Templates and named <name of template>/Dict. As these templates usually use also {{lang}} adding a language works exactly the same, but instead directly in the template the new translation is added in the dictionary template. Using a dictionary template depends actually depends on how they work, but it should normally be {{<name of template>/Dict|<word to translate>}}.

Using an automatically translating template

If the template automatically translates and the values are language independent like for the {{Infobox/Body}} template it is possible to do some simplifications and the values needs to be set only once but use them in all translations. This is usually done by creating a subpage which only uses the template which all other pages then include. All parts use {{Infobox/Part}} in their <name of part>/Box (e.g. LV-1R Liquid Fuel Engine/Box) page and then add this page into the different translations with {{:<name of part>/Box}} (e.g. LV-1R Liquid Fuel Engine or LV-1R Liquid Fuel Engine/pl).

Linking

To link a page usually [[target page|link text]] is used and target page can be omitted if link text is the target page (e.g. [[Main Page]] produces the same link as [[Main Page|Main Page]]) but this function won't work in translated articles as the target page has the language code. For example [[Main Page/de]] would produce Main Page/de while [[Main Page/de|Main Page]] won't show the language code: Main Page.

There are three templates available which make automatic linking easier:

  • {{if lang}} can be appended to the target page and allows automatically linking to the same language.
  • {{if lang link}} is similar to {{if lang}} but creates a complete link.
  • {{LangFallback}} creates a link to the same language and if the language isn't English also a link to the English page.

Searching

It is currently not possible to search only pages in a specific language. There is currently an index in development at User:BobBot/indexes where User:BobBot is from time to time iterating through all pages. Via the browser's search function it is then possible to search through that page.

It will use the {{DISPLAYTITLE:}} magic word and falls back to the page title without a language code if it is not set. In the future it will be possible to have multiple different names set (like redirects). Unfortunately {{DISPLAYTITLE:}} is not activated so the new title does not appear on the article page.