From b82287b3e1eac725a024fd2daf65b1d44fa51e57 Mon Sep 17 00:00:00 2001 From: noodleofdeath Date: Fri, 13 Oct 2023 15:28:58 -0400 Subject: [PATCH] v1.16.4 --- src/mobile/ios/Extensions/Image.swift | 26 +-- .../ios/ReadLess.xcodeproj/project.pbxproj | 105 +++++++++- .../{ => Base.lproj}/LaunchScreen.storyboard | 0 .../ReadLess/Base.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/ar.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/ca.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/cs.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/da.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/de.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/el.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/en-AU.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/en-GB.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/en-IN.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/en.lproj/LaunchScreen.storyboard | 186 ++++++++++++++++++ .../ReadLess/en.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/es.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/fa.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/fi.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/fr-CA.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/fr.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/he.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/hi.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/hr.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/hu.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/id.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/it-IT.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/it.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/ja.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/ko.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/ms.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/nb.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/nl.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/pl.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/pt-BR.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/pt-PT.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/ro.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/ru.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/sk.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/sv.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/th.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/tr.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/uk.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/vi.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/zh-HK.lproj/LaunchScreen.strings | 63 ++++++ .../zh-Hans-CN.lproj/LaunchScreen.strings | 63 ++++++ .../zh-Hans.lproj/LaunchScreen.strings | 63 ++++++ .../zh-Hant-TW.lproj/LaunchScreen.strings | 63 ++++++ .../zh-Hant.lproj/LaunchScreen.strings | 63 ++++++ .../ReadLess/zh.lproj/LaunchScreen.strings | 63 ++++++ .../Views/ContentView.swift | 34 +++- src/mobile/ios/ReadLessWidget/Channel.swift | 2 +- .../ios/ReadLessWidget/ReadLessWidget.swift | 53 +++-- .../WidgetTopicConfiguration.swift | 2 +- src/mobile/ios/Services/APIClient.swift | 10 +- src/mobile/ios/Views/SummaryCard.swift | 11 +- 55 files changed, 3206 insertions(+), 58 deletions(-) rename src/mobile/ios/ReadLess/{ => Base.lproj}/LaunchScreen.storyboard (100%) create mode 100644 src/mobile/ios/ReadLess/Base.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/ar.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/ca.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/cs.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/da.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/de.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/el.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/en-AU.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/en-GB.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/en-IN.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/en.lproj/LaunchScreen.storyboard create mode 100644 src/mobile/ios/ReadLess/en.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/es.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/fa.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/fi.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/fr-CA.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/fr.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/he.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/hi.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/hr.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/hu.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/id.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/it-IT.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/it.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/ja.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/ko.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/ms.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/nb.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/nl.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/pl.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/pt-BR.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/pt-PT.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/ro.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/ru.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/sk.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/sv.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/th.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/tr.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/uk.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/vi.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/zh-HK.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/zh-Hans-CN.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/zh-Hans.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/zh-Hant-TW.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/zh-Hant.lproj/LaunchScreen.strings create mode 100644 src/mobile/ios/ReadLess/zh.lproj/LaunchScreen.strings diff --git a/src/mobile/ios/Extensions/Image.swift b/src/mobile/ios/Extensions/Image.swift index b45fd802f..aa36d572b 100644 --- a/src/mobile/ios/Extensions/Image.swift +++ b/src/mobile/ios/Extensions/Image.swift @@ -15,19 +15,6 @@ public extension Image { return Image(uiImage: uiImage) } - static func loadAsync(from string: String) async -> Image? { - guard let url = URL(string: string) else { return nil } - return await self.loadAsync(from: url) - } - - static func loadAsync(from url: URL?) async -> Image? { - guard let url = url else { return nil } - let request = URLRequest(url: url) - guard let (data, _) = try? await URLSession.shared.data(for: request) else { return nil } - guard let image = UIImage(data: data) else { return nil } - return Image(uiImage: image) - } - static func load(from string: String, completion: @escaping @Sendable (_ image: Image?) -> Void) { guard let imageUrl = URL(string: string) else { return } return self.load(from: imageUrl, completion: completion) @@ -45,4 +32,17 @@ public extension Image { }.resume() } + static func loadAsync(from string: String) async -> Image? { + guard let url = URL(string: string) else { return nil } + return await self.loadAsync(from: url) + } + + static func loadAsync(from url: URL?) async -> Image? { + guard let url = url else { return nil } + let request = URLRequest(url: url) + guard let (data, _) = try? await URLSession.shared.data(for: request) else { return nil } + guard let image = UIImage(data: data) else { return nil } + return Image(uiImage: image) + } + } diff --git a/src/mobile/ios/ReadLess.xcodeproj/project.pbxproj b/src/mobile/ios/ReadLess.xcodeproj/project.pbxproj index 48cea8a97..33183fffc 100644 --- a/src/mobile/ios/ReadLess.xcodeproj/project.pbxproj +++ b/src/mobile/ios/ReadLess.xcodeproj/project.pbxproj @@ -66,13 +66,13 @@ 7699B88040F8A987B510C191 /* libPods-ReadLess-ReadLessTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-ReadLess-ReadLessTests.a */; }; CD4BF5A52AD074F7006BDC35 /* WidgetTopicConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD4BF5A42AD074F7006BDC35 /* WidgetTopicConfiguration.swift */; }; CD4BF5A62AD0797C006BDC35 /* WidgetTopicConfiguration.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD4BF5A42AD074F7006BDC35 /* WidgetTopicConfiguration.swift */; }; + CD777A222AD9D16600804569 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CD777A242AD9D16600804569 /* LaunchScreen.storyboard */; }; CD78217A2A28FA2100F3B33A /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CD7821792A28FA2100F3B33A /* StoreKit.framework */; }; CD92BEB22AD093940096D6DA /* Intents.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = CDE160082ACC8CDB0036F0A4 /* Intents.intentdefinition */; }; CDA6AD302AD22FD900514CD1 /* Channel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDA6AD2F2AD22FD900514CD1 /* Channel.swift */; }; CDA6AD312AD22FD900514CD1 /* Channel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDA6AD2F2AD22FD900514CD1 /* Channel.swift */; }; CDE11B1F2A7701BE00C0BC39 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = CDE11B1E2A7701BE00C0BC39 /* GoogleService-Info.plist */; }; CDE11B212A786FF500C0BC39 /* PublicPublisherAttributes.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDE11B202A786FF500C0BC39 /* PublicPublisherAttributes.swift */; }; - CDE15EEA2ACB27A00036F0A4 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CDE15EEB2ACB27A00036F0A4 /* LaunchScreen.storyboard */; }; CDE15FB92ACB497E0036F0A4 /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0150ACA429F9577400875CF7 /* WidgetKit.framework */; }; CDE15FBA2ACB497E0036F0A4 /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0150ACA629F9577400875CF7 /* SwiftUI.framework */; }; CDE15FBD2ACB497E0036F0A4 /* ReadLessWidgetBundle.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDE15FBC2ACB497E0036F0A4 /* ReadLessWidgetBundle.swift */; }; @@ -287,6 +287,51 @@ 5DCACB8F33CDC322A6C60F78 /* libPods-ReadLess.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-ReadLess.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 89C6BE57DB24E9ADA2F236DE /* Pods-ReadLess-ReadLessTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ReadLess-ReadLessTests.release.xcconfig"; path = "Target Support Files/Pods-ReadLess-ReadLessTests/Pods-ReadLess-ReadLessTests.release.xcconfig"; sourceTree = ""; }; CD4BF5A42AD074F7006BDC35 /* WidgetTopicConfiguration.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = WidgetTopicConfiguration.swift; path = /Users/thom/git/noodleofdeath/readless/src/mobile/ios/ReadLessWidget/WidgetTopicConfiguration.swift; sourceTree = ""; }; + CD777A232AD9D16600804569 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + CD777A272AD9D18800804569 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A282AD9D18D00804569 /* ar */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ar; path = ar.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A292AD9D19000804569 /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A2A2AD9D19100804569 /* zh */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = zh; path = zh.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A2B2AD9D19400804569 /* zh-HK */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-HK"; path = "zh-HK.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A2C2AD9D19600804569 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A2D2AD9D19800804569 /* zh-Hans-CN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans-CN"; path = "zh-Hans-CN.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A2E2AD9D19A00804569 /* zh-Hant */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant"; path = "zh-Hant.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A2F2AD9D19C00804569 /* zh-Hant-TW */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hant-TW"; path = "zh-Hant-TW.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A302AD9D19E00804569 /* hr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hr; path = hr.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A312AD9D1A000804569 /* cs */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A322AD9D1A200804569 /* da */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = da; path = da.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A332AD9D1A400804569 /* nl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nl; path = nl.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A342AD9D1A500804569 /* en-AU */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-AU"; path = "en-AU.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A352AD9D1A700804569 /* en-IN */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-IN"; path = "en-IN.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A362AD9D1A900804569 /* en-GB */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "en-GB"; path = "en-GB.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A372AD9D1AB00804569 /* fi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fi; path = fi.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A382AD9D1AE00804569 /* fr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fr; path = fr.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A392AD9D1AF00804569 /* fr-CA */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "fr-CA"; path = "fr-CA.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A3A2AD9D1B100804569 /* de */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = de; path = de.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A3B2AD9D1B300804569 /* el */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = el; path = el.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A3C2AD9D1B500804569 /* he */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = he; path = he.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A3D2AD9D1B700804569 /* hi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hi; path = hi.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A3E2AD9D1B900804569 /* hu */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = hu; path = hu.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A3F2AD9D1BB00804569 /* id */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = id; path = id.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A402AD9D1BD00804569 /* it */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = it; path = it.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A412AD9D1BF00804569 /* it-IT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "it-IT"; path = "it-IT.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A422AD9D1C100804569 /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A432AD9D1C300804569 /* ko */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ko; path = ko.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A442AD9D1C500804569 /* ms */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ms; path = ms.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A452AD9D1C700804569 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A462AD9D1CB00804569 /* fa */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = fa; path = fa.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A472AD9D1CD00804569 /* pl */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = pl; path = pl.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A482AD9D1CF00804569 /* pt-BR */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-BR"; path = "pt-BR.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A4A2AD9D1D100804569 /* pt-PT */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "pt-PT"; path = "pt-PT.lproj/LaunchScreen.strings"; sourceTree = ""; }; + CD777A4B2AD9D1D300804569 /* ro */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ro; path = ro.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A4C2AD9D1D500804569 /* ru */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ru; path = ru.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A4D2AD9D1D700804569 /* sk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A4E2AD9D1DA00804569 /* es */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = es; path = es.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A4F2AD9D1DC00804569 /* sv */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = sv; path = sv.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A502AD9D1DE00804569 /* th */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = th; path = th.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A512AD9D1E000804569 /* tr */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = tr; path = tr.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A522AD9D1E100804569 /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/LaunchScreen.strings; sourceTree = ""; }; + CD777A532AD9D1E300804569 /* vi */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = vi; path = vi.lproj/LaunchScreen.strings; sourceTree = ""; }; CD7821792A28FA2100F3B33A /* StoreKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = StoreKit.framework; path = System/Library/Frameworks/StoreKit.framework; sourceTree = SDKROOT; }; CD84722A2ACB266C00683959 /* Base */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Base; path = Base.lproj/Info.plist; sourceTree = ""; }; CD84722C2ACB268E00683959 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = en; path = en.lproj/Info.plist; sourceTree = ""; }; @@ -336,7 +381,6 @@ CDA6AD2F2AD22FD900514CD1 /* Channel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Channel.swift; sourceTree = ""; }; CDE11B1E2A7701BE00C0BC39 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; CDE11B202A786FF500C0BC39 /* PublicPublisherAttributes.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PublicPublisherAttributes.swift; sourceTree = ""; }; - CDE15EEB2ACB27A00036F0A4 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = ReadLess/LaunchScreen.storyboard; sourceTree = ""; }; CDE15FB82ACB497E0036F0A4 /* ReadLessWidgetExtension.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = ReadLessWidgetExtension.appex; sourceTree = BUILT_PRODUCTS_DIR; }; CDE15FBC2ACB497E0036F0A4 /* ReadLessWidgetBundle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReadLessWidgetBundle.swift; sourceTree = ""; }; CDE15FC02ACB497E0036F0A4 /* ReadLessWidget.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReadLessWidget.swift; sourceTree = ""; }; @@ -565,7 +609,7 @@ 13B07FB71A68108700A75B9A /* main.m */, CD84722B2ACB266C00683959 /* Info.plist */, 13B07FB51A68108700A75B9A /* Images.xcassets */, - CDE15EEB2ACB27A00036F0A4 /* LaunchScreen.storyboard */, + CD777A242AD9D16600804569 /* LaunchScreen.storyboard */, ); name = ReadLess; sourceTree = ""; @@ -995,7 +1039,7 @@ CDE9EB502A48A3770057217B /* Faustina-Italic.ttf in Resources */, 0125BD3D29D791ED00EAC61C /* Feather.ttf in Resources */, CDE9EB642A48A3770057217B /* Newsreader72pt-Italic.ttf in Resources */, - CDE15EEA2ACB27A00036F0A4 /* LaunchScreen.storyboard in Resources */, + CD777A222AD9D16600804569 /* LaunchScreen.storyboard in Resources */, CDE9EB522A48A3770057217B /* AnekLatin-Regular.ttf in Resources */, CDE9EB662A48A3770057217B /* Faustina-Bold.ttf in Resources */, 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, @@ -1368,6 +1412,59 @@ /* End PBXTargetDependency section */ /* Begin PBXVariantGroup section */ + CD777A242AD9D16600804569 /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + CD777A232AD9D16600804569 /* Base */, + CD777A272AD9D18800804569 /* en */, + CD777A282AD9D18D00804569 /* ar */, + CD777A292AD9D19000804569 /* ca */, + CD777A2A2AD9D19100804569 /* zh */, + CD777A2B2AD9D19400804569 /* zh-HK */, + CD777A2C2AD9D19600804569 /* zh-Hans */, + CD777A2D2AD9D19800804569 /* zh-Hans-CN */, + CD777A2E2AD9D19A00804569 /* zh-Hant */, + CD777A2F2AD9D19C00804569 /* zh-Hant-TW */, + CD777A302AD9D19E00804569 /* hr */, + CD777A312AD9D1A000804569 /* cs */, + CD777A322AD9D1A200804569 /* da */, + CD777A332AD9D1A400804569 /* nl */, + CD777A342AD9D1A500804569 /* en-AU */, + CD777A352AD9D1A700804569 /* en-IN */, + CD777A362AD9D1A900804569 /* en-GB */, + CD777A372AD9D1AB00804569 /* fi */, + CD777A382AD9D1AE00804569 /* fr */, + CD777A392AD9D1AF00804569 /* fr-CA */, + CD777A3A2AD9D1B100804569 /* de */, + CD777A3B2AD9D1B300804569 /* el */, + CD777A3C2AD9D1B500804569 /* he */, + CD777A3D2AD9D1B700804569 /* hi */, + CD777A3E2AD9D1B900804569 /* hu */, + CD777A3F2AD9D1BB00804569 /* id */, + CD777A402AD9D1BD00804569 /* it */, + CD777A412AD9D1BF00804569 /* it-IT */, + CD777A422AD9D1C100804569 /* ja */, + CD777A432AD9D1C300804569 /* ko */, + CD777A442AD9D1C500804569 /* ms */, + CD777A452AD9D1C700804569 /* nb */, + CD777A462AD9D1CB00804569 /* fa */, + CD777A472AD9D1CD00804569 /* pl */, + CD777A482AD9D1CF00804569 /* pt-BR */, + CD777A4A2AD9D1D100804569 /* pt-PT */, + CD777A4B2AD9D1D300804569 /* ro */, + CD777A4C2AD9D1D500804569 /* ru */, + CD777A4D2AD9D1D700804569 /* sk */, + CD777A4E2AD9D1DA00804569 /* es */, + CD777A4F2AD9D1DC00804569 /* sv */, + CD777A502AD9D1DE00804569 /* th */, + CD777A512AD9D1E000804569 /* tr */, + CD777A522AD9D1E100804569 /* uk */, + CD777A532AD9D1E300804569 /* vi */, + ); + name = LaunchScreen.storyboard; + path = ReadLess; + sourceTree = ""; + }; CD84722B2ACB266C00683959 /* Info.plist */ = { isa = PBXVariantGroup; children = ( diff --git a/src/mobile/ios/ReadLess/LaunchScreen.storyboard b/src/mobile/ios/ReadLess/Base.lproj/LaunchScreen.storyboard similarity index 100% rename from src/mobile/ios/ReadLess/LaunchScreen.storyboard rename to src/mobile/ios/ReadLess/Base.lproj/LaunchScreen.storyboard diff --git a/src/mobile/ios/ReadLess/Base.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/Base.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/Base.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/ar.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/ar.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/ar.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/ca.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/ca.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/ca.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/cs.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/cs.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/cs.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/da.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/da.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/da.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/de.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/de.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/de.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/el.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/el.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/el.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/en-AU.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/en-AU.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/en-AU.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/en-GB.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/en-GB.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/en-GB.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/en-IN.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/en-IN.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/en-IN.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/en.lproj/LaunchScreen.storyboard b/src/mobile/ios/ReadLess/en.lproj/LaunchScreen.storyboard new file mode 100644 index 000000000..3deda00c8 --- /dev/null +++ b/src/mobile/ios/ReadLess/en.lproj/LaunchScreen.storyboard @@ -0,0 +1,186 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mobile/ios/ReadLess/en.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/en.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/en.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/es.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/es.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/es.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/fa.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/fa.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/fa.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/fi.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/fi.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/fi.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/fr-CA.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/fr-CA.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/fr-CA.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/fr.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/fr.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/fr.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/he.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/he.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/he.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/hi.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/hi.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/hi.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/hr.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/hr.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/hr.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/hu.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/hu.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/hu.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/id.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/id.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/id.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/it-IT.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/it-IT.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/it-IT.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/it.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/it.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/it.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/ja.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/ja.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/ja.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/ko.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/ko.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/ko.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/ms.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/ms.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/ms.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/nb.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/nb.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/nb.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/nl.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/nl.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/nl.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/pl.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/pl.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/pl.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/pt-BR.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/pt-BR.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/pt-BR.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/pt-PT.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/pt-PT.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/pt-PT.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/ro.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/ro.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/ro.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/ru.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/ru.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/ru.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/sk.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/sk.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/sk.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/sv.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/sv.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/sv.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/th.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/th.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/th.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/tr.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/tr.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/tr.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/uk.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/uk.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/uk.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/vi.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/vi.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/vi.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/zh-HK.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/zh-HK.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/zh-HK.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/zh-Hans-CN.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/zh-Hans-CN.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/zh-Hans-CN.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/zh-Hans.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/zh-Hans.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/zh-Hans.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/zh-Hant-TW.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/zh-Hant-TW.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/zh-Hant-TW.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/zh-Hant.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/zh-Hant.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/zh-Hant.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLess/zh.lproj/LaunchScreen.strings b/src/mobile/ios/ReadLess/zh.lproj/LaunchScreen.strings new file mode 100644 index 000000000..1621e596e --- /dev/null +++ b/src/mobile/ios/ReadLess/zh.lproj/LaunchScreen.strings @@ -0,0 +1,63 @@ + +/* Class = "UILabel"; text = "อ่านน้อยลง"; ObjectID = "1II-Wa-hal"; */ +"1II-Wa-hal.text" = "อ่านน้อยลง"; + +/* Class = "UILabel"; text = "Đọc ít hơn"; ObjectID = "8Fa-oG-OKv"; */ +"8Fa-oG-OKv.text" = "Đọc ít hơn"; + +/* Class = "UILabel"; text = "Citește mai puțin"; ObjectID = "AKO-5U-C9r"; */ +"AKO-5U-C9r.text" = "Citește mai puțin"; + +/* Class = "UILabel"; text = "Čtěte méně"; ObjectID = "CVh-yK-cjc"; */ +"CVh-yK-cjc.text" = "Čtěte méně"; + +/* Class = "UILabel"; text = "Leggi Meno"; ObjectID = "Fw3-Fv-rXT"; */ +"Fw3-Fv-rXT.text" = "Leggi Meno"; + +/* Class = "UILabel"; text = "読む量を減らす"; ObjectID = "Kui-vU-KrR"; */ +"Kui-vU-KrR.text" = "読む量を減らす"; + +/* Class = "UILabel"; text = "Kevesebbet Olvas"; ObjectID = "LMe-Kk-LZW"; */ +"LMe-Kk-LZW.text" = "Kevesebbet Olvas"; + +/* Class = "UILabel"; text = "Daha az oku"; ObjectID = "MXq-x0-mwR"; */ +"MXq-x0-mwR.text" = "Daha az oku"; + +/* Class = "UILabel"; text = "Читати менше"; ObjectID = "Pgz-ED-CIG"; */ +"Pgz-ED-CIG.text" = "Читати менше"; + +/* Class = "UILabel"; text = "اقرأ أقل"; ObjectID = "Qf0-Cq-4e1"; */ +"Qf0-Cq-4e1.text" = "اقرأ أقل"; + +/* Class = "UILabel"; text = "Lire Moins"; ObjectID = "YiX-9d-tjM"; */ +"YiX-9d-tjM.text" = "Lire Moins"; + +/* Class = "UILabel"; text = "Les Mindre"; ObjectID = "eGn-eC-Jo0"; */ +"eGn-eC-Jo0.text" = "Les Mindre"; + +/* Class = "UILabel"; text = "減少閱讀"; ObjectID = "g2A-pk-cKN"; */ +"g2A-pk-cKN.text" = "減少閱讀"; + +/* Class = "UILabel"; text = "Weniger Lesen"; ObjectID = "qro-p7-H75"; */ +"qro-p7-H75.text" = "Weniger Lesen"; + +/* Class = "UILabel"; text = "Kevesebbet olvas"; ObjectID = "reU-GO-RhW"; */ +"reU-GO-RhW.text" = "Kevesebbet olvas"; + +/* Class = "UILabel"; text = "더 적게 읽기"; ObjectID = "sHs-ve-zrk"; */ +"sHs-ve-zrk.text" = "더 적게 읽기"; + +/* Class = "UILabel"; text = "کمتر بخوانید\""; ObjectID = "so3-yG-47n"; */ +"so3-yG-47n.text" = "کمتر بخوانید\""; + +/* Class = "UILabel"; text = "Leer Menos"; ObjectID = "vHM-aC-Ez1"; */ +"vHM-aC-Ez1.text" = "Leer Menos"; + +/* Class = "UILabel"; text = "Baca lebih sedikit"; ObjectID = "xld-Ny-7ik"; */ +"xld-Ny-7ik.text" = "Baca lebih sedikit"; + +/* Class = "UILabel"; text = "Ler Menos"; ObjectID = "zHX-jO-m4R"; */ +"zHX-jO-m4R.text" = "Ler Menos"; + +/* Class = "UILabel"; text = "Читать меньше"; ObjectID = "zlW-uZ-csn"; */ +"zlW-uZ-csn.text" = "Читать меньше"; diff --git a/src/mobile/ios/ReadLessWatch Watch App/Views/ContentView.swift b/src/mobile/ios/ReadLessWatch Watch App/Views/ContentView.swift index ca0ef3cff..73847af68 100644 --- a/src/mobile/ios/ReadLessWatch Watch App/Views/ContentView.swift +++ b/src/mobile/ios/ReadLessWatch Watch App/Views/ContentView.swift @@ -11,6 +11,7 @@ struct ContentView: View { @Environment(\.colorScheme) private var colorScheme @ObservedObject private var service = APIClient() + @State var summaries: [Summary] = [] @State var selectedSummary: PublicSummaryAttributes? var background: Color { @@ -28,18 +29,26 @@ struct ContentView: View { if let error = self.service.error { Text("Error loading") Text(error) - Button("Reload", action: self.service.fetchSync) + Button("Reload", action: self.fetchSummaries) } else { - List(self.service.summaries, id: \.id) { summary in - NavigationLink( - destination: ScrollView { SummaryCard(summary: summary, style: .small, expanded: true) - }.navigationTitle(summary.translations?["title"] ?? summary.title) , - tag: summary.root, - selection: $selectedSummary) { - SummaryCard(summary: summary, style: .small) + List(self.summaries.enumerated().map({ $0 }), id: \.element.id) { index, summary in + VStack { + if index == 0 { + Button("Reload", action: self.fetchSummaries) } + NavigationLink( + destination: ScrollView { SummaryCard(summary: summary, + style: .small, + expanded: true) + }.navigationTitle(summary.translations?["title"] ?? summary.title) , + tag: summary.root, + selection: $selectedSummary) { + SummaryCard(summary: summary, + style: .small) + } + } }.refreshable { - self.service.fetchSync() + self.fetchSummaries() } } } @@ -47,8 +56,13 @@ struct ContentView: View { ) } .navigationViewStyle(.stack) - .onAppear(perform: self.service.fetchSync) + .onAppear(perform: self.fetchSummaries) } + + func fetchSummaries() { + self.service.fetchSync { self.summaries = $0 } + } + } struct ContentView_Previews: PreviewProvider { diff --git a/src/mobile/ios/ReadLessWidget/Channel.swift b/src/mobile/ios/ReadLessWidget/Channel.swift index 9a94f984d..7cbff97e0 100644 --- a/src/mobile/ios/ReadLessWidget/Channel.swift +++ b/src/mobile/ios/ReadLessWidget/Channel.swift @@ -14,7 +14,7 @@ enum Channel: String, AppEnum { case liveFeed case customTopic - static var typeDisplayRepresentation = TypeDisplayRepresentation(name: "Feed Type") + static var typeDisplayRepresentation = TypeDisplayRepresentation(name: "Channel") static var caseDisplayRepresentations: [Self: DisplayRepresentation] = [ .topStories: "Top Stories", .liveFeed: "Live Feed", diff --git a/src/mobile/ios/ReadLessWidget/ReadLessWidget.swift b/src/mobile/ios/ReadLessWidget/ReadLessWidget.swift index 2abd97fe4..5beeb9203 100644 --- a/src/mobile/ios/ReadLessWidget/ReadLessWidget.swift +++ b/src/mobile/ios/ReadLessWidget/ReadLessWidget.swift @@ -10,6 +10,14 @@ import AppIntents import Intents import SwiftUI +let SUPPORTED_FAMILIES: [WidgetFamily] = [ + .systemMedium, + .systemLarge, + .accessoryCircular, + .accessoryRectangular, + .accessoryInline +] + let DEFAULT_TIMELINE_INTERVAL: Double = 10 struct DEEPLINKS { @@ -81,17 +89,20 @@ struct Provider: IntentTimelineProvider { func placeholder(in context: Context) -> SummaryEntry { return SummaryEntry(context: context, - config: CustomWidgetConfiguration(topic: "Technology"), + config: CustomWidgetConfiguration(channel: .customTopic, + topic: "Technology"), summaries: WidgetPlaceholders[context.family] ?? []) } func getSnapshot(for configuration: IWidgetTopicConfigurationIntent, in context: Context, completion: @escaping (SummaryEntry) -> ()) { + let updateInterval = Measurement(value: configuration.updateInterval?.doubleValue ?? DEFAULT_TIMELINE_INTERVAL, + unit: .minutes) let entry = SummaryEntry(context: context, - config: CustomWidgetConfiguration(topic: configuration.topic, - updateInterval: Measurement(value: configuration.updateInterval?.doubleValue ?? DEFAULT_TIMELINE_INTERVAL, - unit: .minutes))) + config: CustomWidgetConfiguration(channel: .customTopic, + topic: configuration.topic, + updateInterval: updateInterval)) completion(entry) } @@ -99,10 +110,12 @@ struct Provider: IntentTimelineProvider { in context: Context, completion: @escaping (Timeline) -> Void) { Task { - let config = CustomWidgetConfiguration(channel: Channel.allCases[configuration.channel.rawValue], + let channel = Channel.allCases[configuration.channel.rawValue] + let updateInterval = Measurement(value: configuration.updateInterval?.doubleValue ?? DEFAULT_TIMELINE_INTERVAL, + unit: .minutes) + let config = CustomWidgetConfiguration(channel: channel, topic: configuration.topic, - updateInterval: Measurement(value: configuration.updateInterval?.doubleValue ?? DEFAULT_TIMELINE_INTERVAL, - unit: .minutes)) + updateInterval: updateInterval) let entries = await buildEntries(in: context, for: config) let timeline = Timeline(entries: entries, policy: .atEnd) completion(timeline) @@ -182,7 +195,7 @@ struct ReadLessWidgetEntryView : View { @Environment(\.colorScheme) private var colorScheme var entry: Provider.Entry - + let iconSize = 20.0 var deeplink: URL { @@ -201,13 +214,13 @@ struct ReadLessWidgetEntryView : View { var body: some View { VStack(spacing: 8.0) { HStack { - Text(entry.config?.channel == .liveFeed ? "Live Feed" : - entry.config?.channel == .topStories ? "Top Stories" : - entry.config?.topic ?? "Topic") - .textCase(.uppercase) - .font(.subheadline) - .bold() - .padding(0) + Text(entry.config?.channel == .topStories ? "Top Stories" : + entry.config?.channel == .liveFeed ? "Live Feed" : + entry.config?.topic ?? "Topic") + .textCase(.uppercase) + .font(.subheadline) + .bold() + .padding(0) Spacer() if colorScheme == .light { Image("LogoCompact") @@ -223,7 +236,8 @@ struct ReadLessWidgetEntryView : View { } } if (entry.config?.topic == nil) { - ForEach(0 ..< 2) { _ in + let size = WidgetPageSize[entry.context?.family ?? .systemMedium] ?? 2 + ForEach(0 ..< size, id: \.self) { _ in SummaryCard(style: entry.context?.family == .systemSmall ? .small : .medium) } } else @@ -254,7 +268,7 @@ struct ReadLessWidget: Widget { } .configurationDisplayName("Topic") .description("Choose a topic") - .supportedFamilies([.systemMedium, .systemLarge]) + .supportedFamilies(SUPPORTED_FAMILIES) } else { return IntentConfiguration(kind: kind, intent: IWidgetTopicConfigurationIntent.self, @@ -265,8 +279,11 @@ struct ReadLessWidget: Widget { } .configurationDisplayName("Topic") .description("Choose a topic") - .supportedFamilies([.systemMedium, .systemLarge]) + .supportedFamilies(SUPPORTED_FAMILIES) } } } + + + diff --git a/src/mobile/ios/ReadLessWidget/WidgetTopicConfiguration.swift b/src/mobile/ios/ReadLessWidget/WidgetTopicConfiguration.swift index 5c8f6a974..c56b0d01f 100644 --- a/src/mobile/ios/ReadLessWidget/WidgetTopicConfiguration.swift +++ b/src/mobile/ios/ReadLessWidget/WidgetTopicConfiguration.swift @@ -15,7 +15,7 @@ struct WidgetTopicConfiguration: AppIntent, WidgetConfigurationIntent, CustomInt static var title: LocalizedStringResource = "Widget Topic Configuration" static var description = IntentDescription("Intent for configuring the topic of a widget") - @Parameter(title: "Channel", default: .liveFeed) + @Parameter(title: "Channel", default: .topStories) var channel: Channel? @Parameter(title: "Topic", default: "") diff --git a/src/mobile/ios/Services/APIClient.swift b/src/mobile/ios/Services/APIClient.swift index e0b4b118a..f2c2b9e67 100644 --- a/src/mobile/ios/Services/APIClient.swift +++ b/src/mobile/ios/Services/APIClient.swift @@ -21,7 +21,6 @@ func parseQuery(endpoint: String = ENDPOINTS.GetSummaries, filter: String?) -> U } class APIClient: ObservableObject { - @Published var summaries = [Summary]() @Published var loading = false @Published var error: String? @@ -45,22 +44,19 @@ class APIClient: ObservableObject { return decoder } - init(summaries: [Summary] = [Summary]()) { - self.summaries = summaries - } - func fetchHandler(_ data: Data?) -> [Summary] { + var summaries: [Summary] = [] if let data = data { do { let decodedResponse = try decoder.decode(BulkResponse.self, from: data) - self.summaries = decodedResponse.rows.map { Summary($0) } + summaries = decodedResponse.rows.map { Summary($0) } } catch { print(error) self.error = error.localizedDescription } } self.loading = false - return self.summaries + return summaries } @Sendable func fetchSync() { diff --git a/src/mobile/ios/Views/SummaryCard.swift b/src/mobile/ios/Views/SummaryCard.swift index 60ea56a57..4c8cf34c7 100644 --- a/src/mobile/ios/Views/SummaryCard.swift +++ b/src/mobile/ios/Views/SummaryCard.swift @@ -18,6 +18,9 @@ struct SummaryCard: View { var expanded: Bool = false var deeplink: Bool = false + @State var image: Image? = nil + @State var publisherIcon: Image? = nil + @Environment(\.colorScheme) private var colorScheme var backdrop: Color { @@ -47,7 +50,7 @@ struct SummaryCard: View { var HEADER: some View { HStack { if let summary = summary { - if let image = summary.publisherIcon { + if let image = summary.publisherIcon ?? publisherIcon { image .resizable() .frame(width: headerHeight, height: headerHeight) @@ -56,7 +59,7 @@ struct SummaryCard: View { Text("") .frame(width: headerHeight, height: headerHeight) .onAppear { - Image.load(from: summary.publisher.icon) { image in DispatchQueue.main.async { self.summary?.publisherIcon = image } } + Image.load(from: summary.publisher.icon) { image in DispatchQueue.main.async { self.publisherIcon = image } } } } Text(summary.publisher.displayName) @@ -101,7 +104,7 @@ struct SummaryCard: View { var IMAGE: some View { VStack { if let summary = summary { - if let image = summary.image { + if let image = summary.image ?? image { image .resizable() .scaledToFill() @@ -112,7 +115,7 @@ struct SummaryCard: View { .frame(width: imageHeight, height: imageHeight) .onAppear { if let url = summary.primaryImageUrl { - Image.load(from: url) { image in DispatchQueue.main.async { self.summary?.image = image } } + Image.load(from: url) { image in DispatchQueue.main.async { self.image = image } } } } }