Internationalization |
あなたのユーザーが英語以外を話す場合、ローカライズUIを使用することを推奨します。ローカライズを手助けするために、翻訳センターに用語集のページを用意しました。:
How do I translate Twitter terminology into other languages?If your audience speaks a language other than English, we recommend you use a localized UI. To help you do this, we’ve created glossary pages on our translation center: |
ウィジットでは、Twitterウェブサイトとクライアントでサポートされている28の言語が使用できます。
言語はウィジットが埋め込まれているページから自動的に判別されます: つまり、埋め込まれたコードのエレメントやその親エレメントで定義されたHTML のlang
属性によってウィジットの言語が決定されます。Ideally, you should mark-up the language of your page on the <HTML>
element of your page, or the containing section where the language changes like so:
<html lang="fi"> ... </html>もしくは、多言語ページの場合:
<html lang="fi"> ... <section lang="fi"> ... </section> ... </html>
同じ属性を使用して、ウィジットの言語を個別に上書きすることができます:
<a class="twitter-tweet-button" href="https://twitter.com/share" lang="de" xml:lang="de">Tweet</a>
現在ウィジットでサポートしている言語は以下です: hi
, zh-cn
, fr
, zh-tw
, msa
, fil
, fi
, sv
, pl
, ja
, ko
, de
, it
, pt
, es
, ru
, id
, tr
, da
, no
, nl
, hu
, fa
, ar
, ur
, he
, th
.
サポートされていない言語が指定された場合、ウィジットは一致する親言語で描写されます。:例えば、 es-mx
は es
として描写されます。
ページの言語コードに合致する翻訳がない場合、 US 英語が既定で使用されます。
言語の設定はウィジットの言語にのみ影響を与え、ツイートの内容までは翻訳されないので注意してください。 ツイート文は元々記述された言語で表示されます。
翻訳センターを通じて、Twitter やウェブウィジット用Twitter の翻訳活動に参加することができます。
Which languages are supported by embedded widgets?Widgets are available in 28 of the languages supported by Twitter’s website and clients. The language is determined automatically from the page a widget is embedded upon: That is, an HTML
<html lang="fi"> ... </html>Or, on multilingual pages: <html lang="fi"> ... <section lang="fi"> ... </section> ... </html> You can override the language of individual widgets using the same attribute: <a class="twitter-tweet-button" href="https://twitter.com/share" lang="de" xml:lang="de">Tweet</a> The languages presently supported by the widgets are: If an unsupported language variant is specified that isn’t supported, the widget will be rendered in the matching parent language: For example Note that setting the language only affects the language of the widget, it does not translate the content of Tweets. Tweet text is always presented as originally authored. You can help translate Twitter and Twitter for Websites widgets through the Translation Center. |