Struct apple_bundle::info_plist::bundle_configuration::Localization[][src]

pub struct Localization {
    pub bundle_development_region: Option<String>,
    pub bundle_localizations: Option<Vec<BundleLocalizations>>,
    pub bundle_allow_mixed_localizations: Option<bool>,
    pub caps_lock_language_switch_capable: Option<bool>,
}
Expand description

Localization

Fields

bundle_development_region: Option<String>

The default language and region for the bundle, as a language ID.

The system uses this key as the language if it can’t locate a resource for the user’s preferred language. The value should be a language ID that identifies a language, dialect, or script.

To distinguish between different languages and regional dialects, use a language designator with a region designator and a script designator separated by hyphens. To specify the English language as it’s used in the United Kingdom, use en-GB, where GB is the region designator. To represent Mandarin Chinese, spoken in Taiwan, and written in Traditional Chinese script, use zh-Hant-TW.

To specify a script, combine a language designator with a script designator separated by a hyphen, as in az-Arab for Azerbaijani in the Arabic script.

Availability

  • iOS 2.0+
  • macOS 10.0+
  • tvOS 9.0+
  • watchOS 2.0+

Framework

Core Foundation

bundle_localizations: Option<Vec<BundleLocalizations>>

The localizations handled manually by your app.

Availability

  • iOS 2.0+
  • macOS 10.0+
  • tvOS 9.0+
  • watchOS 2.0+

Framework

Core Foundation

bundle_allow_mixed_localizations: Option<bool>

A Boolean value that indicates whether the bundle supports the retrieval of localized strings from frameworks.

Availability

  • iOS 2.0+
  • macOS 10.0+
  • tvOS 9.0+
  • watchOS 2.0+

Framework

Core Foundation

caps_lock_language_switch_capable: Option<bool>

A Boolean value that enables the Caps Lock key to switch between Latin and non-Latin input sources.

Latin input sources, such as ABC, U.S., and Vietnamese, output characters in Latin script. Non-Latin input sources, such as Bulgarian (Cyrillic script), Hindi (Devanagari script), and Urdu (Arabic script), output characters in scripts other than Latin.

After implementing the key, users can enable or disable this functionality by modifying the “Use Caps Lock to switch to and from” preference, which can be found in System Preferences > Keyboard > Input Sources.

Availability

  • macOS 10.15+

Framework

  • AppKit

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.