Instance Method インスタンスメソッド

localizedString(forLocaleIdentifier:)

Returns the localized string for the specified locale identifier. 指定されたロケール識別子に対するローカライズされた文字列を返します。

Declaration 宣言

func localizedString(forLocaleIdentifier localeIdentifier: String) -> String

Parameters パラメータ

localeIdentifier

The identifier for which you want the localized name. それに対してあなたがローカライズされた名前を望む識別子。

Return Value 戻り値

The localized name of the locale. そのロケールのローカライズされた名前。

Discussion 議論

For example, calling this method on an American English (en_US) locale, passing "fr_FR" for localeIdentifier, produces the string "French (France)". 例えば、このメソッドをアメリカ英語(en_US)ロケール上で、"fr_FR"localeIdentifierに渡して呼び出すことは、文字列"French (France)"を生成します。

This method is equivalent to calling the displayName(forKey:value:) method passing the identifier key and localeIdentifier value. このメソッドは、displayName(forKey:value:)メソッドをidentifierキーとlocaleIdentifier値を渡して呼び出すことに等しいです。

See Also 参照

Getting Display Information About a Locale あるロケールについての表示情報を取得する

Related Documentation 関連文書