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 the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]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 !=.
Auto Trait Implementations
impl RefUnwindSafe for Localizationimpl Send for Localizationimpl Sync for Localizationimpl Unpin for Localizationimpl UnwindSafe for LocalizationBlanket Implementations
Mutably borrows from an owned value. Read more