From ba093de13b66b3a89e4a33f2580e23471b67b6e5 Mon Sep 17 00:00:00 2001 From: sla8c Date: Fri, 18 Mar 2022 11:29:29 +0100 Subject: [PATCH 1/9] register BGAppRefreshTaskRequest for weeklyroundup to handle legacy identifier --- .../BackgroundTasksCoordinator.swift | 48 +++++++++++++++---- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/WordPress/Classes/Utility/BackgroundTasks/BackgroundTasksCoordinator.swift b/WordPress/Classes/Utility/BackgroundTasks/BackgroundTasksCoordinator.swift index 5ae706963487..81e0c097b6db 100644 --- a/WordPress/Classes/Utility/BackgroundTasks/BackgroundTasksCoordinator.swift +++ b/WordPress/Classes/Utility/BackgroundTasks/BackgroundTasksCoordinator.swift @@ -78,6 +78,20 @@ class BackgroundTasksCoordinator { self.registeredTasks = tasks for task in tasks { + if FeatureFlag.weeklyRoundupBGProcessingTask.enabled { + // https://github.com/wordpress-mobile/WordPress-iOS/issues/18156 + // we still need to register to handle the old identifier = "org.wordpress.bgtask.weeklyroundup" + // in order to handle previously scheduled app refresh tasks before this enhancement. + // + // When the old identifier AppRefreshTask is triggered this will re-schedule using the new identifier going forward + // at some point in future when this FeatureFlag is removed and most users are on new version of app this can be removed + scheduler.register(forTaskWithIdentifier: WeeklyRoundupBackgroundTask.Constants.taskIdentifier, using: nil) { osTask in + self.schedule(task) { [weak self] result in + self?.taskScheduledCompleted(osTask, identifier: type(of: task).identifier, result: result, cancelled: false) + } + } + } + scheduler.register(forTaskWithIdentifier: type(of: task).identifier, using: nil) { osTask in guard Feature.enabled(.weeklyRoundup) else { osTask.setTaskCompleted(success: false) @@ -97,21 +111,39 @@ class BackgroundTasksCoordinator { }) { cancelled in eventHandler.handle(.taskCompleted(identifier: type(of: task).identifier, cancelled: cancelled)) - self.schedule(task) { result in - switch result { - case .success: - eventHandler.handle(.rescheduled(identifier: type(of: task).identifier)) - case .failure(let error): - eventHandler.handle(.error(identifier: type(of: task).identifier, error: error)) + if FeatureFlag.weeklyRoundupBGProcessingTask.enabled { + self.schedule(task) { [weak self] result in + self?.taskScheduledCompleted(osTask, identifier: type(of: task).identifier, result: result, cancelled: cancelled) + } + } else { + //TODO - remove after removing feature flag + self.schedule(task) { result in + switch result { + case .success: + eventHandler.handle(.rescheduled(identifier: type(of: task).identifier)) + case .failure(let error): + eventHandler.handle(.error(identifier: type(of: task).identifier, error: error)) + } + + osTask.setTaskCompleted(success: !cancelled) } - - osTask.setTaskCompleted(success: !cancelled) } } } } } + func taskScheduledCompleted(_ osTask: BGTask, identifier: String, result: Result, cancelled: Bool) { + switch result { + case .success: + eventHandler.handle(.rescheduled(identifier: identifier)) + case .failure(let error): + eventHandler.handle(.error(identifier: identifier, error: error)) + } + + osTask.setTaskCompleted(success: !cancelled) + } + /// Schedules the registered tasks. The reason this step is separated from the registration of the tasks, is that we need /// to make sure the task registration completes before the App finishes launching, while scheduling can be taken care /// of separately. From f6dd84f568e9948a40ef5159d1a437ce2225802d Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 23 Mar 2022 10:35:59 +1100 Subject: [PATCH 2/9] Bump version number --- config/Version.internal.xcconfig | 4 ++-- config/Version.public.xcconfig | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/Version.internal.xcconfig b/config/Version.internal.xcconfig index 9ac4bd3ad8f4..4267fe91a619 100644 --- a/config/Version.internal.xcconfig +++ b/config/Version.internal.xcconfig @@ -1,4 +1,4 @@ -VERSION_SHORT=19.4 +VERSION_SHORT=19.4.1 // Internal long version example: VERSION_LONG=9.9.0.20180423 -VERSION_LONG=19.4.0.20220318 +VERSION_LONG=19.4.1.20220323 diff --git a/config/Version.public.xcconfig b/config/Version.public.xcconfig index a8e7b3b7e8b0..42be0e60649d 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,4 +1,4 @@ -VERSION_SHORT=19.4 +VERSION_SHORT=19.4.1 // Public long version example: VERSION_LONG=9.9.0.0 -VERSION_LONG=19.4.0.3 +VERSION_LONG=19.4.1.0 From 9f9d967eb7ab75752f2b3d70eed7cf208e6f6d78 Mon Sep 17 00:00:00 2001 From: sla8c Date: Fri, 18 Mar 2022 11:29:29 +0100 Subject: [PATCH 3/9] register BGAppRefreshTaskRequest for weeklyroundup to handle legacy identifier --- .../BackgroundTasksCoordinator.swift | 48 +++++++++++++++---- 1 file changed, 40 insertions(+), 8 deletions(-) diff --git a/WordPress/Classes/Utility/BackgroundTasks/BackgroundTasksCoordinator.swift b/WordPress/Classes/Utility/BackgroundTasks/BackgroundTasksCoordinator.swift index 5ae706963487..81e0c097b6db 100644 --- a/WordPress/Classes/Utility/BackgroundTasks/BackgroundTasksCoordinator.swift +++ b/WordPress/Classes/Utility/BackgroundTasks/BackgroundTasksCoordinator.swift @@ -78,6 +78,20 @@ class BackgroundTasksCoordinator { self.registeredTasks = tasks for task in tasks { + if FeatureFlag.weeklyRoundupBGProcessingTask.enabled { + // https://github.com/wordpress-mobile/WordPress-iOS/issues/18156 + // we still need to register to handle the old identifier = "org.wordpress.bgtask.weeklyroundup" + // in order to handle previously scheduled app refresh tasks before this enhancement. + // + // When the old identifier AppRefreshTask is triggered this will re-schedule using the new identifier going forward + // at some point in future when this FeatureFlag is removed and most users are on new version of app this can be removed + scheduler.register(forTaskWithIdentifier: WeeklyRoundupBackgroundTask.Constants.taskIdentifier, using: nil) { osTask in + self.schedule(task) { [weak self] result in + self?.taskScheduledCompleted(osTask, identifier: type(of: task).identifier, result: result, cancelled: false) + } + } + } + scheduler.register(forTaskWithIdentifier: type(of: task).identifier, using: nil) { osTask in guard Feature.enabled(.weeklyRoundup) else { osTask.setTaskCompleted(success: false) @@ -97,21 +111,39 @@ class BackgroundTasksCoordinator { }) { cancelled in eventHandler.handle(.taskCompleted(identifier: type(of: task).identifier, cancelled: cancelled)) - self.schedule(task) { result in - switch result { - case .success: - eventHandler.handle(.rescheduled(identifier: type(of: task).identifier)) - case .failure(let error): - eventHandler.handle(.error(identifier: type(of: task).identifier, error: error)) + if FeatureFlag.weeklyRoundupBGProcessingTask.enabled { + self.schedule(task) { [weak self] result in + self?.taskScheduledCompleted(osTask, identifier: type(of: task).identifier, result: result, cancelled: cancelled) + } + } else { + //TODO - remove after removing feature flag + self.schedule(task) { result in + switch result { + case .success: + eventHandler.handle(.rescheduled(identifier: type(of: task).identifier)) + case .failure(let error): + eventHandler.handle(.error(identifier: type(of: task).identifier, error: error)) + } + + osTask.setTaskCompleted(success: !cancelled) } - - osTask.setTaskCompleted(success: !cancelled) } } } } } + func taskScheduledCompleted(_ osTask: BGTask, identifier: String, result: Result, cancelled: Bool) { + switch result { + case .success: + eventHandler.handle(.rescheduled(identifier: identifier)) + case .failure(let error): + eventHandler.handle(.error(identifier: identifier, error: error)) + } + + osTask.setTaskCompleted(success: !cancelled) + } + /// Schedules the registered tasks. The reason this step is separated from the registration of the tasks, is that we need /// to make sure the task registration completes before the App finishes launching, while scheduling can be taken care /// of separately. From 711763a0a641240011f0b5d0e0ca4a2aaec7c153 Mon Sep 17 00:00:00 2001 From: Stephenie Harris Date: Wed, 23 Mar 2022 12:35:19 -0600 Subject: [PATCH 4/9] Remove log messages that could crash due to missing params. --- WordPress/Classes/Services/ReaderPostService.m | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/WordPress/Classes/Services/ReaderPostService.m b/WordPress/Classes/Services/ReaderPostService.m index 6f6d36376eed..0b4d42b7f6a9 100644 --- a/WordPress/Classes/Services/ReaderPostService.m +++ b/WordPress/Classes/Services/ReaderPostService.m @@ -158,7 +158,6 @@ - (void)fetchPost:(NSUInteger)postID forSite:(NSUInteger)siteID isFeed:(BOOL)isF } failure:^(NSError *error) { if (failure) { - DDLogError(@"Error fetching post with id %@ and site %@. %@", postID, siteID, error); failure(error); } }]; @@ -188,7 +187,6 @@ - (void)fetchPostAtURL:(NSURL *)postURL } failure:^(NSError *error) { if (failure) { - DDLogError(@"Error fetching post with url %@. %@", postURL, error); failure(error); } }]; @@ -215,7 +213,7 @@ - (ReaderPost *)findPostWithID:(NSNumber *)postID forSite:(NSNumber *)siteID fetchRequest.predicate = [NSPredicate predicateWithFormat:@"postID = %@ AND siteID = %@", postID, siteID]; NSArray *results = [self.managedObjectContext executeFetchRequest:fetchRequest error:&error]; if (error) { - DDLogError(@"Error loading cached post with id %@ and site %@. %@", postID, siteID, error); + DDLogError(@"Error loading cached post for site: %@", error); return nil; } From 5fa500553e22026cb5c470a599074b003014238e Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 24 Mar 2022 11:19:37 +1100 Subject: [PATCH 5/9] Update app translations --- .../Resources/ar.lproj/InfoPlist.strings | 11 ++++--- .../Resources/bg.lproj/InfoPlist.strings | 20 ++++-------- .../Resources/cs.lproj/InfoPlist.strings | 20 ++++-------- .../Resources/cy.lproj/InfoPlist.strings | 11 ++++--- .../Resources/da.lproj/InfoPlist.strings | 11 ++++--- .../Resources/de.lproj/InfoPlist.strings | 22 ++++++++++--- .../Resources/en-AU.lproj/InfoPlist.strings | 20 ++++-------- .../Resources/en-CA.lproj/InfoPlist.strings | 11 ++++--- .../Resources/en-GB.lproj/InfoPlist.strings | 22 ++++++++++--- .../Resources/es.lproj/InfoPlist.strings | 22 ++++++++++--- .../Resources/fr.lproj/InfoPlist.strings | 11 ++++--- .../Resources/he.lproj/InfoPlist.strings | 11 ++++--- .../Resources/hr.lproj/InfoPlist.strings | 11 ++++--- .../Resources/hu.lproj/InfoPlist.strings | 11 ++++--- .../Resources/id.lproj/InfoPlist.strings | 22 ++++++++++--- .../Resources/is.lproj/InfoPlist.strings | 20 ++++-------- .../Resources/it.lproj/InfoPlist.strings | 11 ++++--- .../Resources/ja.lproj/InfoPlist.strings | 11 ++++--- .../Resources/ko.lproj/InfoPlist.strings | 11 ++++--- .../Resources/nb.lproj/InfoPlist.strings | 11 ++++--- .../Resources/nl.lproj/InfoPlist.strings | 11 ++++--- .../Resources/pl.lproj/InfoPlist.strings | 11 ++++--- .../Resources/pt-BR.lproj/InfoPlist.strings | 11 ++++--- .../Resources/pt.lproj/InfoPlist.strings | 11 ++++--- .../Resources/ro.lproj/InfoPlist.strings | 31 ++++++++++--------- .../Resources/ru.lproj/InfoPlist.strings | 11 ++++--- .../Resources/sk.lproj/InfoPlist.strings | 20 ++++-------- .../Resources/sq.lproj/InfoPlist.strings | 20 ++++-------- .../Resources/sv.lproj/InfoPlist.strings | 18 ++++++++--- .../Resources/th.lproj/InfoPlist.strings | 11 ++++--- .../Resources/tr.lproj/InfoPlist.strings | 11 ++++--- .../Resources/zh-Hans.lproj/InfoPlist.strings | 11 ++++--- .../Resources/zh-Hant.lproj/InfoPlist.strings | 11 ++++--- .../ar.lproj/InfoPlist.strings | 8 +++-- .../bg.lproj/InfoPlist.strings | 8 +++-- .../cs.lproj/InfoPlist.strings | 8 +++-- .../cy.lproj/InfoPlist.strings | 8 +++-- .../da.lproj/InfoPlist.strings | 8 +++-- .../de.lproj/InfoPlist.strings | 13 ++++++-- .../en-AU.lproj/InfoPlist.strings | 8 +++-- .../en-CA.lproj/InfoPlist.strings | 8 +++-- .../en-GB.lproj/InfoPlist.strings | 13 ++++++-- .../es.lproj/InfoPlist.strings | 13 ++++++-- .../fr.lproj/InfoPlist.strings | 8 +++-- .../he.lproj/InfoPlist.strings | 8 +++-- .../hr.lproj/InfoPlist.strings | 8 +++-- .../hu.lproj/InfoPlist.strings | 8 +++-- .../id.lproj/InfoPlist.strings | 13 ++++++-- .../is.lproj/InfoPlist.strings | 8 +++-- .../it.lproj/InfoPlist.strings | 8 +++-- .../ja.lproj/InfoPlist.strings | 8 +++-- .../ko.lproj/InfoPlist.strings | 8 +++-- .../nb.lproj/InfoPlist.strings | 8 +++-- .../nl.lproj/InfoPlist.strings | 8 +++-- .../pl.lproj/InfoPlist.strings | 8 +++-- .../pt-BR.lproj/InfoPlist.strings | 8 +++-- .../pt.lproj/InfoPlist.strings | 8 +++-- .../ro.lproj/InfoPlist.strings | 13 ++++++-- .../ru.lproj/InfoPlist.strings | 8 +++-- .../sk.lproj/InfoPlist.strings | 8 +++-- .../sq.lproj/InfoPlist.strings | 8 +++-- .../sv.lproj/InfoPlist.strings | 13 ++++++-- .../th.lproj/InfoPlist.strings | 8 +++-- .../tr.lproj/InfoPlist.strings | 8 +++-- .../zh-Hans.lproj/InfoPlist.strings | 8 +++-- .../zh-Hant.lproj/InfoPlist.strings | 8 +++-- .../WordPressIntents/ar.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/bg.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/cs.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/cy.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/da.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/de.lproj/Sites.strings | 31 ++++++++++++------- .../en-AU.lproj/Sites.strings | 18 ++++------- .../en-CA.lproj/Sites.strings | 18 ++++------- .../en-GB.lproj/Sites.strings | 31 ++++++++++++------- .../WordPressIntents/es.lproj/Sites.strings | 31 ++++++++++++------- .../WordPressIntents/fr.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/he.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/hr.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/hu.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/id.lproj/Sites.strings | 31 ++++++++++++------- .../WordPressIntents/is.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/it.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/ja.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/ko.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/nb.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/nl.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/pl.lproj/Sites.strings | 18 ++++------- .../pt-BR.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/pt.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/ro.lproj/Sites.strings | 31 ++++++++++++------- .../WordPressIntents/ru.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/sk.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/sq.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/sv.lproj/Sites.strings | 25 ++++++++------- .../WordPressIntents/th.lproj/Sites.strings | 18 ++++------- .../WordPressIntents/tr.lproj/Sites.strings | 18 ++++------- .../zh-Hans.lproj/Sites.strings | 18 ++++------- .../zh-Hant.lproj/Sites.strings | 18 ++++------- 99 files changed, 758 insertions(+), 690 deletions(-) diff --git a/WordPress/Resources/ar.lproj/InfoPlist.strings b/WordPress/Resources/ar.lproj/InfoPlist.strings index effa96753841..6b6139952ec6 100644 --- a/WordPress/Resources/ar.lproj/InfoPlist.strings +++ b/WordPress/Resources/ar.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSCameraUsageDescription = "لالتقاط صور أو مقاطع الفيديو لاستخدامها في مقالاتك."; -NSPhotoLibraryUsageDescription = "لإضافة صور أو مقاطع فيديو إلى مقالاتك."; -NSMicrophoneUsageDescription = "بالنسبة إلى مقاطع الفيديو المراد إضافة صوت إليها."; + + + + + + diff --git a/WordPress/Resources/bg.lproj/InfoPlist.strings b/WordPress/Resources/bg.lproj/InfoPlist.strings index 54bcec0d0cc6..6b6139952ec6 100644 --- a/WordPress/Resources/bg.lproj/InfoPlist.strings +++ b/WordPress/Resources/bg.lproj/InfoPlist.strings @@ -1,14 +1,6 @@ -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* Sentence to justify why the app is asking permission from the user to use their camera. */ -NSCameraUsageDescription = "To take photos or videos to use in your posts."; - -/* Sentence to justify why the app asks permission from the user to access their Media Library. */ -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; - -/* Sentence to justify why the app asks permission from the user to access the device microphone. */ -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/cs.lproj/InfoPlist.strings b/WordPress/Resources/cs.lproj/InfoPlist.strings index 54bcec0d0cc6..6b6139952ec6 100644 --- a/WordPress/Resources/cs.lproj/InfoPlist.strings +++ b/WordPress/Resources/cs.lproj/InfoPlist.strings @@ -1,14 +1,6 @@ -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* Sentence to justify why the app is asking permission from the user to use their camera. */ -NSCameraUsageDescription = "To take photos or videos to use in your posts."; - -/* Sentence to justify why the app asks permission from the user to access their Media Library. */ -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; - -/* Sentence to justify why the app asks permission from the user to access the device microphone. */ -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/cy.lproj/InfoPlist.strings b/WordPress/Resources/cy.lproj/InfoPlist.strings index fce347e649b9..6b6139952ec6 100644 --- a/WordPress/Resources/cy.lproj/InfoPlist.strings +++ b/WordPress/Resources/cy.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSCameraUsageDescription = "To take photos or videos to use in your posts."; -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/da.lproj/InfoPlist.strings b/WordPress/Resources/da.lproj/InfoPlist.strings index fce347e649b9..6b6139952ec6 100644 --- a/WordPress/Resources/da.lproj/InfoPlist.strings +++ b/WordPress/Resources/da.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSCameraUsageDescription = "To take photos or videos to use in your posts."; -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/de.lproj/InfoPlist.strings b/WordPress/Resources/de.lproj/InfoPlist.strings index 13ee3b58568a..a6e787e366e1 100644 --- a/WordPress/Resources/de.lproj/InfoPlist.strings +++ b/WordPress/Resources/de.lproj/InfoPlist.strings @@ -1,5 +1,17 @@ -NSLocationUsageDescription = "WordPress möchte auf Webseiten, bei denen Du das Geotagging aktiviert hast, deinen Standort zu den Beiträgen hinzufügen."; -NSLocationWhenInUseUsageDescription = "WordPress möchte auf Webseiten, bei denen Du das Geotagging aktiviert hast, deinen Standort zu den Beiträgen hinzufügen."; -NSCameraUsageDescription = "Um Fotos oder Videos für deine Beiträge aufzunehmen."; -NSPhotoLibraryUsageDescription = "Um deinen Beiträgen Fotos oder Videos hinzuzufügen."; -NSMicrophoneUsageDescription = "Damit du Sound für deine Videos aufnehmen kannst."; + + + + + + NSCameraUsageDescription + Um Fotos oder Videos für deine Beiträge aufzunehmen. + NSLocationUsageDescription + Darf WordPress zu Beiträgen auf Websites, auf denen du Geotagging aktiviert hast, deinen Standort hinzufügen? + NSLocationWhenInUseUsageDescription + Darf WordPress zu Beiträgen auf Websites, auf denen du Geotagging aktiviert hast, deinen Standort hinzufügen? + NSMicrophoneUsageDescription + Aktiviere den Mikrofonzugriff, um in deinen Videos Ton aufzeichnen zu können. + NSPhotoLibraryUsageDescription + Um deinen Beiträgen Fotos oder Videos hinzuzufügen. + + diff --git a/WordPress/Resources/en-AU.lproj/InfoPlist.strings b/WordPress/Resources/en-AU.lproj/InfoPlist.strings index 54bcec0d0cc6..6b6139952ec6 100644 --- a/WordPress/Resources/en-AU.lproj/InfoPlist.strings +++ b/WordPress/Resources/en-AU.lproj/InfoPlist.strings @@ -1,14 +1,6 @@ -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* Sentence to justify why the app is asking permission from the user to use their camera. */ -NSCameraUsageDescription = "To take photos or videos to use in your posts."; - -/* Sentence to justify why the app asks permission from the user to access their Media Library. */ -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; - -/* Sentence to justify why the app asks permission from the user to access the device microphone. */ -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/en-CA.lproj/InfoPlist.strings b/WordPress/Resources/en-CA.lproj/InfoPlist.strings index fce347e649b9..6b6139952ec6 100644 --- a/WordPress/Resources/en-CA.lproj/InfoPlist.strings +++ b/WordPress/Resources/en-CA.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSCameraUsageDescription = "To take photos or videos to use in your posts."; -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/en-GB.lproj/InfoPlist.strings b/WordPress/Resources/en-GB.lproj/InfoPlist.strings index fce347e649b9..25b76878db6c 100644 --- a/WordPress/Resources/en-GB.lproj/InfoPlist.strings +++ b/WordPress/Resources/en-GB.lproj/InfoPlist.strings @@ -1,5 +1,17 @@ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSCameraUsageDescription = "To take photos or videos to use in your posts."; -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + NSCameraUsageDescription + To take photos or videos to use in your posts. + NSLocationUsageDescription + WordPress would like to add your location to posts on sites where you have enabled geotagging. + NSLocationWhenInUseUsageDescription + WordPress would like to add your location to posts on sites where you have enabled geotagging. + NSMicrophoneUsageDescription + Enable microphone access to record sound in your videos. + NSPhotoLibraryUsageDescription + To add photos or videos to your posts. + + diff --git a/WordPress/Resources/es.lproj/InfoPlist.strings b/WordPress/Resources/es.lproj/InfoPlist.strings index db9afc671120..2f5ff7d54b7b 100644 --- a/WordPress/Resources/es.lproj/InfoPlist.strings +++ b/WordPress/Resources/es.lproj/InfoPlist.strings @@ -1,5 +1,17 @@ -NSLocationUsageDescription = "WordPress desea añadir tu ubicación a las entradas en los sitios en los que has activado el geoetiquetado."; -NSLocationWhenInUseUsageDescription = "WordPress desea añadir tu ubicación a las entradas en los sitios en los que has activado el geoetiquetado."; -NSCameraUsageDescription = "Para hacer las fotos o vídeos que deseas usar en tus entradas."; -NSPhotoLibraryUsageDescription = "Para añadir fotos o vídeos en tus entradas."; -NSMicrophoneUsageDescription = "Para que tus vídeos tengan sonido."; + + + + + + NSCameraUsageDescription + Para hacer las fotos o vídeos que deseas usar en tus entradas. + NSLocationUsageDescription + WordPress desea añadir tu ubicación a las entradas en los sitios en los que has activado el geoetiquetado. + NSLocationWhenInUseUsageDescription + WordPress desea añadir tu ubicación a las entradas en los sitios en los que has activado el geoetiquetado. + NSMicrophoneUsageDescription + Activa el acceso al micrófono para poder grabar sonido en tus vídeos. + NSPhotoLibraryUsageDescription + Para añadir fotos o vídeos en tus entradas. + + diff --git a/WordPress/Resources/fr.lproj/InfoPlist.strings b/WordPress/Resources/fr.lproj/InfoPlist.strings index c914caeac9c6..6b6139952ec6 100644 --- a/WordPress/Resources/fr.lproj/InfoPlist.strings +++ b/WordPress/Resources/fr.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress voudrai ajouter votre position aux articles des sites pour lesquels vous avez activé la géolocalisation."; -NSLocationWhenInUseUsageDescription = "WordPress voudrai ajouter votre position aux articles des sites pour lesquels vous avez activé la géolocalisation."; -NSCameraUsageDescription = "Pour prendre des photos ou réaliser des vidéos à utiliser dans vos articles."; -NSPhotoLibraryUsageDescription = "Pour ajouter des photos ou des vidéos à vos articles."; -NSMicrophoneUsageDescription = "Permet à vos vidéos d'intégrer du son."; + + + + + + diff --git a/WordPress/Resources/he.lproj/InfoPlist.strings b/WordPress/Resources/he.lproj/InfoPlist.strings index 6010d1ada47f..6b6139952ec6 100644 --- a/WordPress/Resources/he.lproj/InfoPlist.strings +++ b/WordPress/Resources/he.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress רוצה להוסיף את המיקום שלך לפוסטים באתרים שבהם אפשרת תיוג מיקום."; -NSLocationWhenInUseUsageDescription = "WordPress רוצה להוסיף את המיקום שלך לפוסטים באתרים שבהם אפשרת תיוג מיקום."; -NSCameraUsageDescription = "לצלם תמונות או סרטוני וידאו לשימוש בפוסטים שלך."; -NSPhotoLibraryUsageDescription = "להוסיף תמונות או סרטוני וידאו לפוסטים."; -NSMicrophoneUsageDescription = "כדי שלסרטוני הווידאו שלך יהיה קול."; + + + + + + diff --git a/WordPress/Resources/hr.lproj/InfoPlist.strings b/WordPress/Resources/hr.lproj/InfoPlist.strings index fce347e649b9..6b6139952ec6 100644 --- a/WordPress/Resources/hr.lproj/InfoPlist.strings +++ b/WordPress/Resources/hr.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSCameraUsageDescription = "To take photos or videos to use in your posts."; -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/hu.lproj/InfoPlist.strings b/WordPress/Resources/hu.lproj/InfoPlist.strings index fce347e649b9..6b6139952ec6 100644 --- a/WordPress/Resources/hu.lproj/InfoPlist.strings +++ b/WordPress/Resources/hu.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSCameraUsageDescription = "To take photos or videos to use in your posts."; -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/id.lproj/InfoPlist.strings b/WordPress/Resources/id.lproj/InfoPlist.strings index b4f9dd25b15e..16adea377cbe 100644 --- a/WordPress/Resources/id.lproj/InfoPlist.strings +++ b/WordPress/Resources/id.lproj/InfoPlist.strings @@ -1,5 +1,17 @@ -NSLocationUsageDescription = "WordPress akan menambahkan lokasi Anda pada setiap tulisan di dalam situs dengan fitur geotagging yang Anda aktifkan."; -NSLocationWhenInUseUsageDescription = "WordPress akan menambahkan lokasi Anda pada setiap tulisan di dalam situs dengan fitur geotagging yang Anda aktifkan."; -NSCameraUsageDescription = "Untuk mengambil foto atau video agar dapat digunakan di pos Anda."; -NSPhotoLibraryUsageDescription = "Untuk menambahkan foto atau video ke pos Anda."; -NSMicrophoneUsageDescription = "Agar video Anda dapat bersuara."; + + + + + + NSCameraUsageDescription + Untuk mengambil foto atau video agar dapat digunakan di artikel Anda. + NSLocationUsageDescription + WordPress ingin menambahkan lokasi Anda di artikel pada situs dengan geotagging yang telah Anda aktifkan. + NSLocationWhenInUseUsageDescription + WordPress ingin menambahkan lokasi Anda di artikel pada situs dengan geotagging yang telah Anda aktifkan. + NSMicrophoneUsageDescription + Izinkan akses mikrofon untuk merekam suara di video Anda. + NSPhotoLibraryUsageDescription + Untuk menambahkan foto atau video ke artikel Anda. + + diff --git a/WordPress/Resources/is.lproj/InfoPlist.strings b/WordPress/Resources/is.lproj/InfoPlist.strings index 54bcec0d0cc6..6b6139952ec6 100644 --- a/WordPress/Resources/is.lproj/InfoPlist.strings +++ b/WordPress/Resources/is.lproj/InfoPlist.strings @@ -1,14 +1,6 @@ -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* Sentence to justify why the app is asking permission from the user to use their camera. */ -NSCameraUsageDescription = "To take photos or videos to use in your posts."; - -/* Sentence to justify why the app asks permission from the user to access their Media Library. */ -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; - -/* Sentence to justify why the app asks permission from the user to access the device microphone. */ -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/it.lproj/InfoPlist.strings b/WordPress/Resources/it.lproj/InfoPlist.strings index 62233ddd4867..6b6139952ec6 100644 --- a/WordPress/Resources/it.lproj/InfoPlist.strings +++ b/WordPress/Resources/it.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress vorrebbe aggiungere la tua posizione agli articoli che pubblichi sui siti in cui hai attivato il geotagging."; -NSLocationWhenInUseUsageDescription = "WordPress vorrebbe aggiungere la tua posizione agli articoli che pubblichi sui siti in cui hai attivato il geotagging."; -NSCameraUsageDescription = "Per acquisire foto o video da usare nei tuoi articoli."; -NSPhotoLibraryUsageDescription = "Per aggiungere foto o video ai tuoi articoli."; -NSMicrophoneUsageDescription = "Per far sì che i video dispongano di audio."; + + + + + + diff --git a/WordPress/Resources/ja.lproj/InfoPlist.strings b/WordPress/Resources/ja.lproj/InfoPlist.strings index 7c690723bd5f..6b6139952ec6 100644 --- a/WordPress/Resources/ja.lproj/InfoPlist.strings +++ b/WordPress/Resources/ja.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress は、ユーザーが有効にしたジオタギングの場所をサイトの投稿に追加したいと考えています。"; -NSLocationWhenInUseUsageDescription = "WordPress は、ユーザーが有効にしたジオタギングの場所をサイトの投稿に追加したいと考えています。"; -NSCameraUsageDescription = "投稿に使用する写真または動画を撮る方法。"; -NSPhotoLibraryUsageDescription = "投稿に写真または動画を追加する方法。"; -NSMicrophoneUsageDescription = "動画に音声を含める方法。"; + + + + + + diff --git a/WordPress/Resources/ko.lproj/InfoPlist.strings b/WordPress/Resources/ko.lproj/InfoPlist.strings index 99c68c913e17..6b6139952ec6 100644 --- a/WordPress/Resources/ko.lproj/InfoPlist.strings +++ b/WordPress/Resources/ko.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "위치 태그를 활성화한 사이트의 글에 위치를 추가하려고 합니다."; -NSLocationWhenInUseUsageDescription = "위치 태그를 활성화한 사이트의 글에 위치를 추가하려고 합니다."; -NSCameraUsageDescription = "글에 사용할 사진이나 비디오를 촬영"; -NSPhotoLibraryUsageDescription = "글에 사진이나 비디오를 추가"; -NSMicrophoneUsageDescription = "비디오에서 사운드 재생"; + + + + + + diff --git a/WordPress/Resources/nb.lproj/InfoPlist.strings b/WordPress/Resources/nb.lproj/InfoPlist.strings index fce347e649b9..6b6139952ec6 100644 --- a/WordPress/Resources/nb.lproj/InfoPlist.strings +++ b/WordPress/Resources/nb.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSCameraUsageDescription = "To take photos or videos to use in your posts."; -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/nl.lproj/InfoPlist.strings b/WordPress/Resources/nl.lproj/InfoPlist.strings index 5d8b402467d6..6b6139952ec6 100644 --- a/WordPress/Resources/nl.lproj/InfoPlist.strings +++ b/WordPress/Resources/nl.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress wil je huidige locatie toevoegen aan berichten op sites waar je geotagging geactiveerd hebt."; -NSLocationWhenInUseUsageDescription = "WordPress wil je huidige locatie toevoegen aan berichten op sites waar je geotagging geactiveerd hebt."; -NSCameraUsageDescription = "Voor het maken van foto's of video's die gebruikt kunnen worden in je berichten."; -NSPhotoLibraryUsageDescription = "Voor het toevoegen van foto's of video's aan je berichten."; -NSMicrophoneUsageDescription = "Om je video's te voorzien van geluid."; + + + + + + diff --git a/WordPress/Resources/pl.lproj/InfoPlist.strings b/WordPress/Resources/pl.lproj/InfoPlist.strings index fce347e649b9..6b6139952ec6 100644 --- a/WordPress/Resources/pl.lproj/InfoPlist.strings +++ b/WordPress/Resources/pl.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; -NSCameraUsageDescription = "To take photos or videos to use in your posts."; -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/pt-BR.lproj/InfoPlist.strings b/WordPress/Resources/pt-BR.lproj/InfoPlist.strings index 1b73da0e7529..6b6139952ec6 100644 --- a/WordPress/Resources/pt-BR.lproj/InfoPlist.strings +++ b/WordPress/Resources/pt-BR.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "O WordPress gostaria de adicionar sua localização aos posts em sites aonde você ativou o geotagging."; -NSLocationWhenInUseUsageDescription = "O WordPress gostaria de adicionar sua localização aos posts em sites aonde você ativou o geotagging."; -NSCameraUsageDescription = "Tirar fotos ou vídeos para usar nos seus posts."; -NSPhotoLibraryUsageDescription = "Adicionar fotos ou vídeos aos seus posts."; -NSMicrophoneUsageDescription = "Para que seus vídeos possuam som."; + + + + + + diff --git a/WordPress/Resources/pt.lproj/InfoPlist.strings b/WordPress/Resources/pt.lproj/InfoPlist.strings index 363e0265a64e..6b6139952ec6 100644 --- a/WordPress/Resources/pt.lproj/InfoPlist.strings +++ b/WordPress/Resources/pt.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "O WordPress gostaria de adicionar a sua localização a artigos dos seus sites que tenham a geo-localização activada."; -NSLocationWhenInUseUsageDescription = "O WordPress gostaria de adicionar a sua localização a artigos dos seus sites que tenham a geo-localização activada."; -NSCameraUsageDescription = "To take photos or videos to use in your posts."; -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/ro.lproj/InfoPlist.strings b/WordPress/Resources/ro.lproj/InfoPlist.strings index 54bcec0d0cc6..e4e58b79a18b 100644 --- a/WordPress/Resources/ro.lproj/InfoPlist.strings +++ b/WordPress/Resources/ro.lproj/InfoPlist.strings @@ -1,14 +1,17 @@ -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* Sentence to justify why the app is asking permission from the user to use their camera. */ -NSCameraUsageDescription = "To take photos or videos to use in your posts."; - -/* Sentence to justify why the app asks permission from the user to access their Media Library. */ -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; - -/* Sentence to justify why the app asks permission from the user to access the device microphone. */ -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + NSCameraUsageDescription + Să faci poze sau videouri pe care să le folosești în articolele tale. + NSLocationUsageDescription + WordPress preferă să-ți adaugi locația în articolele din site-urile în care ai activat etichetarea geografică. + NSLocationWhenInUseUsageDescription + WordPress preferă să-ți adaugi locația în articolele din site-urile în care ai activat etichetarea geografică. + NSMicrophoneUsageDescription + Activează accesul la microfon pentru a înregistra sunetul în videourile tale. + NSPhotoLibraryUsageDescription + Să adaugi poze sau videouri în articolele tale. + + diff --git a/WordPress/Resources/ru.lproj/InfoPlist.strings b/WordPress/Resources/ru.lproj/InfoPlist.strings index 35b171ab109c..6b6139952ec6 100644 --- a/WordPress/Resources/ru.lproj/InfoPlist.strings +++ b/WordPress/Resources/ru.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "Платформе WordPress требуется разрешение для добавления сведений о местоположении к записям на ваших сайтах, для которых включена функция привязки к местоположению."; -NSLocationWhenInUseUsageDescription = "Платформе WordPress требуется разрешение для добавления сведений о местоположении к записям на ваших сайтах, для которых включена функция привязки к местоположению."; -NSCameraUsageDescription = "Для создания фотографий и видео, которые будут размещаться в ваших записях."; -NSPhotoLibraryUsageDescription = "Для размещения фотографий и видео в ваших записях."; -NSMicrophoneUsageDescription = "Включение звука при воспроизведении видео."; + + + + + + diff --git a/WordPress/Resources/sk.lproj/InfoPlist.strings b/WordPress/Resources/sk.lproj/InfoPlist.strings index 54bcec0d0cc6..6b6139952ec6 100644 --- a/WordPress/Resources/sk.lproj/InfoPlist.strings +++ b/WordPress/Resources/sk.lproj/InfoPlist.strings @@ -1,14 +1,6 @@ -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* Sentence to justify why the app is asking permission from the user to use their camera. */ -NSCameraUsageDescription = "To take photos or videos to use in your posts."; - -/* Sentence to justify why the app asks permission from the user to access their Media Library. */ -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; - -/* Sentence to justify why the app asks permission from the user to access the device microphone. */ -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/sq.lproj/InfoPlist.strings b/WordPress/Resources/sq.lproj/InfoPlist.strings index 54bcec0d0cc6..6b6139952ec6 100644 --- a/WordPress/Resources/sq.lproj/InfoPlist.strings +++ b/WordPress/Resources/sq.lproj/InfoPlist.strings @@ -1,14 +1,6 @@ -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* This sentence is shown when the app asks permission from the user to use their location. */ -NSLocationWhenInUseUsageDescription = "WordPress would like to add your location to posts on sites where you have enabled geotagging."; - -/* Sentence to justify why the app is asking permission from the user to use their camera. */ -NSCameraUsageDescription = "To take photos or videos to use in your posts."; - -/* Sentence to justify why the app asks permission from the user to access their Media Library. */ -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; - -/* Sentence to justify why the app asks permission from the user to access the device microphone. */ -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/sv.lproj/InfoPlist.strings b/WordPress/Resources/sv.lproj/InfoPlist.strings index a4ff534fd857..995a3ce30411 100644 --- a/WordPress/Resources/sv.lproj/InfoPlist.strings +++ b/WordPress/Resources/sv.lproj/InfoPlist.strings @@ -1,5 +1,13 @@ -NSLocationUsageDescription = "WordPress skulle vilja lägga till din plats i inlägg på webbplatser där du har aktiverat geografisk plats."; -NSLocationWhenInUseUsageDescription = "WordPress skulle vilja lägga till din plats i inlägg på webbplatser där du har aktiverat geografisk plats."; -NSCameraUsageDescription = "För att ta bilder eller videor som kan användas i dina inlägg."; -NSPhotoLibraryUsageDescription = "För att lägga till bilder eller videor i dina inlägg."; -NSMicrophoneUsageDescription = "För att dina videor ska ha ljud."; + + + + + + NSCameraUsageDescription + För att ta bilder eller spela in videoklipp som kan användas i dina inlägg. + NSMicrophoneUsageDescription + Aktivera mikrofonåtkomst för att spela in ljud i dina videoklipp. + NSPhotoLibraryUsageDescription + För att lägga till bilder eller videoklipp i dina inlägg. + + diff --git a/WordPress/Resources/th.lproj/InfoPlist.strings b/WordPress/Resources/th.lproj/InfoPlist.strings index 83a780b267b0..6b6139952ec6 100644 --- a/WordPress/Resources/th.lproj/InfoPlist.strings +++ b/WordPress/Resources/th.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "เวิร์ดเพรสต้องการเพิ่มที่อยู่ของคุณเพื่อเขียนบนเว็บไซต์ที่คุณเปิดใช้งาน geotagging"; -NSLocationWhenInUseUsageDescription = "เวิร์ดเพรสต้องการเพิ่มที่อยู่ของคุณเพื่อเขียนบนเว็บไซต์ที่คุณเปิดใช้งาน geotagging"; -NSCameraUsageDescription = "To take photos or videos to use in your posts."; -NSPhotoLibraryUsageDescription = "To add photos or videos to your posts."; -NSMicrophoneUsageDescription = "Enable microphone access to record sound in your videos."; + + + + + + diff --git a/WordPress/Resources/tr.lproj/InfoPlist.strings b/WordPress/Resources/tr.lproj/InfoPlist.strings index 8d85e1df3421..6b6139952ec6 100644 --- a/WordPress/Resources/tr.lproj/InfoPlist.strings +++ b/WordPress/Resources/tr.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress coğrafi etiketlemeyi etkinleştirdiğiniz sitelerdeki gönderilere konumunuzu eklemek istiyor."; -NSLocationWhenInUseUsageDescription = "WordPress coğrafi etiketlemeyi etkinleştirdiğiniz sitelerdeki gönderilere konumunuzu eklemek istiyor."; -NSCameraUsageDescription = "Gönderilerinizde kullanacağınız fotoğraf veya videoları çekmek için."; -NSPhotoLibraryUsageDescription = "Gönderilerinize fotoğraf veya video eklemek için."; -NSMicrophoneUsageDescription = "Videolarınıza ses eklemek için."; + + + + + + diff --git a/WordPress/Resources/zh-Hans.lproj/InfoPlist.strings b/WordPress/Resources/zh-Hans.lproj/InfoPlist.strings index ad16858ee109..6b6139952ec6 100644 --- a/WordPress/Resources/zh-Hans.lproj/InfoPlist.strings +++ b/WordPress/Resources/zh-Hans.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "对于已启用地理标记的站点,WordPress 会向其中的文章内添加您的位置。"; -NSLocationWhenInUseUsageDescription = "对于已启用地理标记的站点,WordPress 会向其中的文章内添加您的位置。"; -NSCameraUsageDescription = "拍摄要在文章内使用的照片或视频。"; -NSPhotoLibraryUsageDescription = "向您的文章内添加照片或视频。"; -NSMicrophoneUsageDescription = "录制有声视频。"; + + + + + + diff --git a/WordPress/Resources/zh-Hant.lproj/InfoPlist.strings b/WordPress/Resources/zh-Hant.lproj/InfoPlist.strings index 70928ea3cc7f..6b6139952ec6 100644 --- a/WordPress/Resources/zh-Hant.lproj/InfoPlist.strings +++ b/WordPress/Resources/zh-Hant.lproj/InfoPlist.strings @@ -1,5 +1,6 @@ -NSLocationUsageDescription = "WordPress 想要在你已啟用地理位置標誌功能的網站上,將你的位置新增網站上的文章。"; -NSLocationWhenInUseUsageDescription = "WordPress 想要在你已啟用地理位置標誌功能的網站上,將你的位置新增網站上的文章。"; -NSCameraUsageDescription = "拍些相片或影片供文章使用。"; -NSPhotoLibraryUsageDescription = "在你的文章中新增相片或影片。"; -NSMicrophoneUsageDescription = "在你的文章中新增相片或影片。"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/ar.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/ar.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/ar.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/ar.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/bg.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/bg.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/bg.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/bg.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/cs.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/cs.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/cs.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/cs.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/cy.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/cy.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/cy.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/cy.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/da.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/da.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/da.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/da.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/de.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/de.lproj/InfoPlist.strings index 7f7a3009224b..1c84fcd0b709 100644 --- a/WordPress/WordPressDraftActionExtension/de.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/de.lproj/InfoPlist.strings @@ -1,2 +1,11 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + CFBundleDisplayName + Als Entwurf speichern + CFBundleName + Als Entwurf speichern + + diff --git a/WordPress/WordPressDraftActionExtension/en-AU.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/en-AU.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/en-AU.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/en-AU.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/en-CA.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/en-CA.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/en-CA.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/en-CA.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/en-GB.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/en-GB.lproj/InfoPlist.strings index 7f7a3009224b..80bc9e224780 100644 --- a/WordPress/WordPressDraftActionExtension/en-GB.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/en-GB.lproj/InfoPlist.strings @@ -1,2 +1,11 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + CFBundleDisplayName + Save as Draft + CFBundleName + Save as Draft + + diff --git a/WordPress/WordPressDraftActionExtension/es.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/es.lproj/InfoPlist.strings index fd58d80767f3..0484d274a926 100644 --- a/WordPress/WordPressDraftActionExtension/es.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/es.lproj/InfoPlist.strings @@ -1,2 +1,11 @@ -CFBundleDisplayName = "Guardar como Borrador"; -CFBundleName = "Guardar como Borrador"; + + + + + + CFBundleDisplayName + Guardar como borrador + CFBundleName + Guardar como borrador + + diff --git a/WordPress/WordPressDraftActionExtension/fr.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/fr.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/fr.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/fr.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/he.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/he.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/he.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/he.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/hr.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/hr.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/hr.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/hr.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/hu.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/hu.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/hu.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/hu.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/id.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/id.lproj/InfoPlist.strings index 7f7a3009224b..0320de01cc58 100644 --- a/WordPress/WordPressDraftActionExtension/id.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/id.lproj/InfoPlist.strings @@ -1,2 +1,11 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + CFBundleDisplayName + Simpan sebagai Konsep + CFBundleName + Simpan sebagai Konsep + + diff --git a/WordPress/WordPressDraftActionExtension/is.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/is.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/is.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/is.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/it.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/it.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/it.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/it.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/ja.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/ja.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/ja.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/ja.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/ko.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/ko.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/ko.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/ko.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/nb.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/nb.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/nb.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/nb.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/nl.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/nl.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/nl.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/nl.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/pl.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/pl.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/pl.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/pl.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/pt-BR.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/pt-BR.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/pt-BR.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/pt-BR.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/pt.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/pt.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/pt.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/pt.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/ro.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/ro.lproj/InfoPlist.strings index 7f7a3009224b..fb538aea8f51 100644 --- a/WordPress/WordPressDraftActionExtension/ro.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/ro.lproj/InfoPlist.strings @@ -1,2 +1,11 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + CFBundleDisplayName + Salvează ca ciornă + CFBundleName + Salvează ca ciornă + + diff --git a/WordPress/WordPressDraftActionExtension/ru.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/ru.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/ru.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/ru.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/sk.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/sk.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/sk.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/sk.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/sq.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/sq.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/sq.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/sq.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/sv.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/sv.lproj/InfoPlist.strings index 7f7a3009224b..8d9c71b6edaa 100644 --- a/WordPress/WordPressDraftActionExtension/sv.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/sv.lproj/InfoPlist.strings @@ -1,2 +1,11 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + CFBundleDisplayName + Spara som utkast + CFBundleName + Spara som utkast + + diff --git a/WordPress/WordPressDraftActionExtension/th.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/th.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/th.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/th.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/tr.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/tr.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/tr.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/tr.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/zh-Hans.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/zh-Hans.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/zh-Hans.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/zh-Hans.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressDraftActionExtension/zh-Hant.lproj/InfoPlist.strings b/WordPress/WordPressDraftActionExtension/zh-Hant.lproj/InfoPlist.strings index 7f7a3009224b..6b6139952ec6 100644 --- a/WordPress/WordPressDraftActionExtension/zh-Hant.lproj/InfoPlist.strings +++ b/WordPress/WordPressDraftActionExtension/zh-Hant.lproj/InfoPlist.strings @@ -1,2 +1,6 @@ -CFBundleDisplayName = "Save as Draft"; -CFBundleName = "Save as Draft"; + + + + + + diff --git a/WordPress/WordPressIntents/ar.lproj/Sites.strings b/WordPress/WordPressIntents/ar.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/ar.lproj/Sites.strings +++ b/WordPress/WordPressIntents/ar.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/bg.lproj/Sites.strings b/WordPress/WordPressIntents/bg.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/bg.lproj/Sites.strings +++ b/WordPress/WordPressIntents/bg.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/cs.lproj/Sites.strings b/WordPress/WordPressIntents/cs.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/cs.lproj/Sites.strings +++ b/WordPress/WordPressIntents/cs.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/cy.lproj/Sites.strings b/WordPress/WordPressIntents/cy.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/cy.lproj/Sites.strings +++ b/WordPress/WordPressIntents/cy.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/da.lproj/Sites.strings b/WordPress/WordPressIntents/da.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/da.lproj/Sites.strings +++ b/WordPress/WordPressIntents/da.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/de.lproj/Sites.strings b/WordPress/WordPressIntents/de.lproj/Sites.strings index a92cb8ee5ea0..ad2a5eb4b27d 100644 --- a/WordPress/WordPressIntents/de.lproj/Sites.strings +++ b/WordPress/WordPressIntents/de.lproj/Sites.strings @@ -1,12 +1,19 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + BOl9KQ + Es gibt ${count} Optionen, die zu „${site}“ passen. + ILcGmf + Website + cyajMn + Website + gpCwrM + Website auswählen + s4dJhx + Nur um sicherzugehen, du willst „${site}“? + tVvJ9c + Website-Intent auswählen + + diff --git a/WordPress/WordPressIntents/en-AU.lproj/Sites.strings b/WordPress/WordPressIntents/en-AU.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/en-AU.lproj/Sites.strings +++ b/WordPress/WordPressIntents/en-AU.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/en-CA.lproj/Sites.strings b/WordPress/WordPressIntents/en-CA.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/en-CA.lproj/Sites.strings +++ b/WordPress/WordPressIntents/en-CA.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/en-GB.lproj/Sites.strings b/WordPress/WordPressIntents/en-GB.lproj/Sites.strings index a92cb8ee5ea0..318bb8365ff2 100644 --- a/WordPress/WordPressIntents/en-GB.lproj/Sites.strings +++ b/WordPress/WordPressIntents/en-GB.lproj/Sites.strings @@ -1,12 +1,19 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + BOl9KQ + There are ${count} options matching ‘${site}’. + ILcGmf + Site + cyajMn + Site + gpCwrM + Select Site + s4dJhx + Just to confirm, you wanted ‘${site}’? + tVvJ9c + Select Site Intent + + diff --git a/WordPress/WordPressIntents/es.lproj/Sites.strings b/WordPress/WordPressIntents/es.lproj/Sites.strings index a92cb8ee5ea0..602a0724fc67 100644 --- a/WordPress/WordPressIntents/es.lproj/Sites.strings +++ b/WordPress/WordPressIntents/es.lproj/Sites.strings @@ -1,12 +1,19 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + BOl9KQ + Hay ${count} opciones que coinciden ‘${site}’. + ILcGmf + Sitio + cyajMn + Sitio + gpCwrM + Seleccionar sitio + s4dJhx + Solo por confirmar, tu querías ‘${site}’? + tVvJ9c + Seleccionar intento de sitio + + diff --git a/WordPress/WordPressIntents/fr.lproj/Sites.strings b/WordPress/WordPressIntents/fr.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/fr.lproj/Sites.strings +++ b/WordPress/WordPressIntents/fr.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/he.lproj/Sites.strings b/WordPress/WordPressIntents/he.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/he.lproj/Sites.strings +++ b/WordPress/WordPressIntents/he.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/hr.lproj/Sites.strings b/WordPress/WordPressIntents/hr.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/hr.lproj/Sites.strings +++ b/WordPress/WordPressIntents/hr.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/hu.lproj/Sites.strings b/WordPress/WordPressIntents/hu.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/hu.lproj/Sites.strings +++ b/WordPress/WordPressIntents/hu.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/id.lproj/Sites.strings b/WordPress/WordPressIntents/id.lproj/Sites.strings index a92cb8ee5ea0..4e0aec915c57 100644 --- a/WordPress/WordPressIntents/id.lproj/Sites.strings +++ b/WordPress/WordPressIntents/id.lproj/Sites.strings @@ -1,12 +1,19 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + BOl9KQ + Ada pilihan ${count} yang cocok dengan ‘${site}’. + ILcGmf + Situs + cyajMn + Situs + gpCwrM + Pilih Situs + s4dJhx + Hanya untuk mengonfirmasi, Anda menginginkan '${site}'? + tVvJ9c + Pilih Kegunaan Situs + + diff --git a/WordPress/WordPressIntents/is.lproj/Sites.strings b/WordPress/WordPressIntents/is.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/is.lproj/Sites.strings +++ b/WordPress/WordPressIntents/is.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/it.lproj/Sites.strings b/WordPress/WordPressIntents/it.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/it.lproj/Sites.strings +++ b/WordPress/WordPressIntents/it.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/ja.lproj/Sites.strings b/WordPress/WordPressIntents/ja.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/ja.lproj/Sites.strings +++ b/WordPress/WordPressIntents/ja.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/ko.lproj/Sites.strings b/WordPress/WordPressIntents/ko.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/ko.lproj/Sites.strings +++ b/WordPress/WordPressIntents/ko.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/nb.lproj/Sites.strings b/WordPress/WordPressIntents/nb.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/nb.lproj/Sites.strings +++ b/WordPress/WordPressIntents/nb.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/nl.lproj/Sites.strings b/WordPress/WordPressIntents/nl.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/nl.lproj/Sites.strings +++ b/WordPress/WordPressIntents/nl.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/pl.lproj/Sites.strings b/WordPress/WordPressIntents/pl.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/pl.lproj/Sites.strings +++ b/WordPress/WordPressIntents/pl.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/pt-BR.lproj/Sites.strings b/WordPress/WordPressIntents/pt-BR.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/pt-BR.lproj/Sites.strings +++ b/WordPress/WordPressIntents/pt-BR.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/pt.lproj/Sites.strings b/WordPress/WordPressIntents/pt.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/pt.lproj/Sites.strings +++ b/WordPress/WordPressIntents/pt.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/ro.lproj/Sites.strings b/WordPress/WordPressIntents/ro.lproj/Sites.strings index a92cb8ee5ea0..e8f58fb3570e 100644 --- a/WordPress/WordPressIntents/ro.lproj/Sites.strings +++ b/WordPress/WordPressIntents/ro.lproj/Sites.strings @@ -1,12 +1,19 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + BOl9KQ + Există ${count} opțiuni care se potrivesc cu „${site}”. + ILcGmf + Site + cyajMn + Site + gpCwrM + Selectează site-ul + s4dJhx + Trebuie să confirmi, ai vrut „${site}”? + tVvJ9c + Selectează scopul site-ului + + diff --git a/WordPress/WordPressIntents/ru.lproj/Sites.strings b/WordPress/WordPressIntents/ru.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/ru.lproj/Sites.strings +++ b/WordPress/WordPressIntents/ru.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/sk.lproj/Sites.strings b/WordPress/WordPressIntents/sk.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/sk.lproj/Sites.strings +++ b/WordPress/WordPressIntents/sk.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/sq.lproj/Sites.strings b/WordPress/WordPressIntents/sq.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/sq.lproj/Sites.strings +++ b/WordPress/WordPressIntents/sq.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/sv.lproj/Sites.strings b/WordPress/WordPressIntents/sv.lproj/Sites.strings index a92cb8ee5ea0..e81336218bf1 100644 --- a/WordPress/WordPressIntents/sv.lproj/Sites.strings +++ b/WordPress/WordPressIntents/sv.lproj/Sites.strings @@ -1,12 +1,13 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + ILcGmf + Webbplats + cyajMn + Webbplats + gpCwrM + Välj webbplats + + diff --git a/WordPress/WordPressIntents/th.lproj/Sites.strings b/WordPress/WordPressIntents/th.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/th.lproj/Sites.strings +++ b/WordPress/WordPressIntents/th.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/tr.lproj/Sites.strings b/WordPress/WordPressIntents/tr.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/tr.lproj/Sites.strings +++ b/WordPress/WordPressIntents/tr.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/zh-Hans.lproj/Sites.strings b/WordPress/WordPressIntents/zh-Hans.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/zh-Hans.lproj/Sites.strings +++ b/WordPress/WordPressIntents/zh-Hans.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + diff --git a/WordPress/WordPressIntents/zh-Hant.lproj/Sites.strings b/WordPress/WordPressIntents/zh-Hant.lproj/Sites.strings index a92cb8ee5ea0..6b6139952ec6 100644 --- a/WordPress/WordPressIntents/zh-Hant.lproj/Sites.strings +++ b/WordPress/WordPressIntents/zh-Hant.lproj/Sites.strings @@ -1,12 +1,6 @@ -"BOl9KQ" = "There are ${count} options matching ‘${site}’."; - -"ILcGmf" = "Site"; - -"cyajMn" = "Site"; - -"gpCwrM" = "Select Site"; - -"s4dJhx" = "Just to confirm, you wanted ‘${site}’?"; - -"tVvJ9c" = "Select Site Intent"; - + + + + + + From a6266b64e6084480d662e977d6395799438c5c9a Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 24 Mar 2022 11:20:09 +1100 Subject: [PATCH 6/9] Bump version number --- config/Version.internal.xcconfig | 2 +- config/Version.public.xcconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/Version.internal.xcconfig b/config/Version.internal.xcconfig index 5769fb179768..dcd255bc5d94 100644 --- a/config/Version.internal.xcconfig +++ b/config/Version.internal.xcconfig @@ -1,4 +1,4 @@ VERSION_SHORT=19.5 // Internal long version example: VERSION_LONG=9.9.0.20180423 -VERSION_LONG=19.5.0.20220321 +VERSION_LONG=19.5.0.20220324 diff --git a/config/Version.public.xcconfig b/config/Version.public.xcconfig index 30590693711f..8d2096a6b6ce 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,4 +1,4 @@ VERSION_SHORT=19.5 // Public long version example: VERSION_LONG=9.9.0.0 -VERSION_LONG=19.5.0.0 +VERSION_LONG=19.5.0.1 From b15dccaad5e7a60870fc1617a298a9f8f67a31ba Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 24 Mar 2022 15:05:25 +1100 Subject: [PATCH 7/9] Add editorialized release notes for version 19.5 They are the same between WordPress and Jetpack. --- WordPress/Jetpack/Resources/release_notes.txt | 20 ++++++++++--------- WordPress/Resources/release_notes.txt | 20 ++++++++++--------- 2 files changed, 22 insertions(+), 18 deletions(-) diff --git a/WordPress/Jetpack/Resources/release_notes.txt b/WordPress/Jetpack/Resources/release_notes.txt index 21abbdb51d63..419001fa6287 100644 --- a/WordPress/Jetpack/Resources/release_notes.txt +++ b/WordPress/Jetpack/Resources/release_notes.txt @@ -1,10 +1,12 @@ -* [*] Improves the error message shown when trying to create a new site with non-English characters in the domain name [https://github.com/wordpress-mobile/WordPress-iOS/pull/17985] -* [*] Quick Start: updated the design for the Quick Start cell on My Site [#18095] -* [*] Reader: Fixed a bug where comment replies are misplaced after its parent comment is moderated [#18094] -* [*] Bug fix: Allow keyboard to be dismissed when the password field is focused during WP.com account creation [https://github.com/wordpress-mobile/WordPress-iOS/pull/17938] -* [*] iPad: Fixed a bug where the current displayed section wasn't selected on the menu [#18118] -* [**] Comment Notifications: updated UI and functionality to match My Site Comments. [#18141] -* [*] Block Editor: Add GIF badge for animated GIFs uploaded to Image blocks [https://github.com/WordPress/gutenberg/pull/38996] -* [*] Block Editor: Small refinement to media upload errors, including centering and tweaking copy. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4597] -* [*] Block Editor: Fix issue with list's starting index and the order [https://github.com/WordPress/gutenberg/pull/39354] +We updated Comment Notifications with a spiffy new look and feel. (You might recognize it from My Site Comments!) The Quick Start design in your site menu and dashboard is rocking a new look, too. +When you’re creating a new site and entering the domain name, you should now see a more accurate error message if you try to use non-English characters that aren’t letters or numbers. We also tweaked the upload error text in media upload blocks. + +Not sure if you’re looking at an image or a GIF in your Image block? No need to wonder anymore—animated GIFs now come with a GIF badge. + +We also made a few bug fixes while we were under the hood. + +- Good news for all those orphan comments out there—we squashed a bug where comment replies got lost after their parent comments were unapproved. +- When you switch between sites on an iPad, you won’t switch between sidebar nav items, too. You’ll be looking at the same menu item you left on the previous site. +- Block setting changes to ordered lists now appear in the editor, not just in Preview. +- We fixed a keyboard issue in the WP.com account creation process. If you start entering a magic link password and change your mind, you can dismiss the keyboard and move on with your day. diff --git a/WordPress/Resources/release_notes.txt b/WordPress/Resources/release_notes.txt index 21abbdb51d63..419001fa6287 100644 --- a/WordPress/Resources/release_notes.txt +++ b/WordPress/Resources/release_notes.txt @@ -1,10 +1,12 @@ -* [*] Improves the error message shown when trying to create a new site with non-English characters in the domain name [https://github.com/wordpress-mobile/WordPress-iOS/pull/17985] -* [*] Quick Start: updated the design for the Quick Start cell on My Site [#18095] -* [*] Reader: Fixed a bug where comment replies are misplaced after its parent comment is moderated [#18094] -* [*] Bug fix: Allow keyboard to be dismissed when the password field is focused during WP.com account creation [https://github.com/wordpress-mobile/WordPress-iOS/pull/17938] -* [*] iPad: Fixed a bug where the current displayed section wasn't selected on the menu [#18118] -* [**] Comment Notifications: updated UI and functionality to match My Site Comments. [#18141] -* [*] Block Editor: Add GIF badge for animated GIFs uploaded to Image blocks [https://github.com/WordPress/gutenberg/pull/38996] -* [*] Block Editor: Small refinement to media upload errors, including centering and tweaking copy. [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4597] -* [*] Block Editor: Fix issue with list's starting index and the order [https://github.com/WordPress/gutenberg/pull/39354] +We updated Comment Notifications with a spiffy new look and feel. (You might recognize it from My Site Comments!) The Quick Start design in your site menu and dashboard is rocking a new look, too. +When you’re creating a new site and entering the domain name, you should now see a more accurate error message if you try to use non-English characters that aren’t letters or numbers. We also tweaked the upload error text in media upload blocks. + +Not sure if you’re looking at an image or a GIF in your Image block? No need to wonder anymore—animated GIFs now come with a GIF badge. + +We also made a few bug fixes while we were under the hood. + +- Good news for all those orphan comments out there—we squashed a bug where comment replies got lost after their parent comments were unapproved. +- When you switch between sites on an iPad, you won’t switch between sidebar nav items, too. You’ll be looking at the same menu item you left on the previous site. +- Block setting changes to ordered lists now appear in the editor, not just in Preview. +- We fixed a keyboard issue in the WP.com account creation process. If you start entering a magic link password and change your mind, you can dismiss the keyboard and move on with your day. From b05e603e7042494028aa29d01bd44288860e125b Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 24 Mar 2022 15:09:00 +1100 Subject: [PATCH 8/9] Update metadata strings --- WordPress/Resources/AppStoreStrings.po | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/WordPress/Resources/AppStoreStrings.po b/WordPress/Resources/AppStoreStrings.po index 9b84412d02a6..c5c2c4d9627c 100644 --- a/WordPress/Resources/AppStoreStrings.po +++ b/WordPress/Resources/AppStoreStrings.po @@ -45,17 +45,20 @@ msgctxt "app_store_keywords" msgid "blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs" msgstr "" -msgctxt "v19.4-whats-new" +msgctxt "v19.5-whats-new" msgid "" -"Color us excited—support for multiple color palettes is here! Add Theme and Default color and gradient palettes, or create your own Custom palette with your favorite shades. We also fixed an issue that caused theme colors not to appear and current theme data not to refresh.\n" +"We updated Comment Notifications with a spiffy new look and feel. (You might recognize it from My Site Comments!) The Quick Start design in your site menu and dashboard is rocking a new look, too.\n" "\n" -"For devices using right-to-left languages, we updated icon, button, and text positioning for the “Choose a Domain” screen in the site creation process. Alright, alright.\n" +"When you’re creating a new site and entering the domain name, you should now see a more accurate error message if you try to use non-English characters that aren’t letters or numbers. We also tweaked the upload error text in media upload blocks.\n" "\n" -"Want to see rich media like images and .gifs in your device’s push notifications? Just press and hold the notification to open a preview.\n" +"Not sure if you’re looking at an image or a GIF in your Image block? No need to wonder anymore—animated GIFs now come with a GIF badge.\n" "\n" -"We made some tweaks to Weekly Roundup notifications to make sure they’re showing up once you’ve enabled them. Giddyup!\n" +"We also made a few bug fixes while we were under the hood.\n" "\n" -"Finally, we added a few fixes on the Insight screen that’ll help speed things up. We also squashed a bug that bolded auto-corrected words in content block headings.\n" +"- Good news for all those orphan comments out there—we squashed a bug where comment replies got lost after their parent comments were unapproved.\n" +"- When you switch between sites on an iPad, you won’t switch between sidebar nav items, too. You’ll be looking at the same menu item you left on the previous site.\n" +"- Block setting changes to ordered lists now appear in the editor, not just in Preview.\n" +"- We fixed a keyboard issue in the WP.com account creation process. If you start entering a magic link password and change your mind, you can dismiss the keyboard and move on with your day.\n" msgstr "" #. translators: This is a standard chunk of text used to tell a user what's new with a release when nothing major has changed. From 93532de3d4d039d31f02fcc0b97154035165a436 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 24 Mar 2022 15:09:04 +1100 Subject: [PATCH 9/9] Update metadata strings --- WordPress/Jetpack/Resources/AppStoreStrings.po | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/WordPress/Jetpack/Resources/AppStoreStrings.po b/WordPress/Jetpack/Resources/AppStoreStrings.po index 9d8d50e03602..cedc823dc687 100644 --- a/WordPress/Jetpack/Resources/AppStoreStrings.po +++ b/WordPress/Jetpack/Resources/AppStoreStrings.po @@ -38,17 +38,20 @@ msgctxt "app_store_keywords" msgid "social,notes,jetpack,writing,geotagging,media,blog,website,blogging,journal" msgstr "" -msgctxt "v19.4-whats-new" +msgctxt "v19.5-whats-new" msgid "" -"Color us excited—support for multiple color palettes is here! Add Theme and Default color and gradient palettes, or create your own Custom palette with your favorite shades. We also fixed an issue that caused theme colors not to appear and current theme data not to refresh.\n" +"We updated Comment Notifications with a spiffy new look and feel. (You might recognize it from My Site Comments!) The Quick Start design in your site menu and dashboard is rocking a new look, too.\n" "\n" -"For devices using right-to-left languages, we updated icon, button, and text positioning for the “Choose a Domain” screen in the site creation process. Alright, alright.\n" +"When you’re creating a new site and entering the domain name, you should now see a more accurate error message if you try to use non-English characters that aren’t letters or numbers. We also tweaked the upload error text in media upload blocks.\n" "\n" -"Want to see rich media like images and .gifs in your device’s push notifications? Just press and hold the notification to open a preview.\n" +"Not sure if you’re looking at an image or a GIF in your Image block? No need to wonder anymore—animated GIFs now come with a GIF badge.\n" "\n" -"We made some tweaks to Weekly Roundup notifications to make sure they’re showing up once you’ve enabled them. Giddyup!\n" +"We also made a few bug fixes while we were under the hood.\n" "\n" -"Finally, we added a few fixes on the Insight screen that’ll help speed things up. We also squashed a bug that bolded auto-corrected words in content block headings.\n" +"- Good news for all those orphan comments out there—we squashed a bug where comment replies got lost after their parent comments were unapproved.\n" +"- When you switch between sites on an iPad, you won’t switch between sidebar nav items, too. You’ll be looking at the same menu item you left on the previous site.\n" +"- Block setting changes to ordered lists now appear in the editor, not just in Preview.\n" +"- We fixed a keyboard issue in the WP.com account creation process. If you start entering a magic link password and change your mind, you can dismiss the keyboard and move on with your day.\n" msgstr "" #. translators: This is a promo message that will be attached on top of the first screenshot in the App Store.