|
|
|
@ -2002,7 +2002,7 @@ struct R: Rswift.Validatable {
@@ -2002,7 +2002,7 @@ struct R: Rswift.Validatable {
|
|
|
|
|
fileprivate init() {} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// This `R.string.localizable` struct is generated, and contains static references to 244 localization keys. |
|
|
|
|
/// This `R.string.localizable` struct is generated, and contains static references to 246 localization keys. |
|
|
|
|
struct localizable { |
|
|
|
|
/// en translation: Synchronizing Succeed |
|
|
|
|
/// |
|
|
|
@ -2232,6 +2232,10 @@ struct R: Rswift.Validatable {
@@ -2232,6 +2232,10 @@ struct R: Rswift.Validatable {
|
|
|
|
|
/// |
|
|
|
|
/// Locales: en, zh-Hans, nl, ru, fr, de, pt-PT, es, tr, pl, ar, ms, th, ja, ko, zh-HK, zh-Hant |
|
|
|
|
static let 找设备 = Rswift.StringResource(key: "找设备", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "zh-Hans", "nl", "ru", "fr", "de", "pt-PT", "es", "tr", "pl", "ar", "ms", "th", "ja", "ko", "zh-HK", "zh-Hant"], comment: nil) |
|
|
|
|
/// en translation: Find phone command |
|
|
|
|
/// |
|
|
|
|
/// Locales: en, zh-Hans, nl, ru, zh-HK, zh-Hant |
|
|
|
|
static let 寻找手机指令 = Rswift.StringResource(key: "寻找手机指令", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "zh-Hans", "nl", "ru", "zh-HK", "zh-Hant"], comment: nil) |
|
|
|
|
/// en translation: Firmware Upgrade |
|
|
|
|
/// |
|
|
|
|
/// Locales: en, zh-Hans, nl, ru, fr, de, pt-PT, es, tr, pl, ar, ms, th, ja, ko, zh-HK, zh-Hant |
|
|
|
@ -2844,6 +2848,10 @@ struct R: Rswift.Validatable {
@@ -2844,6 +2848,10 @@ struct R: Rswift.Validatable {
|
|
|
|
|
/// |
|
|
|
|
/// Locales: en, zh-Hans, nl, ru, fr, de, pt-PT, es, tr, pl, ar, ms, th, ja, ko, zh-HK, zh-Hant |
|
|
|
|
static let 日 = Rswift.StringResource(key: "日", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en", "zh-Hans", "nl", "ru", "fr", "de", "pt-PT", "es", "tr", "pl", "ar", "ms", "th", "ja", "ko", "zh-HK", "zh-Hant"], comment: nil) |
|
|
|
|
/// en translation: disclaimer |
|
|
|
|
/// |
|
|
|
|
/// Locales: en |
|
|
|
|
static let 免责声明 = Rswift.StringResource(key: "免责声明", tableName: "Localizable", bundle: R.hostingBundle, locales: ["en"], comment: nil) |
|
|
|
|
/// en translation: distance |
|
|
|
|
/// |
|
|
|
|
/// Locales: en, zh-Hans, nl, ru, fr, de, pt-PT, es, tr, pl, ar, ms, th, ja, ko, zh-HK, zh-Hant |
|
|
|
@ -3836,6 +3844,21 @@ struct R: Rswift.Validatable {
@@ -3836,6 +3844,21 @@ struct R: Rswift.Validatable {
|
|
|
|
|
return NSLocalizedString("找设备", bundle: bundle, comment: "") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// en translation: Find phone command |
|
|
|
|
/// |
|
|
|
|
/// Locales: en, zh-Hans, nl, ru, zh-HK, zh-Hant |
|
|
|
|
static func 寻找手机指令(preferredLanguages: [String]? = nil) -> String { |
|
|
|
|
guard let preferredLanguages = preferredLanguages else { |
|
|
|
|
return NSLocalizedString("寻找手机指令", bundle: hostingBundle, comment: "") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else { |
|
|
|
|
return "寻找手机指令" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return NSLocalizedString("寻找手机指令", bundle: bundle, comment: "") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// en translation: Firmware Upgrade |
|
|
|
|
/// |
|
|
|
|
/// Locales: en, zh-Hans, nl, ru, fr, de, pt-PT, es, tr, pl, ar, ms, th, ja, ko, zh-HK, zh-Hant |
|
|
|
@ -6131,6 +6154,21 @@ struct R: Rswift.Validatable {
@@ -6131,6 +6154,21 @@ struct R: Rswift.Validatable {
|
|
|
|
|
return NSLocalizedString("日", bundle: bundle, comment: "") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// en translation: disclaimer |
|
|
|
|
/// |
|
|
|
|
/// Locales: en |
|
|
|
|
static func 免责声明(preferredLanguages: [String]? = nil) -> String { |
|
|
|
|
guard let preferredLanguages = preferredLanguages else { |
|
|
|
|
return NSLocalizedString("免责声明", bundle: hostingBundle, comment: "") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
guard let (_, bundle) = localeBundle(tableName: "Localizable", preferredLanguages: preferredLanguages) else { |
|
|
|
|
return "免责声明" |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return NSLocalizedString("免责声明", bundle: bundle, comment: "") |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/// en translation: distance |
|
|
|
|
/// |
|
|
|
|
/// Locales: en, zh-Hans, nl, ru, fr, de, pt-PT, es, tr, pl, ar, ms, th, ja, ko, zh-HK, zh-Hant |
|
|
|
|