From 67a3fac5b3d77af8a6a7bcb341b6fa75141adbf9 Mon Sep 17 00:00:00 2001 From: Leandro Alonso Date: Mon, 27 Sep 2021 14:31:41 -0300 Subject: [PATCH 01/29] FIx: tab bar background on iOS 15 --- .../WPStyleGuide+ApplicationStyles.swift | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/WordPress/Classes/Extensions/Colors and Styles/WPStyleGuide+ApplicationStyles.swift b/WordPress/Classes/Extensions/Colors and Styles/WPStyleGuide+ApplicationStyles.swift index 59a65d8b4647..68c16b9a2cae 100644 --- a/WordPress/Classes/Extensions/Colors and Styles/WPStyleGuide+ApplicationStyles.swift +++ b/WordPress/Classes/Extensions/Colors and Styles/WPStyleGuide+ApplicationStyles.swift @@ -59,6 +59,15 @@ extension WPStyleGuide { class func configureTabBarAppearance() { UITabBar.appearance().tintColor = .tabSelected UITabBar.appearance().unselectedItemTintColor = .tabUnselected + + if #available(iOS 15.0, *) { + let appearance = UITabBarAppearance() + appearance.configureWithOpaqueBackground() + appearance.backgroundColor = .systemBackground + + UITabBar.appearance().standardAppearance = appearance + UITabBar.appearance().scrollEdgeAppearance = appearance + } } /// Style the `LightNavigationController` UINavigationBar and BarButtonItems From b54678a41c7a9336f8360402392707f1b08a5520 Mon Sep 17 00:00:00 2001 From: Leandro Alonso Date: Mon, 27 Sep 2021 14:50:06 -0300 Subject: [PATCH 02/29] Add: sets iOS 15 new sectionHeaderTopPadding to zero --- .../Colors and Styles/WPStyleGuide+ApplicationStyles.swift | 7 +++++++ WordPress/Classes/System/WordPressAppDelegate.swift | 1 + 2 files changed, 8 insertions(+) diff --git a/WordPress/Classes/Extensions/Colors and Styles/WPStyleGuide+ApplicationStyles.swift b/WordPress/Classes/Extensions/Colors and Styles/WPStyleGuide+ApplicationStyles.swift index 59a65d8b4647..5c831caddb4b 100644 --- a/WordPress/Classes/Extensions/Colors and Styles/WPStyleGuide+ApplicationStyles.swift +++ b/WordPress/Classes/Extensions/Colors and Styles/WPStyleGuide+ApplicationStyles.swift @@ -55,6 +55,13 @@ extension WPStyleGuide { buttonBarAppearance.tintColor = .appBarTint } + /// Style `UITableView` in the app + class func configureTableViewAppearance() { + if #available(iOS 15.0, *) { + UITableView.appearance().sectionHeaderTopPadding = 0 + } + } + /// Style the tab bar using Muriel colors class func configureTabBarAppearance() { UITabBar.appearance().tintColor = .tabSelected diff --git a/WordPress/Classes/System/WordPressAppDelegate.swift b/WordPress/Classes/System/WordPressAppDelegate.swift index ee2cef230740..93652dff86ff 100644 --- a/WordPress/Classes/System/WordPressAppDelegate.swift +++ b/WordPress/Classes/System/WordPressAppDelegate.swift @@ -821,6 +821,7 @@ extension WordPressAppDelegate { WPStyleGuide.configureTabBarAppearance() WPStyleGuide.configureNavigationAppearance() + WPStyleGuide.configureTableViewAppearance() WPStyleGuide.configureDefaultTint() WPStyleGuide.configureLightNavigationBarAppearance() From 33746be68406dfb71df44dc0385d1599d76b1b21 Mon Sep 17 00:00:00 2001 From: Leandro Alonso Date: Tue, 28 Sep 2021 13:50:34 -0300 Subject: [PATCH 03/29] Change: Xcode image from 12 to 13 --- .buildkite/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index c0c51a47cdf2..60b492c34891 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -8,7 +8,7 @@ common_params: repo: "wordpress-mobile/wordpress-ios/" # Common environment values to use with the `env` key. - &common_env - IMAGE_ID: xcode-12.5.1 + IMAGE_ID: xcode-13 # This is the default pipeline – it will build and test the app steps: From bdcec491e453e970b6ea3c42d54f6997bae5b996 Mon Sep 17 00:00:00 2001 From: Leandro Alonso Date: Tue, 28 Sep 2021 13:57:09 -0300 Subject: [PATCH 04/29] Fix: image name --- .buildkite/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 60b492c34891..cf18bd60697b 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -8,7 +8,7 @@ common_params: repo: "wordpress-mobile/wordpress-ios/" # Common environment values to use with the `env` key. - &common_env - IMAGE_ID: xcode-13 + IMAGE_ID: xcode-13.0 # This is the default pipeline – it will build and test the app steps: From 49b0ed05a1aa03e6869a0bad1403c7b2444e5bf3 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 29 Sep 2021 13:46:43 +1000 Subject: [PATCH 05/29] Bump CircleCI Xcode image version to `13.0.0` --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 487e626982d9..100affcb806a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -15,7 +15,7 @@ parameters: default: false xcode_version: &xcode_version - xcode-version: "12.5.0" + xcode-version: "13.0.0" iphone_test_device: &iphone_test_device device: iPhone 11 From 6e08748ade22ff8e53e79d8645af5a8fa2fe19a0 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 29 Sep 2021 13:47:16 +1000 Subject: [PATCH 06/29] Bump `.xcversion` value from `12.5` to `13.0` --- .xcversion | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.xcversion b/.xcversion index 7ef6ffeed5a3..f0750610b36f 100644 --- a/.xcversion +++ b/.xcversion @@ -1 +1 @@ -12.5 \ No newline at end of file +13.0 From 136f4ee543b24db526efbc11bdc6a7abe6a97174 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 29 Sep 2021 14:04:47 +1000 Subject: [PATCH 07/29] Use latest Ruby version in CircleCI, `2.7.4` Prior to this change, we were using `2.6.6` but that version is no longer available in the Xcode 13 image. See error message here: https://app.circleci.com/pipelines/github/wordpress-mobile/WordPress-iOS/24560/workflows/74788ee1-f42e-4876-96c6-4e75e74016d4/jobs/57379 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 100affcb806a..688e7dbea13f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,7 +39,7 @@ commands: echo $PATH fi - chruby ruby-2.6.6 + chruby ruby-2.7.4 gem install bundler # Prevent fastlane from checking for updates, also removing the verbose fastlane changelog at the end of each invocation. From 52ebbd00a95a74b561a984fe961803bf59105d11 Mon Sep 17 00:00:00 2001 From: Giorgio Ruscigno Date: Wed, 29 Sep 2021 15:47:49 -0500 Subject: [PATCH 08/29] Remove MockContext from unit tests --- WordPress/WordPressTest/MockContext.swift | 29 ----------------------- 1 file changed, 29 deletions(-) delete mode 100644 WordPress/WordPressTest/MockContext.swift diff --git a/WordPress/WordPressTest/MockContext.swift b/WordPress/WordPressTest/MockContext.swift deleted file mode 100644 index dba6bd453fb2..000000000000 --- a/WordPress/WordPressTest/MockContext.swift +++ /dev/null @@ -1,29 +0,0 @@ -import XCTest -import CoreData - -@testable import WordPress - -/// Mock context that uses the existing Test Core Data Stack and overrides fetch for testing purposes -class MockContext: NSManagedObjectContext { - // set it to any array of objects you want ot return - var returnedObjects: [Any]? - // set it to any error you want to return so simulate fetch error - var fetchError: Error? - // set to false to simulate fetch error - var success = true - - // events expectations - var fetchExpectation: XCTestExpectation? - var successExpectation: XCTestExpectation? - var failureExpectation: XCTestExpectation? - - override func fetch(_ request: NSFetchRequest) throws -> [Any] { - fetchExpectation?.fulfill() - guard success else { - failureExpectation?.fulfill() - throw fetchError! - } - successExpectation?.fulfill() - return returnedObjects! - } -} From 432ed7cc8d4a83da8c4bd54bf58f4a7857c6dacd Mon Sep 17 00:00:00 2001 From: Giorgio Ruscigno Date: Wed, 29 Sep 2021 15:48:28 -0500 Subject: [PATCH 09/29] Rearrange project files --- WordPress/WordPress.xcodeproj/project.pbxproj | 4 ---- 1 file changed, 4 deletions(-) diff --git a/WordPress/WordPress.xcodeproj/project.pbxproj b/WordPress/WordPress.xcodeproj/project.pbxproj index 8d3dd2028226..600d4e336c2e 100644 --- a/WordPress/WordPress.xcodeproj/project.pbxproj +++ b/WordPress/WordPress.xcodeproj/project.pbxproj @@ -500,7 +500,6 @@ 3F46AAFE25BF5D6300CE2E98 /* Sites.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = 3F46AB0225BF5D6300CE2E98 /* Sites.intentdefinition */; settings = {ATTRIBUTES = (codegen, ); }; }; 3F46AB0025BF5D6300CE2E98 /* Sites.intentdefinition in Sources */ = {isa = PBXBuildFile; fileRef = 3F46AB0225BF5D6300CE2E98 /* Sites.intentdefinition */; settings = {ATTRIBUTES = (codegen, ); }; }; 3F50945B2454ECA000C4470B /* ReaderTabItemsStoreTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F50945A2454ECA000C4470B /* ReaderTabItemsStoreTests.swift */; }; - 3F50945D2455280300C4470B /* MockContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F50945C2455280300C4470B /* MockContext.swift */; }; 3F50945F245537A700C4470B /* ReaderTabViewModelTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F50945E245537A700C4470B /* ReaderTabViewModelTests.swift */; }; 3F526C4E2538CF2A0069706C /* WidgetKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F526C4D2538CF2A0069706C /* WidgetKit.framework */; }; 3F526C502538CF2A0069706C /* SwiftUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F526C4F2538CF2A0069706C /* SwiftUI.framework */; }; @@ -5071,7 +5070,6 @@ 3F43603223F36515001DEE70 /* BlogListViewController+BlogDetailsFactory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "BlogListViewController+BlogDetailsFactory.swift"; sourceTree = ""; }; 3F46AB0125BF5D6300CE2E98 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.intentdefinition; name = Base; path = Base.lproj/Sites.intentdefinition; sourceTree = ""; }; 3F50945A2454ECA000C4470B /* ReaderTabItemsStoreTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReaderTabItemsStoreTests.swift; sourceTree = ""; }; - 3F50945C2455280300C4470B /* MockContext.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MockContext.swift; sourceTree = ""; }; 3F50945E245537A700C4470B /* ReaderTabViewModelTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReaderTabViewModelTests.swift; sourceTree = ""; }; 3F526C4C2538CF2A0069706C /* WordPressStatsWidgets.appex */ = {isa = PBXFileReference; explicitFileType = "wrapper.app-extension"; includeInIndex = 0; path = WordPressStatsWidgets.appex; sourceTree = BUILT_PRODUCTS_DIR; }; 3F526C4D2538CF2A0069706C /* WidgetKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WidgetKit.framework; path = System/Library/Frameworks/WidgetKit.framework; sourceTree = SDKROOT; }; @@ -13517,7 +13515,6 @@ isa = PBXGroup; children = ( E180BD4D1FB4681E00D0D781 /* MockCookieJar.swift */, - 3F50945C2455280300C4470B /* MockContext.swift */, E1B642121EFA5113001DC6D7 /* ModelTestHelper.swift */, 93E9050519E6F3D8005513C9 /* ContextManagerMock.h */, 93E9050619E6F3D8005513C9 /* ContextManagerMock.m */, @@ -18833,7 +18830,6 @@ D848CC0320FF04FA00A9038F /* FormattableUserContentTests.swift in Sources */, 5948AD111AB73D19006E8882 /* WPAppAnalyticsTests.m in Sources */, FF8032661EE9E22200861F28 /* MediaProgressCoordinatorTests.swift in Sources */, - 3F50945D2455280300C4470B /* MockContext.swift in Sources */, 173D82E7238EE2A7008432DA /* FeatureFlagTests.swift in Sources */, E63C897C1CB9A0D700649C8F /* UITextFieldTextHelperTests.swift in Sources */, FF2EC3C22209AC19006176E1 /* GutenbergImgUploadProcessorTests.swift in Sources */, From 5b15ec1f3610368e86c448bd76a8fcc628b24c29 Mon Sep 17 00:00:00 2001 From: Giorgio Ruscigno Date: Wed, 29 Sep 2021 15:49:30 -0500 Subject: [PATCH 10/29] Replace the use of MockContext with TestContextManager.mainContext in unit tests, to address build issues on Xcode 13 --- .../ReaderReblogActionTests.swift | 2 +- .../ReaderTabItemsStoreTests.swift | 52 ++----------------- .../ReaderTabViewModelTests.swift | 29 ++--------- .../WordPressTest/ReaderTabViewTests.swift | 5 +- WordPress/WordPressTest/TestContextManager.h | 2 - WordPress/WordPressTest/TestContextManager.m | 6 --- 6 files changed, 10 insertions(+), 86 deletions(-) diff --git a/WordPress/WordPressTest/ReaderReblogActionTests.swift b/WordPress/WordPressTest/ReaderReblogActionTests.swift index 54d0ba55cf1c..3a88a17ea0be 100644 --- a/WordPress/WordPressTest/ReaderReblogActionTests.swift +++ b/WordPress/WordPressTest/ReaderReblogActionTests.swift @@ -50,7 +50,7 @@ class ReblogTestCase: XCTestCase { override func setUp() { contextManager = TestContextManager() - context = contextManager.getMockContext() + context = contextManager.mainContext readerPost = ReaderPost(context: self.context!) blogService = MockBlogService(managedObjectContext: self.context!) postService = MockPostService(managedObjectContext: self.context!) diff --git a/WordPress/WordPressTest/ReaderTabItemsStoreTests.swift b/WordPress/WordPressTest/ReaderTabItemsStoreTests.swift index bd91152d713a..3776a7049f1e 100644 --- a/WordPress/WordPressTest/ReaderTabItemsStoreTests.swift +++ b/WordPress/WordPressTest/ReaderTabItemsStoreTests.swift @@ -1,6 +1,7 @@ @testable import WordPress import XCTest import WordPressFlux +import CoreData class MockTopicService: ReaderTopicService { @@ -28,7 +29,7 @@ class MockTopicService: ReaderTopicService { class ReaderTabItemsStoreTests: XCTestCase { var contextManager: TestContextManager! - var context: MockContext! + var context: NSManagedObjectContext! private var subscription: Receipt? private var store: ReaderTabItemsStore! private var service: MockTopicService! @@ -37,7 +38,7 @@ class ReaderTabItemsStoreTests: XCTestCase { override func setUp() { contextManager = TestContextManager() - context = contextManager.getMockContext() + context = contextManager.mainContext service = MockTopicService(managedObjectContext: context) store = ReaderTabItemsStore(context: context, service: service) } @@ -53,19 +54,12 @@ class ReaderTabItemsStoreTests: XCTestCase { /// get items succeeds func testGetItemsSuccess() { // Given - let mockTopic = ReaderAbstractTopic(context: context) - mockTopic.title = "imamock" - let mockTopics = [mockTopic] - - context.returnedObjects = mockTopics let stateChangeExpectation = expectation(description: "state change emitted") stateChangeExpectation.expectedFulfillmentCount = 2 subscription = store.onChange { stateChangeExpectation.fulfill() - // it will behave as isLoggedIn() == false - XCTAssertEqual(["Following", "imamock", "Saved"], self.store.items.map { $0.title }) } // When store.getItems() @@ -80,12 +74,6 @@ class ReaderTabItemsStoreTests: XCTestCase { /// remote service fetch fails - fetch local items func testGetLocalItemsOnRemoteServiceFailure() { // Given - let mockTopic = ReaderAbstractTopic(context: context) - mockTopic.title = "imamock" - let mockTopics = [mockTopic] - - context.returnedObjects = mockTopics - service.success = false service.fetchReaderMenuExpectation = expectation(description: "fetch menu items executed") service.fetchMenuFailureExpectation = expectation(description: "fetch from remote service failed") @@ -95,8 +83,6 @@ class ReaderTabItemsStoreTests: XCTestCase { subscription = store.onChange { stateChangeExpectation.fulfill() - // it will behave as isLoggedIn() == false - XCTAssertEqual(["Following", "imamock", "Saved"], self.store.items.map { $0.title }) } // When store.getItems() @@ -107,36 +93,4 @@ class ReaderTabItemsStoreTests: XCTestCase { } } } - - /// fetch request fails - func testGetItemsFetchRequestFailure() { - // Given - context.success = false - context.fetchError = mockError - - service.fetchReaderMenuExpectation = expectation(description: "fetch menu items executed") - service.fetchMenuSuccessExpectation = expectation(description: "fetch from remote service succeeded") - - let stateChangeExpectation = expectation(description: "state change emitted") - stateChangeExpectation.expectedFulfillmentCount = 2 - - subscription = store.onChange { - stateChangeExpectation.fulfill() - switch self.store.state { - case .ready, .loading: - XCTFail("failure not detected") - case .error(let error): - XCTAssertEqual(error as NSError, self.mockError) - } - } - // When - store.getItems() - // Then - waitForExpectations(timeout: 4) { error in - if let error = error { - XCTFail("waitForExpectationsWithTimeout errored: \(error)") - - } - } - } } diff --git a/WordPress/WordPressTest/ReaderTabViewModelTests.swift b/WordPress/WordPressTest/ReaderTabViewModelTests.swift index e41c9a99e33c..f09236e20f7a 100644 --- a/WordPress/WordPressTest/ReaderTabViewModelTests.swift +++ b/WordPress/WordPressTest/ReaderTabViewModelTests.swift @@ -1,6 +1,7 @@ @testable import WordPress import XCTest import WordPressFlux +import CoreData class MockItemsStore: ItemsStore { @@ -48,7 +49,7 @@ class ReaderTabViewModelTests: XCTestCase { var settingsPresenter: MockSettingsPresenter! var contextManager: TestContextManager! - var context: MockContext! + var context: NSManagedObjectContext! override func setUp() { store = MockItemsStore() @@ -59,7 +60,7 @@ class ReaderTabViewModelTests: XCTestCase { settingsPresenter: settingsPresenter) contextManager = TestContextManager() - context = contextManager.getMockContext() + context = contextManager.mainContext } override func tearDown() { @@ -174,28 +175,4 @@ extension ReaderTabViewModelTests { controller.setContentExpectation = expectation(description: "Topic was set") return controller } - - private func switchToTabSetup(_ context: MockContext) { - let showTabExpectation = expectation(description: "tab was shown") - let selectIndexExpectation = expectation(description: "index was selected") - - let topicOne = ReaderAbstractTopic(context: context) - topicOne.title = "first topic" - topicOne.path = "myPath/read/following" - - let topicTwo = ReaderAbstractTopic(context: context) - topicTwo.title = "second topic" - - store.items = [ReaderTabItem(ReaderContent(topic: topicOne)), ReaderTabItem(ReaderContent(topic: topicTwo))] - - viewModel.setContent = { content in - showTabExpectation.fulfill() - XCTAssertNotNil(content.topic) - XCTAssertEqual("first topic", content.topic!.title) - } - viewModel.didSelectIndex = { index in - selectIndexExpectation.fulfill() - XCTAssertEqual(0, index) - } - } } diff --git a/WordPress/WordPressTest/ReaderTabViewTests.swift b/WordPress/WordPressTest/ReaderTabViewTests.swift index a7a135d8aa14..1b44dbfbf54a 100644 --- a/WordPress/WordPressTest/ReaderTabViewTests.swift +++ b/WordPress/WordPressTest/ReaderTabViewTests.swift @@ -1,16 +1,17 @@ @testable import WordPress import XCTest +import CoreData class ReaderTabViewTests: XCTestCase { var contextManager: TestContextManager! - var context: MockContext! + var context: NSManagedObjectContext! override func setUp() { super.setUp() contextManager = TestContextManager() - context = contextManager.getMockContext() + context = contextManager.mainContext } override func tearDown() { diff --git a/WordPress/WordPressTest/TestContextManager.h b/WordPress/WordPressTest/TestContextManager.h index ff3ffe09d8b9..0dab35a15bab 100644 --- a/WordPress/WordPressTest/TestContextManager.h +++ b/WordPress/WordPressTest/TestContextManager.h @@ -37,8 +37,6 @@ NS_ASSUME_NONNULL_BEGIN + (instancetype)sharedInstance; + (void)overrideSharedInstance:(id _Nullable)contextManager; -- (MockContext *)getMockContext; - @end NS_ASSUME_NONNULL_END diff --git a/WordPress/WordPressTest/TestContextManager.m b/WordPress/WordPressTest/TestContextManager.m index ce0d0a229ac0..5e7c2da267ec 100644 --- a/WordPress/WordPressTest/TestContextManager.m +++ b/WordPress/WordPressTest/TestContextManager.m @@ -144,12 +144,6 @@ - (NSDictionary *)objectWithContentOfFile:(NSString *)filename return dict; } -- (MockContext *) getMockContext { - MockContext *managedObjectContext = [[MockContext alloc] initWithConcurrencyType: NSMainQueueConcurrencyType]; - managedObjectContext.persistentStoreCoordinator = self.persistentStoreCoordinator; - return managedObjectContext; -} - + (instancetype)sharedInstance { if (_instance) { From 202c76a67225b3be4301cb3f7099ab16dfe61682 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 1 Oct 2021 13:46:40 +1000 Subject: [PATCH 11/29] Update Simulator device and iOS version to use in CircleCI --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 688e7dbea13f..62e6d910a078 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,12 +18,12 @@ xcode_version: &xcode_version xcode-version: "13.0.0" iphone_test_device: &iphone_test_device - device: iPhone 11 - ios-version: "14.4" + device: iPhone 12 + ios-version: "15.0" ipad_test_device: &ipad_test_device device: iPad Air (4th generation) - ios-version: "14.4" + ios-version: "15.0" commands: fix-image: From b5a75cccf684f83e8ef060ebf42a40e0d5b30285 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Fri, 1 Oct 2021 14:30:45 +1000 Subject: [PATCH 12/29] Update Fastlane from 2.184.1 to 2.195.0 I did this to see if it solved the issues we are experiencing with Xcode 13 testing, but that didn't help. --- Gemfile.lock | 97 +++++++++++++++++++++++++++------------------------- 1 file changed, 50 insertions(+), 47 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 6303b0e97cf0..1cb6e0a695d8 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,8 @@ GEM remote: https://rubygems.org/ specs: - CFPropertyList (3.0.3) + CFPropertyList (3.0.4) + rexml activesupport (5.2.6) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 0.7, < 2) @@ -14,21 +15,21 @@ GEM json (>= 1.5.1) artifactory (3.0.15) atomos (0.1.3) - aws-eventstream (1.1.1) - aws-partitions (1.465.0) - aws-sdk-core (3.114.1) + aws-eventstream (1.2.0) + aws-partitions (1.509.0) + aws-sdk-core (3.121.1) aws-eventstream (~> 1, >= 1.0.2) aws-partitions (~> 1, >= 1.239.0) aws-sigv4 (~> 1.1) jmespath (~> 1.0) - aws-sdk-kms (1.43.0) - aws-sdk-core (~> 3, >= 3.112.0) + aws-sdk-kms (1.48.0) + aws-sdk-core (~> 3, >= 3.120.0) aws-sigv4 (~> 1.1) - aws-sdk-s3 (1.96.0) - aws-sdk-core (~> 3, >= 3.112.0) + aws-sdk-s3 (1.103.0) + aws-sdk-core (~> 3, >= 3.120.0) aws-sdk-kms (~> 1) - aws-sigv4 (~> 1.1) - aws-sigv4 (1.2.3) + aws-sigv4 (~> 1.4) + aws-sigv4 (1.4.0) aws-eventstream (~> 1, >= 1.0.2) babosa (1.0.4) bigdecimal (1.4.4) @@ -81,17 +82,17 @@ GEM concurrent-ruby (1.1.9) declarative (0.0.20) diffy (3.4.0) - digest-crc (0.6.3) + digest-crc (0.6.4) rake (>= 12.0.0, < 14.0.0) domain_name (0.5.20190701) unf (>= 0.0.5, < 1.0.0) dotenv (2.7.6) - emoji_regex (3.2.2) + emoji_regex (3.2.3) escape (0.0.4) ethon (0.14.0) ffi (>= 1.15.0) - excon (0.82.0) - faraday (1.7.1) + excon (0.85.0) + faraday (1.8.0) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) faraday-excon (~> 1.1) @@ -113,12 +114,12 @@ GEM faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) faraday-rack (1.0.0) - faraday_middleware (1.0.0) + faraday_middleware (1.1.0) faraday (~> 1.0) - fastimage (2.2.4) - fastlane (2.184.1) + fastimage (2.2.5) + fastlane (2.195.0) CFPropertyList (>= 2.3, < 4.0.0) - addressable (>= 2.3, < 3.0.0) + addressable (>= 2.8, < 3.0.0) artifactory (~> 3.0) aws-sdk-s3 (~> 1.0) babosa (>= 1.0.3, < 2.0.0) @@ -133,7 +134,7 @@ GEM faraday_middleware (~> 1.0) fastimage (>= 2.1.0, < 3.0.0) gh_inspector (>= 1.1.2, < 2.0.0) - google-apis-androidpublisher_v3 (~> 0.1) + google-apis-androidpublisher_v3 (~> 0.3) google-apis-playcustomapp_v1 (~> 0.1) google-cloud-storage (~> 1.31) highline (~> 2.0) @@ -142,6 +143,7 @@ GEM mini_magick (>= 4.9.4, < 5.0.0) multipart-post (~> 2.0.0) naturally (~> 2.2) + optparse (~> 0.1.1) plist (>= 3.1.0, < 4.0.0) rubyzip (>= 2.0.0, < 3.0.0) security (= 0.1.3) @@ -182,47 +184,46 @@ GEM gh_inspector (1.1.3) git (1.9.1) rchardet (~> 1.8) - google-apis-androidpublisher_v3 (0.5.0) - google-apis-core (~> 0.1) - google-apis-core (0.3.0) + google-apis-androidpublisher_v3 (0.11.0) + google-apis-core (>= 0.4, < 2.a) + google-apis-core (0.4.1) addressable (~> 2.5, >= 2.5.1) - googleauth (~> 0.14) - httpclient (>= 2.8.1, < 3.0) + googleauth (>= 0.16.2, < 2.a) + httpclient (>= 2.8.1, < 3.a) mini_mime (~> 1.0) representable (~> 3.0) - retriable (>= 2.0, < 4.0) + retriable (>= 2.0, < 4.a) rexml - signet (~> 0.14) webrick - google-apis-iamcredentials_v1 (0.4.0) - google-apis-core (~> 0.1) - google-apis-playcustomapp_v1 (0.3.0) - google-apis-core (~> 0.1) - google-apis-storage_v1 (0.4.0) - google-apis-core (~> 0.1) + google-apis-iamcredentials_v1 (0.7.0) + google-apis-core (>= 0.4, < 2.a) + google-apis-playcustomapp_v1 (0.5.0) + google-apis-core (>= 0.4, < 2.a) + google-apis-storage_v1 (0.8.0) + google-apis-core (>= 0.4, < 2.a) google-cloud-core (1.6.0) google-cloud-env (~> 1.0) google-cloud-errors (~> 1.0) google-cloud-env (1.5.0) faraday (>= 0.17.3, < 2.0) - google-cloud-errors (1.1.0) - google-cloud-storage (1.31.1) + google-cloud-errors (1.2.0) + google-cloud-storage (1.34.1) addressable (~> 2.5) digest-crc (~> 0.4) google-apis-iamcredentials_v1 (~> 0.1) google-apis-storage_v1 (~> 0.1) - google-cloud-core (~> 1.2) - googleauth (~> 0.9) + google-cloud-core (~> 1.6) + googleauth (>= 0.16.2, < 2.a) mini_mime (~> 1.0) - googleauth (0.16.2) + googleauth (1.0.0) faraday (>= 0.17.3, < 2.0) jwt (>= 1.4, < 3.0) memoist (~> 0.16) multi_json (~> 1.11) os (>= 0.9, < 2.0) - signet (~> 0.14) + signet (>= 0.16, < 2.a) highline (2.0.3) - http-cookie (1.0.3) + http-cookie (1.0.4) domain_name (~> 0.5) httpclient (2.8.3) i18n (1.8.10) @@ -235,7 +236,7 @@ GEM jwt (2.2.3) memoist (0.16.2) mini_magick (4.11.0) - mini_mime (1.1.0) + mini_mime (1.1.1) mini_portile2 (2.6.1) minitest (5.14.4) molinillo (0.6.6) @@ -254,6 +255,7 @@ GEM oj (3.13.4) optimist (3.0.1) options (2.3.2) + optparse (0.1.1) os (1.1.1) parallel (1.20.1) plist (3.6.0) @@ -278,13 +280,13 @@ GEM i18n ruby-macho (1.4.0) ruby2_keywords (0.0.5) - rubyzip (2.3.0) + rubyzip (2.3.2) sawyer (0.8.2) addressable (>= 2.3.5) faraday (> 0.8, < 2.0) security (0.1.3) - signet (0.15.0) - addressable (~> 2.3) + signet (0.16.0) + addressable (~> 2.8) faraday (>= 0.17.3, < 2.0) jwt (>= 1.5, < 3.0) multi_json (~> 1.10) @@ -310,16 +312,17 @@ GEM uber (0.1.0) unf (0.1.4) unf_ext - unf_ext (0.0.7.7) - unicode-display_width (1.7.0) + unf_ext (0.0.8) + unicode-display_width (1.8.0) webrick (1.7.0) word_wrap (1.0.0) - xcodeproj (1.19.0) + xcodeproj (1.21.0) CFPropertyList (>= 2.3.3, < 4.0) atomos (~> 0.1.3) claide (>= 1.0.2, < 2.0) colored2 (~> 3.1) nanaimo (~> 0.3.0) + rexml (~> 3.2.4) xcpretty (0.3.0) rouge (~> 2.0.7) xcpretty-travis-formatter (1.0.1) @@ -344,4 +347,4 @@ DEPENDENCIES xcpretty-travis-formatter BUNDLED WITH - 2.2.25 + 2.2.27 From 56f8c735344ca98c16f9f64d6fe385c37c23d060 Mon Sep 17 00:00:00 2001 From: Stephenie Harris Date: Wed, 27 Oct 2021 16:24:25 -0600 Subject: [PATCH 13/29] Fix sheet being fullscreen in iOS15. --- .../User Profile Sheet/UserProfileSheetViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/Classes/ViewRelated/User Profile Sheet/UserProfileSheetViewController.swift b/WordPress/Classes/ViewRelated/User Profile Sheet/UserProfileSheetViewController.swift index b3388968bee5..450e1301f4a1 100644 --- a/WordPress/Classes/ViewRelated/User Profile Sheet/UserProfileSheetViewController.swift +++ b/WordPress/Classes/ViewRelated/User Profile Sheet/UserProfileSheetViewController.swift @@ -45,7 +45,6 @@ class UserProfileSheetViewController: UITableViewController { size.height += bottomPadding preferredContentSize = size - presentedVC?.presentedView?.layoutIfNeeded() } } @@ -171,6 +170,7 @@ private extension UserProfileSheetViewController { func configureTable() { tableView.backgroundColor = .basicBackground tableView.separatorStyle = .none + tableView.isScrollEnabled = false } func registerTableCells() { From a99d8c60e17c7b8bba4a3c60b2cc4406a897754a Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 28 Oct 2021 13:52:30 +1100 Subject: [PATCH 14/29] Use new Automattic Xcode 13 image in Buildkite --- .buildkite/cache-builder.yml | 4 ++-- .buildkite/pipeline.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.buildkite/cache-builder.yml b/.buildkite/cache-builder.yml index 7d6da67896a1..0a9aaee6a1bc 100644 --- a/.buildkite/cache-builder.yml +++ b/.buildkite/cache-builder.yml @@ -13,13 +13,13 @@ common_params: repo: "wordpress-mobile/wordpress-ios/" # Common environment values to use with the `env` key. - &common_env - IMAGE_ID: xcode-12.5.1 + IMAGE_ID: xcode-13 steps: ################# # Build the CocoaPods Base Cache - # + # # This prevents the base cache from infinite growth caused by storing every # version of every pod we've ever used. ################# diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index cf18bd60697b..60b492c34891 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -8,7 +8,7 @@ common_params: repo: "wordpress-mobile/wordpress-ios/" # Common environment values to use with the `env` key. - &common_env - IMAGE_ID: xcode-13.0 + IMAGE_ID: xcode-13 # This is the default pipeline – it will build and test the app steps: From b5418e595487149352f784d8048989adc3d04126 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 28 Oct 2021 13:52:45 +1100 Subject: [PATCH 15/29] Run tests on iOS 15 in Buildkite --- .buildkite/pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 60b492c34891..8072a63be053 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -45,7 +45,7 @@ steps: # UI Tests ################# - label: "🧪 UI Tests (iPhone)" - command: .buildkite/commands/run-ui-tests.sh WordPressUITests 'iPhone 11' 14.1 + command: .buildkite/commands/run-ui-tests.sh WordPressUITests 'iPhone 13' 15.0 depends_on: "build" env: *common_env plugins: *common_plugins @@ -54,7 +54,7 @@ steps: - label: "🧪 UI Tests (iPad)" - command: .buildkite/commands/run-ui-tests.sh WordPressUITests "iPad Air (4th generation)" 14.1 + command: .buildkite/commands/run-ui-tests.sh WordPressUITests "iPad Air (4th generation)" 15.0 depends_on: "build" env: *common_env plugins: *common_plugins From e337922b596275cc96c13100406c324a92679800 Mon Sep 17 00:00:00 2001 From: Leandro Alonso Date: Fri, 29 Oct 2021 12:57:01 -0300 Subject: [PATCH 16/29] fastlane: filter tests to prevent test crashes --- fastlane/Fastfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index ab68421e5c86..6502264fb392 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -845,6 +845,9 @@ platform :ios do UI.user_error!("Unable to find .xctestrun file at #{build_products_path}") end + all_tests = tests_from_xctestrun(xctestrun: test_plan_path) + only_testing = all_tests["WordPressTest"].reject { |t| t.include?("ContextManagerMock") || t.include?("TestContextManager") || t.include?("OCMLocation") || t.include?("HTTPStubsDescriptor") } + multi_scan( workspace: WORKSPACE_PATH, scheme: 'WordPress', @@ -852,6 +855,7 @@ platform :ios do deployment_target_version: options[:ios_version], ensure_devices_found: true, test_without_building: true, + only_testing: only_testing, xctestrun: test_plan_path, try_count: options[:try_count], output_directory: File.join(PROJECT_ROOT_FOLDER, 'build', 'results'), From fc376fddadd50601a6d75beaea67531a072f5040 Mon Sep 17 00:00:00 2001 From: Jeremy Massel <1123407+jkmassel@users.noreply.github.com> Date: Fri, 29 Oct 2021 10:50:53 -0600 Subject: [PATCH 17/29] Fix Ruby Issue --- .buildkite/commands/build-for-testing.sh | 4 ++++ .buildkite/commands/run-ui-tests.sh | 4 ++++ .buildkite/commands/run-unit-tests.sh | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/.buildkite/commands/build-for-testing.sh b/.buildkite/commands/build-for-testing.sh index ea6214217b90..d6813199517c 100755 --- a/.buildkite/commands/build-for-testing.sh +++ b/.buildkite/commands/build-for-testing.sh @@ -1,5 +1,9 @@ #!/bin/bash -eu +# Temporary fix until we're on the Xcode 13.1 VM +echo "--- :rubygems: Fixing Ruby Setup" +gem install bundler + echo "--- :rubygems: Setting up Gems" restore_cache "$(hash_file .ruby-version)-$(hash_file Gemfile.lock)" install_gems diff --git a/.buildkite/commands/run-ui-tests.sh b/.buildkite/commands/run-ui-tests.sh index dc0ec91e4bd8..61151474e077 100755 --- a/.buildkite/commands/run-ui-tests.sh +++ b/.buildkite/commands/run-ui-tests.sh @@ -14,6 +14,10 @@ echo "--- :wrench: Fixing VM" brew install openjdk@11 sudo ln -sfn /usr/local/opt/openjdk@11/libexec/openjdk.jdk /Library/Java/JavaVirtualMachines/openjdk-11.jdk +# Temporary fix until we're on the Xcode 13.1 VM +echo "--- :rubygems: Fixing Ruby Setup" +gem install bundler + echo "--- :rubygems: Setting up Gems" install_gems diff --git a/.buildkite/commands/run-unit-tests.sh b/.buildkite/commands/run-unit-tests.sh index 5b2f26221a34..d937969252b8 100755 --- a/.buildkite/commands/run-unit-tests.sh +++ b/.buildkite/commands/run-unit-tests.sh @@ -4,6 +4,10 @@ echo "--- 📦 Downloading Build Artifacts" buildkite-agent artifact download build-products.tar . tar -xf build-products.tar +# Temporary fix until we're on the Xcode 13.1 VM +echo "--- :rubygems: Fixing Ruby Setup" +gem install bundler + echo "--- :rubygems: Setting up Gems" install_gems From 54d07bd7a6d3a44f3aade22599e9e6b8880b6c78 Mon Sep 17 00:00:00 2001 From: Oguz Kocer Date: Fri, 29 Oct 2021 12:50:10 -0400 Subject: [PATCH 18/29] Update translations --- .../Resources/ar.lproj/Localizable.strings | 14 +-- .../Resources/de.lproj/Localizable.strings | 68 ++++++------- .../Resources/he.lproj/Localizable.strings | 68 ++++++------- .../Resources/id.lproj/Localizable.strings | 68 ++++++------- .../Resources/it.lproj/Localizable.strings | 64 ++++++------ .../Resources/ja.lproj/Localizable.strings | 66 ++++++------ .../Resources/ko.lproj/Localizable.strings | 66 ++++++------ .../Resources/sq.lproj/Localizable.strings | 94 +++++++++--------- .../Resources/tr.lproj/Localizable.strings | 64 ++++++------ .../zh-Hans.lproj/Localizable.strings | 66 ++++++------ .../zh-Hant.lproj/Localizable.strings | 66 ++++++------ .../ar.lproj/Localizable.strings | Bin 4619 -> 4619 bytes .../bg.lproj/Localizable.strings | Bin 3614 -> 3614 bytes .../cs.lproj/Localizable.strings | Bin 4727 -> 4727 bytes .../cy.lproj/Localizable.strings | Bin 3239 -> 3239 bytes .../da.lproj/Localizable.strings | Bin 3228 -> 3228 bytes .../de.lproj/Localizable.strings | Bin 4917 -> 4917 bytes .../en-AU.lproj/Localizable.strings | Bin 3057 -> 3057 bytes .../en-CA.lproj/Localizable.strings | Bin 3123 -> 3123 bytes .../en-GB.lproj/Localizable.strings | Bin 3067 -> 3067 bytes .../es.lproj/Localizable.strings | Bin 4114 -> 4114 bytes .../fr.lproj/Localizable.strings | Bin 5336 -> 5336 bytes .../he.lproj/Localizable.strings | Bin 4586 -> 4586 bytes .../hr.lproj/Localizable.strings | Bin 3228 -> 3228 bytes .../hu.lproj/Localizable.strings | Bin 3297 -> 3297 bytes .../id.lproj/Localizable.strings | Bin 3469 -> 3469 bytes .../is.lproj/Localizable.strings | Bin 3414 -> 3414 bytes .../it.lproj/Localizable.strings | Bin 3926 -> 3926 bytes .../ja.lproj/Localizable.strings | Bin 3632 -> 3632 bytes .../ko.lproj/Localizable.strings | Bin 3476 -> 3476 bytes .../nb.lproj/Localizable.strings | Bin 3832 -> 3832 bytes .../nl.lproj/Localizable.strings | Bin 3689 -> 3689 bytes .../pl.lproj/Localizable.strings | Bin 3214 -> 3214 bytes .../pt-BR.lproj/Localizable.strings | Bin 4358 -> 4358 bytes .../pt.lproj/Localizable.strings | Bin 3712 -> 3712 bytes .../ro.lproj/Localizable.strings | Bin 4930 -> 4930 bytes .../ru.lproj/Localizable.strings | Bin 5105 -> 5105 bytes .../sk.lproj/Localizable.strings | Bin 4899 -> 4899 bytes .../sq.lproj/Localizable.strings | Bin 4927 -> 4927 bytes .../sv.lproj/Localizable.strings | Bin 5070 -> 5070 bytes .../th.lproj/Localizable.strings | Bin 3316 -> 3316 bytes .../tr.lproj/Localizable.strings | Bin 4905 -> 4905 bytes .../zh-Hans.lproj/Localizable.strings | Bin 3125 -> 3125 bytes .../zh-Hant.lproj/Localizable.strings | Bin 3102 -> 3102 bytes .../ar.lproj/Localizable.strings | Bin 146 -> 146 bytes .../bg.lproj/Localizable.strings | Bin 174 -> 174 bytes .../cs.lproj/Localizable.strings | Bin 176 -> 176 bytes .../cy.lproj/Localizable.strings | Bin 118 -> 118 bytes .../da.lproj/Localizable.strings | Bin 128 -> 128 bytes .../de.lproj/Localizable.strings | Bin 139 -> 139 bytes .../en-AU.lproj/Localizable.strings | Bin 84 -> 84 bytes .../en-CA.lproj/Localizable.strings | Bin 84 -> 84 bytes .../en-GB.lproj/Localizable.strings | Bin 84 -> 84 bytes .../es.lproj/Localizable.strings | Bin 128 -> 128 bytes .../fr.lproj/Localizable.strings | Bin 129 -> 129 bytes .../he.lproj/Localizable.strings | Bin 150 -> 150 bytes .../hr.lproj/Localizable.strings | Bin 119 -> 119 bytes .../hu.lproj/Localizable.strings | Bin 160 -> 160 bytes .../id.lproj/Localizable.strings | Bin 134 -> 134 bytes .../is.lproj/Localizable.strings | Bin 138 -> 138 bytes .../it.lproj/Localizable.strings | Bin 120 -> 120 bytes .../ja.lproj/Localizable.strings | Bin 118 -> 118 bytes .../ko.lproj/Localizable.strings | Bin 110 -> 110 bytes .../nb.lproj/Localizable.strings | Bin 133 -> 133 bytes .../nl.lproj/Localizable.strings | Bin 116 -> 116 bytes .../pl.lproj/Localizable.strings | Bin 96 -> 96 bytes .../pt-BR.lproj/Localizable.strings | Bin 158 -> 158 bytes .../pt.lproj/Localizable.strings | Bin 156 -> 156 bytes .../ro.lproj/Localizable.strings | Bin 148 -> 148 bytes .../ru.lproj/Localizable.strings | Bin 166 -> 166 bytes .../sk.lproj/Localizable.strings | Bin 140 -> 140 bytes .../sq.lproj/Localizable.strings | Bin 134 -> 134 bytes .../sv.lproj/Localizable.strings | Bin 146 -> 146 bytes .../th.lproj/Localizable.strings | Bin 154 -> 154 bytes .../tr.lproj/Localizable.strings | Bin 170 -> 170 bytes .../zh-Hans.lproj/Localizable.strings | Bin 110 -> 110 bytes .../zh-Hant.lproj/Localizable.strings | Bin 112 -> 112 bytes 77 files changed, 352 insertions(+), 352 deletions(-) diff --git a/WordPress/Resources/ar.lproj/Localizable.strings b/WordPress/Resources/ar.lproj/Localizable.strings index dedddc555935..466ba7a05a2e 100644 --- a/WordPress/Resources/ar.lproj/Localizable.strings +++ b/WordPress/Resources/ar.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-10-23 16:48:40+0000 */ +/* Translation-Revision-Date: 2021-10-26 15:54:08+0000 */ /* Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5)))); */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ar */ @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "شارك المقالات الجديدة تلقائيًّا على حساباتك على وسائل التواصل الاجتماعي."; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "قم بمشاركة المقالات الجديدة تلقائيًا على شبكات التواصل الاجتماعي الخاصة بك لبدء لجلب ذلك الجمهور مباشرةً إلى موقعك."; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "تحديثات تلقائية"; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "بكلمات قليلة، اكتب نبذة قصيرة عن الموقع."; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "لمشاركة مقالاتك المنشورة على شبكات التواصل الاجتماعي الخاصة بك، سيتعيَّن عليك تمكين وحدة الإشهار النمطية."; /* Describes a status of a plugin */ "Inactive" = "غير مفعل"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "متابعة التحرير"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "استمر في التدوين وتحقَّق مرة أخرى للاطلاع على الزائرين الذين يصلون إلى موقعك."; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "واكب التحديثات المتعلقة بأداء موقعك."; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "يرجى إدخال اسم عائلة صالح"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "يرجى إدخال مؤسسة صالحة"; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "يرجى إدخال رمز بريدي صالح"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "نشاط النشر"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "يمكن أن يساعد النشر بانتظام على بناء جمهور. يمكن أن تساعد التذكيرات على إبقائك في المسار الصحيح."; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "يمكن أن يساعد النشر بشكل منتظم على الحفاظ على انشغال القراء وجذب زائرين جدد إلى موقعك."; @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "عندما تُجري تغييرات على موقعك، ستتمكن من رؤية تاريخ النشاط الخاص بك هنا."; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "عندما تنشر مقالتك التالية، ستتم مشاركتها تلقائيًا على شبكاتك المتصلة."; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "ما الإصدار الذي ترغب في تحريره؟"; diff --git a/WordPress/Resources/de.lproj/Localizable.strings b/WordPress/Resources/de.lproj/Localizable.strings index 04ec092c904a..e1241662eae0 100644 --- a/WordPress/Resources/de.lproj/Localizable.strings +++ b/WordPress/Resources/de.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-10-18 19:49:03+0000 */ +/* Translation-Revision-Date: 2021-10-27 15:54:08+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: de */ @@ -13,7 +13,7 @@ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nBitte gib den Benutzernamen vor dem Schließen erneut an, um den Vorgang zu bestätigen.\n\n"; /* No comment provided by engineer. */ -" \/ year" = " \/ year"; +" \/ year" = " \/Jahr"; /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Verzögertes Laden von Bildern"; @@ -357,7 +357,7 @@ translators: Block name. %s: The localized block name */ "A tag named '%@' already exists." = "Ein Schlagwort mit dem Namen „%@“ besteht bereits."; /* A hint to users about growing the audience for their site, when their site doesn't have many views yet. */ -"A tip to grow your audience" = "A tip to grow your audience"; +"A tip to grow your audience" = "Ein Tipp für ein größeres Publikum"; /* Placeholder text for the title of a site */ "A title for the site" = "Website-Titel"; @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "Teile automatisch neue Beiträge für deine Social Media-Konten."; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "Teile neue Beiträge automatisch in deinen sozialen Medien, um diese Zielgruppe auf deine Website zu holen."; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "Automatische Updates"; @@ -1536,10 +1536,10 @@ translators: Block name. %s: The localized block name */ "Comment Likes" = "„Gefällt mir“ bei Kommentaren"; /* Message displayed when approving a comment succeeds. */ -"Comment approved." = "Comment approved."; +"Comment approved." = "Kommentar genehmigt."; /* Message displayed when deleting a comment succeeds. */ -"Comment deleted." = "Comment deleted."; +"Comment deleted." = "Kommentar gelöscht."; /* Displayed when a Comment is deleted */ "Comment has been deleted" = "Kommentar wurde gelöscht"; @@ -1548,17 +1548,17 @@ translators: Block name. %s: The localized block name */ "Comment has been marked as Spam" = "Kommentar wurde als Spam markiert"; /* Message displayed when spamming a comment succeeds. */ -"Comment marked as spam." = "Comment marked as spam."; +"Comment marked as spam." = "Kommentar als Spam markiert."; /* Message displayed when trashing a comment succeeds. */ -"Comment moved to trash." = "Comment moved to trash."; +"Comment moved to trash." = "Kommentar in den Papierkorb verschoben."; /* Provides hint that the current screen displays a comment on a post. The title of the post will displayed below this string. Example: Comment on My First Post */ "Comment on" = "Kommentar zu"; /* Message displayed when pending a comment succeeds. */ -"Comment set to pending." = "Comment set to pending."; +"Comment set to pending." = "Kommentar als ausstehend festgelegt."; /* Filters Comments Notifications Insights 'Comments' header @@ -1682,7 +1682,7 @@ translators: Block name. %s: The localized block name */ "Connect another site" = "Andere Website verbinden"; /* Title for button that will open up the social media Sharing screen. */ -"Connect more networks" = "Connect more networks"; +"Connect more networks" = "Mehr Netzwerke verbinden"; /* Instructional text appearing below a `Connect` button. The `%@` is a placeholder for the name of a third-party sharing service. */ "Connect to automatically share your blog posts to %@" = "Verbinden, um Blogbeiträge automatisch mit %@ zu teilen."; @@ -1968,10 +1968,10 @@ translators: Block name. %s: The localized block name */ "Create downloadable file" = "Herunterladbare Datei erstellen"; /* No comment provided by engineer. */ -"Create embed" = "Create embed"; +"Create embed" = "Einbettung erstellen"; /* No comment provided by engineer. */ -"Create link" = "Create link"; +"Create link" = "Link erstellen"; /* Customize Insights description */ "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about." = "Erstelle dein eigenes, individuelles Dashboard und wähle aus, welche Berichte angezeigt werden sollen. Konzentriere dich dabei auf die Daten, die für dich am wichtigsten sind."; @@ -2309,7 +2309,7 @@ translators: Block name. %s: The localized block name */ "Domains" = "Domains"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; +"Domains purchased on this site will redirect to %@" = "Auf dieser Website erworbene Domains leiten zu %@ weiter"; /* Description for the first domain purchased with a free plan. */ "Domains purchased on this site will redirect users to " = "Auf dieser Website erworbene Domains werden Nutzer weiterleiten zu "; @@ -2524,7 +2524,7 @@ translators: Block name. %s: The localized block name */ "Edit new posts and pages with the block editor." = "Bearbeite neue Beiträge und Seiten mit dem Block-Editor."; /* Title for button that will open up the blogging reminders screen. */ -"Edit reminders" = "Edit reminders"; +"Edit reminders" = "Erinnerungen bearbeiten"; /* Title for the edit sharing buttons section */ "Edit sharing buttons" = "Teilen-Buttons bearbeiten"; @@ -2631,7 +2631,7 @@ translators: Block name. %s: The localized block name */ "Enable" = "Aktivieren"; /* Text shown when the site doesn't have the Publicize module enabled. */ -"Enable Publicize" = "Enable Publicize"; +"Enable Publicize" = "Publicize aktivieren"; /* Title of a row displayed on the debug screen used in debug builds of the app */ "Enable Quick Start for Site" = "Schnellstart für die Website aktivieren"; @@ -2730,7 +2730,7 @@ translators: Block name. %s: The localized block name */ "Error approving comment" = "Fehler beim Genehmigen eines Kommentars"; /* Message displayed when approving a comment fails. */ -"Error approving comment." = "Error approving comment."; +"Error approving comment." = "Fehler beim Genehmigen eines Kommentars."; /* No comment (test) This secondary message is displayed if a user encounters a general error. */ @@ -2743,7 +2743,7 @@ translators: Block name. %s: The localized block name */ "Error deleting comment" = "Fehler beim Löschen eines Kommentars"; /* Message displayed when deleting a comment fails. */ -"Error deleting comment." = "Error deleting comment."; +"Error deleting comment." = "Fehler beim Löschen eines Kommentars."; /* There was an error disabling autoupdates for a plugin, placeholder is the plugin name */ "Error disabling autoupdates for %@." = "Fehler beim Deaktivieren automatischer Updates für %@."; @@ -2773,10 +2773,10 @@ translators: Block name. %s: The localized block name */ "Error marking comment as spam" = "Fehler beim Kennzeichnen eines Kommentars als Spam"; /* Message displayed when spamming a comment fails. */ -"Error marking comment as spam." = "Error marking comment as spam."; +"Error marking comment as spam." = "Fehler beim Kennzeichnen eines Kommentars als Spam."; /* Message displayed when trashing a comment fails. */ -"Error moving comment to trash." = "Error moving comment to trash."; +"Error moving comment to trash." = "Fehler beim Verschieben des Kommentars in den Papierkorb."; /* Text displayed in HUD while a post revision is being loaded. */ "Error occurred\nduring loading" = "Ein Fehler ist aufgetreten\nbeim Laden"; @@ -2812,7 +2812,7 @@ translators: Block name. %s: The localized block name */ "Error sending verification email. Check your connection and try again." = "Beim Senden der Verifizierungs-E-Mail ist ein Fehler aufgetreten. Überprüfe deine Verbindung und versuche es nochmal."; /* Message displayed when pending a comment fails. */ -"Error setting comment to pending." = "Error setting comment to pending."; +"Error setting comment to pending." = "Fehler beim Festlegen des Kommentars als ausstehend."; /* Message shown when unapproving a Comment fails. */ "Error unapproving comment" = "Fehler beim Ablehnen eines Kommentars"; @@ -3136,7 +3136,7 @@ translators: Block name. %s: The localized block name */ "Free Photo Library" = "Kostenlose Fotobibliothek"; /* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; +"Free for the first year " = "Im ersten Jahr kostenlos "; /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Gib Speicherplatz auf diesem Gerät frei, indem du temporäre Mediendateien löschst. Dies hat keine Auswirkung auf die Medien auf deiner Website."; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "Erkläre in ein paar Worten, worum es auf der Website geht. "; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "Um deine veröffentlichten Beiträge in deinen sozialen Medien zu teilen, musst du das Publicize-Modul aktivieren."; /* Describes a status of a plugin */ "Inactive" = "Inaktiv"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "Weiter bearbeiten"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "Blogge weiter und schau immer wieder vorbei, um zu sehen, ob Besucher deine Website besuchen."; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "Bleib auf dem Laufenden über die Leistung deiner Website."; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "Bitte gib einen gültigen Nachnamen ein"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "Gib eine gültige Organisation ein"; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "Bitte gib eine gültige Postleitzahl ein"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "Beitragsaktivität"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "Regelmäßiges Veröffentlichen kann dir helfen, eine Zielgruppe aufzubauen. Erinnerungen helfen dir, dein Ziel zu erreichen."; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "Durch regelmäßige Beiträge bindest du deine Leser und lockst neue Besucher auf deine Website."; @@ -6041,7 +6041,7 @@ translators: Block name. %s: The localized block name */ "Search button. Current button text is" = "Button suchen Aktueller Button-Text ist"; /* Search domain - Title for the Suggested domains screen */ -"Search domains" = "Search domains"; +"Search domains" = "Domains durchsuchen"; /* title of the button that searches the first domain. */ "Search for a domain" = "Domain suchen"; @@ -6151,7 +6151,7 @@ translators: Block name. %s: The localized block name */ "Select a layout" = "Layout auswählen"; /* Register domain - Title for the Choose domain button of Suggested domains screen */ -"Select domain" = "Select domain"; +"Select domain" = "Domain auswählen"; /* Accessibility hint for actions when displaying media items. */ "Select media." = "Dateien auswählen"; @@ -6269,7 +6269,7 @@ translators: Block name. %s: The localized block name */ "Set up Jetpack" = "Jetpack einrichten"; /* Title for button that will open up the blogging reminders screen. */ -"Set up blogging reminders" = "Set up blogging reminders"; +"Set up blogging reminders" = "Blog-Erinnerungen einrichten"; /* Description on the first screen of the Blogging Reminders Settings flow called from site settings. */ "Set up your blogging reminders on days you want to post." = "Richte deine Blog-Erinnerungen für Tage ein, an denen du einen Beitrag veröffentlichen möchtest."; @@ -6345,7 +6345,7 @@ translators: Block name. %s: The localized block name */ "Sharing error" = "Fehler beim Teilen"; /* A hint to users that they've set up post sharing. */ -"Sharing is set up!" = "Sharing is set up!"; +"Sharing is set up!" = "Teilen ist eingerichtet!"; /* Label for configuration switch to show/hide the header for the related posts section */ "Show Header" = "Header anzeigen"; @@ -7043,7 +7043,7 @@ translators: Block name. %s: The localized block name */ "The media could not be added to the Media Library." = "Die Mediendatei konnte nicht zur Mediathek hinzugefügt werden."; /* Error shown when a module can not be enabled */ -"The module couldn't be activated." = "The module couldn't be activated."; +"The module couldn't be activated." = "Das Modul konnte nicht aktiviert werden."; /* Text above the selection of the number of posts to show per blog page */ "The number of posts to show per page." = "Die Anzahl der Beiträge, die pro Seite angezeigt werden."; @@ -8050,7 +8050,7 @@ translators: Block name. %s: The localized block name */ "View more" = "Mehr anzeigen"; /* Description for view count. Singular. */ -"View to your site so far" = "View to your site so far"; +"View to your site so far" = "Bisheriger Aufruf deiner Website"; /* Title of a Quick Start Tour */ "View your site" = "Deine Website ansehen"; @@ -8071,7 +8071,7 @@ translators: Block name. %s: The localized block name */ "Views" = "Aufrufe"; /* Description for view count. Singular. */ -"Views to your site so far" = "Views to your site so far"; +"Views to your site so far" = "Bisherige Aufrufe deiner Website"; /* Label for Visibility The visibility settings of the post. Should be the same as in core WP. @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "Wenn du Änderungen an deiner Website vornimmst, kann du hier deinen Aktivitätsverlauf sehen."; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "Wenn du deinen nächsten Beitrag veröffentlichst, wird er automatisch in deinen verbundenen Netzwerken geteilt."; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "Welche Version möchtest du gerne bearbeiten?"; @@ -8791,7 +8791,7 @@ translators: Block name. %s: The localized block name */ "You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog" = "Du hast anscheinend ein Mobil-Plugin von DudaMobile installiert, welche die App davon abhält, sich mit deinem Blog zu verbinden."; /* A hint to users that they've set up blogging reminders. */ -"You set up blogging reminders" = "You set up blogging reminders"; +"You set up blogging reminders" = "Du hast Blog-Erinnerungen hinzugefügt"; /* Message displayed in ignore threat alert. %1$@ is a placeholder for the blog name. */ "You shouldn’t ignore a security issue unless you are absolutely sure it’s harmless. If you choose to ignore this threat, it will remain on your site \"%1$@\"." = "Ein Sicherheitsproblem solltest du nur ignorieren, wenn du dir absolut sicher bist, dass es harmlos ist. Wenn du diese Bedrohung ignorieren möchtest, bleibt sie weiterhin auf deiner Website „%1$@“ bestehen."; diff --git a/WordPress/Resources/he.lproj/Localizable.strings b/WordPress/Resources/he.lproj/Localizable.strings index 87d1f09e74c5..a95fb9f72a16 100644 --- a/WordPress/Resources/he.lproj/Localizable.strings +++ b/WordPress/Resources/he.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-10-12 13:54:08+0000 */ +/* Translation-Revision-Date: 2021-10-26 13:54:08+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: he_IL */ @@ -13,7 +13,7 @@ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nלאישור, עליך להזין שוב את שם המשתמש שלך לפני הסגירה.\n\n"; /* No comment provided by engineer. */ -" \/ year" = " \/ year"; +" \/ year" = " לשנה"; /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "'טעינה עצלה' של תמונות"; @@ -357,7 +357,7 @@ translators: Block name. %s: The localized block name */ "A tag named '%@' already exists." = "תגית בשם '%@' כבר קיימת."; /* A hint to users about growing the audience for their site, when their site doesn't have many views yet. */ -"A tip to grow your audience" = "A tip to grow your audience"; +"A tip to grow your audience" = "עצה להגדלת הקהל שלך"; /* Placeholder text for the title of a site */ "A title for the site" = "כותרת אתר"; @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "שיתוף אוטומטי של פוסטים חדשים בחשבונות שלך ברשתות החברתיות."; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "ניתן לשתף באופן אוטומטי פוסטים חדשים ברשתות החברתיות כדי להביא עוד קהל לאתר שלך."; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "עדכונים אוטומטיים"; @@ -1536,10 +1536,10 @@ translators: Block name. %s: The localized block name */ "Comment Likes" = "'לייקים' לתגובה"; /* Message displayed when approving a comment succeeds. */ -"Comment approved." = "Comment approved."; +"Comment approved." = "התגובה אושרה."; /* Message displayed when deleting a comment succeeds. */ -"Comment deleted." = "Comment deleted."; +"Comment deleted." = "התגובה נמחקה."; /* Displayed when a Comment is deleted */ "Comment has been deleted" = "תגובה נמחקה"; @@ -1548,17 +1548,17 @@ translators: Block name. %s: The localized block name */ "Comment has been marked as Spam" = "התגובה סומנה כתגובת זבל"; /* Message displayed when spamming a comment succeeds. */ -"Comment marked as spam." = "Comment marked as spam."; +"Comment marked as spam." = "התגובה סומנה כתגובת זבל."; /* Message displayed when trashing a comment succeeds. */ -"Comment moved to trash." = "Comment moved to trash."; +"Comment moved to trash." = "התגובה הועברה לפח."; /* Provides hint that the current screen displays a comment on a post. The title of the post will displayed below this string. Example: Comment on My First Post */ "Comment on" = "תגובה על"; /* Message displayed when pending a comment succeeds. */ -"Comment set to pending." = "Comment set to pending."; +"Comment set to pending." = "התגובה הוגדרה ל'בהמתנה'."; /* Filters Comments Notifications Insights 'Comments' header @@ -1682,7 +1682,7 @@ translators: Block name. %s: The localized block name */ "Connect another site" = "חיבור אתר נוסף"; /* Title for button that will open up the social media Sharing screen. */ -"Connect more networks" = "Connect more networks"; +"Connect more networks" = "לחבר רשתות נוספות"; /* Instructional text appearing below a `Connect` button. The `%@` is a placeholder for the name of a third-party sharing service. */ "Connect to automatically share your blog posts to %@" = "יש להתחבר כדי לשתף את הפוסטים בבלוג שלך אוטומטית עם %@"; @@ -1968,10 +1968,10 @@ translators: Block name. %s: The localized block name */ "Create downloadable file" = "ליצור קובץ להורדה"; /* No comment provided by engineer. */ -"Create embed" = "Create embed"; +"Create embed" = "ליצור תוכן מוטמע"; /* No comment provided by engineer. */ -"Create link" = "Create link"; +"Create link" = "ליצור קישור"; /* Customize Insights description */ "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about." = "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about."; @@ -2309,7 +2309,7 @@ translators: Block name. %s: The localized block name */ "Domains" = "דומיינים"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; +"Domains purchased on this site will redirect to %@" = "רכישות דומיין באתר זה ינתבו את המבקרים אל %@"; /* Description for the first domain purchased with a free plan. */ "Domains purchased on this site will redirect users to " = "דומיינים שנרכשו באתר זה ינתבו את המשתמשים אל "; @@ -2524,7 +2524,7 @@ translators: Block name. %s: The localized block name */ "Edit new posts and pages with the block editor." = "לעריכת פוסטים ועמודים חדשים עם עורך הבלוקים."; /* Title for button that will open up the blogging reminders screen. */ -"Edit reminders" = "Edit reminders"; +"Edit reminders" = "לערוך תזכורות"; /* Title for the edit sharing buttons section */ "Edit sharing buttons" = "עריכת כפתורי שיתוף"; @@ -2631,7 +2631,7 @@ translators: Block name. %s: The localized block name */ "Enable" = "הפעלה"; /* Text shown when the site doesn't have the Publicize module enabled. */ -"Enable Publicize" = "Enable Publicize"; +"Enable Publicize" = "להפעיל את השיתוף האוטומטי"; /* Title of a row displayed on the debug screen used in debug builds of the app */ "Enable Quick Start for Site" = "להפעיל התחלה מהירה לאתר"; @@ -2730,7 +2730,7 @@ translators: Block name. %s: The localized block name */ "Error approving comment" = "שגיאה באישור התגובה"; /* Message displayed when approving a comment fails. */ -"Error approving comment." = "Error approving comment."; +"Error approving comment." = "שגיאה באישור התגובה."; /* No comment (test) This secondary message is displayed if a user encounters a general error. */ @@ -2743,7 +2743,7 @@ translators: Block name. %s: The localized block name */ "Error deleting comment" = "שגיאה במחיקת התגובה"; /* Message displayed when deleting a comment fails. */ -"Error deleting comment." = "Error deleting comment."; +"Error deleting comment." = "שגיאה במחיקת התגובה."; /* There was an error disabling autoupdates for a plugin, placeholder is the plugin name */ "Error disabling autoupdates for %@." = "שגיאה בעת השבתת העדכונים האוטומטיים של %@."; @@ -2773,10 +2773,10 @@ translators: Block name. %s: The localized block name */ "Error marking comment as spam" = "שגיאה בסימון התגובה כתגובת זבל"; /* Message displayed when spamming a comment fails. */ -"Error marking comment as spam." = "Error marking comment as spam."; +"Error marking comment as spam." = "שגיאה בסימון התגובה כתגובת זבל."; /* Message displayed when trashing a comment fails. */ -"Error moving comment to trash." = "Error moving comment to trash."; +"Error moving comment to trash." = "שגיאת בהעברת התגובה לפח."; /* Text displayed in HUD while a post revision is being loaded. */ "Error occurred\nduring loading" = "אירעה שגיאה \nבמהלך הטעינה"; @@ -2812,7 +2812,7 @@ translators: Block name. %s: The localized block name */ "Error sending verification email. Check your connection and try again." = "שגיאה בשליחה האימייל לאימות. יש לבדוק את החיבור ולנסות שוב."; /* Message displayed when pending a comment fails. */ -"Error setting comment to pending." = "Error setting comment to pending."; +"Error setting comment to pending." = "שגיאה בהגדרת התגובה ל'בהמתנה'."; /* Message shown when unapproving a Comment fails. */ "Error unapproving comment" = "שגיאה בביטול האישור של התגובה"; @@ -3136,7 +3136,7 @@ translators: Block name. %s: The localized block name */ "Free Photo Library" = "ספריית תמונות בחינם"; /* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; +"Free for the first year " = "ניתן בחינם לשנה הראשונה "; /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "פינוי שטח אחסון במכשיר באמצעות מחיקה של קובצי מדיה זמניים. הפעולה לא תשפיע על המדיה באתר שלך."; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "במספר מילים, הסבר במה עוסק האתר."; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "כדי לשתף את הפוסטים שפרסמת ברשתות החברתיות, עליך להפעיל את המודל 'שיתוף אוטומטי'."; /* Describes a status of a plugin */ "Inactive" = "לא פעיל"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "המשך לערוך"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "כדאי להמשיך לכתוב בבלוג ולבדוק כאן שוב כדי לראות את המבקרים שנכנסים לאתר שלך."; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "קבלת עדכונים על הביצועים של האתר שלך."; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "יש להזין שם משפחה תקף"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "יש להזין ארגון תקף"; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "יש להזין מיקוד תקף"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "פעילות פרסום"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "פרסום באופן קבוע יכול לעזור לך להגדיל את הקהל. התזכורות יעזרו לך לשמור על הקצב."; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "פרסום באופן שגרתי יכול לעזור בשילוב הקוראים שלך, ולמשוך מבקרים חדשים לאתר שלך."; @@ -6041,7 +6041,7 @@ translators: Block name. %s: The localized block name */ "Search button. Current button text is" = "הכפתור 'חיפוש'. הטקסט הנוכחי של הכפתור הוא"; /* Search domain - Title for the Suggested domains screen */ -"Search domains" = "Search domains"; +"Search domains" = "לחפש דומיינים"; /* title of the button that searches the first domain. */ "Search for a domain" = "לחפש דומיין"; @@ -6151,7 +6151,7 @@ translators: Block name. %s: The localized block name */ "Select a layout" = "לבחור פריסה"; /* Register domain - Title for the Choose domain button of Suggested domains screen */ -"Select domain" = "Select domain"; +"Select domain" = "לבחור דומיין"; /* Accessibility hint for actions when displaying media items. */ "Select media." = "בחירת מדיה."; @@ -6269,7 +6269,7 @@ translators: Block name. %s: The localized block name */ "Set up Jetpack" = "הגדרת Jetpack"; /* Title for button that will open up the blogging reminders screen. */ -"Set up blogging reminders" = "Set up blogging reminders"; +"Set up blogging reminders" = "להגדיר תזכורת לכתיבת בלוג"; /* Description on the first screen of the Blogging Reminders Settings flow called from site settings. */ "Set up your blogging reminders on days you want to post." = "להגדיר את התזכורות שלך לכתוב בלוג בימים שבחרת לפרסם."; @@ -6345,7 +6345,7 @@ translators: Block name. %s: The localized block name */ "Sharing error" = "שגיאה בשיתוף"; /* A hint to users that they've set up post sharing. */ -"Sharing is set up!" = "Sharing is set up!"; +"Sharing is set up!" = "השיתוף הוגדר!"; /* Label for configuration switch to show/hide the header for the related posts section */ "Show Header" = "הצגת כותרת"; @@ -7043,7 +7043,7 @@ translators: Block name. %s: The localized block name */ "The media could not be added to the Media Library." = "לא ניתן להוסיף את הקובץ לספריית המדיה."; /* Error shown when a module can not be enabled */ -"The module couldn't be activated." = "The module couldn't be activated."; +"The module couldn't be activated." = "לא ניתן היה להפעיל את המודול."; /* Text above the selection of the number of posts to show per blog page */ "The number of posts to show per page." = "מספר הפוסטים שניתן להציג בכל עמוד."; @@ -8050,7 +8050,7 @@ translators: Block name. %s: The localized block name */ "View more" = "הצגת פריטים נוספים"; /* Description for view count. Singular. */ -"View to your site so far" = "View to your site so far"; +"View to your site so far" = "צפייה באתר שלך עד כה"; /* Title of a Quick Start Tour */ "View your site" = "הצגת האתר שלך"; @@ -8071,7 +8071,7 @@ translators: Block name. %s: The localized block name */ "Views" = "דפים נצפים"; /* Description for view count. Singular. */ -"Views to your site so far" = "Views to your site so far"; +"Views to your site so far" = "צפיות באתר שלך עד כה"; /* Label for Visibility The visibility settings of the post. Should be the same as in core WP. @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "בעת ביצוע שינויים באתר שלך, אפשר לראות את היסטוריית הפעילות כאן."; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "כאשר הפוסט הבא שלך יפורסם, הוא ישותף באופן אוטומטי ברשתות המחוברות שלך."; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "איזו גרסה ברצונך לערוך?"; @@ -8791,7 +8791,7 @@ translators: Block name. %s: The localized block name */ "You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog" = "נראה שהתקנת תוסף למכשירים ניידים מ-DudaMobile שמונע מהאפליקציה להתחבר לבלוג שלך"; /* A hint to users that they've set up blogging reminders. */ -"You set up blogging reminders" = "You set up blogging reminders"; +"You set up blogging reminders" = "הגדרת תזכורת לכתיבת בלוג"; /* Message displayed in ignore threat alert. %1$@ is a placeholder for the blog name. */ "You shouldn’t ignore a security issue unless you are absolutely sure it’s harmless. If you choose to ignore this threat, it will remain on your site \"%1$@\"." = "לא כדאי להתעלם מבעיות אבטחה אלא אם אין לך ספק שהתוכן בטוח. אם ברצונך להתעלם מהאיום הזה, הוא יישאר באתר \"%1$@\"."; diff --git a/WordPress/Resources/id.lproj/Localizable.strings b/WordPress/Resources/id.lproj/Localizable.strings index 191a8b574fa6..d3174a1a9f9b 100644 --- a/WordPress/Resources/id.lproj/Localizable.strings +++ b/WordPress/Resources/id.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-10-11 19:54:08+0000 */ +/* Translation-Revision-Date: 2021-10-26 09:54:08+0000 */ /* Plural-Forms: nplurals=2; plural=n > 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: id */ @@ -13,7 +13,7 @@ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nUntuk mengonfirmasi, silakan masukkan lagi nama pengguna Anda sebelum menutup.\n\n"; /* No comment provided by engineer. */ -" \/ year" = " \/ year"; +" \/ year" = " \/ tahu"; /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Gambar \"Lazy-load\""; @@ -357,7 +357,7 @@ translators: Block name. %s: The localized block name */ "A tag named '%@' already exists." = "Tag dengan nama '%@' sudah ada."; /* A hint to users about growing the audience for their site, when their site doesn't have many views yet. */ -"A tip to grow your audience" = "A tip to grow your audience"; +"A tip to grow your audience" = "Tips memperbanyak audiens Anda"; /* Placeholder text for the title of a site */ "A title for the site" = "Judul untuk situs"; @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "Bagikan pos baru secara otomatis ke akun media sosial Anda."; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "Secara otomatis bagikan pos baru ke media sosial Anda untuk menarik perhatian audiens di media sosial ke situs Anda."; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "Pembaruan otomatis"; @@ -1536,10 +1536,10 @@ translators: Block name. %s: The localized block name */ "Comment Likes" = "Suka Komentar"; /* Message displayed when approving a comment succeeds. */ -"Comment approved." = "Comment approved."; +"Comment approved." = "Komentar disetujui."; /* Message displayed when deleting a comment succeeds. */ -"Comment deleted." = "Comment deleted."; +"Comment deleted." = "Komentar dihapus."; /* Displayed when a Comment is deleted */ "Comment has been deleted" = "Komentar telah dihapus"; @@ -1548,17 +1548,17 @@ translators: Block name. %s: The localized block name */ "Comment has been marked as Spam" = "Komentar telah ditandai sebagai Spam"; /* Message displayed when spamming a comment succeeds. */ -"Comment marked as spam." = "Comment marked as spam."; +"Comment marked as spam." = "Komentar ditandai sebagai spam."; /* Message displayed when trashing a comment succeeds. */ -"Comment moved to trash." = "Comment moved to trash."; +"Comment moved to trash." = "Komentar dipindahkan ke sampah."; /* Provides hint that the current screen displays a comment on a post. The title of the post will displayed below this string. Example: Comment on My First Post */ "Comment on" = "Komentar di"; /* Message displayed when pending a comment succeeds. */ -"Comment set to pending." = "Comment set to pending."; +"Comment set to pending." = "Komentar diatur menjadi tertunda."; /* Filters Comments Notifications Insights 'Comments' header @@ -1682,7 +1682,7 @@ translators: Block name. %s: The localized block name */ "Connect another site" = "Hubungkan situs lainnya"; /* Title for button that will open up the social media Sharing screen. */ -"Connect more networks" = "Connect more networks"; +"Connect more networks" = "Hubungkan lebih banyak jaringan"; /* Instructional text appearing below a `Connect` button. The `%@` is a placeholder for the name of a third-party sharing service. */ "Connect to automatically share your blog posts to %@" = "Hubungkan untuk otomatis bagikan pos blog Anda ke %@"; @@ -1968,10 +1968,10 @@ translators: Block name. %s: The localized block name */ "Create downloadable file" = "Buat file yang dapat diunduh"; /* No comment provided by engineer. */ -"Create embed" = "Create embed"; +"Create embed" = "Buat sematan"; /* No comment provided by engineer. */ -"Create link" = "Create link"; +"Create link" = "Buat tautan"; /* Customize Insights description */ "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about." = "Buat dasbor kustom Anda sendiri dan pilih laporan apa yang ingin dilihat. Fokus pada data yang paling Anda pedulikan."; @@ -2309,7 +2309,7 @@ translators: Block name. %s: The localized block name */ "Domains" = "Domain"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; +"Domains purchased on this site will redirect to %@" = "Domain yang dibeli di situs ini akan mengalihkan ke %@"; /* Description for the first domain purchased with a free plan. */ "Domains purchased on this site will redirect users to " = "Domain yang dibeli di situs ini akan mengalihkan pengguna ke "; @@ -2524,7 +2524,7 @@ translators: Block name. %s: The localized block name */ "Edit new posts and pages with the block editor." = "Sunting pos dan halaman baru dengan penyunting blok."; /* Title for button that will open up the blogging reminders screen. */ -"Edit reminders" = "Edit reminders"; +"Edit reminders" = "Sunting pengingat"; /* Title for the edit sharing buttons section */ "Edit sharing buttons" = "Sunting tombol berbagi"; @@ -2631,7 +2631,7 @@ translators: Block name. %s: The localized block name */ "Enable" = "Aktifkan"; /* Text shown when the site doesn't have the Publicize module enabled. */ -"Enable Publicize" = "Enable Publicize"; +"Enable Publicize" = "Aktifkan Publikasikan"; /* Title of a row displayed on the debug screen used in debug builds of the app */ "Enable Quick Start for Site" = "Aktifkan Mulai Cepat untuk Situs"; @@ -2730,7 +2730,7 @@ translators: Block name. %s: The localized block name */ "Error approving comment" = "Error menyetujui komentar"; /* Message displayed when approving a comment fails. */ -"Error approving comment." = "Error approving comment."; +"Error approving comment." = "Error menyetujui komentar."; /* No comment (test) This secondary message is displayed if a user encounters a general error. */ @@ -2743,7 +2743,7 @@ translators: Block name. %s: The localized block name */ "Error deleting comment" = "Error menghapus komentar"; /* Message displayed when deleting a comment fails. */ -"Error deleting comment." = "Error deleting comment."; +"Error deleting comment." = "Error menghapus komentar."; /* There was an error disabling autoupdates for a plugin, placeholder is the plugin name */ "Error disabling autoupdates for %@." = "Terjadi error saat menonaktifkan pembaruan otomatis untuk %@."; @@ -2773,10 +2773,10 @@ translators: Block name. %s: The localized block name */ "Error marking comment as spam" = "Error menandai komentar sebagai spam"; /* Message displayed when spamming a comment fails. */ -"Error marking comment as spam." = "Error marking comment as spam."; +"Error marking comment as spam." = "Error menandai komentar sebagai spam."; /* Message displayed when trashing a comment fails. */ -"Error moving comment to trash." = "Error moving comment to trash."; +"Error moving comment to trash." = "Error memindahkan komentar ke tong sampah."; /* Text displayed in HUD while a post revision is being loaded. */ "Error occurred\nduring loading" = "Terjadi eror\nsaat memuat"; @@ -2812,7 +2812,7 @@ translators: Block name. %s: The localized block name */ "Error sending verification email. Check your connection and try again." = "Terjadi error saat mengirim email verifikasi. Periksa sambungan Anda dan coba lagi."; /* Message displayed when pending a comment fails. */ -"Error setting comment to pending." = "Error setting comment to pending."; +"Error setting comment to pending." = "Error mengatur komentar tertunda."; /* Message shown when unapproving a Comment fails. */ "Error unapproving comment" = "Error menolak komentar"; @@ -3136,7 +3136,7 @@ translators: Block name. %s: The localized block name */ "Free Photo Library" = "Pustaka Foto Gratis"; /* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; +"Free for the first year " = "Gratis untuk tahun pertama "; /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Kosongkan sebagian ruang penyimpanan di perangkat ini dengan menghapus file media sementara. Tindakan ini tidak akan memengaruhi media di situs Anda."; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "Dalam beberapa kata, jelaskan tentang apa situs ini."; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "Untuk membagikan pos yang telah diposkan ke media sosial, Anda perlu mengaktifkan modul Publikasikan."; /* Describes a status of a plugin */ "Inactive" = "Nonaktif"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "Lanjutkan Menyunting"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "Teruskan blogging dan lihat jumlah pengunjung situs Anda."; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "Ketahui info terbaru mengenai performa situs Anda."; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "Masukkan Nama Belakang yang valid"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "Harap masukkan Organisasi yang valid"; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "Masukkan Kode Pos yang valid"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "Aktivitas Posting"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "Memposkan secara reguler dapat membantu memperbanyak audiens. Pengingat membantu Anda melangkah sesuai rencana."; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "Dengan rutin membuat pos, Anda bisa terus berinteraksi dengan para pembaca dan menarik pengunjung baru ke situs Anda."; @@ -6041,7 +6041,7 @@ translators: Block name. %s: The localized block name */ "Search button. Current button text is" = "Tombol cari. Teks tombol saat ini adalah"; /* Search domain - Title for the Suggested domains screen */ -"Search domains" = "Search domains"; +"Search domains" = "Cari domain"; /* title of the button that searches the first domain. */ "Search for a domain" = "Cari domain"; @@ -6151,7 +6151,7 @@ translators: Block name. %s: The localized block name */ "Select a layout" = "Pilih Tata Letak"; /* Register domain - Title for the Choose domain button of Suggested domains screen */ -"Select domain" = "Select domain"; +"Select domain" = "Pilih domain"; /* Accessibility hint for actions when displaying media items. */ "Select media." = "Pilih media."; @@ -6269,7 +6269,7 @@ translators: Block name. %s: The localized block name */ "Set up Jetpack" = "Siapkan Jetpack"; /* Title for button that will open up the blogging reminders screen. */ -"Set up blogging reminders" = "Set up blogging reminders"; +"Set up blogging reminders" = "Siapkan pengingat blogging"; /* Description on the first screen of the Blogging Reminders Settings flow called from site settings. */ "Set up your blogging reminders on days you want to post." = "Siapkan pengingat blogging pada hari Anda ingin menerbitkan pos."; @@ -6345,7 +6345,7 @@ translators: Block name. %s: The localized block name */ "Sharing error" = "Error saat berbagi"; /* A hint to users that they've set up post sharing. */ -"Sharing is set up!" = "Sharing is set up!"; +"Sharing is set up!" = "Pengaturan bagikan telah siap!"; /* Label for configuration switch to show/hide the header for the related posts section */ "Show Header" = "Tampilkan Header"; @@ -7043,7 +7043,7 @@ translators: Block name. %s: The localized block name */ "The media could not be added to the Media Library." = "Media tidak bisa ditambahkan ke Pustaka Media."; /* Error shown when a module can not be enabled */ -"The module couldn't be activated." = "The module couldn't be activated."; +"The module couldn't be activated." = "Modul tidak dapat diaktifkan."; /* Text above the selection of the number of posts to show per blog page */ "The number of posts to show per page." = "Jumlah pos yang akan ditampilkan per halaman."; @@ -8050,7 +8050,7 @@ translators: Block name. %s: The localized block name */ "View more" = "Lihat selengkapnya"; /* Description for view count. Singular. */ -"View to your site so far" = "View to your site so far"; +"View to your site so far" = "Kunjungan ke situs Anda hingga saat ini"; /* Title of a Quick Start Tour */ "View your site" = "Lihat situs Anda"; @@ -8071,7 +8071,7 @@ translators: Block name. %s: The localized block name */ "Views" = "Kunjungan"; /* Description for view count. Singular. */ -"Views to your site so far" = "Views to your site so far"; +"Views to your site so far" = "Kunjungan ke situs Anda hingga saat ini"; /* Label for Visibility The visibility settings of the post. Should be the same as in core WP. @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "Saat membuat perubahan pada situs, Anda akan dapat melihat riwayat aktivitas di sini."; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "Ketika Anda memposkan pos berikutnya, pos tersebut akan dibagikan secara otomatis ke jaringan Anda yang terhubung."; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "Versi apa yang ingin Anda edit?"; @@ -8791,7 +8791,7 @@ translators: Block name. %s: The localized block name */ "You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog" = "Tampaknya Anda telah menginstal plugin seluler dari DudaMobile yang membuat aplikasi tidak dapat tersambung ke blog Anda"; /* A hint to users that they've set up blogging reminders. */ -"You set up blogging reminders" = "You set up blogging reminders"; +"You set up blogging reminders" = "Anda menyiapkan pengingat blogging"; /* Message displayed in ignore threat alert. %1$@ is a placeholder for the blog name. */ "You shouldn’t ignore a security issue unless you are absolutely sure it’s harmless. If you choose to ignore this threat, it will remain on your site \"%1$@\"." = "Sebaiknya jangan abaikan masalah keamanan, kecuali Anda benar-benar yakin ini tidak berbahaya. Jika Anda memilih untuk mengabaikannya, ancaman ini akan tetap ada di situs Anda \"%1$@\"."; diff --git a/WordPress/Resources/it.lproj/Localizable.strings b/WordPress/Resources/it.lproj/Localizable.strings index bd4e84a9e30c..eb08bf55aebc 100644 --- a/WordPress/Resources/it.lproj/Localizable.strings +++ b/WordPress/Resources/it.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-10-12 09:54:54+0000 */ +/* Translation-Revision-Date: 2021-10-26 09:54:09+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: it */ @@ -13,7 +13,7 @@ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nPer confermare, inserisci nuovamente il nome utente prima di chiudere.\n\n"; /* No comment provided by engineer. */ -" \/ year" = " \/ year"; +" \/ year" = " all'anno"; /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Immagini a \"caricamento lento\""; @@ -357,7 +357,7 @@ translators: Block name. %s: The localized block name */ "A tag named '%@' already exists." = "Un tag con il nome '%@' esiste già."; /* A hint to users about growing the audience for their site, when their site doesn't have many views yet. */ -"A tip to grow your audience" = "A tip to grow your audience"; +"A tip to grow your audience" = "Un consiglio per far crescere il tuo pubblico"; /* Placeholder text for the title of a site */ "A title for the site" = "Il titolo del sito"; @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "Condividi automaticamente i nuovi articoli sui tuoi account sui social media."; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "Condividi automaticamente nuovi articoli sui tuoi social media per iniziare ad attirare quel pubblico sul tuo sito."; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "Aggiornamenti automatici"; @@ -1536,10 +1536,10 @@ translators: Block name. %s: The localized block name */ "Comment Likes" = "Like ai commenti"; /* Message displayed when approving a comment succeeds. */ -"Comment approved." = "Comment approved."; +"Comment approved." = "Commento approvato."; /* Message displayed when deleting a comment succeeds. */ -"Comment deleted." = "Comment deleted."; +"Comment deleted." = "Commento eliminato."; /* Displayed when a Comment is deleted */ "Comment has been deleted" = "Il commento è stato cancellato"; @@ -1548,17 +1548,17 @@ translators: Block name. %s: The localized block name */ "Comment has been marked as Spam" = "Il commento è stato contrassegnato come spam"; /* Message displayed when spamming a comment succeeds. */ -"Comment marked as spam." = "Comment marked as spam."; +"Comment marked as spam." = "Commento contrassegnato come spam."; /* Message displayed when trashing a comment succeeds. */ -"Comment moved to trash." = "Comment moved to trash."; +"Comment moved to trash." = "Commento spostato nel cestino."; /* Provides hint that the current screen displays a comment on a post. The title of the post will displayed below this string. Example: Comment on My First Post */ "Comment on" = "Commento su"; /* Message displayed when pending a comment succeeds. */ -"Comment set to pending." = "Comment set to pending."; +"Comment set to pending." = "Commento impostato su In sospeso."; /* Filters Comments Notifications Insights 'Comments' header @@ -1682,7 +1682,7 @@ translators: Block name. %s: The localized block name */ "Connect another site" = "Connettiti ad un altro sito"; /* Title for button that will open up the social media Sharing screen. */ -"Connect more networks" = "Connect more networks"; +"Connect more networks" = "Connetti più reti"; /* Instructional text appearing below a `Connect` button. The `%@` is a placeholder for the name of a third-party sharing service. */ "Connect to automatically share your blog posts to %@" = "Connetti per condividere automaticamente gli articoli con %@"; @@ -1968,7 +1968,7 @@ translators: Block name. %s: The localized block name */ "Create downloadable file" = "Crea file scaricabile"; /* No comment provided by engineer. */ -"Create embed" = "Create embed"; +"Create embed" = "Crea l'incorporamento"; /* No comment provided by engineer. */ "Create link" = "Create link"; @@ -2309,7 +2309,7 @@ translators: Block name. %s: The localized block name */ "Domains" = "Domini"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; +"Domains purchased on this site will redirect to %@" = "I domini acquistati su questo sito reindirizzeranno gli utenti a %@"; /* Description for the first domain purchased with a free plan. */ "Domains purchased on this site will redirect users to " = "I domini acquistati su questo sito reindirizzeranno gli utenti a "; @@ -2524,7 +2524,7 @@ translators: Block name. %s: The localized block name */ "Edit new posts and pages with the block editor." = "Modifica i nuovi articoli e le nuove pagine dall'editor a blocchi."; /* Title for button that will open up the blogging reminders screen. */ -"Edit reminders" = "Edit reminders"; +"Edit reminders" = "Modifica i promemoria"; /* Title for the edit sharing buttons section */ "Edit sharing buttons" = "Modifica i pulsanti di condivisione"; @@ -2631,7 +2631,7 @@ translators: Block name. %s: The localized block name */ "Enable" = "Abilita"; /* Text shown when the site doesn't have the Publicize module enabled. */ -"Enable Publicize" = "Enable Publicize"; +"Enable Publicize" = "Attiva Pubblicizza"; /* Title of a row displayed on the debug screen used in debug builds of the app */ "Enable Quick Start for Site" = "Abilita avvio rapido per il sito"; @@ -2730,7 +2730,7 @@ translators: Block name. %s: The localized block name */ "Error approving comment" = "Errore durante l'approvazione del commento"; /* Message displayed when approving a comment fails. */ -"Error approving comment." = "Error approving comment."; +"Error approving comment." = "Errore durante l'approvazione del commento."; /* No comment (test) This secondary message is displayed if a user encounters a general error. */ @@ -2743,7 +2743,7 @@ translators: Block name. %s: The localized block name */ "Error deleting comment" = "Errore durante l'eliminazione del commento"; /* Message displayed when deleting a comment fails. */ -"Error deleting comment." = "Error deleting comment."; +"Error deleting comment." = "Errore durante l'eliminazione del commento."; /* There was an error disabling autoupdates for a plugin, placeholder is the plugin name */ "Error disabling autoupdates for %@." = "Errore durante la disabilitazione degli aggiornamenti automatici per %@."; @@ -2773,10 +2773,10 @@ translators: Block name. %s: The localized block name */ "Error marking comment as spam" = "Errore durante il contrassegno di un commento come spam"; /* Message displayed when spamming a comment fails. */ -"Error marking comment as spam." = "Error marking comment as spam."; +"Error marking comment as spam." = "Errore durante il contrassegno di un commento come spam."; /* Message displayed when trashing a comment fails. */ -"Error moving comment to trash." = "Error moving comment to trash."; +"Error moving comment to trash." = "Errore durante lo spostamento del commento nel cestino."; /* Text displayed in HUD while a post revision is being loaded. */ "Error occurred\nduring loading" = "Si è verificato un errore\ndurante il caricamento"; @@ -2812,7 +2812,7 @@ translators: Block name. %s: The localized block name */ "Error sending verification email. Check your connection and try again." = "Errore durante l'invio dell'email di verifica. Controlla la connessione e riprova."; /* Message displayed when pending a comment fails. */ -"Error setting comment to pending." = "Error setting comment to pending."; +"Error setting comment to pending." = "Errore durante l'impostazione del commento su In sospeso."; /* Message shown when unapproving a Comment fails. */ "Error unapproving comment" = "Errore durante la rimozione dell'approvazione del commento"; @@ -3136,7 +3136,7 @@ translators: Block name. %s: The localized block name */ "Free Photo Library" = "Libreria di foto gratuita"; /* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; +"Free for the first year " = "Gratis per il primo anno "; /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Libera lo spazio di archiviazione su questo dispositivo eliminando i file multimediali temporanei. Ciò non influirà sul contenuto multimediale presente sul tuo sito."; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "Spiega in poche parole di cosa tratta il sito."; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "Per condividere i tuoi articoli pubblicati sui tuoi social media devi attivare il modulo Pubblicizza."; /* Describes a status of a plugin */ "Inactive" = "Inattivo"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "Continua a modificare"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "Continua a lavorare sul blog e controlla di nuovo per vedere i visitatori provenienti dal tuo sito."; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "Mantieni aggiornate le prestazioni del sito."; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "Inserisci un cognome valido"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "Inserisci un'organizzazione valida"; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "Inserisci un codice postale valido"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "Attività di pubblicazione"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "Pubblicare in modo regolare può aiutare a ottenere pubblico. I promemoria ti aiutano a rimanere in carreggiata."; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "Pubblicare articoli regolarmente può contribuire a mantenere l'attenzione dei lettori e attrarre nuovi visitatori sul tuo sito."; @@ -6041,7 +6041,7 @@ translators: Block name. %s: The localized block name */ "Search button. Current button text is" = "Pulsante di ricerca. Il testo del pulsante attuale è"; /* Search domain - Title for the Suggested domains screen */ -"Search domains" = "Search domains"; +"Search domains" = "Cerca domini"; /* title of the button that searches the first domain. */ "Search for a domain" = "Cerca un dominio"; @@ -6269,7 +6269,7 @@ translators: Block name. %s: The localized block name */ "Set up Jetpack" = "Configura Jetpack"; /* Title for button that will open up the blogging reminders screen. */ -"Set up blogging reminders" = "Set up blogging reminders"; +"Set up blogging reminders" = "Imposta promemoria relativi al blog"; /* Description on the first screen of the Blogging Reminders Settings flow called from site settings. */ "Set up your blogging reminders on days you want to post." = "Imposta i promemoria relativi al blog per i giorni in cui desideri pubblicare."; @@ -6345,7 +6345,7 @@ translators: Block name. %s: The localized block name */ "Sharing error" = "Condivisione dell'errore"; /* A hint to users that they've set up post sharing. */ -"Sharing is set up!" = "Sharing is set up!"; +"Sharing is set up!" = "La condivisione è configurata."; /* Label for configuration switch to show/hide the header for the related posts section */ "Show Header" = "Mostra l'intestazione"; @@ -7043,7 +7043,7 @@ translators: Block name. %s: The localized block name */ "The media could not be added to the Media Library." = "Il media non può essere aggiunto alla libreria. "; /* Error shown when a module can not be enabled */ -"The module couldn't be activated." = "The module couldn't be activated."; +"The module couldn't be activated." = "Impossibile attivare il modulo."; /* Text above the selection of the number of posts to show per blog page */ "The number of posts to show per page." = "Il numero di articoli da mostrare per pagina."; @@ -8050,7 +8050,7 @@ translators: Block name. %s: The localized block name */ "View more" = "Visualizza altro"; /* Description for view count. Singular. */ -"View to your site so far" = "View to your site so far"; +"View to your site so far" = "Visualizzazione del tuo sito finora"; /* Title of a Quick Start Tour */ "View your site" = "Visualizza il tuo sito"; @@ -8071,7 +8071,7 @@ translators: Block name. %s: The localized block name */ "Views" = "Visite"; /* Description for view count. Singular. */ -"Views to your site so far" = "Views to your site so far"; +"Views to your site so far" = "Visualizzazioni del tuo sito finora"; /* Label for Visibility The visibility settings of the post. Should be the same as in core WP. @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "Quando fai modifiche al sito puoi vedere lo storico attività qui."; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "Quando pubblichi il tuo articolo successivo, verrà automaticamente condiviso con le tue reti connesse."; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "Quale versione desideri modificare?"; @@ -8791,7 +8791,7 @@ translators: Block name. %s: The localized block name */ "You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog" = "Sembra che tu abbia installato un plugin per mobile di DudaMobile che impedisce all'applicazione di stabilire una connessione con il tuo blog"; /* A hint to users that they've set up blogging reminders. */ -"You set up blogging reminders" = "You set up blogging reminders"; +"You set up blogging reminders" = "Hai impostato i promemoria relativi al blog"; /* Message displayed in ignore threat alert. %1$@ is a placeholder for the blog name. */ "You shouldn’t ignore a security issue unless you are absolutely sure it’s harmless. If you choose to ignore this threat, it will remain on your site \"%1$@\"." = "Non dovresti ignorare un problema di sicurezza a meno che tu non sia assolutamente certo che sia innocuo. Se scegli di ignorare questa minaccia, rimarrà sul tuo sito \"%1$@\"."; diff --git a/WordPress/Resources/ja.lproj/Localizable.strings b/WordPress/Resources/ja.lproj/Localizable.strings index 56737e61d581..44e7fa593982 100644 --- a/WordPress/Resources/ja.lproj/Localizable.strings +++ b/WordPress/Resources/ja.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-10-13 11:54:09+0000 */ +/* Translation-Revision-Date: 2021-10-27 10:54:07+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ja_JP */ @@ -13,7 +13,7 @@ "\nTo confirm, please re-enter your username before closing.\n\n" = "\n確認するには、閉鎖する前のユーザーアカウントをもう一度入力してください。\n\n"; /* No comment provided by engineer. */ -" \/ year" = " \/ year"; +" \/ year" = " \/ 年"; /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "画像の「遅延読み込み」"; @@ -357,7 +357,7 @@ translators: Block name. %s: The localized block name */ "A tag named '%@' already exists." = "「%@」という名前のタグはすでに存在しています。"; /* A hint to users about growing the audience for their site, when their site doesn't have many views yet. */ -"A tip to grow your audience" = "A tip to grow your audience"; +"A tip to grow your audience" = "読者を増やすためのヒント"; /* Placeholder text for the title of a site */ "A title for the site" = "サイトのタイトル"; @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "新しい投稿を自分のソーシャルメディアアカウントと自動的に共有しましょう。"; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "新しい投稿をソーシャルメディアに自動的に共有し、読者をサイトに誘導します。"; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "自動更新"; @@ -1536,10 +1536,10 @@ translators: Block name. %s: The localized block name */ "Comment Likes" = "コメントへのいいね"; /* Message displayed when approving a comment succeeds. */ -"Comment approved." = "Comment approved."; +"Comment approved." = "コメントを承認しました。"; /* Message displayed when deleting a comment succeeds. */ -"Comment deleted." = "Comment deleted."; +"Comment deleted." = "コメントを削除しました。"; /* Displayed when a Comment is deleted */ "Comment has been deleted" = "コメントを削除しました"; @@ -1548,17 +1548,17 @@ translators: Block name. %s: The localized block name */ "Comment has been marked as Spam" = "コメントはスパムとしてマークされました"; /* Message displayed when spamming a comment succeeds. */ -"Comment marked as spam." = "Comment marked as spam."; +"Comment marked as spam." = "コメントをスパムとしてマークしました"; /* Message displayed when trashing a comment succeeds. */ -"Comment moved to trash." = "Comment moved to trash."; +"Comment moved to trash." = "コメントをゴミ箱へ移動しました。"; /* Provides hint that the current screen displays a comment on a post. The title of the post will displayed below this string. Example: Comment on My First Post */ "Comment on" = "コメントする"; /* Message displayed when pending a comment succeeds. */ -"Comment set to pending." = "Comment set to pending."; +"Comment set to pending." = "コメントを保留中に設定しました。"; /* Filters Comments Notifications Insights 'Comments' header @@ -1682,7 +1682,7 @@ translators: Block name. %s: The localized block name */ "Connect another site" = "別のサイトと連携"; /* Title for button that will open up the social media Sharing screen. */ -"Connect more networks" = "Connect more networks"; +"Connect more networks" = "さらにネットワークと連携"; /* Instructional text appearing below a `Connect` button. The `%@` is a placeholder for the name of a third-party sharing service. */ "Connect to automatically share your blog posts to %@" = "連携して自動的にブログ投稿を %@ で共有"; @@ -1968,10 +1968,10 @@ translators: Block name. %s: The localized block name */ "Create downloadable file" = "ダウンロード可能なファイルを作成"; /* No comment provided by engineer. */ -"Create embed" = "Create embed"; +"Create embed" = "埋め込みを作成"; /* No comment provided by engineer. */ -"Create link" = "Create link"; +"Create link" = "リンクを作成"; /* Customize Insights description */ "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about." = "カスタマイズされたダッシュボードを作成して、表示するレポートを選択します。最も重視するデータに集中できます。"; @@ -2309,7 +2309,7 @@ translators: Block name. %s: The localized block name */ "Domains" = "ドメイン"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; +"Domains purchased on this site will redirect to %@" = "このサイトで購入したドメインにアクセスすると %@ に転送されます"; /* Description for the first domain purchased with a free plan. */ "Domains purchased on this site will redirect users to " = "このサイトで購入したドメインにアクセスするとこちらに転送されます: "; @@ -2524,7 +2524,7 @@ translators: Block name. %s: The localized block name */ "Edit new posts and pages with the block editor." = "ブロックエディターで新しい投稿やページを編集します。"; /* Title for button that will open up the blogging reminders screen. */ -"Edit reminders" = "Edit reminders"; +"Edit reminders" = "リマインダーを編集"; /* Title for the edit sharing buttons section */ "Edit sharing buttons" = "共有ボタンを編集"; @@ -2631,7 +2631,7 @@ translators: Block name. %s: The localized block name */ "Enable" = "有効化する"; /* Text shown when the site doesn't have the Publicize module enabled. */ -"Enable Publicize" = "Enable Publicize"; +"Enable Publicize" = "パブリサイズを有効化"; /* Title of a row displayed on the debug screen used in debug builds of the app */ "Enable Quick Start for Site" = "サイトのクイックスタートを有効にする"; @@ -2730,7 +2730,7 @@ translators: Block name. %s: The localized block name */ "Error approving comment" = "コメント承認エラー"; /* Message displayed when approving a comment fails. */ -"Error approving comment." = "Error approving comment."; +"Error approving comment." = "コメントの承認中にエラーが発生しました。"; /* No comment (test) This secondary message is displayed if a user encounters a general error. */ @@ -2743,7 +2743,7 @@ translators: Block name. %s: The localized block name */ "Error deleting comment" = "コメント削除エラー"; /* Message displayed when deleting a comment fails. */ -"Error deleting comment." = "Error deleting comment."; +"Error deleting comment." = "コメントの削除中にエラーが発生しました。"; /* There was an error disabling autoupdates for a plugin, placeholder is the plugin name */ "Error disabling autoupdates for %@." = "%@ の自動更新を無効化する際にエラーが発生しました。"; @@ -2773,10 +2773,10 @@ translators: Block name. %s: The localized block name */ "Error marking comment as spam" = "コメントにスパムとマークする際のエラー"; /* Message displayed when spamming a comment fails. */ -"Error marking comment as spam." = "Error marking comment as spam."; +"Error marking comment as spam." = "コメントをスパムとしてマーク中にエラーが発生しました。"; /* Message displayed when trashing a comment fails. */ -"Error moving comment to trash." = "Error moving comment to trash."; +"Error moving comment to trash." = "コメントのゴミ箱への移動中にエラーが発生しました。"; /* Text displayed in HUD while a post revision is being loaded. */ "Error occurred\nduring loading" = "読み込み中にエラーが\n発生しました"; @@ -2812,7 +2812,7 @@ translators: Block name. %s: The localized block name */ "Error sending verification email. Check your connection and try again." = "認証メールの送信中にエラーが発生しました。接続を確認して、もう一度お試しください。"; /* Message displayed when pending a comment fails. */ -"Error setting comment to pending." = "Error setting comment to pending."; +"Error setting comment to pending." = "コメントを保留中に設定する際にエラーが発生しました。"; /* Message shown when unapproving a Comment fails. */ "Error unapproving comment" = "コメント承認解除エラー"; @@ -3136,7 +3136,7 @@ translators: Block name. %s: The localized block name */ "Free Photo Library" = "無料の写真ギャラリー"; /* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; +"Free for the first year " = "1年目は無料 "; /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "一時メディアファイルを削除してこの端末の保存スペースを空けてください。この操作はサイトのメディアには影響しません。"; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "このサイトを短い文章で説明してください。"; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "公開済みの投稿をソーシャルメディアに共有するには、パブリサイズモジュールを有効にする必要があります。"; /* Describes a status of a plugin */ "Inactive" = "停止中"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "編集を継続"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "ブログ投稿を継続し、サイトの訪問者を調べましょう。"; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "サイトのパフォーマンスを把握しましょう。"; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "有効な姓を入力してください"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "有効な組織を入力してください"; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "有効な郵便番号を入力してください"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "投稿アクティビティ"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "定期的に投稿すれば、読者を集めるのに役立ちます。 リマインダーにより常に情報を把握できます。"; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "定期的に投稿することで読者の興味を引きつけ、新たなサイト訪問者を獲得できます。"; @@ -6151,7 +6151,7 @@ translators: Block name. %s: The localized block name */ "Select a layout" = "レイアウトを選択"; /* Register domain - Title for the Choose domain button of Suggested domains screen */ -"Select domain" = "Select domain"; +"Select domain" = "ドメインを選択"; /* Accessibility hint for actions when displaying media items. */ "Select media." = "メディアを選択。"; @@ -6269,7 +6269,7 @@ translators: Block name. %s: The localized block name */ "Set up Jetpack" = "Jetpack のセットアップ"; /* Title for button that will open up the blogging reminders screen. */ -"Set up blogging reminders" = "Set up blogging reminders"; +"Set up blogging reminders" = "ブログ投稿のリマインダーを設定"; /* Description on the first screen of the Blogging Reminders Settings flow called from site settings. */ "Set up your blogging reminders on days you want to post." = "投稿する予定の日にブログ投稿のリマインダーを設定します。"; @@ -6345,7 +6345,7 @@ translators: Block name. %s: The localized block name */ "Sharing error" = "共有エラー"; /* A hint to users that they've set up post sharing. */ -"Sharing is set up!" = "Sharing is set up!"; +"Sharing is set up!" = "共有を設定済みです !"; /* Label for configuration switch to show/hide the header for the related posts section */ "Show Header" = "ヘッダーを表示"; @@ -7043,7 +7043,7 @@ translators: Block name. %s: The localized block name */ "The media could not be added to the Media Library." = "メディアをメディアライブラリに追加できませんでした。"; /* Error shown when a module can not be enabled */ -"The module couldn't be activated." = "The module couldn't be activated."; +"The module couldn't be activated." = "モジュールを有効化できませんでした。"; /* Text above the selection of the number of posts to show per blog page */ "The number of posts to show per page." = "1ページに表示する投稿の数。"; @@ -8050,7 +8050,7 @@ translators: Block name. %s: The localized block name */ "View more" = "さらに表示"; /* Description for view count. Singular. */ -"View to your site so far" = "View to your site so far"; +"View to your site so far" = "件のこれまでのサイトの閲覧数"; /* Title of a Quick Start Tour */ "View your site" = "サイトを表示"; @@ -8071,7 +8071,7 @@ translators: Block name. %s: The localized block name */ "Views" = "表示数"; /* Description for view count. Singular. */ -"Views to your site so far" = "Views to your site so far"; +"Views to your site so far" = "件のこれまでのサイトの閲覧数"; /* Label for Visibility The visibility settings of the post. Should be the same as in core WP. @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "サイトに変更を加えた後は、ここでそのアクティビティ履歴を確認できます。"; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "次の投稿を公開する際に、連携済みのネットワークに自動的に共有されます。"; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "どのバージョンを編集しますか ?"; @@ -8791,7 +8791,7 @@ translators: Block name. %s: The localized block name */ "You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog" = "アプリがブログに接続するのを防止するモバイルプラグインが DudaMobile からインストールされたようです"; /* A hint to users that they've set up blogging reminders. */ -"You set up blogging reminders" = "You set up blogging reminders"; +"You set up blogging reminders" = "ブログ投稿のリマインダーを設定済みです"; /* Message displayed in ignore threat alert. %1$@ is a placeholder for the blog name. */ "You shouldn’t ignore a security issue unless you are absolutely sure it’s harmless. If you choose to ignore this threat, it will remain on your site \"%1$@\"." = "安全であるという確信がない限り、セキュリティの問題を無視しないでください。 この脅威を無視した場合、この脅威はサイト「%1$@」に残ります。"; diff --git a/WordPress/Resources/ko.lproj/Localizable.strings b/WordPress/Resources/ko.lproj/Localizable.strings index 1651be1a6d3a..9b2e8356dcca 100644 --- a/WordPress/Resources/ko.lproj/Localizable.strings +++ b/WordPress/Resources/ko.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-10-12 11:42:51+0000 */ +/* Translation-Revision-Date: 2021-10-27 14:54:07+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ko_KR */ @@ -13,7 +13,7 @@ "\nTo confirm, please re-enter your username before closing.\n\n" = "\n확인하려면 종료하기 전에 사용자명을 다시 입력하십시오.\n\n"; /* No comment provided by engineer. */ -" \/ year" = " \/ year"; +" \/ year" = " \/년"; /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "이미지 \"느리게 로드\""; @@ -357,7 +357,7 @@ translators: Block name. %s: The localized block name */ "A tag named '%@' already exists." = "'%@' 태그가 이미 존재합니다."; /* A hint to users about growing the audience for their site, when their site doesn't have many views yet. */ -"A tip to grow your audience" = "A tip to grow your audience"; +"A tip to grow your audience" = "방문자 늘리기 팁"; /* Placeholder text for the title of a site */ "A title for the site" = "사이트 제목"; @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "새 글을 소셜 미디어 계정에 자동으로 공유합니다."; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "자동으로 새 글을 소셜 미디어와 공유하여 해당 방문자를 사이트에 유치하기 시작합니다."; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "자동 업데이트"; @@ -1536,10 +1536,10 @@ translators: Block name. %s: The localized block name */ "Comment Likes" = "댓글 좋아요"; /* Message displayed when approving a comment succeeds. */ -"Comment approved." = "Comment approved."; +"Comment approved." = "댓글이 승인되었습니다."; /* Message displayed when deleting a comment succeeds. */ -"Comment deleted." = "Comment deleted."; +"Comment deleted." = "댓글이 삭제되었습니다."; /* Displayed when a Comment is deleted */ "Comment has been deleted" = "댓글이 삭제되었습니다."; @@ -1548,17 +1548,17 @@ translators: Block name. %s: The localized block name */ "Comment has been marked as Spam" = "댓글이 스팸으로 표시되었습니다."; /* Message displayed when spamming a comment succeeds. */ -"Comment marked as spam." = "Comment marked as spam."; +"Comment marked as spam." = "댓글이 스팸으로 표시되었습니다."; /* Message displayed when trashing a comment succeeds. */ -"Comment moved to trash." = "Comment moved to trash."; +"Comment moved to trash." = "댓글이 휴지통으로 이동했습니다."; /* Provides hint that the current screen displays a comment on a post. The title of the post will displayed below this string. Example: Comment on My First Post */ "Comment on" = "댓글"; /* Message displayed when pending a comment succeeds. */ -"Comment set to pending." = "Comment set to pending."; +"Comment set to pending." = "댓글이 대기 중으로 설정되었습니다."; /* Filters Comments Notifications Insights 'Comments' header @@ -1682,7 +1682,7 @@ translators: Block name. %s: The localized block name */ "Connect another site" = "다른 사이트 연결"; /* Title for button that will open up the social media Sharing screen. */ -"Connect more networks" = "Connect more networks"; +"Connect more networks" = "추가 네트워크 연결"; /* Instructional text appearing below a `Connect` button. The `%@` is a placeholder for the name of a third-party sharing service. */ "Connect to automatically share your blog posts to %@" = "블로그 글을 %@(으)로 자동 공유하려면 연결하세요."; @@ -1968,10 +1968,10 @@ translators: Block name. %s: The localized block name */ "Create downloadable file" = "다운로드할 수 있는 파일 만들기"; /* No comment provided by engineer. */ -"Create embed" = "Create embed"; +"Create embed" = "임베드 생성"; /* No comment provided by engineer. */ -"Create link" = "Create link"; +"Create link" = "링크 생성"; /* Customize Insights description */ "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about." = "나만의 사용자 정의 알림판을 만들고 보고 싶은 보고서를 선택하세요. 가장 중요한 데이터에 집중하세요."; @@ -2309,7 +2309,7 @@ translators: Block name. %s: The localized block name */ "Domains" = "도메인"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; +"Domains purchased on this site will redirect to %@" = "이 사이트에서 구매한 도메인은 %@(으)로 리디렉팅됨"; /* Description for the first domain purchased with a free plan. */ "Domains purchased on this site will redirect users to " = "이 사이트에서 구매한 도메인에서는 사용자가 다음 위치로 리디렉팅됨 "; @@ -2524,7 +2524,7 @@ translators: Block name. %s: The localized block name */ "Edit new posts and pages with the block editor." = "블록 편집기에서 새 글과 페이지를 편집하세요."; /* Title for button that will open up the blogging reminders screen. */ -"Edit reminders" = "Edit reminders"; +"Edit reminders" = "알림 편집"; /* Title for the edit sharing buttons section */ "Edit sharing buttons" = "공유 버튼 편집"; @@ -2631,7 +2631,7 @@ translators: Block name. %s: The localized block name */ "Enable" = "활성화"; /* Text shown when the site doesn't have the Publicize module enabled. */ -"Enable Publicize" = "Enable Publicize"; +"Enable Publicize" = "배포 기능 활성화"; /* Title of a row displayed on the debug screen used in debug builds of the app */ "Enable Quick Start for Site" = "사이트에 대한 빠른 시작 사용 설정"; @@ -2730,7 +2730,7 @@ translators: Block name. %s: The localized block name */ "Error approving comment" = "댓글 증인 중 오류 발생"; /* Message displayed when approving a comment fails. */ -"Error approving comment." = "Error approving comment."; +"Error approving comment." = "댓글 승인 중 오류가 발생했습니다."; /* No comment (test) This secondary message is displayed if a user encounters a general error. */ @@ -2743,7 +2743,7 @@ translators: Block name. %s: The localized block name */ "Error deleting comment" = "댓글 삭제 중 오류 발생"; /* Message displayed when deleting a comment fails. */ -"Error deleting comment." = "Error deleting comment."; +"Error deleting comment." = "댓글 삭제 중 오류가 발생했습니다."; /* There was an error disabling autoupdates for a plugin, placeholder is the plugin name */ "Error disabling autoupdates for %@." = "%@의 자동 업데이트를 사용 중지하는 중 오류가 발생했습니다."; @@ -2773,10 +2773,10 @@ translators: Block name. %s: The localized block name */ "Error marking comment as spam" = "댓글을 스팸으로 표시 중 오류 발생"; /* Message displayed when spamming a comment fails. */ -"Error marking comment as spam." = "Error marking comment as spam."; +"Error marking comment as spam." = "댓글을 스팸으로 표시하는 중 오류가 발생했습니다."; /* Message displayed when trashing a comment fails. */ -"Error moving comment to trash." = "Error moving comment to trash."; +"Error moving comment to trash." = "댓글을 휴지통으로 이동하는 중 오류가 발생했습니다."; /* Text displayed in HUD while a post revision is being loaded. */ "Error occurred\nduring loading" = "로딩 중\n오류 발생"; @@ -2812,7 +2812,7 @@ translators: Block name. %s: The localized block name */ "Error sending verification email. Check your connection and try again." = "확인 이메일을 보내는 중 오류가 발생했습니다. 연결을 확인하고 다시 시도하세요."; /* Message displayed when pending a comment fails. */ -"Error setting comment to pending." = "Error setting comment to pending."; +"Error setting comment to pending." = "댓글을 대기 중으로 설정하는 중 오류가 발생했습니다."; /* Message shown when unapproving a Comment fails. */ "Error unapproving comment" = "댓글 승인 취소 중 오류 발생"; @@ -3136,7 +3136,7 @@ translators: Block name. %s: The localized block name */ "Free Photo Library" = "무료 사진 라이브러리"; /* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; +"Free for the first year " = "첫해 무료 "; /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "임시 미디어 파일을 삭제하여 이 기기의 저장 공간을 확보합니다. 이 작업은 사이트의 미디어에는 영향을 주지 않습니다."; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "이 사이트의 주제를 간략히 소개하세요."; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "발행한 글을 소셜 미디어와 공유하려면 배포 기능 모듈을 활성화해야 합니다."; /* Describes a status of a plugin */ "Inactive" = "비활성"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "계속 편집하기"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "블로깅을 계속하고 방문자가 회원님의 사이트를 찾아오는지 다시 확인하세요."; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "사이트 성능을 최신 상태로 유지합니다."; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "유효한 성을 입력하세요"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "유효한 조직을 입력하세요."; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "유효한 우편번호를 입력하세요"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "게시 활동"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "정기적으로 글을 작성하면 방문자 유치에 도움이 될 수 있습니다. 알림은 회원님을 추적하는 데 도움이 됩니다."; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "정기적으로 게시하면 독자의 참여도를 높이고 새 방문자를 사이트로 유도하는 데 도움이 됩니다."; @@ -6151,7 +6151,7 @@ translators: Block name. %s: The localized block name */ "Select a layout" = "레이아웃 선택하기"; /* Register domain - Title for the Choose domain button of Suggested domains screen */ -"Select domain" = "Select domain"; +"Select domain" = "도메인 선택"; /* Accessibility hint for actions when displaying media items. */ "Select media." = "미디어를 선택합니다."; @@ -6269,7 +6269,7 @@ translators: Block name. %s: The localized block name */ "Set up Jetpack" = "젯팩 설정"; /* Title for button that will open up the blogging reminders screen. */ -"Set up blogging reminders" = "Set up blogging reminders"; +"Set up blogging reminders" = "블로깅 알림 설정"; /* Description on the first screen of the Blogging Reminders Settings flow called from site settings. */ "Set up your blogging reminders on days you want to post." = "게시하려는 일자의 블로깅 알림을 설정하세요."; @@ -6345,7 +6345,7 @@ translators: Block name. %s: The localized block name */ "Sharing error" = "공유 오류"; /* A hint to users that they've set up post sharing. */ -"Sharing is set up!" = "Sharing is set up!"; +"Sharing is set up!" = "공유가 설정되었습니다!"; /* Label for configuration switch to show/hide the header for the related posts section */ "Show Header" = "헤더 표시"; @@ -7043,7 +7043,7 @@ translators: Block name. %s: The localized block name */ "The media could not be added to the Media Library." = "미디어를 미디어 라이브러리에 추가할 수 없었습니다."; /* Error shown when a module can not be enabled */ -"The module couldn't be activated." = "The module couldn't be activated."; +"The module couldn't be activated." = "모듈을 활성화할 수 없습니다."; /* Text above the selection of the number of posts to show per blog page */ "The number of posts to show per page." = "페이지당 표시할 글 수입니다."; @@ -8050,7 +8050,7 @@ translators: Block name. %s: The localized block name */ "View more" = "더 보기"; /* Description for view count. Singular. */ -"View to your site so far" = "View to your site so far"; +"View to your site so far" = "지금까지 사이트 조회수"; /* Title of a Quick Start Tour */ "View your site" = "사이트 보기"; @@ -8071,7 +8071,7 @@ translators: Block name. %s: The localized block name */ "Views" = "뷰"; /* Description for view count. Singular. */ -"Views to your site so far" = "Views to your site so far"; +"Views to your site so far" = "지금까지 사이트 조회수"; /* Label for Visibility The visibility settings of the post. Should be the same as in core WP. @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "사이트를 변경하면 여기서 활동 내역을 볼 수 있습니다."; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "다음 글을 발행하면 연결된 네트워크와 자동으로 공유됩니다."; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "어떤 버전을 편집하시겠어요?"; @@ -8791,7 +8791,7 @@ translators: Block name. %s: The localized block name */ "You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog" = "DudaMobile에서 설치한 모바일 플러그인으로 인해 앱이 블로그에 연결할 수 없습니다."; /* A hint to users that they've set up blogging reminders. */ -"You set up blogging reminders" = "You set up blogging reminders"; +"You set up blogging reminders" = "블로깅 알림 설정 완료"; /* Message displayed in ignore threat alert. %1$@ is a placeholder for the blog name. */ "You shouldn’t ignore a security issue unless you are absolutely sure it’s harmless. If you choose to ignore this threat, it will remain on your site \"%1$@\"." = "안전한 것이 확실하지 않은 한 보안 문제를 무시해서는 안 됩니다. 이 위협 무시를 선택하면 사이트 \"%1$@\"에서 위협이 유지됩니다."; diff --git a/WordPress/Resources/sq.lproj/Localizable.strings b/WordPress/Resources/sq.lproj/Localizable.strings index 6e188b63d634..23b30ba3a0a3 100644 --- a/WordPress/Resources/sq.lproj/Localizable.strings +++ b/WordPress/Resources/sq.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-09-22 11:57:43+0000 */ +/* Translation-Revision-Date: 2021-10-26 11:14:24+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: sq_AL */ @@ -13,7 +13,7 @@ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nQë ta ripohoni, ju lutemi, rijepni emrin tuaj të përdoruesit para mbylljes.\n\n"; /* No comment provided by engineer. */ -" \/ year" = " \/ year"; +" \/ year" = " \/ vit"; /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Figura “Lazy-load”"; @@ -233,7 +233,7 @@ translators: Block name. %s: The localized block name */ "%s converted to regular blocks" = "%s u shndërrua në blloqe të rregullt"; /* translators: %s: embed block variant's label e.g: \"Twitter\". */ -"%s embed block previews are coming soon" = "%s embed block previews are coming soon"; +"%s embed block previews are coming soon" = "Paraparjet e blloqeve %s vijnë së shpejti"; /* translators: %s: social link name e.g: \"Instagram\". */ "%s has URL set" = "%s ka të caktuar URL"; @@ -242,7 +242,7 @@ translators: Block name. %s: The localized block name */ "%s has no URL set" = "%s s’ka të caktuar URL"; /* translators: %s: embed block variant's label e.g: \"Twitter\". */ -"%s link" = "%s link"; +"%s link" = "%s lidhje"; /* translators: %s: embed block variant's label e.g: \"Twitter\". */ "%s previews not yet available" = "Paraparjet %s s’janë ende të mundshme"; @@ -357,7 +357,7 @@ translators: Block name. %s: The localized block name */ "A tag named '%@' already exists." = "Ka tashmë një etiketë të quajtur '%@'."; /* A hint to users about growing the audience for their site, when their site doesn't have many views yet. */ -"A tip to grow your audience" = "A tip to grow your audience"; +"A tip to grow your audience" = "Një ndihmëz si të shtoni publikun tuaj"; /* Placeholder text for the title of a site */ "A title for the site" = "Titull për këtë sajt"; @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "Ndani vetvetiu me të tjerët në rrjetet tuaja shoqërore postime të reja."; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "Ndani automatikisht me të tjerë postime të reja në media shoqërore, që të filloni ta sillni atë publik te sajti juaj."; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "Vetëpërditësime"; @@ -1435,7 +1435,7 @@ translators: Block name. %s: The localized block name */ "City" = "Qytet"; /* Title of the card that starts the registration of a free domain with a paid plan, in the Domains Dashboard. */ -"Claim your free domain" = "Claim your free domain"; +"Claim your free domain" = "Kërkoni përkatësinë tuaj falas"; /* Name of setting configured when a site uses a list of blog posts as its homepage */ "Classic Blog" = "Blog Klasik"; @@ -1536,10 +1536,10 @@ translators: Block name. %s: The localized block name */ "Comment Likes" = "Pëlqime Komenti"; /* Message displayed when approving a comment succeeds. */ -"Comment approved." = "Comment approved."; +"Comment approved." = "Komenti u miratua."; /* Message displayed when deleting a comment succeeds. */ -"Comment deleted." = "Comment deleted."; +"Comment deleted." = "Koment u fshi."; /* Displayed when a Comment is deleted */ "Comment has been deleted" = "Komenti u fshi"; @@ -1548,17 +1548,17 @@ translators: Block name. %s: The localized block name */ "Comment has been marked as Spam" = "Komenti u shënua si i Padëshiruar"; /* Message displayed when spamming a comment succeeds. */ -"Comment marked as spam." = "Comment marked as spam."; +"Comment marked as spam." = "Komentit iu vu shenjë si i padëshiruar."; /* Message displayed when trashing a comment succeeds. */ -"Comment moved to trash." = "Comment moved to trash."; +"Comment moved to trash." = "Komenti u shpu te hedhurinat."; /* Provides hint that the current screen displays a comment on a post. The title of the post will displayed below this string. Example: Comment on My First Post */ "Comment on" = "Koment te"; /* Message displayed when pending a comment succeeds. */ -"Comment set to pending." = "Comment set to pending."; +"Comment set to pending." = "Komentit iu vu shenjë si në pritje të miratimit."; /* Filters Comments Notifications Insights 'Comments' header @@ -1682,7 +1682,7 @@ translators: Block name. %s: The localized block name */ "Connect another site" = "Lidhni një sajt tjetër"; /* Title for button that will open up the social media Sharing screen. */ -"Connect more networks" = "Connect more networks"; +"Connect more networks" = "Lidhni më shumë rrjete"; /* Instructional text appearing below a `Connect` button. The `%@` is a placeholder for the name of a third-party sharing service. */ "Connect to automatically share your blog posts to %@" = "Lidheni, që postimet e blogut tuaj të ndahen vetvetiu në %@"; @@ -1968,10 +1968,10 @@ translators: Block name. %s: The localized block name */ "Create downloadable file" = "Krijoni kartelë të shkarkueshme"; /* No comment provided by engineer. */ -"Create embed" = "Create embed"; +"Create embed" = "Krijoni trupëzim"; /* No comment provided by engineer. */ -"Create link" = "Create link"; +"Create link" = "Krijo lidhje"; /* Customize Insights description */ "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about." = "Krijoni pultin tuaj të personalizuar dhe zgjidhni cilët raporte të shihen. Përqendrohuni te të dhënat për të cilat merakoseni më shumë."; @@ -2309,10 +2309,10 @@ translators: Block name. %s: The localized block name */ "Domains" = "Përkatësi"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; +"Domains purchased on this site will redirect to %@" = "Përkatësitë e blera në këtë sajt do t’i ridrejtojnë vizitorët te %@"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Domains purchased on this site will redirect users to "; +"Domains purchased on this site will redirect users to " = "Përkatësitë e blera në këtë sajt do t’i ridrejtojnë vizitorët te "; /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "S’keni llogari? _Regjistrohuni_"; @@ -2524,7 +2524,7 @@ translators: Block name. %s: The localized block name */ "Edit new posts and pages with the block editor." = "Përpunoni postime dhe faqe të reja me përpunuesin me blloqe."; /* Title for button that will open up the blogging reminders screen. */ -"Edit reminders" = "Edit reminders"; +"Edit reminders" = "Përpunoni kujtues"; /* Title for the edit sharing buttons section */ "Edit sharing buttons" = "Përpunoni butona ndarjesh me të tjerë"; @@ -2631,7 +2631,7 @@ translators: Block name. %s: The localized block name */ "Enable" = "Aktivizoje"; /* Text shown when the site doesn't have the Publicize module enabled. */ -"Enable Publicize" = "Enable Publicize"; +"Enable Publicize" = "Aktivizoni Publicize-in"; /* Title of a row displayed on the debug screen used in debug builds of the app */ "Enable Quick Start for Site" = "Aktivizo Nisjeje të Shpejtë për Sajtin"; @@ -2730,7 +2730,7 @@ translators: Block name. %s: The localized block name */ "Error approving comment" = "Gabim në miratim komenti"; /* Message displayed when approving a comment fails. */ -"Error approving comment." = "Error approving comment."; +"Error approving comment." = "Gabim në miratim komenti."; /* No comment (test) This secondary message is displayed if a user encounters a general error. */ @@ -2743,7 +2743,7 @@ translators: Block name. %s: The localized block name */ "Error deleting comment" = "Gabim në fshirje komenti"; /* Message displayed when deleting a comment fails. */ -"Error deleting comment." = "Error deleting comment."; +"Error deleting comment." = "Gabim në fshirje komenti."; /* There was an error disabling autoupdates for a plugin, placeholder is the plugin name */ "Error disabling autoupdates for %@." = "Gabim në çaktivizimin e vetëpërditësimeve për %@."; @@ -2773,10 +2773,10 @@ translators: Block name. %s: The localized block name */ "Error marking comment as spam" = "Gabim në vënie shenje komenti si i padëshiruar"; /* Message displayed when spamming a comment fails. */ -"Error marking comment as spam." = "Error marking comment as spam."; +"Error marking comment as spam." = "Gabim në vënie shenje komenti si i padëshiruar."; /* Message displayed when trashing a comment fails. */ -"Error moving comment to trash." = "Error moving comment to trash."; +"Error moving comment to trash." = "Gabim gjatë kalimit të komentit te hedhurinat."; /* Text displayed in HUD while a post revision is being loaded. */ "Error occurred\nduring loading" = "Ndodhi një gabim\ngjatë ngarkimit"; @@ -2812,7 +2812,7 @@ translators: Block name. %s: The localized block name */ "Error sending verification email. Check your connection and try again." = "Gabim në dërgimin e email-it të verifikimit. Kontrolloni lidhjen tuaj dhe riprovoni."; /* Message displayed when pending a comment fails. */ -"Error setting comment to pending." = "Error setting comment to pending."; +"Error setting comment to pending." = "Gabim në caktimin e komentit si në pritje të miratimit."; /* Message shown when unapproving a Comment fails. */ "Error unapproving comment" = "Gabim në shmiratim komenti"; @@ -3136,7 +3136,7 @@ translators: Block name. %s: The localized block name */ "Free Photo Library" = "Fototekë e Lirë"; /* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; +"Free for the first year " = "Falas për vitin e parë"; /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Lironi ca hapësirë depozitimi në këtë pajisje duke fshirë kartela të përkohshme mediash. Kjo nuk do të prekë mediat në sajtin tuaj."; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "Shpjegoni, me pak fjalë, se për çfarë është ky sajt."; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "Që të mund të ndahen me të tjerë postimet tuaja të botuara në median tuaj shoqërore duhet të aktivizoni modulin Publicize."; /* Describes a status of a plugin */ "Inactive" = "Jo aktive"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "Vazhdoni Përpunimin"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "Vazhdoni blogimin dhe rikontrolloni për të parë vizitorët që vijnë në sajtin tuaj."; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "Mbajeni të përditësuar funksionimin e sajtit tuaj."; @@ -4088,7 +4088,7 @@ translators: Block name. %s: The localized block name */ "Mark as seen" = "Vëri shenjë si i parë"; /* Action title for marking referrer as spam */ -"Mark as spam" = "Mark as spam"; +"Mark as spam" = "Vëri shenjë si të padëshiruar"; /* VoiceOver accessibility hint, informing the user the button can be used to Mark a comment as spam. */ "Mark as spam." = "Vëri shenjë si i padëshiruar."; @@ -4612,7 +4612,7 @@ translators: Block name. %s: The localized block name */ "No preview available" = "S’ka paraparje gati"; /* String to display in place of the site address, in case it was not retrieved from the backend. */ -"No primary site address found" = "No primary site address found"; +"No primary site address found" = "S’u gjet adresë parësore sajti"; /* A message title */ "No recent posts" = "Pa postime së fundi"; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "Ju lutemi, jepni një Mbiemër të vlefshëm"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "Ju lutemi, jepni një Ent të vlefshëm"; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "Ju lutemi, jepni Kod Postar të vlefshëm"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "Veprimtari Postimi"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "Postimi rregullisht mund të ndihmojë të krijoni një publik. Kujtuesit ju ndihmojnë të ndiqni këtë qëllim."; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "Postimi rregullisht mund të ndihmojë t’i mbani lexuesit tuaj të angazhuar, dhe të tërhiqni vizitorë të rinj te sajti juaj."; @@ -5392,7 +5392,7 @@ translators: Block name. %s: The localized block name */ "Primary Site" = "Sajti Parësor"; /* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Primary site address"; +"Primary site address" = "Adresë parësore sajti"; /* Label for the privacy setting Privacy settings section header @@ -5745,7 +5745,7 @@ translators: Block name. %s: The localized block name */ "Reply Text" = "Tekst Përgjigjeje"; /* Provides hint that the screen displays a reply to a comment.%1$@ is a placeholder for the comment author that's been replied to.Example: Reply to Pamela Nguyen */ -"Reply to %1$@" = "Reply to %1$@"; +"Reply to %1$@" = "Përgjigje për %1$@"; /* Placeholder text for replying to a comment */ "Reply to comment…" = "Përgjigjjuni komentit…"; @@ -6041,10 +6041,10 @@ translators: Block name. %s: The localized block name */ "Search button. Current button text is" = "Buton kërkimi. Butoni i tanishëm tekst është"; /* Search domain - Title for the Suggested domains screen */ -"Search domains" = "Search domains"; +"Search domains" = "Kërkoni te përkatësitë"; /* title of the button that searches the first domain. */ -"Search for a domain" = "Search for a domain"; +"Search for a domain" = "Kërkoni për një përkatësi"; /* No comment provided by engineer. */ "Search input field." = "Fushë dhëniesh kërkimi."; @@ -6151,7 +6151,7 @@ translators: Block name. %s: The localized block name */ "Select a layout" = "Përzgjidhni një skemë"; /* Register domain - Title for the Choose domain button of Suggested domains screen */ -"Select domain" = "Select domain"; +"Select domain" = "Përzgjidhni një përkatësi"; /* Accessibility hint for actions when displaying media items. */ "Select media." = "Përzgjidhni media."; @@ -6269,7 +6269,7 @@ translators: Block name. %s: The localized block name */ "Set up Jetpack" = "Rregulloni Jetpack-un"; /* Title for button that will open up the blogging reminders screen. */ -"Set up blogging reminders" = "Set up blogging reminders"; +"Set up blogging reminders" = "Ujdisni kujtues blogimi"; /* Description on the first screen of the Blogging Reminders Settings flow called from site settings. */ "Set up your blogging reminders on days you want to post." = "Ujdisni kujtues blogimi për ditë kur doni të postoni."; @@ -6345,7 +6345,7 @@ translators: Block name. %s: The localized block name */ "Sharing error" = "Gabim në ndarje me të tjerët"; /* A hint to users that they've set up post sharing. */ -"Sharing is set up!" = "Sharing is set up!"; +"Sharing is set up!" = "Ndarje me të tjerë është ujdisur!"; /* Label for configuration switch to show/hide the header for the related posts section */ "Show Header" = "Shfaq Kryet"; @@ -6451,7 +6451,7 @@ translators: Block name. %s: The localized block name */ "Site" = "Sajt"; /* Title of the Domains Dashboard. */ -"Site Domains" = "Site Domains"; +"Site Domains" = "Përkatësi Sajti"; /* Accessibility label for site icon button */ "Site Icon" = "Ikonë Sajti"; @@ -7043,7 +7043,7 @@ translators: Block name. %s: The localized block name */ "The media could not be added to the Media Library." = "Media s’u shtua dot te Mediateka."; /* Error shown when a module can not be enabled */ -"The module couldn't be activated." = "The module couldn't be activated."; +"The module couldn't be activated." = "Moduli s’u aktivizua dot."; /* Text above the selection of the number of posts to show per blog page */ "The number of posts to show per page." = "Numër postimesh për t’u shfaqur për faqe."; @@ -8050,7 +8050,7 @@ translators: Block name. %s: The localized block name */ "View more" = "Shihni më tepër"; /* Description for view count. Singular. */ -"View to your site so far" = "View to your site so far"; +"View to your site so far" = "Parje për sajtin tuaj deri këtu"; /* Title of a Quick Start Tour */ "View your site" = "Shihni sajtin tuaj"; @@ -8071,7 +8071,7 @@ translators: Block name. %s: The localized block name */ "Views" = "Parje"; /* Description for view count. Singular. */ -"Views to your site so far" = "Views to your site so far"; +"Views to your site so far" = "Parje për sajtin tuaj deri këtu"; /* Label for Visibility The visibility settings of the post. Should be the same as in core WP. @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "Kur bëni ndryshime te sajti juaj, këtu do të jeni në gjendje të shihni historikun e veprimtarisë tuaj."; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "Kur të botoni postimin tuaj pasues, do të ndahet automatikisht në rrjetet që keni lidhur."; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "Cilin version do të donit të përpunonit?"; @@ -8733,7 +8733,7 @@ translators: Block name. %s: The localized block name */ "You have 1 hidden WordPress site." = "Keni 1 sajt WordPress të fshehur."; /* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "You have a free one-year domain registration with your plan"; +"You have a free one-year domain registration with your plan" = "Me planin tuaj keni të përfshirë një regjistrim përkatësie falas për një vit"; /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Keni përmirësime me pagesë aktive në sajtin tuaj. Ju lutemi, para se të fshini sajtin, anulojini përmirësimet tuaja."; @@ -8791,7 +8791,7 @@ translators: Block name. %s: The localized block name */ "You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog" = "Duket se keni instaluar një shtojcë celulari nga DudaMobile që e pengon aplikacionin të lidhet te blogu juaj"; /* A hint to users that they've set up blogging reminders. */ -"You set up blogging reminders" = "You set up blogging reminders"; +"You set up blogging reminders" = "Ujdisni kujtues blogimi"; /* Message displayed in ignore threat alert. %1$@ is a placeholder for the blog name. */ "You shouldn’t ignore a security issue unless you are absolutely sure it’s harmless. If you choose to ignore this threat, it will remain on your site \"%1$@\"." = "S’duhet ta shpërfillni një çështje sigurie, veç në qofshi absolutisht i sigurt se është e padëmshme. Nëse zgjidhni të shpërfillet ky kërcënim, do të mbetet në sajtin tuaj \"%1$@\"."; @@ -8815,7 +8815,7 @@ translators: Block name. %s: The localized block name */ "You've made unsaved changes to this post" = "Keni bërë ndryshime të paruajtura në këtë postim"; /* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Your Site Domains"; +"Your Site Domains" = "Përkatësitë e Sajtit Tuaj"; /* The item to select during a guided tour. */ "Your Site Icon" = "Ikona e Sajtit Tuaj"; @@ -8848,7 +8848,7 @@ translators: Block name. %s: The localized block name */ "Your first backup will be ready soon" = "Kopjeruajtja juaj e parë do të jetë gati së shpejti"; /* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Your free WordPress.com address is"; +"Your free WordPress.com address is" = "Adresa juaj falas WordPress.com është"; /* Error message when picked media cannot be imported into stories. */ "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "Media juaj s’u eksportua dot. Nëse problemi vazhdon, mund të lidheni me ne që nga skena Unë > Ndihmë & Asistencë."; diff --git a/WordPress/Resources/tr.lproj/Localizable.strings b/WordPress/Resources/tr.lproj/Localizable.strings index 0f75f5f3450e..bce76569a519 100644 --- a/WordPress/Resources/tr.lproj/Localizable.strings +++ b/WordPress/Resources/tr.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-10-04 12:15:54+0000 */ +/* Translation-Revision-Date: 2021-10-27 13:54:08+0000 */ /* Plural-Forms: nplurals=2; plural=n > 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: tr */ @@ -357,7 +357,7 @@ translators: Block name. %s: The localized block name */ "A tag named '%@' already exists." = "'%@' isminde bir etiket zaten mevcut."; /* A hint to users about growing the audience for their site, when their site doesn't have many views yet. */ -"A tip to grow your audience" = "A tip to grow your audience"; +"A tip to grow your audience" = "Kitlenizi büyütmek için bir ipucu"; /* Placeholder text for the title of a site */ "A title for the site" = "Site için başlık"; @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "Yeni yazıları sosyal medya hesaplarınızda otomatik olarak paylaşın."; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "Bir kitleyi sitenize çekmeye başlamak için yeni gönderileri otomatik olarak sosyal medyanızda paylaşın."; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "Otomatik güncellemeler"; @@ -1536,10 +1536,10 @@ translators: Block name. %s: The localized block name */ "Comment Likes" = "Yorum beğenileri"; /* Message displayed when approving a comment succeeds. */ -"Comment approved." = "Comment approved."; +"Comment approved." = "Yorum onaylandı."; /* Message displayed when deleting a comment succeeds. */ -"Comment deleted." = "Comment deleted."; +"Comment deleted." = "Yorum silindi."; /* Displayed when a Comment is deleted */ "Comment has been deleted" = "Yorum silindi"; @@ -1548,17 +1548,17 @@ translators: Block name. %s: The localized block name */ "Comment has been marked as Spam" = "Yorum istenmeyen olarak işaretlendi"; /* Message displayed when spamming a comment succeeds. */ -"Comment marked as spam." = "Comment marked as spam."; +"Comment marked as spam." = "Yorum istenmeyen olarak işaretlendi."; /* Message displayed when trashing a comment succeeds. */ -"Comment moved to trash." = "Comment moved to trash."; +"Comment moved to trash." = "Yorum çöpe taşındı."; /* Provides hint that the current screen displays a comment on a post. The title of the post will displayed below this string. Example: Comment on My First Post */ "Comment on" = "Şununla ilgili yorum:"; /* Message displayed when pending a comment succeeds. */ -"Comment set to pending." = "Comment set to pending."; +"Comment set to pending." = "Yorum \"beklemede\" olarak ayarlandı."; /* Filters Comments Notifications Insights 'Comments' header @@ -1682,7 +1682,7 @@ translators: Block name. %s: The localized block name */ "Connect another site" = "Başka bir site bağla"; /* Title for button that will open up the social media Sharing screen. */ -"Connect more networks" = "Connect more networks"; +"Connect more networks" = "Daha fazla ağ bağlayın"; /* Instructional text appearing below a `Connect` button. The `%@` is a placeholder for the name of a third-party sharing service. */ "Connect to automatically share your blog posts to %@" = "Blog yazılarınızı %@ ile otomatik olarak paylaşmak için bağlanın"; @@ -1968,10 +1968,10 @@ translators: Block name. %s: The localized block name */ "Create downloadable file" = "İndirilebilir dosya oluştur"; /* No comment provided by engineer. */ -"Create embed" = "Create embed"; +"Create embed" = "Gömülü içerik oluştur"; /* No comment provided by engineer. */ -"Create link" = "Create link"; +"Create link" = "Bağlantı oluştur"; /* Customize Insights description */ "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about." = "Kendi özelleştirilmiş panonuzu oluşturun ve görmek istediğiniz raporları seçin. Sizi en çok ilgilendiren verilere odaklanın."; @@ -2309,7 +2309,7 @@ translators: Block name. %s: The localized block name */ "Domains" = "Alan adları"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; +"Domains purchased on this site will redirect to %@" = "Bu siteden satın alınan alan adları %@ adresine yönlendirilecek"; /* Description for the first domain purchased with a free plan. */ "Domains purchased on this site will redirect users to " = "Bu site için satın alınmış alan adları kullanıcıları şuraya yönlendirecek"; @@ -2524,7 +2524,7 @@ translators: Block name. %s: The localized block name */ "Edit new posts and pages with the block editor." = "Blok düzenleyici ile yeni gönderi ve sayfaları düzenleyin."; /* Title for button that will open up the blogging reminders screen. */ -"Edit reminders" = "Edit reminders"; +"Edit reminders" = "Hatırlatıcıları düzenle"; /* Title for the edit sharing buttons section */ "Edit sharing buttons" = "Paylaşım tuşlarını düzenle"; @@ -2631,7 +2631,7 @@ translators: Block name. %s: The localized block name */ "Enable" = "Etkinleştir"; /* Text shown when the site doesn't have the Publicize module enabled. */ -"Enable Publicize" = "Enable Publicize"; +"Enable Publicize" = "Duyuruyu Etkinleştir"; /* Title of a row displayed on the debug screen used in debug builds of the app */ "Enable Quick Start for Site" = "Site için hızlı başlatmayı etkinleştir"; @@ -2730,7 +2730,7 @@ translators: Block name. %s: The localized block name */ "Error approving comment" = "Yorum onaylanırken hata oluştu"; /* Message displayed when approving a comment fails. */ -"Error approving comment." = "Error approving comment."; +"Error approving comment." = "Yorum onaylanırken hata oluştu."; /* No comment (test) This secondary message is displayed if a user encounters a general error. */ @@ -2743,7 +2743,7 @@ translators: Block name. %s: The localized block name */ "Error deleting comment" = "Yorum silinirken hata oluştu"; /* Message displayed when deleting a comment fails. */ -"Error deleting comment." = "Error deleting comment."; +"Error deleting comment." = "Yorum silinirken hata oluştu."; /* There was an error disabling autoupdates for a plugin, placeholder is the plugin name */ "Error disabling autoupdates for %@." = "%@ için otomatik güncellemeler devre dışı bırakılırken hata oluştu."; @@ -2773,10 +2773,10 @@ translators: Block name. %s: The localized block name */ "Error marking comment as spam" = "Yorum spam olarak işaretlenirken hata oluştu"; /* Message displayed when spamming a comment fails. */ -"Error marking comment as spam." = "Error marking comment as spam."; +"Error marking comment as spam." = "Yorum spam olarak işaretlenirken hata oluştu."; /* Message displayed when trashing a comment fails. */ -"Error moving comment to trash." = "Error moving comment to trash."; +"Error moving comment to trash." = "Yorum çöp kutusuna taşınırken hata oluştu."; /* Text displayed in HUD while a post revision is being loaded. */ "Error occurred\nduring loading" = "Yükleme sırasında\nhata oluştu"; @@ -2812,7 +2812,7 @@ translators: Block name. %s: The localized block name */ "Error sending verification email. Check your connection and try again." = "Doğrulama e-postası gönderilirken hata oluştu. Bağlantınızı kontrol edin ve tekrar deneyin."; /* Message displayed when pending a comment fails. */ -"Error setting comment to pending." = "Error setting comment to pending."; +"Error setting comment to pending." = "Yorum beklemeye alınırken hata oluştu."; /* Message shown when unapproving a Comment fails. */ "Error unapproving comment" = "Yorumun onayı kaldırılırken hata oluştu "; @@ -3136,7 +3136,7 @@ translators: Block name. %s: The localized block name */ "Free Photo Library" = "Ücretsiz fotoğraf kütüphanesi"; /* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; +"Free for the first year " = "İlk yıl ücretsiz "; /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Geçici ortam dosyalarını silerek bu cihazda depolama alanı boşaltın. Bu, sitenizdeki ortam dosyalarını etkilemez."; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "Bir kaç kelime ile bu sitenin ne ile ilgili olduğunu anlatın."; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "Yayınladığınız gönderilerinizi sosyal medyanızda paylaşabilmeniz için Duyuru modülünü etkinleştirmeniz gerekmektedir."; /* Describes a status of a plugin */ "Inactive" = "Pasif"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "Düzenlemeye devam et"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "Blog yazmaya devam edin ve sitenize gelen ziyaretçileri görmek için tekrar kontrol edin."; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "Sitenizin performansıyla ilgili güncel bilgiler edinin."; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "Lütfen geçerli bir soyad girin"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "Lütfen geçerli bir Organizasyon girin"; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "Lütfen geçerli bir posta kodu girin"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "Yazım etkinliği"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "Düzenli olarak paylaşım yapmak, bir kitle oluşturmaya yardımcı olabilir. Hatırlatıcılar her şeyi takip etmenize yardımcı olur."; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "Düzenli olarak paylaşım yapmak, okuyucularınızın ilgisini ve sitenize de yeni ziyaretçileri çekmenize yardımcı olabilir."; @@ -6151,7 +6151,7 @@ translators: Block name. %s: The localized block name */ "Select a layout" = "Düzen seç"; /* Register domain - Title for the Choose domain button of Suggested domains screen */ -"Select domain" = "Select domain"; +"Select domain" = "Alan adı seç"; /* Accessibility hint for actions when displaying media items. */ "Select media." = "Ortam dosyası seçin."; @@ -6269,7 +6269,7 @@ translators: Block name. %s: The localized block name */ "Set up Jetpack" = "Jetpack'i yapılandır"; /* Title for button that will open up the blogging reminders screen. */ -"Set up blogging reminders" = "Set up blogging reminders"; +"Set up blogging reminders" = "Blog hatırlatıcıları ayarlayın"; /* Description on the first screen of the Blogging Reminders Settings flow called from site settings. */ "Set up your blogging reminders on days you want to post." = "Gönderi paylaşmak istediğiniz günler için blog hatırlatıcılarınızı ayarlayın."; @@ -6345,7 +6345,7 @@ translators: Block name. %s: The localized block name */ "Sharing error" = "Paylaşım hatası"; /* A hint to users that they've set up post sharing. */ -"Sharing is set up!" = "Sharing is set up!"; +"Sharing is set up!" = "Paylaşım ayarlandı."; /* Label for configuration switch to show/hide the header for the related posts section */ "Show Header" = "Başlığı göster"; @@ -7043,7 +7043,7 @@ translators: Block name. %s: The localized block name */ "The media could not be added to the Media Library." = "Ortam dosyası ortam kütüphanesine eklenemez."; /* Error shown when a module can not be enabled */ -"The module couldn't be activated." = "The module couldn't be activated."; +"The module couldn't be activated." = "Modül etkinleştirilemedi."; /* Text above the selection of the number of posts to show per blog page */ "The number of posts to show per page." = "Sayfa başına gösterilecek yazı sayısı."; @@ -8050,7 +8050,7 @@ translators: Block name. %s: The localized block name */ "View more" = "Daha fazlasını görüntüle"; /* Description for view count. Singular. */ -"View to your site so far" = "View to your site so far"; +"View to your site so far" = "Şimdiye kadar sitenizdeki görüntüleme"; /* Title of a Quick Start Tour */ "View your site" = "Sitenizi görüntüleyin"; @@ -8071,7 +8071,7 @@ translators: Block name. %s: The localized block name */ "Views" = "Gösterimler"; /* Description for view count. Singular. */ -"Views to your site so far" = "Views to your site so far"; +"Views to your site so far" = "Şimdiye kadar sitenizdeki görüntüleme sayısı"; /* Label for Visibility The visibility settings of the post. Should be the same as in core WP. @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "Sitenizde değişiklik yaptığınızda etkinlik geçmişinizi burada görebileceksiniz."; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "Bir sonraki gönderinizi yayınladığınızda, otomatik olarak bağlı ağlarınızla paylaşılacaktır."; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "Hangi sürümü düzenlemek istersiniz?"; @@ -8791,7 +8791,7 @@ translators: Block name. %s: The localized block name */ "You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog" = "DudaMobilden uygulamanın bloğunuza bağlanmasını engelleyen bir eklenti yüklemiş görünüyorsunuz"; /* A hint to users that they've set up blogging reminders. */ -"You set up blogging reminders" = "You set up blogging reminders"; +"You set up blogging reminders" = "Blog hatırlatıcıları ayarladınız"; /* Message displayed in ignore threat alert. %1$@ is a placeholder for the blog name. */ "You shouldn’t ignore a security issue unless you are absolutely sure it’s harmless. If you choose to ignore this threat, it will remain on your site \"%1$@\"." = "Zararsız olduğundan kesinlikle emin değilseniz bir güvenlik sorununu görmezden gelmemelisiniz. Bu tehdidi görmezden gelmeyi seçerseniz \"%1$@\" sitenizde kalacaktır."; diff --git a/WordPress/Resources/zh-Hans.lproj/Localizable.strings b/WordPress/Resources/zh-Hans.lproj/Localizable.strings index 7ea447d556f6..973e490c0ec6 100644 --- a/WordPress/Resources/zh-Hans.lproj/Localizable.strings +++ b/WordPress/Resources/zh-Hans.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-10-12 11:54:08+0000 */ +/* Translation-Revision-Date: 2021-10-26 09:54:08+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: zh_CN */ @@ -13,7 +13,7 @@ "\nTo confirm, please re-enter your username before closing.\n\n" = "\n如果您确认关闭账户,请在关闭之前重新输入您的用户名。\n"; /* No comment provided by engineer. */ -" \/ year" = " \/ year"; +" \/ year" = " \/年"; /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "“延迟加载”图片"; @@ -357,7 +357,7 @@ translators: Block name. %s: The localized block name */ "A tag named '%@' already exists." = "名为“%@”的标签已存在。"; /* A hint to users about growing the audience for their site, when their site doesn't have many views yet. */ -"A tip to grow your audience" = "A tip to grow your audience"; +"A tip to grow your audience" = "增加受众的技巧"; /* Placeholder text for the title of a site */ "A title for the site" = "站点标题"; @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "自动将新文章共享到社交媒体账户。"; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "自动将新文章分享到您的社交媒体,让这些受众流向您的站点。"; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "自动更新"; @@ -1536,10 +1536,10 @@ translators: Block name. %s: The localized block name */ "Comment Likes" = "评论点赞"; /* Message displayed when approving a comment succeeds. */ -"Comment approved." = "Comment approved."; +"Comment approved." = "已批准评论。"; /* Message displayed when deleting a comment succeeds. */ -"Comment deleted." = "Comment deleted."; +"Comment deleted." = "已删除评论。"; /* Displayed when a Comment is deleted */ "Comment has been deleted" = "评论已删除"; @@ -1548,17 +1548,17 @@ translators: Block name. %s: The localized block name */ "Comment has been marked as Spam" = "评论已被标记为垃圾评论"; /* Message displayed when spamming a comment succeeds. */ -"Comment marked as spam." = "Comment marked as spam."; +"Comment marked as spam." = "已将评论标记为垃圾评论。"; /* Message displayed when trashing a comment succeeds. */ -"Comment moved to trash." = "Comment moved to trash."; +"Comment moved to trash." = "已将评论移动到回收站。"; /* Provides hint that the current screen displays a comment on a post. The title of the post will displayed below this string. Example: Comment on My First Post */ "Comment on" = "评论于"; /* Message displayed when pending a comment succeeds. */ -"Comment set to pending." = "Comment set to pending."; +"Comment set to pending." = "已将评论设置为待处理。"; /* Filters Comments Notifications Insights 'Comments' header @@ -1682,7 +1682,7 @@ translators: Block name. %s: The localized block name */ "Connect another site" = "连接其他站点"; /* Title for button that will open up the social media Sharing screen. */ -"Connect more networks" = "Connect more networks"; +"Connect more networks" = "连接更多网络"; /* Instructional text appearing below a `Connect` button. The `%@` is a placeholder for the name of a third-party sharing service. */ "Connect to automatically share your blog posts to %@" = "连接以自动将您的博客文章分享至 %@"; @@ -1968,10 +1968,10 @@ translators: Block name. %s: The localized block name */ "Create downloadable file" = "创建可下载的文件"; /* No comment provided by engineer. */ -"Create embed" = "Create embed"; +"Create embed" = "创建嵌入"; /* No comment provided by engineer. */ -"Create link" = "Create link"; +"Create link" = "创建链接"; /* Customize Insights description */ "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about." = "创建专属于您的自定义控制面板并选择查看哪些报告。重点关注您最关心的数据。"; @@ -2309,7 +2309,7 @@ translators: Block name. %s: The localized block name */ "Domains" = "域"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; +"Domains purchased on this site will redirect to %@" = "在此站点上购买的域会将用户重定向至 %@"; /* Description for the first domain purchased with a free plan. */ "Domains purchased on this site will redirect users to " = "在此站点上购买的域名会将用户重定向至 "; @@ -2524,7 +2524,7 @@ translators: Block name. %s: The localized block name */ "Edit new posts and pages with the block editor." = "使用区块编辑器编辑新文章和页面。"; /* Title for button that will open up the blogging reminders screen. */ -"Edit reminders" = "Edit reminders"; +"Edit reminders" = "编辑提醒"; /* Title for the edit sharing buttons section */ "Edit sharing buttons" = "编辑共享按钮"; @@ -2631,7 +2631,7 @@ translators: Block name. %s: The localized block name */ "Enable" = "启用"; /* Text shown when the site doesn't have the Publicize module enabled. */ -"Enable Publicize" = "Enable Publicize"; +"Enable Publicize" = "启用 Publicize"; /* Title of a row displayed on the debug screen used in debug builds of the app */ "Enable Quick Start for Site" = "为站点启用快速入门"; @@ -2730,7 +2730,7 @@ translators: Block name. %s: The localized block name */ "Error approving comment" = "批准评论时出错"; /* Message displayed when approving a comment fails. */ -"Error approving comment." = "Error approving comment."; +"Error approving comment." = "批准评论时出错。"; /* No comment (test) This secondary message is displayed if a user encounters a general error. */ @@ -2743,7 +2743,7 @@ translators: Block name. %s: The localized block name */ "Error deleting comment" = "删除评论时出错"; /* Message displayed when deleting a comment fails. */ -"Error deleting comment." = "Error deleting comment."; +"Error deleting comment." = "删除评论时出错。"; /* There was an error disabling autoupdates for a plugin, placeholder is the plugin name */ "Error disabling autoupdates for %@." = "禁用 %@ 的自动更新时出错。"; @@ -2773,10 +2773,10 @@ translators: Block name. %s: The localized block name */ "Error marking comment as spam" = "将评论标记为垃圾时出错"; /* Message displayed when spamming a comment fails. */ -"Error marking comment as spam." = "Error marking comment as spam."; +"Error marking comment as spam." = "将评论标记为垃圾时出错。"; /* Message displayed when trashing a comment fails. */ -"Error moving comment to trash." = "Error moving comment to trash."; +"Error moving comment to trash." = "将评论移至回收站时出错。"; /* Text displayed in HUD while a post revision is being loaded. */ "Error occurred\nduring loading" = "发生错误\n在加载中"; @@ -2812,7 +2812,7 @@ translators: Block name. %s: The localized block name */ "Error sending verification email. Check your connection and try again." = "发送验证电子邮件时发生错误。请检查连接并重试。"; /* Message displayed when pending a comment fails. */ -"Error setting comment to pending." = "Error setting comment to pending."; +"Error setting comment to pending." = "将评论设置为待处理时出错。"; /* Message shown when unapproving a Comment fails. */ "Error unapproving comment" = "取消批准评论时出错"; @@ -3136,7 +3136,7 @@ translators: Block name. %s: The localized block name */ "Free Photo Library" = "免费照片库"; /* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; +"Free for the first year " = "第一年免费 "; /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "删除临时媒体文件,释放此设备的存储空间。此操作不会影响您站点上的媒体。"; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "简要描述该站点。"; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "要将您发布的文章分享到您的社交媒体,需要启用 Publicize 模块。"; /* Describes a status of a plugin */ "Inactive" = "未激活"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "保存编辑"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "继续发布博客,并查看您站点的访客。"; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "使您站点的性能始终不会落伍。"; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "请输入有效的姓氏"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "请输入一个有效组织"; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "请输入有效的邮政编码"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "博文发布情况"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "定期发布可帮助吸引受众。 提醒可帮助您按计划执行。"; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "定期发布文章有助于留住读者以及吸引新访客访问您的站点。"; @@ -6151,7 +6151,7 @@ translators: Block name. %s: The localized block name */ "Select a layout" = "选择布局"; /* Register domain - Title for the Choose domain button of Suggested domains screen */ -"Select domain" = "Select domain"; +"Select domain" = "选择域"; /* Accessibility hint for actions when displaying media items. */ "Select media." = "选择媒体。"; @@ -6269,7 +6269,7 @@ translators: Block name. %s: The localized block name */ "Set up Jetpack" = "设置 Jetpack"; /* Title for button that will open up the blogging reminders screen. */ -"Set up blogging reminders" = "Set up blogging reminders"; +"Set up blogging reminders" = "设置博客发布提醒"; /* Description on the first screen of the Blogging Reminders Settings flow called from site settings. */ "Set up your blogging reminders on days you want to post." = "在希望发布文章的日期设置博客发布提醒。"; @@ -6345,7 +6345,7 @@ translators: Block name. %s: The localized block name */ "Sharing error" = "共享错误"; /* A hint to users that they've set up post sharing. */ -"Sharing is set up!" = "Sharing is set up!"; +"Sharing is set up!" = "已设置共享!"; /* Label for configuration switch to show/hide the header for the related posts section */ "Show Header" = "显示标题"; @@ -7043,7 +7043,7 @@ translators: Block name. %s: The localized block name */ "The media could not be added to the Media Library." = "无法将媒体添加到媒体库。"; /* Error shown when a module can not be enabled */ -"The module couldn't be activated." = "The module couldn't be activated."; +"The module couldn't be activated." = "无法激活模块。"; /* Text above the selection of the number of posts to show per blog page */ "The number of posts to show per page." = "每页显示的文章数。"; @@ -8050,7 +8050,7 @@ translators: Block name. %s: The localized block name */ "View more" = "查看更多信息"; /* Description for view count. Singular. */ -"View to your site so far" = "View to your site so far"; +"View to your site so far" = "到目前为止您站点的浏览次数"; /* Title of a Quick Start Tour */ "View your site" = "查看您的站点"; @@ -8071,7 +8071,7 @@ translators: Block name. %s: The localized block name */ "Views" = "查看数"; /* Description for view count. Singular. */ -"Views to your site so far" = "Views to your site so far"; +"Views to your site so far" = "到目前为止您站点的浏览次数"; /* Label for Visibility The visibility settings of the post. Should be the same as in core WP. @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "在对站点进行更改时,您可在此处查看您的活动历史记录。"; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "当您发布下一篇文章时,它将自动共享到您连接的网络。"; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "您想要编辑哪个版本?"; @@ -8791,7 +8791,7 @@ translators: Block name. %s: The localized block name */ "You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog" = "您似乎安装了来自 DudaMobile 的移动插件,该插件会阻止应用程序连接到您的博客"; /* A hint to users that they've set up blogging reminders. */ -"You set up blogging reminders" = "You set up blogging reminders"; +"You set up blogging reminders" = "您已设置博客发布提醒"; /* Message displayed in ignore threat alert. %1$@ is a placeholder for the blog name. */ "You shouldn’t ignore a security issue unless you are absolutely sure it’s harmless. If you choose to ignore this threat, it will remain on your site \"%1$@\"." = "您不应忽视安全性问题,除非您确信该问题不会带来负面影响。如果您选择忽略此威胁,它将继续存留在您的站点“%1$@”。"; diff --git a/WordPress/Resources/zh-Hant.lproj/Localizable.strings b/WordPress/Resources/zh-Hant.lproj/Localizable.strings index e120e8d7ad3f..294544554a3d 100644 --- a/WordPress/Resources/zh-Hant.lproj/Localizable.strings +++ b/WordPress/Resources/zh-Hant.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-10-12 11:54:07+0000 */ +/* Translation-Revision-Date: 2021-10-26 09:54:08+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: zh_TW */ @@ -13,7 +13,7 @@ "\nTo confirm, please re-enter your username before closing.\n\n" = "\n為進行確認,請在關閉前重新輸入你的使用者名稱。\n\n"; /* No comment provided by engineer. */ -" \/ year" = " \/ year"; +" \/ year" = " \/年"; /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "「延遲載入」圖片"; @@ -357,7 +357,7 @@ translators: Block name. %s: The localized block name */ "A tag named '%@' already exists." = "已有名稱為「%@」的標籤。"; /* A hint to users about growing the audience for their site, when their site doesn't have many views yet. */ -"A tip to grow your audience" = "A tip to grow your audience"; +"A tip to grow your audience" = "拓展讀者群的秘訣"; /* Placeholder text for the title of a site */ "A title for the site" = "網站標題"; @@ -939,7 +939,7 @@ translators: Block name. %s: The localized block name */ "Automatically share new posts to your social media accounts." = "自動將新文章分享到社交媒體帳號。"; /* A detailed message to users about growing the audience for their site through enabling post sharing. */ -"Automatically share new posts to your social media to start bringing that audience over to your site." = "Automatically share new posts to your social media to start bringing that audience over to your site."; +"Automatically share new posts to your social media to start bringing that audience over to your site." = "自動分享新文章至社群媒體,將讀者群導向你的網站。"; /* Whether a plugin has enabled automatic updates */ "Autoupdates" = "自動更新"; @@ -1536,10 +1536,10 @@ translators: Block name. %s: The localized block name */ "Comment Likes" = "留言的按讚次數"; /* Message displayed when approving a comment succeeds. */ -"Comment approved." = "Comment approved."; +"Comment approved." = "留言已核准。"; /* Message displayed when deleting a comment succeeds. */ -"Comment deleted." = "Comment deleted."; +"Comment deleted." = "留言已刪除。"; /* Displayed when a Comment is deleted */ "Comment has been deleted" = "留言已刪除"; @@ -1548,17 +1548,17 @@ translators: Block name. %s: The localized block name */ "Comment has been marked as Spam" = "已將留言標記為垃圾訊息"; /* Message displayed when spamming a comment succeeds. */ -"Comment marked as spam." = "Comment marked as spam."; +"Comment marked as spam." = "已將留言標記為垃圾。"; /* Message displayed when trashing a comment succeeds. */ -"Comment moved to trash." = "Comment moved to trash."; +"Comment moved to trash." = "已將留言移至垃圾桶。"; /* Provides hint that the current screen displays a comment on a post. The title of the post will displayed below this string. Example: Comment on My First Post */ "Comment on" = "對以下文章的留言:"; /* Message displayed when pending a comment succeeds. */ -"Comment set to pending." = "Comment set to pending."; +"Comment set to pending." = "已將留言設為待審核。"; /* Filters Comments Notifications Insights 'Comments' header @@ -1682,7 +1682,7 @@ translators: Block name. %s: The localized block name */ "Connect another site" = "連結其他網站"; /* Title for button that will open up the social media Sharing screen. */ -"Connect more networks" = "Connect more networks"; +"Connect more networks" = "連結更多網路"; /* Instructional text appearing below a `Connect` button. The `%@` is a placeholder for the name of a third-party sharing service. */ "Connect to automatically share your blog posts to %@" = "連結後,你的網誌文章便能自動分享至 %@"; @@ -1968,10 +1968,10 @@ translators: Block name. %s: The localized block name */ "Create downloadable file" = "建立可下載的檔案"; /* No comment provided by engineer. */ -"Create embed" = "Create embed"; +"Create embed" = "建立嵌入內容"; /* No comment provided by engineer. */ -"Create link" = "Create link"; +"Create link" = "建立連結"; /* Customize Insights description */ "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about." = "建立你專屬的自訂儀表板,並選擇要查看的報告。把重心放在你最關心的資料。"; @@ -2309,7 +2309,7 @@ translators: Block name. %s: The localized block name */ "Domains" = "網域"; /* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; +"Domains purchased on this site will redirect to %@" = "此網站購買的網域將重新導向至 %@"; /* Description for the first domain purchased with a free plan. */ "Domains purchased on this site will redirect users to " = "在本網站購買的網域會將使用者重新導向至 "; @@ -2524,7 +2524,7 @@ translators: Block name. %s: The localized block name */ "Edit new posts and pages with the block editor." = "使用區塊編輯器編輯新文章和頁面。"; /* Title for button that will open up the blogging reminders screen. */ -"Edit reminders" = "Edit reminders"; +"Edit reminders" = "編輯提醒"; /* Title for the edit sharing buttons section */ "Edit sharing buttons" = "編輯分享按鈕"; @@ -2631,7 +2631,7 @@ translators: Block name. %s: The localized block name */ "Enable" = "啓用"; /* Text shown when the site doesn't have the Publicize module enabled. */ -"Enable Publicize" = "Enable Publicize"; +"Enable Publicize" = "啟用 Publicize"; /* Title of a row displayed on the debug screen used in debug builds of the app */ "Enable Quick Start for Site" = "啟用網站的快速入門"; @@ -2730,7 +2730,7 @@ translators: Block name. %s: The localized block name */ "Error approving comment" = "核准留言時發生錯誤"; /* Message displayed when approving a comment fails. */ -"Error approving comment." = "Error approving comment."; +"Error approving comment." = "核准留言時發生錯誤。"; /* No comment (test) This secondary message is displayed if a user encounters a general error. */ @@ -2743,7 +2743,7 @@ translators: Block name. %s: The localized block name */ "Error deleting comment" = "刪除留言時發生錯誤"; /* Message displayed when deleting a comment fails. */ -"Error deleting comment." = "Error deleting comment."; +"Error deleting comment." = "刪除留言時發生錯誤。"; /* There was an error disabling autoupdates for a plugin, placeholder is the plugin name */ "Error disabling autoupdates for %@." = "為 %@ 停用自動更新時發生錯誤。"; @@ -2773,10 +2773,10 @@ translators: Block name. %s: The localized block name */ "Error marking comment as spam" = "將留言標示為垃圾訊息時發生錯誤"; /* Message displayed when spamming a comment fails. */ -"Error marking comment as spam." = "Error marking comment as spam."; +"Error marking comment as spam." = "將留言標示為垃圾時發生錯誤。"; /* Message displayed when trashing a comment fails. */ -"Error moving comment to trash." = "Error moving comment to trash."; +"Error moving comment to trash." = "將留言移至垃圾桶時發生錯誤。"; /* Text displayed in HUD while a post revision is being loaded. */ "Error occurred\nduring loading" = "Error occurred\nduring loading"; @@ -2812,7 +2812,7 @@ translators: Block name. %s: The localized block name */ "Error sending verification email. Check your connection and try again." = "傳送驗證電子郵件時發生錯誤。請檢查你的連線並再試一次。"; /* Message displayed when pending a comment fails. */ -"Error setting comment to pending." = "Error setting comment to pending."; +"Error setting comment to pending." = "將留言設為待審核時發生錯誤。"; /* Message shown when unapproving a Comment fails. */ "Error unapproving comment" = "取消核准留言時發生錯誤"; @@ -3136,7 +3136,7 @@ translators: Block name. %s: The localized block name */ "Free Photo Library" = "免費相片圖庫"; /* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; +"Free for the first year " = "第一年免費 "; /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "刪除暫存媒體檔案,即可釋放此裝置的儲存空間。這不會影響你網站上的媒體。"; @@ -3502,7 +3502,7 @@ translators: Block name. %s: The localized block name */ "In a few words, explain what this site is about." = "請用簡單幾字描述此網站的內容。"; /* Title of button to enable publicize. */ -"In order to share your published posts to your social media you need to enable the Publicize module." = "In order to share your published posts to your social media you need to enable the Publicize module."; +"In order to share your published posts to your social media you need to enable the Publicize module." = "若要將發表的文章分享至社群網站,需啟用 Publicize 模組。"; /* Describes a status of a plugin */ "Inactive" = "未啟用"; @@ -3741,7 +3741,7 @@ translators: Block name. %s: The localized block name */ "Keep Editing" = "繼續編輯"; /* A detailed message to users indicating that they've set up blogging reminders. */ -"Keep blogging and check back to see visitors arriving at your site." = "Keep blogging and check back to see visitors arriving at your site."; +"Keep blogging and check back to see visitors arriving at your site." = "持續寫網誌,稍後再回來查看哪些訪客造訪你的網站。"; /* Description of a Quick Start Tour */ "Keep up to date on your site’s performance." = "隨時掌握你的網站效能。"; @@ -5106,7 +5106,7 @@ translators: Block name. %s: The localized block name */ "Please enter a valid Last Name" = "請輸入有效的姓氏"; /* Register Domain - Domain contact information validation error message for an input field */ -"Please enter a valid Organization" = "Please enter a valid Organization"; +"Please enter a valid Organization" = "請輸入有效的組織"; /* Register Domain - Domain contact information validation error message for an input field */ "Please enter a valid Postal Code" = "請輸入有效的郵遞區號"; @@ -5305,7 +5305,7 @@ translators: Block name. %s: The localized block name */ "Posting Activity" = "張貼活動"; /* A detailed message to users about growing the audience for their site through blogging reminders. */ -"Posting regularly can help build an audience. Reminders help keep you on track." = "Posting regularly can help build an audience. Reminders help keep you on track."; +"Posting regularly can help build an audience. Reminders help keep you on track." = "定期發文有助於建立讀者群。 提醒功能可協助你按進度撰寫網誌。"; /* Informative tip shown to user in the Blogging Reminders Settings screen. */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "定期張貼文章有助於持續與讀者互動,並吸引更多訪客造訪網站。"; @@ -6151,7 +6151,7 @@ translators: Block name. %s: The localized block name */ "Select a layout" = "選取版面配置"; /* Register domain - Title for the Choose domain button of Suggested domains screen */ -"Select domain" = "Select domain"; +"Select domain" = "選取網域"; /* Accessibility hint for actions when displaying media items. */ "Select media." = "選取媒體。"; @@ -6269,7 +6269,7 @@ translators: Block name. %s: The localized block name */ "Set up Jetpack" = "設定 Jetpack"; /* Title for button that will open up the blogging reminders screen. */ -"Set up blogging reminders" = "Set up blogging reminders"; +"Set up blogging reminders" = "設定網誌提醒"; /* Description on the first screen of the Blogging Reminders Settings flow called from site settings. */ "Set up your blogging reminders on days you want to post." = "在你想張貼文章的日期設定網誌提醒。"; @@ -6345,7 +6345,7 @@ translators: Block name. %s: The localized block name */ "Sharing error" = "分享錯誤"; /* A hint to users that they've set up post sharing. */ -"Sharing is set up!" = "Sharing is set up!"; +"Sharing is set up!" = "已完成分享設定!"; /* Label for configuration switch to show/hide the header for the related posts section */ "Show Header" = "顯示頁首"; @@ -7043,7 +7043,7 @@ translators: Block name. %s: The localized block name */ "The media could not be added to the Media Library." = "無法將媒體新增到媒體庫。"; /* Error shown when a module can not be enabled */ -"The module couldn't be activated." = "The module couldn't be activated."; +"The module couldn't be activated." = "無法啟用此模組。"; /* Text above the selection of the number of posts to show per blog page */ "The number of posts to show per page." = "每頁顯示的文章篇數。"; @@ -8050,7 +8050,7 @@ translators: Block name. %s: The localized block name */ "View more" = "檢視更多"; /* Description for view count. Singular. */ -"View to your site so far" = "View to your site so far"; +"View to your site so far" = "你的網站目前為止的瀏覽次數"; /* Title of a Quick Start Tour */ "View your site" = "造訪你的網站"; @@ -8071,7 +8071,7 @@ translators: Block name. %s: The localized block name */ "Views" = "點閱數"; /* Description for view count. Singular. */ -"Views to your site so far" = "Views to your site so far"; +"Views to your site so far" = "你的網站目前為止的瀏覽次數"; /* Label for Visibility The visibility settings of the post. Should be the same as in core WP. @@ -8489,7 +8489,7 @@ translators: Block name. %s: The localized block name */ "When you make changes to your site you'll be able to see your activity history here." = "當你變更自己的網站內容時,即可在此查看你的活動記錄。"; /* A detailed message to users indicating that they've set up post sharing. */ -"When you publish your next post it will be automatically shared to your connected networks." = "When you publish your next post it will be automatically shared to your connected networks."; +"When you publish your next post it will be automatically shared to your connected networks." = "當你發表下一篇文章時,系統會將文章自動分享至連結的網路。"; /* Title displayed in popup when user has the option to load unsaved changes */ "Which version would you like to edit?" = "你想要編輯哪一個版本?"; @@ -8791,7 +8791,7 @@ translators: Block name. %s: The localized block name */ "You seem to have installed a mobile plugin from DudaMobile which is preventing the app to connect to your blog" = "你似乎安裝了 DudaMobile 的行動版外掛程式,導致應用程式無法連接至你的網誌"; /* A hint to users that they've set up blogging reminders. */ -"You set up blogging reminders" = "You set up blogging reminders"; +"You set up blogging reminders" = "你已設定網誌提醒"; /* Message displayed in ignore threat alert. %1$@ is a placeholder for the blog name. */ "You shouldn’t ignore a security issue unless you are absolutely sure it’s harmless. If you choose to ignore this threat, it will remain on your site \"%1$@\"." = "除非完全確定其安全無害,否則不應忽略安全性問題。 若你選擇忽略此威脅,該威脅會繼續存在於你的網站 「%1$@」。"; diff --git a/WordPress/WordPressShareExtension/ar.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ar.lproj/Localizable.strings index d667c83c38799e1faad9150ad460b9693db8b17a..91c77a896693873c786f2655b2d53e8415cbc3db 100644 GIT binary patch delta 1444 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 diff --git a/WordPress/WordPressShareExtension/bg.lproj/Localizable.strings b/WordPress/WordPressShareExtension/bg.lproj/Localizable.strings index c153a218f07410f2a4544000d99c2b8ea7fce015..e7a64ab9377f98f3e88ff5bdaf2f92df80e6469f 100644 GIT binary patch delta 1427 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 diff --git a/WordPress/WordPressShareExtension/da.lproj/Localizable.strings b/WordPress/WordPressShareExtension/da.lproj/Localizable.strings index 9b3c703503d86a8b185db42e2cafe1d5820a920a..c60d83bef649c5ff4f6fb882f67096016ebea95d 100644 GIT binary patch delta 1320 zcmbV~UuYaf9LHyOXaCHem`lrf%|Ekk(-3G0O+ng5tDI@lTzb94yWQMf(&XIS&fRUY zx3}G$yLc#`;G#T(`6YgO=E7`z?qcFna=v%rxl~%!7Bku0((>iumDT*wk>^MCwSs|* zrLuW)VtvDUqGDH_$tSP49;xNS2h(~TD~78ViQ-f}qEzk4%tCF=GQBcg5k?1>Q@B#~ zuOv)+Bdw(p%W>PoE@|!Q9y=0RN>p{jv`gdT<8)3wMR%pgB@|12Du+=_Y zO<_`VZG}`@ozx_LfoQ5pESyPU-S9i-!#xx2DQb@8SH%W>iC5^RxJe;5(yK1`11@Wh zp_BGJbeD<9xoN{BN^nHqK?C%2d4T>V4lz-B1sr%Kt=%PTn7T6W5VLA~*RCCksH$G_vN6L@i2t+LHkIyjk^a@TM~c@jkU5Ww zdd(vFutJ-BlU$=^p6~Ty`x$*z$i^1a*un*pQ{9H5mvqxN@?WJL zsQGYI>zJyvO+MkTMbq+Sj`=c&gHCi(I7WXKUhLm57Mf<1%z6-t(9+C0_DT9+HzGu9lJhmL2DTl@ICMV z-!860`*F?2Y`bPz*bT^@?4J35fNV5@1YQH%;1<{c-+>>%uS^fq&zxiCn03Zwn#@&( zGH)^4%ty@E>?~`u9@}K!WZz~#Wxrv6=MXo{jc}*Ar??qzo>RF7*W_+;?{lAV-*SIJ z86JY8@M$;&6EF?Sa1%D+yYLfuhmY`s{3w5xPxH-}`E6lPI3=7BRs~adMR-s6P}mjr zg!>{CdqqV&E>4J3VnMto-j_mBR5~HWr8TK3U6($VzLdU~ew2PeJ?J!g2C1lmUPm|3 qZFCpiLwo2?nU#;pXXR(*>+%Qk7xEvW2xxsQ(_TRx0DAS2NB;(}&!K<- literal 3228 zcmeHJOKclO7#{D#vDZMi?`P;VeS_<^kkZmnXqu*NN}2{g;y7u$9ec;#ZPq)>?%1gj zQjw5)ph7AaPDO$Pl|UR&C4`_C&ZtsVi311$xAYQ(gt)+of7VXoQnyf4I3Rq9H~Y`b z|2_V1T=X0};JbGHpdXA#vZ6-2VsS0;$fJ)f(ibmTx@`H1m8({-S-Yr_UH?NwH+o^3IB7pPO>3?mp(d>>mhtEtj>qLk)fTZfyFb z%(2G;j%%L7h)GRD#~D(mcsKSe#u+97CUbS9LNRmq8~VnuWV2&7i=d=aRW5Ha<^@R{ zuqx%2?N;zKbvd5)nfPki4#j~*e0Y(<1y;i);$rSMFsTsRP2wtP6e+f0LAZUzv3bc# zP3An4aEga*cgoPu!#W?6Qi;`IXOqzYyNqK?K=7zvwS&NBuq$f;#8qnAL_9-70S;_V zQ#fl;oPlq+->lj$=;Ra5{IH#pMO;A5EgH0M7^Dn+$!M(zqK3FUpeB`qfBK^iB~a>+ znp?8OI-F;|IqK5@DDu1{c31`5VMp^XQYBW!#5Do&6i`z0DQ*BAAqc{;*pUPA@Cuqt zicQ;iff)j|1qufi3Ebe#ZMv6LV4t41ImhB}E{7feBC;ginIfWl$nJLeKL* zfP&YsiGwnTpgOXViz)~s51uNB;w{-M?3^71=!U*wfYlt+-3r};jlwg5SK^8Ddch58HtdZY)C`TH*zvG#(*UIA-w?3LX$n5>x~s<=q{SEg0L-7d3&- zJ3O0hcyw~e4XDpU7ZtK|o|{b5Dg);CjAbt(X=;bZ}azB_L4WXa4vAn7IO)8M@vw6c%n0WZca>LjmG=i=i(KC$I&xRbCi0 zVOU0?Q$yd}p^pVp=0qPGAa02|hQ6{xxoEq+sg^?b3y4<9sk9B=A7CzranGkI7=pQm zzOBO{?L93pbRrzmlOBiJ4e~8o41LXAg3K>D(?l|tC#RZ^B3Z;#cDF5TKe1{3c|it+ zAh~|ea~jzujrbl57tT#nUh~6o7JOxeEcwHHSHz>S%~m| zAphqB`OkBhq7gJBrW`@s-EqZ$f9{vY4=;mr{pGqHjEfL-NgW3FVWjR98iM=71Y|RS z4I?MKPo^f0oTD&4PI#H$D{%8!+bM?E%)`mt_Eh_OQR|{KqJYL0HzD!?kGLI8KsAFZ ze>Hu_`(3x@IMn|~^Y;OA7Yrwom)fowaN7YJ^o#n2`67Wx3)KtD&0N5&$zA~VvYRF^JD?@3ps>(W=!H`4dAByW?G za1MQXBu-{5dZJ%9rxU4o|HvWJA+}rI!##Gp zc&y)2HQmg$x3`1hZ-h1eaZZt&V3uz>l0!%yQ1E~{Lo(e|OU|;3$su|`k+*tPV4Vy5Q?Y#BD1yoF zf}30bF0oHSiQNkC`KnupZCmy$iAmL_U~q4Fca&(liU;$qZkf)~Qe7mORC7)yrfJxv zAHx+lV1^8F#ZuyNK1Cs#Ea)4!V&AO5}gcI?BWpc^93s*=t0N-vJrs1l*}<367LmE$GB1 zCQVRyv`mSZ?gX(-V#2*(182$o&?YoMR6O|@bvv!w8qN`eT5WncIuN$#k=<}TybX%M zSe=1>L}Q2`oBEiiYsFcD;JmyA&ee2m9!?WFp6$hm7$cPp^^|t|EQo2TC@r-U?#nwa z-wU)d@S&(ceN782RYhoaY9SVizyqlZM&&lB7BJinwR!IEPf+*&%Vfj+Y$8we@ku&P z#+%Kg0mvSy1VAULgeOIjyTA+6`x363dZgZ@Gfbixx|)`}Z$py|XF@S)0v$sII@&rK zN7L}O5Qk$zC)|)C5z5C)1u>th#DdVfO=UEF{#wSM9P6M}=n%5Kj}Q+^d+OyRp|Lix zIyPn#D%Q*-T-DT6TZ89n()2BCE(1s^hUI9&@z0e@-gwMmLLG`y>zF4)5DWL#*9WA3v z=ob0`{e*sH!c0B0pE=A-F*Z|T&M?5d!z?qGnN_xrHCcx(vFF$e>^1g#_IIwDYv#6d zUEDtIAUDV*xguBMKH@&%zT)n1>%73%@lpPHzMJpo6Z|AU&zJZQ_^bSvzKE~U7xnG& zC48k*zGZ)-{{{aM|E&Kt|GQP4Ree>!f$P0Dvi278h^#TQ-AFAYykADB7#(xJmg zvbyElq=4$yW79Q8eOz=rAD4=@W0=H*OQ;!kg<9ZCX;2-?7EQw^xZ9!=a8f=DuL!m9 zJwKgVmKir(f@hqPi#^|QXYe?2Nn2anV5ezf-x%}Ys+f}XUUI;PkHt1c*V&!kZ;X+- z-&V5zE1nEQ9r{!zo9@nSwY*8o^9C}+CL?}6ki)&kBr}=VM*NX+i;iK>@`=Y3U?-1f z3n;$+e&4!2QzSz>s7GAC>^HA7SH_rO(V;Y%bfzj(6i|J(Iw`JnXl36~%O?6}V`QR$ zmh?KzVc7ACz zmnMeE+7{4i=;0e5YQ+!RW_b*6Zx1mo1NRku%b{Mb>I2RQjV=2sy|Gs@y{B?y_8Ha! zYOI2RIq?CwE7rujf|;_N#iBi(~m)`!^>1lEDyKELil^9n{RjtWbAK zt69UtU^FEx6f-&w+E6xoE!+w75iDg`+Ti6- zLyB#>%cZ2`<0;~LrIB$$_m%Av>W>mup|A?A(nh)6OxNY^awFUXXt7QFMpzfE2c%-i zYITkIU6tfmEb{lZz8Iaqlub+TL%Ue`S*horX2v$ctlFvMJBNo|5?FwP(N+d12^ZCM z(1dDWd)QHiDu8U_K{t9m84q$o=-Nt92puXXm@mbCDi+ zRIL}|+yL-QV1FzJ>BwWX`Am^mOxmS`8Q-9$;hK;PH3tthXSwDgONKJvwMd4Ga7Vd0 z?nCZ8cbnhI5Ac`x8^VwWwN$*N$q;I9)rGI2Wo?R<<$Xn$7vLhdoPskt1pUS7@ z%kr=CE%{DJ3Dt#?p;V|4dNuSxcrLsU`6hB*2`g)q-O4fLZRMhJGb%(Q(f3tBZBX0P zjcP{yLcOY9SO3;jtwGzY^=YqZ=d>TSpS0VtHL+)7dh9~%N?eXV7k?-IN&GB&CW-pd g9`pt}jy_Mwi3bxMi8m8pCoUu|C;nZcL0v8W51?({egFUf diff --git a/WordPress/WordPressShareExtension/en-AU.lproj/Localizable.strings b/WordPress/WordPressShareExtension/en-AU.lproj/Localizable.strings index 728b5170c4b8f406447713de620ff80c36fa6c86..76c3a38d4f8da0a2d1c833b5fafe784f537df848 100644 GIT binary patch delta 1184 zcmb7?PiPcZ9LL|xdo%N94P??J#>6do#_bv`tWnfj+X`v^)aaV5JF|b{nyk;v%kI?8 z%s4YK-TvE44~0VM@_G@{LcEA5h!m<94~mCUf+5&L{~US{dMTw?@RozK*+4@oZN0r8 z@AtmH-}n1@Pr9CTeQ|PnP<$InL&JDv^qrRDW35`-iId4w+s7xmQ>W9q(VN-Tw>y@N z=lb)LX9{PhrU&*PD4sh+&mWmN`i9A7OXZ^0uG345m>!)Ci0k+PaqOeH)cpC1<(KQr z@n|8<=A5u2Y1tR_OgdQ@vwh|T>oq@(W82Oo9co&3DUnF<@6iCiiOE=Q*z)Hr-#98 zGyajBk7adMVKc#`;Z+GOQ7g>%Z>Jlm`5!nc^oM?W83H|7Fv|AHnvQwourV ze#i6DZ^Yidd6)l6xmp7ld+&7>NBKATsiG)*lttyf@=$rK ytl@5a5RYRMFW^P|0RM#lQajW>bwE9)X4MPo`|4Nft%w?lMh-`4V9#TUasUm9C{5fni!lpsQ%`XqvgEvTsAOGMfrioO&dx_1|-760J8%?$JV zeSV+sJPkb!of_!(M|b!1_Vs_WXK%y4j|K*n#{IFT)xpqE{6I@0@=21YsdPtXINNz} zLvCbrY;*q57CK(g*tRbwieG&_xpP-a)m?+}9cT?N;C9|Eb@0n*cttK%(x}VGpl%-K zXW%S9A*|x-1K;r$xfu;dHI2Bm=R zOt0=t>5h|5GJ_S|Y_%kb(J7W!8vB`BnAFW8adekCU0q#yCBlD}Bm9N5a=ogSODwn7 zbeQedK(eY`CbUR(GnZgf*32?q7_W(_yJ_KYURfEl2%Vw2LB|bNFPc}{_et!Ji1>#{V99x3xzUhxzCJriM&{QO!HaE1ljnt*vVfjZEkUb4K?wO{Zk2WCxttp~eoWfq0_Z?eQ+0`zfT6+aa%m5j3Lq4DElNAFmIxzn~u zT#J-E9yLj4Sf-av&}qZXE32woqSZkM;o2jpq_NBN?BLw+bP up#Tb_C>lcJ=qQ>)SI{lAh!GCrC?3KFK8nA`=kNl)iy!-HOW?N~n*RlIb97Gt diff --git a/WordPress/WordPressShareExtension/en-CA.lproj/Localizable.strings b/WordPress/WordPressShareExtension/en-CA.lproj/Localizable.strings index 760873b8613f3b5bb13d0bec552456d2b2e64597..b9d625b80fb0cc97e0cbceabe1ab54ab04fd378b 100644 GIT binary patch delta 1174 zcma))U1%It7>3W8bLPyPO(YZJHfypa(=;xjLTn1sShW)K)27`f>+bAdH_1BPIoX}M znc2+DRu_NPON$_`$D2Yaq&HHqSAq7Xg%-R}DYPYCDcB1^C|-ylcvHmLoyEo|>fC&D zIN!YA_rA|;MYbXzpIn_5Ud7_f?A-jZr77dci)^i2F^kGTNzw)b!dTDgxUCzeRi2ob;9ui|sHp7a8+h+RcGh&) zP1jwX(XA4z1|6$O=G7fb_3X|tZIQj@r8U#5vTTy+hCjTh^i2kf)N55=nHl^YQRN#_ zoeL<|uO<8)3+bAnd%;fpJ`9KQbB5`u?JM4*!~FfwFfRzh{wjn1Dg*p?N_YZ4HKl2d z8Y?PF*PdF_%dG8JYiE#eJ5(3-b(Wj)#mlzS&=P(_Q5o%sJVJdWJzc9+8~hd>=Xa3I zuL#fbusq5yigX`y9NSq*RdmO9s?K#zrQc=!ZOd)7B4JI_%WiJkFjUWf$pq2z z`zSoL8lXM(TzyCgT3NwF#` zd3nugsCrp9{Uje7?Skb|8inJ&oe^KrrxoQ1LirEm?Z5p7tuGJs?nd2T0dZgh9T>m_ z7AUK+oxq=436}Y1(*KUNcQ?^LG5#n`!oNV=v(r|W-ws3_HizY-d{9>ZFP9;{jRv0F zMc{Gr{HDC0H%Vq-=j8tgw9y1I_z-M@E8s5p4mbX|vn-HZgN; z&vputSSz0Qvg%6gfdZg@Q(gpIa=x@M1}SC8_G3LFfgkgMJ`)(;=aU{vyrn$|h|Mdjv&w z^E};v7wKDEGaU}R-rJTaVTYiKRd$f;SxyC&h(p5R@XUy&ArBYbymFAfFSZ8<(V}h; zHAdd>=!YOItE#_Lr*V<2{n$f43LF_sB;(QanC>p=uA52_gA}|>^&pDjC6ZT~#)(%b z>1GkRx<_392AyCL6#{#Ys%ph1+0&*=9Ixgvqxw#85$k3)PL{0YhVz`<(V?Eih4Xo3 zZ_Gk?8S4gKFi2gIu8Y0>bJalABgAnmXJ*t-UG!t+6=k}-VCZfM*}i3Dna|VrxC33y z3G9n&4qo&gEiw^J_t3QEdh`piFOV9=W`P*=XD-zASj6AfL^k9QJ0>p#juuXffJOM}HIcUK*;X2%e*WoAd9{dje z1b-7`p;ZV8Lqb}(D10q^8^{GN1h&Lh@mX9{m0+0u%%CT&We tOW(_!+$s;t5!sekKTaShuVVvD2i@TI1C(iNUpv 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 delta 1558 zcmY+EUu+ab9LM+e&;8lmTeeWB4J{0%XsM-wfFU$7Ddh^qay{C;yB;S!r?+$0k-eQ| zcdu{=R9}b*iJ=|i6PWNI2LD9G5Ml^#Jg6ZiL`~Ev2`}&<1*66g!-KPTR}A+u+1b7C z@ALi6cXt6SfU{#QiQzqaNA|rkx<5IVIxs%bYRtn`TMt_mn>a^Y&#z9;9yxlfcKnSK zC({P@EmY7~ZULqXOFnRj=Yy(a5ojWlo{~1qf80&4i<4?T?U>L_Q|eT!c~ zzYiVldS+qZom3PWreMt*Sy+hyQkA9-v5-4_CL z1%26;r>PC2=AitD?IG8%7I>ceMO3(hQ3oO$U7`)T(61 z5j2@>LGPjaL!ImTzy`~#+wczUM<#|~%<(a?y=;?%UgbNVooZ+UuL1pPoR?T31^px0rU}_xsRo4bAiJ&w_U?{sAm0;EK3;I+3n#>1B zS*sc|GL3^MaR#@@`COH=I6{}HYiX~RrX%4zeV~5U%FcYS=vSeIk3$zA+k!S#-d-i{5>9qM|apl_mo$ldf;B_`)4aJh<+?IT)Nl5M$!kB?N554{qX;_h%| z4s$jK>5cF(?Tc;RklT&CB6NM|W)c=EW0y@$lFBrzw27>xso$w>G#}ZNWXHLM?fEV= zA@Hix*o20G9l~1JDBKfJ7QqN(u$iz$m=v(9XqFt>MO^pEGxSz`&H7A+ShI+YZD)O( zfwiD%n0Ua%owiWc& zJyqzM&^E~uZ}7&vEGL#v1vRTP)NK^>?Q|;AOZBLtvf2ifgN&w&1=ltF?2vk_}h&Q?PUwS>Zj=rg`qzjRD`d6eUnjLg3 z%tYx0^@W}ljRXJ$7F?Q=ZQ#546mgkgiG2(R?Fe_z<%ghK4r~Qqn1qEZ*oH0_<<4;P z+$HWN_h)EdC=Ycz+dFA@jviC^S1?F=n?vaZNh+%5OP9II3t`D&IuQV z%fe0JmT*^8#CEYu+%6_XQ?$kR#Pi}+@mq0G{8!?oP11lgB)v8#5$S|pqT$_vb&wq0P`zinc diff --git a/WordPress/WordPressShareExtension/fr.lproj/Localizable.strings b/WordPress/WordPressShareExtension/fr.lproj/Localizable.strings index b552f63fbf9042954818fbe7fa2fa52f6e8b7919..20635ac0e6647d00350fb54526f731a9d257fe74 100644 GIT binary patch delta 1493 zcmZXTU2GIp6vyxE%|0wzWii7#p}4Z%br3E~S%h(UeuBO%c{yG?vB^K$Rp zbIL?!3G{vzkzC7I;{Fz|hq>VqhC`z6}h#je)Nb zJQZL}Si3Wwu2yhfmRHqKD_RkI@}xb`3&_ixy)1B_mjaog zO2w#xDQtx+ya?xgy-@RQhPVBpPE4sqXHxSTWx}Wvuyi#Z`Gr z?gb^f4#=9_k*0|-wd624BSXvvI2+#dgC@DFiPo>!1+8FfIO6 zLn3+wEu-^j1>HbDpu3#Jt><=g&vGS>ay9N%4!AeDW$q*Hn(rB(>9c(`-|N1!zK?z1 z`tI=|zJu@LALF0k_wk4LG+*Uw{QLZe{AK=o{=N_v+J$c6NnuzR6;i^yuqf1ocZEyB zXZ}`y(%8{&`RAED0B zsjwZs9ljSyMs`LHMovdoBELolqo<=6qnD%KL~q4LVuxa1##Z8D{Hgdm@eA?qq_tA7 lbXb~|PD-yy@5z37m;AKyxRO?g@`3VO!c1I42tH}q^e+z<)zAO{ delta 1456 zcmY*YYitx%7@eKRb|15|GrL=`p~c$@*g{(*f~gXNwbZ207VPeJTb8oic5b&rXJ@AK zC@d5j{t+96`UPVm648W!?-&uI(ZoL_8WKV6j z!$;P}%fsQ{-KvUQTy)?j*CJ#F$srfsO6}qDtN(vXTX5@!R$(*fQ#}NQIO@` z-ngzgQ^=x6V z;fX*hnj0cmrLYCL6$S!L&FyHdu2y6?V*^ChFxq9gnrS$>8V|V4Hm%!N#YRq*^xo>0 z(xw+rfv6LHXfnQ_+;%dFJ>4zH z59q6L-qTN0RqZic9fTi0o4|L{HZT&!z-E|9G{DKo3iu%SBs?qs4a<=ZxRJO6jnPJ! z3*Uol(MO;o-T~Vr9Ll9VZ5A6YT#H%t2bixJm(iFR#$yOwx%BS9?+Svxx-rg_yK2z6 zRK8oaiQ^EIBjdTgqG8&^hOJ72m>)DtNcE7e5d#Ey3$5ya_PVB*W9wmAO44l#7NV^X zs%vgLzzi{W{1)`WOqs3@Gl*t1?OB$sm57aKWGX-xl)fNU>zW?mcmv!L3A`btk{Z)P z3tb9QWK71U%n6(jJ7|+e%CsJkq`+)666h4ufL)8G#&rU@9niI7epQlB^XavV9 zN7xUG|8q5m^D9REk!v#^u}8YA4Us8tgqzX^*cA@KQhXy^2yGDay@pMSnnP!4!^!x{ zz=jIzuHe)2V?8usMN%S$OF?N^U5$RkgqQ_pk-5lRW&Q~42n+|V2X3=@c9xxI&#~v( z&)IL;@7W(XmTTqOxy{^Gu9q9-%G?5XiaW!d=RV@Da@V=re3WnCTlg*fAg}TU{|f&) zf0_S=|CPTlutJBhRp=4s_Y0;lC!7)97Csa%2}{Dy!d>C7U?f-{Yz(#paqvprrqKFO zF8oY*ZzLUYBX33ds2J^y&P5kRNjxsTD4rJI7e5o1WBsv%u~%d7#lDgvk|MQ9FG+7o zm!zNKO>sSbJbqth<(={i@;xQ2tX5uAzErLxVu_Yi;<3a+;&kF{;@@O@vMV`|JfHj+ IK24$j0HfX8uK)l5 diff --git a/WordPress/WordPressShareExtension/he.lproj/Localizable.strings b/WordPress/WordPressShareExtension/he.lproj/Localizable.strings index e5ee3c5ea36e7662dc60711adec1ec630dfcc897..69e8062ded68af441293f2a596ef51b7a73e8e62 100644 GIT binary patch delta 1484 zcmZXSUu+ar6vpS@-OkR=>`Z}DN*8;9wu03v5h5U{O@RO@rF6HnSY;V^hV8V|nPq26 zSwZ&22V)arb1>1wnA8Ui35g*j5>0r}n3yyqw9wiLrGOz)N}|zd)Pxw%%x>_(?8BaW z@44Uio!_0swTo-t^EdSm*!G~~=8ok(f9QDI@QK2kCr`a~I;|~D>c>rLv;ZD;Z$~)9|L$g%7dBX2XS-x#{cbd9^=4nmc zPzo}Xvr*YJ;1r?o6FUq7UtgK(z>K|JIYakLnP8Hwdgahg!}4ixWHU)dXO1%#<1kr< zGC9U&JjSPuX>Da!S&)_to~8}9L62It=|L}7i@~cg_);OD0PVu^&8bu&XQnl+OoQh1 ztQp`*1;`EsKxn%@X!f*XmaLmEq&l!6t*r@E;1RDzx>|BMy8w=`4zBPboa36H$gP2o zNOZNC&%628lYM#~!O)%IYM*IXI^Cc1E!XizM^{v(QhL_wX)z4yV{x$b5-`bEtvp33AOh3~X=zErLdiX#GOV>t!>uEWdG;K5EA4=s5 zRL|-bg8y&O@^^ql{>N-XNGz?b!zt?mBYgD4=))-Vumw1&y%;sfJ+eUVl3OqqInZd4 zDXbS5O74>%$OAG>7A$g;EMhT97IAw5>jk(QtA+t7qh`r0p8QB|GtI#d_Qh?M!WsEl zI3KIrp20h_WG+kQOGT-vpUjZ&(Q*pa=Fof^4QDgxJ4q%?^qLMF$Rb>duVx)sEhl(a zdjkKfVM1*HNBjdOr0y_wcoT{hHBc!nhlC<-3{zMbXaQwzpg~#Q4o8^}2PjoO{aEo(e%-Q5tZVG7?aw-8gO|o@|4^q8iM} zHLyXg#l2-^1eNPe1au9R5!3*x1r+XuZ}WINgN8HYJ{*>xfir5&ihc|qWI?PLH8{IY z=3K3=ELjD0>N3z{weWjnw{QQNE6^=U?Er@w@o_e2OpdMgBAXJpVO+gMTDQ!U~~Lcu8m#+JvOg zCkzWk;S=Et;WDWr3DQWmkR&OdCS#FAq&spXav}07Ur9SS~gk`!x1>?3>tR?1tPVZ delta 1498 zcmY+CTWl0n9L9HN=IpjJyE~`cOK)Q-w1HYfxX9(fRHy;6wAk*pthKDuozv~K+nHr& z+ER+_qYsUS=5Kf~NP-#+>Vud7QA2z(CWM%lE>h}J!4P^8H4>W`Lx}&`T_j{4CUegJ zeBbZ;&MdB5TzAUe7Vhg$3>aqeXv(q&V?)EoMvjl3c>82Hq}vG=r7JfpT1xG)m85Ce z%3v~Ksv6VaBw0WHc@10@4*NR8Nlmqx64Z@;I7dby&8>tf_i*)^wq7;Glo4|hC;X&I;6(g_-{4i7pitRmZq_*E!-OH z*sEIux@EPuu>_0R5ywqwRtFHV03JEN>d6 z)nOy|X`A_$;2|$Uk}uxa<<#KNu~f=T9o~ao#j%VirH2N)6S~!_Br&m*6V7sFmCM^y zMvNukPp-V=nMk25yqa>@?p`5vv@%sg*(j}pgYJqK z>Xr2gEf>S;I>lcfdj5^6&sG^wG}H5{bv3X@v+t@ttb=&AO@1A^JuT1|co)jWQYfPriAhVyES!+aNP`O>_@QVCz7t2^t%qPJm|0Z0k%?0{cTnn50 zrE(nYr!g(sBSr>>(Y#+QgO{b9t8`2@k2^D{dLQ5S$h1i}KIMa9-wJpl?u6Cydg%7{ zL9nO_j>?hR0WyK(3%R4Y67l#fnR4Vc+?Yq5J0>m5p`8`0;I6-PSsW*F4LO(MYA|Uf zZr8)8ZyC*C0onY~90CLaja&L~@h6nZpmz2toQ9^(P0aV9mJt*6y<&hyBd_MR@ByTyL-N2ylYB{fPxDJmV8u1Yh~J?S5x2cz}#TIXZ~OjJI*H9XW19nGi;7k*$&%fud$!7H`$-qzd4yZ z$R)XHF3n}Q0$1lYxi0r1_XYPQKg`GZB!7Z0@ZBr?ju01)3nzq%&=B4cJ`!#TKL~#b z|A?|UDjpT5#I#rye-!UYvNSFomD19xbXj^&`dIo(`bPQ%4WSr1hGtO>wa^=A3tdN_ np&RHnx{L0~`{i+YQ{I+8m2b&^Mq;4%FtERZR=Cou0|Wm8Sh$pc literal 3228 zcmeHJPiz!b7=ODnvz?t4nF6K!=TV>_E(<6qP*6%K3YP7W0yKNU)FcS2l-K4X#^S$qV z-|zSPes9X2V+VZq?r-%Yk*Fjqu`V^PB_3Mx@KU{d+42=VD|=V1UbA-H`VAZLroPQv zw)St^{>Y9;lRHzpcJF!Y@xA+=cyj-Ng9C>SKlSvH!J|XRhL1nXqv?mNwhQ2J*Cl@E}!Tbxd3nI<5gE4WHs!fFo>za4a%%03IGe zkx7xX4JX)iRSr-L*Z4Sq%4e}feNoTYplM=Gs)3tkF(h$N4iPkiY~-RU!pMWWDx$bQpNGu(476_On}%4!G2LxYEyyU`6L2M-*w3dx zDwKIo)d&rOwsM8+Na>gz2;z!4>d*=w7fj0JJj*<#UZ&@0qV}{sHh-+An zq4#wtrny#3ivT(}E7%e(P~T_%*bs=h3Y;0b-VziRY7$`Fi9ACA;<(??mxmMBYO@tS zK5W9UWS~+*-`b&$MNsBRFAfp6LLEcz?GP@?ZZE3E(7g=tPgZ77*%VFG0Sqg$+ zuAy)5ut|GOiwKWN`HZn zVL?b?(DR(xd=o}|mxYV_W+`v@;W!Jt@`9GqF*-#W4uE$XOD%9tkHCO53oAC|R!oz? zVKe_b@_)dQ|JsNxuv-UBBZ^E!BV7nw@3xZ$WOOf6E`lku8T-LGa&gowlL{n!5Z>Ev zyG-v!8N^TxH6jGglxf7FX>q9N0MU{%95n1A{|n&JLd&iN!~o#}eboCsSH_A~QKP9m&pg9gNO)&*kRz zg}gx)pF3J8nlCIZTczVCY^QwQ&4u@+^cA8SuDvTHHT{W?hNfeVZkTqVx3`yGQjT$*^gQYu&J37d$@ILL ze%;O!tFb?qB!0!URo|)i(?-b!KdqU*MKVdE8?1jW+;p@tOQmeFy2PNb3M#!Itx^P| z&02zunN61s-ET}p?{Y25)SzMdYOqCb;CA|t(oP>poiw4e(FA(pB~7cANiH1Ta;BE` z0tu{Yf&Hn#mpZDK$Yeh&T5#N|mSBQhxQmV}tskI}nC>f=ttz$A5qb;C^cDFT`Z}-D zj|Kb`ab3rqO%-*Q8B_=Bt2i-CT^%d?rek|+Yx`R?O)q$peTJd>>|>&lC%p?>TIU+! zs9vK$W`Hc}70ajdp@Z$YaPtuH^TnXBXZplr`A#(S^i6RxI*}q4$@^29TUGUfZnEgM z9d5y-eYg$g!bcd92)!d`?It=`8|(Ar+?ySccRU5 z+m7K8=s2-~51qmIf0JxouG1RVGM zci!ExRck;7Z-aI4DYyfE06&92xF)WRJH?&jmN=KIaqn`J`-ofTzTochXL+0V_!|Eq ze}(^w|Cav?Vi7E(gtval|8h{wb;VoAIrel30{Zc13{kxok^(zH~PeCaLes@yL3$#Ho> zUXwqQzmb2HH}PJ42tSR-@G8EHDZY+x;~(*T{7?xihn17ch+->mDDNo0DGx(?L#IOX I^yVJ*Uo3ryg8%>k literal 3297 zcmeHITZ|J`7(VUHblZ-~aNFg!aJVcWmU0mkSW$M%BA4A|>6K-H;k0wMGu!E$aprWP ztBDW##)Fp!eL)jnNW_>J6XJvM%_qVOi6I&d#>Ai|?29ob`e6Lew7XlRpb+AVwrQu+ zIhX&t{NE|Mw&nA!Tff!zg~F1oL^`6excbPWkImEOFIc!}ac9?(rOTGD=w7)BuU@lu zUC;Ur8z0~FL}GJt%hqk%pWLzYsi$}C-qZWc-e;fN*VmugKXBmrgNF{QM+S$6wfRR! z79H#CN@udmbKNWRh2x_q){UJ!by`0|iX~$U9WR^KM8)2&8Ar+#GiQ&ktqq3s*hXUz3~4tiS1=iK z{RH+|m2%T^%J?jGI6mt!@zb z;w3XVmU9ilDIT<(imsi5c^)RE605<=2BSW97{{i7;8L$@`M$+qRn`QEtJJWFxQBv# z>|2~Ban__b1HW*eQMDY<$s?S3K{+LpIDnd))NftTPwLu&ky;T%4REF1Pdy&EXf!+Hxv?~@GH_1ATV1(kPl#q{rK+Elz)OJg1Di0L z!$$`UXqFMERM&di)GLt$A6$}?oNKh9gLf55N- z4`<82lG<=8-EUM6!Qs?CqAP)X9NN%s+AoRVT?yJjG{GeJ)t+ex6h-IJ8|Zy>75yAK z9Lk5Tg>Ht&!js{b!|#PJhCdB|5&kNCLkde9rG&IY>XinhQK>GSmtL1HNEfA#rK{34 z>87m8OXW54PI*{1WJi8Wen1Z^%DY`eBj#i?tMK4FML~lg@h-tCD*jTI> zI~%(YyA=B@c0G10zC50a568{;i}82kAH=W6zmNZ>cB(zpp{*j- diff --git a/WordPress/WordPressShareExtension/id.lproj/Localizable.strings b/WordPress/WordPressShareExtension/id.lproj/Localizable.strings index c780ac745dda6e9dd2a24a7d2d31121ed9ef6d55..83b9b26fb024a13d17aa296cfcd27b99c6c3cab0 100644 GIT binary patch delta 1460 zcmZXSU2GIp7>4I>=eMTQLJPD74y6F%Mkv%~zf ztRS0kVPXu#?eRuqB*jESV&a8S6BA?bP9>>C6BA7&@q)yVXktvffy6VrD_(dvXU=!t z@BN_ z7enAxf)G^PW7(-_-oZhses{2Mb{dr{v?7h&B_lJPo*i`qXl72JOJT;up@Xv12->u{ zrMDky8i_oIDkGa*NdWSIT_FNL&|ywdkFy!ihGEkaxyN>$$Pe2%1o4%_7z|{V8O*p$ zkpYayRG5GX!Jwu0WLkot*Buckh{E0Zgcxcjq4}x zB$OS<_bdK+qXc~l1`Ib&j%`~6Y|ID47F_426!o2BM0W3mH z!T&dCD+iRw|Ck+W5VQ0>bjs~+*3M^3w$jgl&H^lToftJm~5IXdm z))vmjM+bu?6sKh-4c!Y-m>G-g$jK(*0t7ZDV@eOz+q2r%Pu4Y=+>|bod-7g29|whE zf$plbabNd1a{sjqO3;DjMgxk^h-hnS{z*9*Qn#}^SKGFbt6Ce;5+V?^mpjV7UTGFEKeS5&(JJ&Qc6Yokc!bTMRAxijZ$(` zgu63S*ukZIsxl9OLmyFiPht?ShZ;C$={sU_A1N}Ww!1ZK2T6$s$wtYmF*5Tyv&P(J z)|sD~`^-bOo$XGr};_VWl?!eSyet)zEXZveplPo0rjYQN<}JGSJZ3jE%g)iSM_i8 Vu~yJ*&DE}H?`z*_k4gC{@DB*g(uDv3 delta 1480 zcmY*YTWs4@08M=D#E-JNUE4jtl53lg4S1c5S$+Zg zpj*X+CZsZ{;Ua$MK+~j28+;%Tnh-*h_=F)C4+;2yzaqf^@%WmU#C4nr_GS6nK5w6k zor|rFtAj_L8akR79vK}QpLlvQ*;38HZr58nakBE<^G__FI-SypYv7#Px)16$T5zFN zc3kLLMj7c?r>BM8)weq7M|`GXCS~c!#c+g}i}ZqUioU>YreB3m#J47k$i}cz_H5|5 zWxE24*v7rRy_v(h4qa4m==UHlXk+-KOWy{)vZk>!Z2}c=^_R}-tJXVHi2@wP34IGf>)OgCQ z-MZxFw&h)da3M`DAs!n)$gE&QKF~`17`UV%-19uyG z&4x2OigkkExaE?v>7?sA=v8jVeRBaebOO=Gf?Fn^#hO!h)Ptc_&_@3OQsbcSDRtPg zjEcte(bIfqVr~+qLt zhF`Sjuj`d4q{pJ$_ofoqBo335Bo48B!a!2Cznn+VKm~HF&qJ*Ey3#XBr(B;te(4XN% zcq)7&yur4JVOdxgt_bf4?+f1wKM6O5zaw&_ zHPRl5NBSdH2#K=Nlv`Zs3@vwVSvS3Oz8YHc<`x z&NV-cqHk4Ap*38XrqgS-)7IwbhDzvwKZV?fK_NTUY?^IiaRtw4W!OCJ;S!#ix&qYnucm_VM^Ckj~2OJ#^ff9M9aOHRJS)E zKZC2NWqOs6N;>>La)XzLDxv-a_EzfteAn=>OQX;A+Q=J1p+A?wCSLK1n$uQM4H*{s zLWz*e@*oZ3Ahj^+Pob=yCijF_qr2UJ>`R8@A)i0lke`xukO3z66YP+AdBlevtbvpC z3kEx2+IY0fVZwspcJnieCkYmL@e(^J^dVbX zF}K*0ti`%)hkcK|!hXvB!2SVcI10z$QTRMez*(rlHtfJH_%Zwv-huZyg&X8z+zD=) zOL7^m&TViV?gQ>R_c-?rLEIcb56UxGQ;ca0{_*S?h{4G8q9uX(R zgqRhV#G2R^FG-I{N2DpKEVt oOo=Otilv-a-d8?SzEOTv{t6@ml|Vc2Vc=`feOLwn@?zh>zXH~gN&o-= delta 1432 zcmb7?U1%It7>3Wz%$c2^joCIN+BC7pCY2~QA<&{R^ddqHDMEu31rfZ77g~(kB8n}ZNw(Gahwff1 zdk*t`&->1Et@&E>a>CG`93F{{jy*LVH<}X3RC@13>*Un*OeT8*&*n^$FBGklT_tN}u6jjQ$i%nv(MRUvdFBp&JP>`eEWCZf3DXQTVr zZROqzngWd&IYrr9Vy9*p{KgpLE6#t@&hAkj?2aeKhf_x_f6ns#WSrO}M<;@9D2C@a z>#iX}b4AN3Am5_I=L^{J5bDWB>$`X28%DKErk-$o;?XVK34=r70=Ar~aWd!5*Ft3V zW@z-|T#2308pUjMe*noGQGa+Qh!kuhp67b$0iL_SgJq-9vC6D%`9)N|Q_X9_-uoNk zn9r;gS-Y4RG%bq8c&%(n>DjVHu-5b z+QCLbt!z!xn`TCcX<;;4rk3mYsTu@Z6HzF_FQJ1(2D0E>Tb1X1Q}9CNgh{hnvL#=RKuJc=5}mPPHy*@j&}Pw1{4tX+FRPV`$I#sAre-CIWF!O-2+m@P?dy?>G-k+gh@|K5fIIL3(y ze-~SwS`5n#OA0s#&Vx6>74SpocqkdV8rl%1gn3~}SP?D>?+c#_p9^1#g4iKGA|4WZ z#X)gGtcvHvW$~hTNqk4VB3>0YBwgAg?UxQqG0Bu1=|$;PX;u1Ix-R_!1$Yql!U1>! zy6_oz5nhIG!}s84@N4)jydi5#a--ZLx5>S7Mt)xYLjE~S!!LwyD~FYoGOH{o%gTy! zS@}e{q1;jhwO;K|kExUDg8GX3uDYhKt3PQ_tJ9Fyqm61OwF}xC+6UUYc2ke&kLqbX iqo3B#>M!Z5`bYY@elsFPvbFR>Y4r|v>V5V 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 diff --git a/WordPress/WordPressShareExtension/ja.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ja.lproj/Localizable.strings index 665110bb1d265e3b94d131d90161b8b288bbdbad..876ec1b833a0f7a867b9c81370cde511fce90cef 100644 GIT binary patch delta 1466 zcmZXSUu+ab9LM+n-tHEMo1LAR z@9*>b%uIQwyrbPRyQS^Pt?eD#I=g(`J-zjJ~Jp zq^CNQnr>L}=H_PfH3Mi>u0cDQn)d!y!yYnh`{~V^6@_ML#STAoGHFY3lEq>{9~^f2 zf`((lem~T7TwImQSCv3ADHA6{9qnZm^eed=F?8LcU=L;t_oZ~rDKVidWaSf~ExO?- z?vzOc2#wf97=%T{357@zNx~)^r9qXe`{o0cQh|q+dQ(?oh6!yHrj}vwDhyu1xE7F) zS@LKwm`y=dmgj9KDJ>3NJwaDl$Q7dav>`aK8MDNb>1?nEFHq$bZVH;C%elTysg#*T z7So6>(H?Y~T8VPh3iJjm)WUQ+nSLfPsHL$OWlM3?1$9GHx>JskwCu65rIo>;7PkjB z>AK?JkL{(CKv(F>>K!Giid_omZ-p@}V>+s=pd4F;rdeT`Dlck-PIS=Cw+#o{_<**T zwvGKYuxWb$nlS2wg6XWH#We$qzt`yeJ-|l(=WJEcm?}5oE|Wihw@3eil`?{LPy=47airws$<{}@HcoL6#O0I z`rScvV=qKkJ!==l4x9nGgJ(g`*Q7L{khC5pgq5wa!#iFX%(j382!Xr-&VZkB#%EyG z*F-eC4=k1+j;sUuNTL=D>)>;65?lnc(2W~i4PFF!G%nPmn_?X@%c{^R{tyy{hZaZN zjdv+xx8W4p&(~C!@~nNojbDhDI&*s}BK;{nQel7qeiHEIJwJj%FZ3V7sI^jk|GW!u z1I&R>K>?G@yNDKft{d*3JF~7HY{?D217HOg_`4u@2V4LjVoh_=(puCZu3;miMy3(- zuM;C~n?o)Z8s(Ru_dNHbkY^3biPC}?_z8Ro-U25MG=-0%dak}Qf-6r!_XP?E|MgEq zTq#U<8De26%5D zI>o6NZ#Z%sO$${OM)49@MQw>vlbG*;qV@@CBkJIq(0zO+M|g-lF-e>zriq)x55z24 zPF9l}$PV&3GEL^lS4l)3At%WX$g9*=%A#y4N4-WJr#_*sQMYJ;UQXB1Yw7iL8{JI@ z=`5Y2-=^QC&(k;PIYwlbG7Ze*%x0#O2{41qZYIZ^U_NHfv6ZZsZD1c`18i=Do#edS z8m@&)aKqe7+*$4`?l#ZzfZxFP@L~R0-rybn2!G9EcnY4wo|B&Qo=cva!a|`|XcJT+ zCS-*XAuo&zZwfQQb#bv+C9W2?i7$wG@pbW>_=R{`oDpwHgd|BFQdF{}%hHVWyEIp} Nsw`D@49N?X{{Z6Q^A!L9 delta 1534 zcmY+CeQXnD9LL*xX?rh|G8h|S!`regMc8~mreq^QUWPEYZfm=BwZeJVKJ6~OT}$se zR$f+(8exsH^~r|FOF+%yM07C{OpuuP2cTJ^1Qf;h7{Lg}DEwh`CO+4eOmctRJ@@?X z_xpT5&rMfOSB`c%TQ@(pWoz5x?H%sUu5OQa;h0#lN*&PRi5*GZNXdgchtj)t@7X)t z<5LV3iq5i?LO3Z!3?UKM4I!0K<5C!g(J);%cCr?oqx$$@Pa-TCP-s`Q7&<}kMj4_E zUAFG5sqpqoNhqY_sidGA@nl-)he_Dj*x0u|92N{Is-tUU4efKoAp^ZdHnKh+e&_3w zqHyeH?by`)Ys`^xt=Ze-Y4>kZ^Z`ZJd%aMFAtPW;6Wr1OMx4JH8liqgiwe48KphW2 zZB`*8I_Istm)hq`Ctz@^ro*I>#|`)}loXW|E$D#*@xej}(OKS8%qbK)tibn(qC(#W zDHIc(rS7;O4N8hC$to-i6`eIbT7GH73zpC=l0^xUd0?BV!K8!9WIWlo5xa_F8KTqK zm6BCO?-vp{v6&McBbF>(;FT~((Rpzr&>B_@p$qFk8Pa9%-6&}xsG{GA%K39min8$0 zRHBEi3pu|BN@3hqbh=Q7wW@lBP^X6TG4yR6Fsw*IXTnh8n(i-hpff~O{q{m{K`%f* zSy*CxtW|VY6~&-2auJ#(nR%^drk?eQgqrqYJ~T|#c5L@RBbC$yY{L9$d}bj3CK!=Y zsv$b>$ya24q8rjGkKx=IeB8?MEBH&kW8@vN@kvni2 z9p-mdY2X@|1@D7gw>q8$eh>khz%U3{8qEt`v5zlRfEQme_`;D~}Gz$L^wN zz7kJ|3Qp&VbKWn+gL4!@J)-T)kzubZ3*|Fiz57)zw5}V*P`6{zTqaN3L>S{V)yQ%S z$ZDQtDHn)>4v;N2ZwDK|2o4tn2pwgb(98KHy8N}H!K=6>&-1oGtAd%dw-cYj}F;uv5#^Nf>YopEc+}zhH9p6f#Uwz z%>gZ688c;Dn$gF$wHzEd1u~{w%vk=kwpn|vm#o)`ATdZ}h!eylahAA3d_{am z5~Pbe@Wkl=9E=`}i068U8B&4S%D=Qc{AP_X+<2o0b%p diff --git a/WordPress/WordPressShareExtension/ko.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ko.lproj/Localizable.strings index 44630bc24aff8b368284e497ffe160f7849cf998..731ab47ea2e3dc8230b52fd5472624038dd2efa5 100644 GIT binary patch delta 1411 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 diff --git a/WordPress/WordPressShareExtension/nb.lproj/Localizable.strings b/WordPress/WordPressShareExtension/nb.lproj/Localizable.strings index 36cbf182677cb14010006a0850b39a4f8f8110e6..f236a311816a292f5db88fdad4efe0e8661473f2 100644 GIT binary patch delta 1503 zcmZXTTWl0n7{|}tb~>{QT`sk_wDh!=+6WR$Vgw^%p;QV>TX$w}EOdL?Ih~#EbY_^D zwk#6%)dV#*hs2nuNqG?x6Cd#MqKUo&NrU>N27ORpNH7``iQ&O-c9v-3KAkiBo$vDd z|Gx*l4|?C4IxQU=fBE>tiIdq=lT*{L%9lDT<k`9q%zgXzv76#ELN(pX&WXJf#W5>bvV!2uQR2)~JC2yi z(Qw&!aOk#*>67$)nAfe)ro|j31{ANRJ4fP1mOUFXQ-fWUF#DBTWuh>+MW2QqD|yc# zVcZkD!*#t>K4w@Uj{dTdh6q|g7IKh@F!GR#0uG}9sm?I9e+d>Ds&hKGOet^9zDgD&$Z8{&8b-#g$Nh|>W@1SiT0FnPO8)*@%riWq5zNiq0-os`S3M+99 z_THuur4;j`KG-Ky8DFHJw@sZoozZ9*V#|rI>?g%n%UKeH)Q`Ngm>LHOdRTv|yIHr1 zVH77!$MvaS8C{w48*x-My*+ji^>Jv~Q8JsFW`2@FngSRpr1k>JA_}5M;{O5$A9)mo zU9aUEA2>bUDhzJ-Jg`Hn-d;F>8{D+ZY8`i3PCeW?Gu3_(4**{49_-A4OeWNC*9Oj6 zVnUyfK19R(of^mhy)kNI*bQ8>g3$FXifi$#yHfp;!$$tgylt+0D_J=k0dvTTQ#u*D z%hEN=po}Eelu5YkeW&6RrW`it1WWq5iY^G(KixiGF3<<_DsDCyV02{50@R~RVf!D=N z1Kpj+sRPo)fsw=FSoTI@J);*WsERwpA@N1=sF)Qs zu_msHP4TMusrZG|CG|){(m_d+nwO;YL{H*WqL8?lcrEd^+#zq3Ps$~ERc^|c<*V{F z`6Kyr`D^)p$A+?5=~ebCV@gT6pj=TtQEn-Bm7kUS%3sPuby$5`)zpd_sIRLZt6!=& r)qCon$&Tdah2Y12*xd6E@<8M^ delta 1524 zcmZvb-D?zA7{+(!V>k09<(#8I zAAz)CRq%QCC|;sk@tycW$E(>{=ps53|^8@2(gLBoVoCJLLXa!1Z;9DO@<2|uKH?9kk{@xX?F4!N%F7WWdb zbYg}o%cIpP)9_}2Llg%(@i}T!drKA)j>z-qM`=(qd@xGvz)N&@GQSsE)5ye+sMOjQ zMIy7vXi|7be7#V}AgGbDs@#na#oM;@fG$&O$neGwAYsau@zk+xR;v2l!lODblgCrZ}P@acq$ ze`wm>Q`oOtwu@XPk4(Lk4%%3-MqF&(hb$kFC>t7b8*ZdX;Zzrq)CUa9GK0=`#OF_B zk?#lBAt?r8t5_bIL&TQ`I-V5Un+l3yPQePoYlIZ7%CA2MwK+jA4{q#EFKI~ zWBgBQ$O5FHPKcjDG}vCUIf@a{kRgNDUp!Uit)yo=SriiQe1C1qt&z zhoqTUI)-9i48)w+Z}_;lt)&!12-Tpe7sL1<7Zg8PMz&h=q<2x2hA$ktp#Aek4mH0WwLmFQb4HHrm;$Yo99b*w3N zBDNg69J>|!D}ErJkKc~pr^-}~TB6QVm#A;3AE~?4FEmAW(>?Ut^iFz^F41-R1bvEL zp)b*2(YNT^^nFHPHZmQ|c4nB-7>ha0oMo;tH<>?}r!2+3$?jzLvXiXM9%GkQ*iYFj z>{WJ^eZW3s|4#6U)vgjt?;YxSll4Ci@U`+@uGM|ydgdiAB#_= cl(bFSA!Ve3C@n}INgqpRrSGLxyt)Sb2W?mUz5oCK diff --git a/WordPress/WordPressShareExtension/nl.lproj/Localizable.strings b/WordPress/WordPressShareExtension/nl.lproj/Localizable.strings index 19fa8c7349c90dbaf5ca3e0bb7a6c9adaf901138..f2e3ec3f2657dfafa97a864502fccdae52f213b4 100644 GIT binary patch delta 1528 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 L3&Dr|s&@PXC1&TT delta 1597 zcmZvcTWl0n7{|}fWp6XPGqgn@wDwT0l2U1+2qlJ;(sHrgmhS9sx7+S=x^s3rc6QD( zGrLek8eT{YL8&Lv7c_wfl8O&RqdXXW@x^F;Ac~?75+gwqAsBBDMvZ5777d9nyL-;e z`M&@E|NYLM={nPOespqhX#atOhn^W8NsOvvhsWEJS}L8HSeu>9O-<(uN6<`B$EEVD z@$8&gu}Jl(?YOmF^<&59Pds-rr5Ub?3+l>VsN1OI!YXlGSgV=@=~$d3`#*s$j4Me%uhnro$>1&(#CPR=45!+BD(q2m&J9?oJL_w@8k^y@lwQQ4ti z^If8rz{g$sCf^g)G`6RWp)y|lal_(L=T5IBvHFs!@!`xq!>JgKlTKn27u~Ga4JJ^9 zNnA06-Quiam7!y}*kKLmp#WScs7mj{sx@uCigO1o2itB#ZdPNWP#GCkZX8!g-8WHC zSEZUhpF&0gY2MgxNwZcK^OQfq4WT< zirA$0x%L(R6={aWM$=Ar1lpv`I7T`vTTr*qkwC|~Zn)9Z8#bKj5v&^sj#gcRSWc#? zgI?o0Hs$@=(D6l2`Aa6B#ad81n!(UT{t@~oA5jK9PpSTD)tuLuK6*;na5z7X-I{Gd zmV^h5<{8TD!zENR-Gcg%zozENVMdkTBkd2O1T=6DxS$41K&T;iJRojQ?9;YK^v;dU_?8qX#3~pUN@hN zr{ge~P7~8b^n$#dCPF*uPti_>_i8VEb_y0rrHX9VFlQU*Nw&$Df&K?FhHny?^@c`& zK#j>hG?pfIIS)G)oi|0I?f?n!9UuUL68oh2(0*!3t7QhX2P3kH+Sv>@*2aQpKvis> zhPcv4+d_TO^f0#Bf~dRLyBaGHqJKxj3Sy%;%7$%#I;-u_1M<4a#Dfa-gUC9%EVsv} zo2^*9-X#~pTWPPnDxB%Bng;7cf0G~I+|o#jX+}1JzQ1(Cuk8&N0iAVXE@*oYF0gvG zjmusXtRA~B-d}(X!r&}e1WRBU{2VwGNC&P5?r=G-&Mj~kxy#&p+~?d^+&4VOZ{fT7 zC-~j`AfM&u`Lq0a{sMoQe~Vw{uk&{VNmwIv2~P?MK^H9H72!4En((o3PxwRR#BJhk zaX?%+A`YvP;Y+v1nvAI6vC_mqgTszvEnCX^$}IpvbFq`a$qq1>i-RQL~6Qw$UU diff --git a/WordPress/WordPressShareExtension/pt.lproj/Localizable.strings b/WordPress/WordPressShareExtension/pt.lproj/Localizable.strings index 3a8a2f9244119ea113c3714c90626ec5437afe89..fc8ef3148babd44aebd041b11732c8fd0dce01be 100644 GIT binary patch delta 1408 zcmbu8OKclO9L8tg*)p-l zI*BQ&E5u8HP@^e_N<0*hiYirHP~gM?j#Z?pYQ+I05LD^~RpG#m9+1H)3Fd9EL5u5&muTRm%AetBbixIaIKDlQ$7 zw4CKsdM=rtbbN$^#y9zq9a0yPE;KC19334c39+Bt;~(P+(KuP*i_ zEY+D$dj<@ey2vf2OUaEJR-lDlWJ>KLwMd*SvOQEvHO>K@)n*-rYbS^tuNLJ~U zm)~q(OlY(fBNO6Xct~a@O~=I${}&J06f&!p6QB~%!F>>bDzJh3FGyUG{va$jOnwpf zk=snHeKCXpVh!TJGTjykedKc681qjIdLGTCML_0w6=H+5D^K+1TB~ot5|{-)0~1)l z0q_wF+A;~xwy0SO!ai}{wdu6vDm(g+h1f1Ekg>>qO29~NJg`=(D1biQe+k1XQZ%S& z^strggK*Db3PtyU&gSaUelK)om*Fy%BN^rR8s4NP` zi%U9k!ek7jIqoVQ{J*fM)j=D02W*0C;3oJ1`~-ewI+$MOdFCW@j=@Zwd5(+H>+EIrBlauy4!gt2+yFPkJ;NR0Cb$_+=W1M?`;5EJeZzgvJ>V674?oPm zz>o1sKE;>$HNMV&!hgwsEp!R}!m#kHkP_+_giWzud|G@?gyO5>r_xi>At^7FrMIL@ z(udM@X-oQ6x+DGGwj+1RN95CTL0*^Nm%o#LQ$(dl8B~rcNhPOTP~K2JSGJTJ%3W1Z sW9p!qR1MWpUsK;zH`Oh5TiuDU5j9eb;K=Kdk0UoC_d(+zrS{%G0TM955dZ)H delta 1458 zcmaizTWB0r7{|}fZFer4OwF}4p{Hppjj7RqzO?$VxwNJxn{;Cb)J_}Niq5%~Y+Cp1MYq9jn3wUNXqSacNhr@T^ z`+xuQ|9*3_`(*c-iNTQr2VWUI^y=7nd}8u&BH607r>4@GZP_Eaqti3_Su|JBaj`US zyteS1xoFwWG1v30a%E|``ug#dX80y1V{#{1;dhgtBi&(C!qB$%k(ECfk9^Pe@LC)%`{Wb0 zU(z&sr%h7vvm3j}{m9b;$y8!2J#2W3hUZNsv55CF^bvr_s?^c; zSYXHx?ACygzDEhkZW3akCm_-^9UwyIBG)%cc7TaU(F!m@?*D?)Ojea%vP13@Gj%Eo zw1;9rR^?XpNi0O`ETm(OX#_1bZfETuB%}|Pk*gzjfv&)=r)7ghnwLjEn%3jln2tdz z=i(A_DSwpV;8%1(1e^wE!AIaKcn~@inhISD-C}Y~g{d*C%o=lr`G)z9sr|?@>>hS6 z`vSY49bvO?QUpdyT!t$=p`1hkKEWb2?{n=ehT}&$utSd)zNP!#~UK z=ZE-N-sVs67x<6)Px;IIxBPAXF8@%Fgf^i|=oMmuE}Rl>gvIb%;rAlvBI}V2F)Fr; zed4ef*TkH7LyAbMG$0L2x>S+gmDZ#$r0dch>36wDeqP=ukIO~*gnUZABwvx&*@!kpyQ90KFGUm4Su)!M{{Zwk*)IS9 diff --git a/WordPress/WordPressShareExtension/ro.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ro.lproj/Localizable.strings index 0820ced4b1a1045cd05a67c27958b3cd8018e77b..02020b4ae1b9802255cec17c9e4038cf1df12968 100644 GIT binary patch delta 1498 zcmZWoU2GIp7`^ke|2w-=HVfUhq!&`QHMLbVv1+WaDWw$q=l*neDX@;ax7#VRGt10u z%T{1DKA1o>)Q=YpF##V8L?28Oj1m$h`eF!3^a-OT#)yUl6Mcg4;5WNVd~hdw?@Z>q z=R4myXRgJs#m~&juJOGS`zH6lG&MalJNI%jwO;6a>WEg+jp|X;vTG}=$LedZ9Y1lh zAV*Tl3Zo@cS+r@@uxx7R&u8aquWG8bw0=F_vyfyJ11qLf{YWa4oLZRFEoR!yXZV@# z3mlj-l#;5KhlhvZTk%PuAa8}E;?~LR9@VO-mUVDU(ThxLRUA$-yJqUtHk!@SGwhh1 zNvpQTvPq_tuz5ia?`#pNRW(FrB{=S)@H@8(qR`ioovi0G&QGvelF z)9HGZ6=b=s2CXV(=E#$FB+EO3&>5w|a%0G)Y?$@*92OMh?G6e&6vFOIqFUAJpo;@= zUGTz1eh?b`b~xwqZDXcsn1@nJiiyI|@#fPsE2#>dt=g)gTkGqc(R5lVTe(E3L~Xp8 zZ#e?tl;R9}5_pRdNH}DWXp%uEWk{$b)du{WPqFcf-!$L?f4ERu!4E zd_u2jYz?{NJV~~q>IT&ms+hJ~G&GfD5Tn8g#73V@QX^V3O|@k*h7qs{<73X+3<6pc z&FGJgQl)6u6ir=IY;2CH8A3jk+;f<5@RK~T5%KvrI2Bm%W)rP$aNRTbt}hC?(2iL1 z!_ijQ+9SN0h8zvlze5^?H!(^*{#{%QUJv!cIe!FtLn9qaB#k{VjYvo#Yn%YTO8ukR zl%lPmS`{*b{3}he8m{H$R5fC9LcX0al`WDvJX&_*%?XAaZ{v5uCsI^eBniyBhA)eV zeIj%Srlm04_V;6DU%T?LC^8>64QxnD3?psY%Ccg@6LJr1caQjT<0$MBvl-<5+aRzh z1_z{Wcwg=h<|ZpuO)aV@*AU#0$Fb#>n4Bopip_Wp)l3x?$U1%@I7B?3N0w1mhJ+Z} z+#VXf4)#MVJOr{d3OBJb z!vXgmcb?nezUTMxI&bj}{w)6i{~7-S|CitsdWAk=M0i2iE6fUMp)NFpkA#nfuY}ve zL(wmGigEEpaZH>NQ{s}iDmKIm;$`uwE9&ZT#a++2Qm)2H*Lio3JMS*KuetAdf}Rte zGoC-aZtt{r-usHz_P*tP+k3(Lg)ido@~`?E{!9L={@?r$0;7TBflmW}1nviEa3DAq zoDLocUJPEAA`+FJktU_H(k1B|>0!tfiidWEa-laur$To^55j!-O8C3*KQfgI@|PXm Slr(=l*V;*=y|=ebeg6Wq&c87L delta 1549 zcmY+DTWl0n9LCSgnc3~m>}95<+}hG{?G2@kB`PW*q?Sb~z1iLEcBy4OojKhO%+8E+ zDYRVn!51SBP)|a9025wFKpzw|BoGoM;)4Oqmk@TdIeX^J z`TpPcJO6X7>sr@|F)6e2l~;ES?H(Q(9UFgbBD-q2w05&mF)jN|$MyW#g#!l{mku31 zax|aQJp-4d=6*$U(442(mg_0LZCFUd8ac{$E`QKLu5wfH>AbBW4=cmExu2Zj50NU{ zOulChq}OKWk%N^*%Xbvlvz$d`9y_?NuWxEV(-aStU2+Si`P?Wz=#dX$pODMZXSs1y z#>>BUET3zCAt-5?FJb!226<7DLOAC-8 zMyZyhRR80ybGbzuPwz5a?0BKwVvd?ZWu%+a6S!h6)IyY`HTil@rKYfnj&r(!b1x%x ze@SW_wG^~~bOX&AxK^|zrSoPu^{g5tat{i`hOwt+0t|sW>^PP)HAq>NDU6aNjr+5P z?#?SVO&sJT@3So%nzD%cs57rG6f>IcDdQ9esluM<?mCR{4=g9Tq*BR`NWv zN-RuZq*2+D)I&y?wkI|zorV_1aA!uarXyv{_H@g13w0ml65H0bx2CPQHPf%xrqn*g zT9Vr8V8}9DP5y(iR3^xjAFyp>F-QH8qg=<(-U;maj;T-*LDS@dK!qK64*7;xk{-)f z_q=DAc2%v$WbGir_Vda0#1`_IG{f|fHem}n9qA@q>Jq66PhV`2V@%UShH8LNHxc!C zu_+c~$aZl%i6+~jC3TRhxS1S}^W?3B+@ym%a6pBDzylWj=L3T%iH)nKGM=u^V-L@P zaezP>=)fdG)FtbMnX#z}?Ap{F-UqS(1B3olx*yXQml#+9qg19sr%Jd~4#j=oFp%0C z(0n!QkY3->sXa?dQ$y{fr=fEryt_y7{ z)Cwjg36b-O7NHn6lp1V$AY{m%WVcWZRPa(zRb*aJ7gXW>?ufkn6okHHi06g&$rz#H%;yu*py zIxfvU$Bl9tS2ekl+-dF-_Z9aW_kd^lUVbY-$iKl`{9*nSf1dw{|CC?h@ACKfKO;h< zIno+QM~ab8qD|2o(Z6FL)+DSKio%j`U04zBi;O6UYs9z3pT+xe7~c@@j~|Smh@Xjn z8UH1bOpGM1(+| f?w4PbPs-=z3-T5DpGFacAC{?&pjsd6Lu1GP$4A&c diff --git a/WordPress/WordPressShareExtension/ru.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ru.lproj/Localizable.strings index 48710de94de95ca9ab3cd30def0bacc7a6aa4c2e..93f5c4aea9875ee963049330e5209fc03c86778f 100644 GIT binary patch delta 1481 zcmZWnTWl0n7(O#|_I{b!UMRM^?a(U-ZMT+&($d0GE&@y2ba#8DtV4IYJMDC4*_jqr zk<}RE1CiMLCSIZ>=mQ}deIU^ggNeikH4sA3m`DPqCV1gN(3ogM<3GENn3$8voH_G< zm;d|E{g(SJFHJ{d@qxtX*!aZc)S>Ca$tR>EGbuSXo6ab6bMxwgre}}l40Cbm*zx?6 zPn~!=DU`>gC0R`6q*+tU>V_%mTF=<<;t^FbGRs$*gHt2&f{qnYMVpT$Mxs;uG(*mr z#c#O9HhLzbx|CA1bX!{+d_lupQV79O8rnCuOEDG{!#Fe`X*04~syI9%n~OP3H1(ob zd{91aCgO^z%3~w4ltS^Oz;~34EM`??mQ!%TCc+)&7*MV;5FbX5Q;BR!GE1J|I#ao0 zVs}b0MeCPJVniZKL?IeU6Om+zP7Gp-%}Jp;u}UbG1U89HYD%0{RM~(jwg!z?q49ER zr2vC;O?Nz=&&o+bSWQFBN@>}OCvHVHVFe-%N(=J%0D4L5xqN&W3z9;;#R3mF-kykL zvuYkRx*o1@PB_nQgaTU+Z`fSx8vZkVI#`5yo%6ME# z8{?5wN;GjZTABo0=PIiYmqHbd62aImc~)9f&7>eg!Bz#=Y_6K55ZEJ|GZ~BDP)ymt z0gaYm%fF0AMq{!n&zKYOTwavYl7hiMY;^S=U?Ts^tfQD%Qdo~&)>%S0^x*Pc7mPD` zDEJ?RkfYp&!Mjv=lV8i}LI)fztAG{zAb5SDa)l(w2#Jzb8m61+4%$T{@R_#(raXCg zzpUzEJ^wuJTi{t?aFa^c(oWh(`?0!&^Qw5~|9*AlmAh)Db3RqqBAY)8SErvp!RA#5w{y}-J<7~gD> zWjm@zXcR6v8sIBuJ6!f}WGW!wsRGSk4();Mu+`m#Bq1c}!7L(<8Cs8+?NI0MI-t;X z=wLTWhtY1gB|L|XZKFe|7QuA@E%wmvG!^Lp?I`xzL&F(_?fe(ChlX`w1M>GmB2ZPU z6kF+DjiAUW(+~=5!Dlmk=bl76O~vxh-8|g&HNp2nE415tJu(eq|2r*3(A*(DO&f3^ zR%%5WnD@1U7HA2oDAA7&2T;Tcaqp`AK^?C^IM4+502v#Pd|BUfzSF*oz90Nu{z?A}{>%QW{-6AR@QwUIewM$;ukgPL&j_c4_k`Pl OHGx9lTSDMQdF?+WB$#9X delta 1477 zcmY+CTWr%-9L62{IB89nyKuR(&9$`5_QCi-Y%VsOfELRh`R{v0bK3a?T>|s7j%mU>wr90>l^CP%p@`3ceY&lU!+(T z9ZflG_LK_414K(v*@RpReV*v*I$Uj}7Gv1seI%u8cyHFxEz=$@a=8`}lw z1BE5Ur?n>JXt5Yr;FiNboIlj-W{P)Zv&NiC`QQXvJA80}I5RmD(k?PVc)>J8H|I z)%2#5Zf`|xXeVlfI^VH~&cvAkCdSm$=bPwm3+jR^C1sePFxrEfC{5>Kv=VJWdl`(n z=&^^YQ#JT5w4OTGQ0ES~Dn+2#U*k)nDk@D$d~4vOyc&M;M&W0msCe|TI)8{yHqSCg1*qIr3?|cr$q7$X8cpd zL3h&3t#00eVH&NW&AUTejKh>L^UMNsnYqjS;o0pO^4#}4W5?K8HqTyUFR|CzhwNka z3CD7^TphQG>)?91QErZ#=T39yxl7#F++FTI_Y4WBj1Hp(^`jIrQT{CY6kS6Vf9efXeh`0FT{CWO!{ww}l{t^G2f64#p4S1J%%e@=DhrM@vjlLVcCnXR3Y@jt@ z2Id2g0>227uvK_p7!@80&qYQQL@e$S&xyCh+v2Z5F}OZ>C^!{78+;+jQl+FydFiI~ wA{46)jfc*K?#PXDT0S8^S4x$7#Zb;DpDEXs+u>E=?r=P8hOdUdhx-xyA1hg^@c;k- diff --git a/WordPress/WordPressShareExtension/sk.lproj/Localizable.strings b/WordPress/WordPressShareExtension/sk.lproj/Localizable.strings index 2c3b71b1e60e24b64b2e57f89a50a63aee90f866..8461e9ddd17e7d41f70ee73840b2a18d3fec41bf 100644 GIT binary patch delta 1479 zcmZXTU2GIp6vywKkNuwA8K44fvC{^&7^H;F6 zGG{E?IaPMO%Hi3$`Rc+;r(e#?Yctv`Q}wb|@KnckJ=M0J9Zpv!Ov9b3UrV-*53(5> z75#=)%H#(7#}8R9D|;(@xXEpfj`iD`Zdk>xt}eJL?BMhACO9Q*IyAiBaAyqHJ=UXH zlgw-=P7E@yQnpmjUP+csv3W0-H9V6I4>C>18Mqa9UL14xIym->hWQ z=y5#f=$hB?1UG2Y3!?{g!&Ci7Cdm+u%o2lGq)1fa5SzHfQBA61KuMJ_P5vZBXMn;5{+i&dO!Gd^|Iyl@W}3U}blN>4v5b zIG$l!ZoR&tDVx=b?#Mn}S3O(|H97$|_@?F)4XCQy2r#^#6|{=!}`f#4q&x;h6)SHb?1DiV&JnyCYu{*+Az~7np7H<0=Ga6hC2ZFM zT#l4rNoj$f;|}~5&2$tnNSRcq<}0Vk;L36tkGLrB@;@-DJh6?@IPOi9Ef1wM-7#E~ zr2WiPBFn@h+DaM=H7az+I^h-h$fbHnq0k;3i_sXGxs48OQi61_)1M?*mfGM`sS|?o zUN{@x1$KOoKMUiJ(pepY0?9qB#w00>wSci^A1#bj400ILdkCXQ{zhvC(TX^u9xnad zSU$8#!*T(A+gRla8e858x1wp-tBCNmEQNJE;E+EkgH)uCx8)>0?SizVz}1+v2H%)5 z-C(9>8BCp=s!mkld$}EcNOYo9fw0mc`8bgRQYn!tEQMPXgA5>id^1*k7;rPz1HE!5 z)RiU(DH-@A+6@r6(pJExRmlYEkS69z+og)DF4&G%s!V$fF2=XhjS!Ky_-5c_V#Xhc z;3}g_b3vZgNQk^a7Rh;Xo%~8}k-IcOo9Q0fN2h6-*65oQ=(}{0UZOv82RVy#xf=I2 z_dfRp_Y?OgALiTm&HOI@Ilh-4;In*{ukj!87x{1aU-$XcYHqnLHu$en0PvIU*_a>@?P1KZz}>Jj}yE&>fiA?)A;%Cz9#rDP4BV1 delta 1485 zcmZuvTWl0n7(R2|?ab`%Y)e7XmJS8VC9t(BNbCc_QZA+4F75301}vwYv)f^(GwaN3 zVGFWe9yIa*&2Nl}ctMl|1Y-olgA!j%Oavc@CWuiZFZdvhM(cyd2hU!RV4O+j&pGp- z|GS*;O#7MklLKQt+js2T)w{c|KR%GyGdQ$JPo{=PMw`aQ_wL)DK7c1C4U);~Q|7^( zHElcjr(Dl3%p5vgoIP^%>7;J@7D=m(otoj|jIZS#&({ih%fSXQ;I_JA?p!-ueE{VlrBU=qa^KsULZ@D%> zkCVebT;O7ouG2j|fwN@p=aqBkS~r&=9s7x)%l3%tSLlxFloZZl(;gor)6Ps)L|R>v ztm)LM6V}t3F)gA$i6?VuwLb1>cm|smp0G$2G_AHJ?aI=3sxHA@PJ%pFw{BnAhB72O})xeGt#P>C`?$UH>KsN;<8S7gKb*YFoY?On&-72qdkV{YYA!xl(;p4R5!LK zi3Pu~&C&ZqYG%=^X@*VAB6)a_V1tfLt81X2X<5ErTV)v)8Q#8rVwhMP$or;ad&4yz zaD{DY-(Q`rc~#PTt4m6s+L~5dYR14Ew;2BB>LNX5P06kKyj9dGKRCv(jPD;Le!;ah z>O?s-dRfr$Hj=>w%TKEh=&Nxa>!YcvVx+1Uk&0s@Z+eazg^R(qdvV(o`4ntv^(8*a zG3A(D`XkuDK!^M|$l)ewrOj?&wlL1V~9mf<0mb{3>mM+3@Oy!HN^}RIf)V#mX<75B39uT3a$G zL0u>?$0|-S%KhOE4cWzD7hG2xp(D69ltD@Q)2VjCo8cv}OnekN0!<|o4NxDwe=mZ1 zj)LeonnUN%b@Ut4%cPha%pG=|oncGtY4$ApG5a-pi~WIPxi#E+?lG>5>)}SZB6plS z$(`cPavyTnxf|RaUgnqbZTv<)&KtbVzrw%HU*W&t=lQ<`R@fkP3Ejd0!6^wxg;TMaOEjR_X))04#&al>h($ diff --git a/WordPress/WordPressShareExtension/sq.lproj/Localizable.strings b/WordPress/WordPressShareExtension/sq.lproj/Localizable.strings index 25f96592388414d1ec94c994157c943d2f258946..213d880e65ff5ed1600762a0d14a7dedb48b7ee3 100644 GIT binary patch delta 1317 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 G1O6BO8?+bz delta 1463 zcmY+DU2NM_7=};$ljg@soRspTwwu>&?KZly7WTuYU2JR1y0zWfIB7z*hLiXt@#5OX zcG6`V3%x|UY4u6mP>?2}N&^H4X`0aB28kO~#wK>b5CS2=xY!T^CXl8VTq14ldg8HQU3>ljO7m@2~>_S*FkAT=} z+IBKdG?I7H4K-;J&r!taC~@*7RWC}m>JXa>z!8sB&x(=3hpA<`W|GX9ZWGIC;-+N^ zg^O6#Gt*?wsJbSy;$w-HPs#1jPp<`4Bl1CPW|F98hPsv?UK=Jx?_Fh3Sg^*Q6B|-I^}g<#{AHGfl8U+h)ZrFyZOm&@XM)l%@^) z3EgV7_BKF0~P;IRz{=f4+?A3bD09G^ff`c zhU8{dj@DaL^`la3v=nr_ZXo>f>0U_q5ZD zjHR4mImm}Dpe1w(t)kyNM?6W-4bN>R!&I3%bCFqLt}-{7TgK3vy3zJ={)il2bUHdzE{gyTX0O{mk9x8Gbvzk3Yn}z#IIz zI={@n#lO#A=D*^9;_veJya8{Ax68ZHd&+yYE$ricJ^l^;(ZKG26?iRhKgb7n1>?b! z!Cdf;ut(T092Ta8oUkO^3-yJb3>^%mLssa+&?lj_a3O4k&xYR&e;R%e>5iOc(+~p2mLD4EdT%j diff --git a/WordPress/WordPressShareExtension/th.lproj/Localizable.strings b/WordPress/WordPressShareExtension/th.lproj/Localizable.strings index 39c72c57dd302682bc3421af5dfd2c652c317aa0..c6a1979c8fdc3135519505137e69db447df6e5b1 100644 GIT binary patch delta 1365 zcmb7?OKclO7{_;Z_H8tAXpCb!X|{PaqNVm!Tm{UGo863LkdVaMKK9torv1+(_(N`;F&sWRN;KFQm&9=M}`AX^{D}vaOpTiqv z8kVt~3)$RUCO_$T*!3H8@(bG=TF#Vp!*a}IGD${+4swfYgN1M>xyW@+E{s{;hUIx@ zM|Ec%+s&xeIqX+mNA=5%TeWHYlAqHo-^L4bST|@Eg>Xx%nNhW3Q*~^RS9q0N603xT z{jJ(8O*Wsa7`orgi`)beWog{7d^Ol2f6560LkW^+6Eu}5Nl8&M%{}ylrqwFA5DxFu zs8)0n2Ssav5lcaZ>a@Or7e}eES$1pMEDb1xyQx5|rO!6hqGe+*H&UtCHR5ms8Eja(I#cnjvg2L7+8)s~-Siem3`6zlV7}=u zxd|ij)uv6V*A!S7!$rMn`-QMd>U@;k;N?Ui+&Y2%^-`ekSw8lt?eooJOkFS1RX{_DE%K7 zs)_ngoPLiY5doAbp;7cOO5a-u*ofJ5>m*%E(V*whF*<5vlEJ&5lx&e+0q9kMAUFsY zj3V@!<7f;eic~R$jv^LKqT>fM6Dv~f9(1a4RNT)F=~SY-(A*J+!7eg~_u98ZOOe){ zLNOFYkCT6-C}`jz@8Zz_=*10>|aoZU9cCPf=|H-I0H3UgLU{J{1ko-e}Z>8g=^>fxu>~NF2iNH689ok z=RV**=f314dA7-JR&B=VKFV{L{q#X z-j%wgN2DQXRx+hmrT3&CrQ5P3C*%QnNIoaOCch(pEPo^aCf`wj(xMzy29;+NO<7ki cE7z3UAwJX$pvuen=_AbyAv=ropk}rb#<}@jQEmjAw?K zaav0Vc1X|-2nn$$3pV8=76^e5V#B&Bi%Kj&NFV_!ETD^)6)Wx=JBdq8p;cjluw{GR z%zgLWd(OE>o^wpY^LOw5Rv8NMf+&R}(O6u5=wY-%S-EQUnzps=>pBvhUES+9;Eg?- zHurAXx^4T8oyoq`uHF56_73dZf8gLFgNGhH{Mh3|=_8rpk)ux>8$B*RId)?F|&#&flhHp|;Y3s+D zOG-X=Y|qD4$Fzw?HC4frWP##-?C7>{W8z`57)Qz!+t#3}YzjhpO|2dTA+4hF1>LqC zFNr<7LVew^%J@9Be0<)u*`;on6ni>x;Xw*d+f`g77WUm5CS_t+Nn9bdIf@O~5Tq}g zhF{cEGkHfNKE-2(HLofcV4sUgv1nHzvu0BdTegpN)`CObis5;N4O#6*gSbL9gRnIe zVs1pmi_I2ttC-hRPvTC9_2c!mlIRH&61vlLZ zlM)CuN!2RqY#%Pzt~TLP4~XONmDjLNT~^Pjw5DO7ls#41khjPj0KSX_Fbu>ef$0)3 zksGHM{691Wk0FW4O>%@=;0(^<${gk#Sd}@7x8!n=IX3~VtIEcVT{SgpD^v?I3eE&v ziNnrwDUb?f-c>bBgP^U+e0HobY-sqMs zBXHK(gE4R&WzY`jekpAkE)&a3W@oLPy97n_vX)UDw+G_j%^rDw#yt-@2>~m^po%7q z{9PCSNA3H*ZMzJubb%hyXg$dO*uUi7rP~3#SN|@7G}xrJqx~q<+P_VpYHy&T2s#4J z-HX=LhjtDw6I_(L$i2e7!(HWWhK`4(Lf1mq`5AtJf1ZDnzs!Hif5CsnetM{mW#u|#YzHWoV*Gh;8rUX8sS`#kn_>_$8i?~V_|XX6X;7vt~6KZ*Yk pzbS|0^>Uv)D4&*fxhlUdza@VtUy;A(f)^jE|H41S+g|cdzXSD20l@$O diff --git a/WordPress/WordPressShareExtension/tr.lproj/Localizable.strings b/WordPress/WordPressShareExtension/tr.lproj/Localizable.strings index 3873098e6ade0e1e19b3a36cdd9337988b5cca51..9df3f2d3c7f46eb51384051d8ba3f720593b28da 100644 GIT binary patch delta 1421 zcmZuwU2GIp6u$GfJG(nOJGE))AL(riE2dglNkote1qzgwwsdE=t%Yu`ox9s%XJ?j~ zDKLQSgD*y-(i}7)L1TRooA6-7NTM-OqYo+x5`5C2Pl^U3gcl#I#=Ep_|3G;LK4TqXrtl}E2iHeD42kCGCd+ReBW95>L%Swc?huA;z-kO*Z4%4I76TigKG z1R0k3Ua0Wha8ZhMQP*|cBk6hKGGXvwEjmaIli;zkZ#uTOxY*L9>!jdK4HyRY*-y6a z1l$ms+GgvbVy_M`xrgS-g5~El3>9e&T$dv4IjvzY_2=fR_@3!gj~SG$mo46(8px)p zMd$o!-3>4)5R(c2@1U#ifGP4H%~CbRa@qzqWoNY!GreQ+P6Vd7KytJWq(hg|1mT1V zUpF)+3TT@75pXF~LKY%$HAG=a>1i*aU5Id<)idUl&+ajzsK{apu~-q8SlvoJX7?rv zn2#>%tA3952ui`np=KCN91$F?6^^NEVJM`)J8DGA43jc}ON?Ksp|f!^?bt3Un)zD0 z9J06+ypd>yF{P7LcCpGGf`QB{_vBWN+Xx?oI^dPqu82`%eTpUj819A7x;k|e&l^rI5LH++5&}2`sgv_bo`hzhuX%gfK z^v4f|vzef+foyaLo{x7yNL$a?Hm}Z^cxZaiH;a@ljmx&>pMMk6 zqDAv)m`Q3OgGuUw65kBZYU^8$qAWXgS^v5jHQ61lhe7thtpw%__%qfXqueI8F@6;Q z+QMHo&#`Ty==Q8mi!O1oL2VkCHvFNcI1JO#{ty$w(UPkuy+U8jn8TpSS1L$GFQ6r~ zjIN{a&=2Sim*CpCe(nHwlykWX_Yw!(1#XGE!rkQe^EU7C75+T`I)9b_hQBLBgic|d zutnG|>=niYT?mAVa7nl-$P-U zF(tMob~g55?7p&D*`^c~S9wu+Rk^7AqTGu=5#Jdv#?QxZ#s5-!)Cu*lYOAN!%j!+_ b=R_)TAd%6q_MrBdMzy!K-y5CSGu7FZ8EXSd_d&a5-D zg$1PgWFkJWeu;?*m*4|ZFvf_cF~lc%!C)e4;w8b5C}08xLwHe$diD|tnTN^D`M&S} z`~S~3-!aC{6%C7MRD;7}XXV^V_(GVHrxQhuxKtU|%{-hE55gQ5gYP{1 zI-24$#HLEwD%pzTT6S5Pp*HR5>6zNBX^Km74*bk_i0UZa@4|#@#UDX>DJtbQ)UChO>KwYC2KIimq;%&SZlF7P!`~J@wg&Q-|JF|77?q)--Ny z1OpX*DLmi*xE73@ZwfSf;B~1l##Uj#)$^2Xw5=;NZ%_-bfEm0IuE_!4WZW`sl7~&9 z1Wx^5mxz;cmO#LlhxI|yl^7yL;%1lzMK=pIx;A7mK@+)*Q9(L#PyyCQmh%>FuHmlo z$GR*WLDkbTt2|JvE29S}&pIjV)R3M*DtZ97y{(ZwD$U!(Ry1nTvTnj9ZzoXPFRI%a zG#m^+4JYIwxEg8?Obyj{NQVt_FUZn5xF>CbJHa-%D-TN4^CT)FmkAnhL3)8-ic+xN z8-sDY3@W}^IPPBtXYtrO;T4N=C{>M&aTTgwEZhMn<<0PoUxbgsov_8f%G1uQtbo7# zZ8(`I=Sl|AYCX&g{2m^JoWH##IYi1DbzebAHq2%*)JN9BffjGyT!FPbG_A8RELPW3 zeX?k%3W_wwU?V>|f+}bpT}F33J3L9x70(TBnw#b3xKrF|?gIBc_Y?OE&+*;-TK*Zn zk00Pue3?JOALWnnr})5X9ukjhNt7gMR{BA@D*Yz?D>um_vMHD3qw-1lV#pVgLmNYHh0cXO4P6i8@XoLq{ycoK uJA6N~I`U@Z{m26L;x%{!egmJuUq=^3o1-1keDv)oM9)Njjs63H#mawxO~T;- diff --git a/WordPress/WordPressShareExtension/zh-Hans.lproj/Localizable.strings b/WordPress/WordPressShareExtension/zh-Hans.lproj/Localizable.strings index 21cb8f95ece631f18c4a544c6eb61fd3009990c0..07d27a25af9e34cb5102bf8145770124dc802244 100644 GIT binary patch delta 1446 zcmZXSU2GIp7>4J6&lxZsilt>~WlEqfDQT$DR0yKA6lpEH-JNN-rMAn=>&7``4Y> z!nV*g!9K28 zi}u=Gs%ghiFn~0}86J|#8cQIVRLoIE2HwZZ_!oK)=Ge8%)J})7uPbF}c8Lkk(iPA3 zwi>1_lTwUQD2*DWOe#S|D49x8Ny?&Zxh^ERyA}oI(tr)}x|ksknlWVIK4z5zUg>}@ z=ST|J%dL1?RkJA+lBC5nagv^Xr0WIC&MIt?Ld4N<`l*fOE3 zIhBfKaf0*UODw>rnR=XK*5IQ&tVQW`GTpC4wX_qA+*-WtM24x!zLaey6IP*6RiUa{ z#Oi4_4B2)L-K9<7S+>GGPzqJHN&>-cXi&?2eVY^pNXJsv-nNIKzjV}HNP9p!ytg)C_Nb)!?SCc``(yI%1A?~5G z*bgi4f++C1GCROx52(jef>3T`=Z_fEe}~^S!r%E3Ip8IrrYtfX4tgf{`w`VZKKvDY z66Zi=r|!27-zyfCYw_1gMPu?x_bv45*d2Z1*NJ<2)HO3>20h-Ny-RZbu^V3T2%n!{ zaGU-2y`oQc*4{|T;}=PPQd)*T5?A6ABE%b9afhjKlQH-Q`jB9lgn*#VWZuvh2jx~w z7RbXQfbXZi9&(ZE9G(9Acmc>OV?ocb(aQw{@0s1FMqfd#-u$A0LhiVx=j5*-KOr+Wwe`qhHj^a=ro<9 z57C%@lRim*On=YpU=obQ-bH)!sjOVlR~x7By17l!l;lFjtXal z>%wi}Phs9Ax|X}DTs5wZt`=9+brlGp46Fh5U^57Tz2G1?1guP zs|hBMG=$X`<}`?sD9OYSLL`eJ`lmz#i6~4k5oZkG4;IWq(1?onwl##@AD8#N`##U- zdEWO-`I+*u*5c-kn_k|$<&~DLa%-EcVFR%xKJt4<>9UsSOS8+?5(0*}bP- zF&q&g*WE>#74mixC?@$Cwe6Cd<$_ zo}IPjfry%bAY~;Jz;>)e3PfN6HZ(MJuG4kksQotjj;du88SZk>M^uBTDDIxpruM_^ zZ_BciOIBk`EB0cb-QN=2VAxT^wmSmQgkh%(y8&5^x`@Rap%ac6v3_714zyhZw8aC` zA!&Z&!_BF&ieF9B!B5LaF_#5$pEDs5O)i5t0_Q7jlBULcRO$Gfb$gSHlA# zX@P73bx1W#RWo7UG$hrw$8t-@%D04WQ6h>{!ipYT1EzzCgq7%Qa=Yqx%LqwQTT(L( zI|AZvVw@8lC94*f1XP!!(0SoQSF>(7pv|oVr717h(WJ)0&_uV%>f#3?g|ghEsYcIv zN{fPisOqk4Nb;hso|>igpw85DG3=hLP&ZW28g~pUW(Nx#Xo{>^-kaA3b{_iG{L;mD zYYj;?gaT8RFpg!#=lQ~SDj+)ODh9~z~XZSVC%Cz*%=w+Vb{6dWkH0rsg$(+Nor zB4plf_m*0HToqBj@&R9$pLg4bPwx?BnPwkw-7FPa#fx zUeNpQz*C3*4S#^9#ikNtARP1tF7{Fr$u~8k0Y50hMNx>a5cKFh|9cT`WE9E5V~jR> zb95FxEi4vYyOB{151=$#gD!K8%Qc^Ucvc$|v|n^Atvr(YJ*T{PDlk2KHU3FK`3H7U zqwz2&X4H0%1T%X0YahhJ;mjY|3z^G$>fU%x428s{CECGD9oHb73EWP4v7jX_Kt5s7 z+B(7{bOOjL;6C}T?i-X(9InXRb_M-U?g)D2>vB=rH+=Q~fcGo=ao*PNyF0NjSdI?x zRrB=p!h>17wxnVtbCr+c9=jS3)M8q9Pia{}3|nI{{P+Dzx7$@E#seE!9A`53 z-2K1Sz~*6A2MPQOD>(O=TD z^j{3gtYp?OP0V&CZ85u@-)w)pKug zr@6D-HSQ;Fj`#2^U&MR)F20u!^Cq9>$N5SABtOM}#-HPV=4bgog(ZSlSShR*e1a(? xg|~%wg^z_VguB8&q9nc`t`|3nrkGqHzAjFRC&h2Y8S%RKYY|gaipu7J{{X=Z|H}XX diff --git a/WordPress/WordPressShareExtension/zh-Hant.lproj/Localizable.strings b/WordPress/WordPressShareExtension/zh-Hant.lproj/Localizable.strings index 0cfd3d0168d73b452d166d9132604be777be2f92..440f1f2d013b1a3e028bd35e38371cf6ddf7c967 100644 GIT binary patch delta 1431 zcmZXSZEO@p7{~X0ceau)#oE#q*_KjI3#BD7f(qI|vBk3Y+Fr}GJ@#(ruFGw2ueW<` zue4m^OMn(>%YYtgn$!>tQ6m8(Ap(h?NDK)9k;IoEL@^Q)F^yl0MBKR}F_G+-nP+DI z|NrxQX1;R1a@H-eZQEXH@7Vro=MKf~@%sF8;mY+1V<>5+hSQdv85teRj_;Y6+#8mb z`PC69YiTuR%PG^cWi$DF(36Q6x-~d=si7w1gF~isqf<{N{9V4zP)E{&X}hpTH>moO zot>tt>B)FgQxp1{X{N){3N*~D=m>7rts&jA`nIUaC^U*U27J)Yq?5937R&+)9J9Lu zx^2Lq52~7D9+pa5ia|0d!%>DBnqX!0D>;f7x_)WE<75nVr8LzpWKN>L$GIylO=AZvjLBDAuQEl6?C62<+@r^DI<%L zj0;_&1$2UHL^-Msz0ZPLm`8k8b*}9pu=H@EP0|7N|^|Wf5 zY&(nY;v~=&y1Z(j2vxR<0>P~?re+K~EXgRxR-nr)s18d@w?R8Pi1jVqhL$s+?&5EA zi#@H~erUj`-5W?}Wi_tq4*35XefSO>B9Aa@DG&=wE~m?t*vJ`r&D>ppddTeK@jm|b zj`5eg>q9;8+=Hsf$b`EcsodH!E&KP|+U%-Hj~2b^g?NF0P+b{MM1!sw;DtmJ{!D3U zAMXsU1+@q@Iqje)bjceJoi&DQjc*mva~dBJ@}7%u-}p`J6FK_h(E|``_^%J`mm9R1 zYuz{SVN@wmh&>l0yO-xXW4`9u<@;}qetO{N2UU9i;{Syl(?^SrI+_7XPy;`V>V;?4 zho3!oPK*5sPvYo>)VPu---$S`lfTWZ!>)yTp?7D4Qep*CM5!VXbR{$&r+n<*HSz{* zQ>Kf(q6JWnyrBApNPZwVo#^AS7#0n>l-o*)dq*zm0K{qqZhw!TJpAsp*|9u}YPpIv4wVT_ zgC~3D@gjmJ1BYw<_cE@@Q{&%h7$uGy$xBmf(SrCi+9g!55nM)xxJ`AD*)jih&HL6= zOd%4raoqUG#QwozU{fmXUql!9n!{ov+Q2oU>s)J&5Qu4FfjB{2CVn7(BJPr#KzoFWxBxO-K>IgMYouRH#_h>+`r0ePD=ojg2w3`mlSvp65 zM1MkmMSoAiExajA2@Ar9 z!e_$g!dc;_a2q@ZmVr9Z0s^2P#K0tY4NQYs@E$l0PJpZ64)|Sc6r073V!Nn|N5u2! HpAz|B<%HmL delta 1489 zcmZ9KeQeZZ9LIZo?=uMH&25ZnH^#g$7;XYVi5eKgF}LpCw%Zun(O#e3y6djDYj4}_ zh5N%lgn@GN;pH@Q$)X`5Y7nCYfyBfZ667Cb5+F(>DjGpCNHh^6w%3aU(?6PDpZ5Fx ze80a=7flysTKM`c&o^vse4(jXZ1H$~{za3aqFSv#rpE^ohMANHhlW!lqhsScTLY@8 z!4SW=Mogx85iXxaVYxaw;IgVH3SeRD(dkdKU0V5jc6X zV)Dpi>upOt_O!p%*A(2W8vUwawE3Y1!)Ax=CWunMg*bl;G{e1WEFu`H2@T5tHM)d! zh@V&UFm)i1io?#WF#{&d9BxOzf|4SV8te4Ietpmh5#kG5^Em}aVWoBNQ8gIYB!#0P zeu1b9(x9YjlB_|;G{l#;#&V;nJ1wDG1VC|uThV3LVAH`wLQk~USzSe}GD1A>Ny?gP z^a^n+v7Hl5<0X$S^h*{;zVrM+N4=t&g2$=@r3p9FRwu>6P(!!zrSl(%NIeU8Q9!h2@%(i(zy%Lq(N@mbj_vF(a7gKqv6h%5FznFdXRZ&S>FV zwTAf8d@*Q}cm(}TaP#WzOsyN^aV-_F_|Q(WqN&>l&151bSWVbJO~4Km+zfl9q-KWr zhw|l_w>4RRmE+OoEJE%p&NfB6?w~kWg!Y3fR7+Q(U%6*ErROd@mRUCLL1#eSyht=0 zbcfdNJ)LzOl7&jt$PA!o*+Nc%$J(d+ipLaG!!27K77Ijd^la|s!LePv@THM&h05IM zt?g`gzO@|36nXr3)`fJs1f615tT^!Xf!%Uu*ndf}4FhvWYNEEE@~8jO`0i?h-`+d6`M;5(CSI_P7 zJ&`Hib$#f)-QV3`f>cnoP}%nC>$92REF}+)wKVAbd}~3UvO=+9>)N=`?#CX4O6N2V z3X2}tcLbB}Tm+q8nA>edTG=<-b}d(xy$U(YPppb;XI|Vo@|-=x)A@+|I4^X%mhJ8^ z7TbeOVn?v^*d14+tIc)6bp!9j2k|sMgCE9E;j{P^{2GB1Zek^|hS)&V6CFf~*h6H9 zDdI43oH$QhAa0NaWV)CvC)bi9sgN=9Ao&J)f;>n5LjFbJ)GBHNRY&chbZU&6qTZp7 zQ6Ev4sUN9Z)Lk0Ti|M6w8NHsC=vU}3=vk(asbmf@?=vTutIT!gH|9P|vK(8%HnTo9 z$nIc=*bMt7`!@Rl`w9CQ`#pP;{evszD%WvU+$PS;Xs=ylX d6zB#KkN}6k6qo_$z(sHwd;@NQd+476;a?h=1jhgX diff --git a/WordPress/WordPressTodayWidget/ar.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/ar.lproj/Localizable.strings index 6b807ca0f524fa0c35ea5d0ae4a7cd4fec00fdfd..8cc6173f1faca9ef5f1fcc55b7a86e221f715230 100644 GIT binary patch literal 146 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo124_ z%4Wi*&gRah47^%ONPPpr&u< S9mN0!jEoSPffGu@s7wIcgBg1O diff --git a/WordPress/WordPressTodayWidget/bg.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/bg.lproj/Localizable.strings index a6b06dcc032ca6504b9aff9ce10e64a00e44666e..288d8fceb8e3e6bbfa1fa465cbe02366e29b2fe0 100644 GIT binary patch literal 174 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12-VFH+xeTd5ff9y?jFAkf6C-6MqJV-) X3`Goy3{_yMw;X~}%9{Fa6Z@0^N0}o{ delta 105 zcmdnMxPj3rsURn_xWvHV3L_IU3o9EtM`&1PYI$))SY~l%Nq$jrs842gYH@^fer|4R zUP*B#Lli?kLlQ#~Ln1>JLn=ca!`q4a;u9lfCA@*+xnPkJhKG!i45=J~;tFc|P80i- E0IbX&VE_OC diff --git a/WordPress/WordPressTodayWidget/cy.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/cy.lproj/Localizable.strings index 770148665323711ce2b39396c9232c9e7ea04340..bab21854cd02c457e98967f9b7eea5fb3d0a4c29 100644 GIT binary patch literal 118 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12XDz8mKo}vpHrUBAtjFFm!0Lr_XtQ{TyNVuAtytJ)ZJ delta 77 zcmZo*Y+$rZD#*z!E-^5;!pOwT!pg?X9vYUJT3#FxmRX!xl3!FD>XVtBS{&h=pPQSS fS5h1a6wk}dOHVDDs4vgKAt}GUMD#*z!E-^5;!pOwT!pg?Z5fPSIoLQ1zR2<=)pPQSSS5h46lbM}b92%CH vT3#IClv-SxoRL}-O$w R3}C>>2%#BRp)`!r2LQVx5S0J` literal 84 zcmYc)$jK}&F)+Bo$i&P7!l7ZAspZ8HVVT95CHY0gp+1?}sl^e_`MJ5Nc_qahg5nBl R3}C>>2%#BRp)`!r2LQNM5R3o- diff --git a/WordPress/WordPressTodayWidget/en-CA.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/en-CA.lproj/Localizable.strings index d785417f96fb427ac82dface795edf6982aed1f2..ed5f38f733c56b24dba5bd161ec287b8a22756fb 100644 GIT binary patch literal 84 zcmYc)$jK}&F)+Bo$i&P7!VzJa#hE4fMa2=$`MJ5Nc_qc6KAG96#i3!DspZ8Sf>O$w R3}C>>2%#BRp)`!r2LQVx5S0J` literal 84 zcmYc)$jK}&F)+Bo$i&P7!l7ZAspZ8HVVT95CHY0gp+1?}sl^e_`MJ5Nc_qahg5nBl R3}C>>2%#BRp)`!r2LQNM5R3o- diff --git a/WordPress/WordPressTodayWidget/en-GB.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/en-GB.lproj/Localizable.strings index d785417f96fb427ac82dface795edf6982aed1f2..ed5f38f733c56b24dba5bd161ec287b8a22756fb 100644 GIT binary patch literal 84 zcmYc)$jK}&F)+Bo$i&P7!VzJa#hE4fMa2=$`MJ5Nc_qc6KAG96#i3!DspZ8Sf>O$w R3}C>>2%#BRp)`!r2LQVx5S0J` literal 84 zcmYc)$jK}&F)+Bo$i&P7!l7ZAspZ8HVVT95CHY0gp+1?}sl^e_`MJ5Nc_qahg5nBl R3}C>>2%#BRp)`!r2LQNM5R3o- diff --git a/WordPress/WordPressTodayWidget/es.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/es.lproj/Localizable.strings index e407b594820d6b27e5130ce81bc513f0ca97381d..94fccab34375b0cd16f15a1904abaa1182273062 100644 GIT binary patch literal 128 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12Tgl6D`(l9Cl E04LEOxc~qF literal 129 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UK|mYS)5stUsN3GlbM}b9O0awo12i}f<=6A%L^{DActgv}u+ XrL3uM;~BvK28@glnt>Ba!>C*UM@lQC literal 150 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UK|mYS)5stUsN3GlbM}b9O0awo12+%(o#te04?0_Cr=zTyxR XS5VV;2~1!B14c#&&A^fXmYG^!91)gToLQ1zR2=G)nVni3;hdkFo0?Zr d91&2Inx2!Ik~vXdoP$G9TtQ9W!gXS}0sxE>7oGqB diff --git a/WordPress/WordPressTodayWidget/hu.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/hu.lproj/Localizable.strings index efc11379201aacb32cf414ff151e60d9cb261f11..d227434425b56b940383c2a8e53f6ed2d754cf64 100644 GIT binary patch delta 69 zcmZ3$xPVbVsURn_xWvHV3L_IU3o9Eldqh}fab`(=QE`NGer|4RUP*DNPiA&%acEd( YYI*TQFTIKS((D|9Qp%e8P7~`D0rapHXaE2J delta 69 zcmZ3$xPVbVsURn_xWvHV3L_IU3o9ElduUi@YI$))SY~l%Nq$jrs842gYH@^fer|4R YUPj4&j6Zmu4r%3kZ7WgVZDz>1IP29D?EsYWkKgo(y2X$OxesIH5F* GiUk071S5X{ diff --git a/WordPress/WordPressTodayWidget/is.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/is.lproj/Localizable.strings index ac95671dfbc0e26c1135df8f741f84fcb0cb894c..2e08d2a2b10f0492779d2096a822bc635f461ba8 100644 GIT binary patch delta 97 zcmeBT>|%6GD#*z!E-^5;!pOwT!pg?Z5fPSIoLQ1zR2<=)pPQSSS5h46lbM}b92%CH zT3#IHo?2XzSrp?~l2MwTSe%-hGSOaCB+4x(wWK67FFmn{Lr_XtQ{T)vY+{xI03{9} AWdHyG delta 97 zcmeBT>|(S}D#*z!E-^5;!pOwT!pg?Z5gL}6T3#FxmRX!xl3!FD>XVtBS{&h=pPQSS zS5h41mXlgil9`vDSQO@-T3j;GQB*9(u_U83J+U}7Hzl)(Lr`2nP2b8fWMY;A03p;M AUH||9 diff --git a/WordPress/WordPressTodayWidget/it.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/it.lproj/Localizable.strings index c0bb992c09c80fc786a71f482511ec79edf4092d..7264b8606851c58aebef73fc27117a0b85dcacd6 100644 GIT binary patch literal 120 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12K4D`yV|Fkoba&r oPmKaoi9iLJAs_`X`AiN$aRoJfGenqsio;Gw~1gA>UHEudfm0G|dD5b2aZ)Wet00xYV5SoD#O2a5$0EQtQ ACjbBd literal 118 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UK|mYS)5stUsN3GlbM}b9O0awo12k8 zQE8Q0kldve>fgYcY~TWfxhV#l4IUbNHaNi{D6XKUZ)WSl00xYV5SoD#O2a5$0D2uA A8UO$Q diff --git a/WordPress/WordPressTodayWidget/ko.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/ko.lproj/Localizable.strings index 488e98219b4139b46fe34043359def6e00681ecd..d4d975b8631d3681e2ed6d62dc25e6e712ab7ad6 100644 GIT binary patch delta 84 zcmd1H^Ghno$t*50Fu20V#LU9V#?BEDmRX!xl3!FD;hdkFo0?Zr9O{#qomw0kmYG^! ooV-VKx5e=ZNt=b&F(jYpKI(F8O5)xR9D-8Hn)+teP80nU0Pz7I2><{9 delta 84 zcmd1H^Ghno$t*50Fu20V#LU9V#?BEMmYG^!91)gToLQ1zR2=G)nVni3;hdkFo0?Zr ooVfQx@*d6I7RM(fpXfg7a%@V{X5n=V9D?EsYWhZ&4io(p00AT(_y7O^ diff --git a/WordPress/WordPressTodayWidget/nb.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/nb.lproj/Localizable.strings index 8ff58069b862a7983d177ef1bfe196a295b5f6ea..803bcf9e28f33f53f3d5d2fefa44da413bc06afc 100644 GIT binary patch literal 133 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo1240H&EpW1Qr6VBbYcJlMn(wDzyYOUln($*9USri literal 116 zcmYc)$jK}&F)+Bo$i&RT%Ertd8kU(_UK|mYS)5stUsN3GlbM}b9O0awo12>6BWPpPHRoR2&hMnwVUYnOe*tD6XKUZ|Tec28@glnt=mK!zdpBNv|C0 diff --git a/WordPress/WordPressTodayWidget/pl.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/pl.lproj/Localizable.strings index 3c80436adfaf89447d45c8893527793faa1aa709..6a6a51beb89badedd69f57b4a8ac276752c5cc61 100644 GIT binary patch literal 96 zcmYc)$jK}&F)+Bo$i&RT$jZzT5tdn;S(0B=9O0awo12X<9Gy@xyhEY}kLFyGk diff --git a/WordPress/WordPressTodayWidget/pt-BR.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/pt-BR.lproj/Localizable.strings index 25c6527455523c3d4f101c418bb1011ee59d96a7..d1a3e4bc6088b1e71f58ebf9ae5d14d84cf2a3e2 100644 GIT binary patch delta 90 zcmbQoIFHdXsURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE`NGer|4RUP*DNPiA&%acEd( qYI$)KST-@QBz0n}1V@B(X;DdLO5#L48BPvCDP>K4tH7veSA(tVQA&;Si;UPm2Lne@49Oj;1T#`RgPll62P)b=--zqR- HVvPa-XAU8F literal 156 zcmXxbJqp4=6a?T|e`9H7Yh`QhkU|jKU4qy|*y54wKFO>Ip3@6hc>;TvsMCA{!<;Xj zFqP%QjK-7cY+hI={>It~C23E4kk+%VGz1?L0~`dz6%D%F?%5aK@ZfQ{G%Ba!>DWk&hsK$ literal 148 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UK|mYS)5stUsN3GlbM}b9O0awo12bpc|F@OOhBZOw)gwimo764E89H{^R literal 166 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UK|mYS)5stUsN3GlbM}b9O0awo12|xYTD#*z!E-^5;!pOwT!pg?X9ubyVoLQ1zR2<=)pPQSSS5h46lbM}b92%CH hT3$TSN=rB@DnF?xu_`q$Gm%43N?B9iEplRx0szll85IBk delta 78 zcmeBS>|wM@D#*z!E-^5;!pOwT!pg?X9vYUJT3#FxmRX!xl3!FD>XVtBS{&h=pPQSS hS5h1mm7i3USe2TWnK)5ji-SW@TtQ9WDsW+eQ#AnLq0VEaqxcC$^_*nSV`HX-Z2R>~+cRtBjkr6^Oa6)MqRR{pEv>G@7 delta 111 zcmbQmIE&FLsURn_xWvHV3L_IU3o9EtM`&1PYI$))SY~l%Nq$jrs842gYH@^fer|4R zUP*B(A0wX;pE92apXEe-am{o-EihE#?khD?TBh8z%UqQ2zBKuMv9$o!(x+?>QB4nc7RHGQ}Eiiuqc E0E%!Qp#T5? diff --git a/WordPress/WordPressTodayWidget/zh-Hans.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/zh-Hans.lproj/Localizable.strings index 0031a8d3fcf09691c0d1991169afb0f25a45da01..3b44b9b8eeb4938e63a5d4e883b9ca481eec18d7 100644 GIT binary patch delta 84 zcmd1H^Ghno$t*50Fu20V#LU9V#?BEDmRX!xl3!FD;hdkFo0?Zr9O{#qomw0kmYG^! ooZP)XdQoaYQumSWU5UMM$>~qaxl;=`1f`TU_06p9Ci*D=0PM#eJpcdz delta 84 zcmd1H^Ghno$t*50Fu20V#LU9V#?BEMmYG^!91)gToLQ1zR2=G)nVni3;hdkFo0?Zr ooSgo&oIAB3xqE-~qSS)K-ngXhBi*|=1jQB9^v!G?Ci*D=0N2R&WSPDQoJRSUOA$Pyhf37#9D?EsYWil@P7?zZ03I1082|tP From dc57a07d66873157f3b42108428ea4d6f1fe097a Mon Sep 17 00:00:00 2001 From: Oguz Kocer Date: Fri, 29 Oct 2021 12:50:16 -0400 Subject: [PATCH 19/29] Update metadata translations --- fastlane/metadata/ar-SA/release_notes.txt | 7 +++++++ fastlane/metadata/de-DE/release_notes.txt | 7 +++++++ fastlane/metadata/en-CA/release_notes.txt | 7 +++++++ fastlane/metadata/fr-FR/release_notes.txt | 4 ++-- fastlane/metadata/he/release_notes.txt | 7 +++++++ fastlane/metadata/id/release_notes.txt | 7 +++++++ fastlane/metadata/it/release_notes.txt | 7 +++++++ fastlane/metadata/ja/release_notes.txt | 7 +++++++ fastlane/metadata/ko/release_notes.txt | 7 +++++++ fastlane/metadata/pt-BR/release_notes.txt | 7 +++++++ fastlane/metadata/tr/release_notes.txt | 7 +++++++ fastlane/metadata/zh-Hans/release_notes.txt | 7 +++++++ fastlane/metadata/zh-Hant/release_notes.txt | 7 +++++++ 13 files changed, 86 insertions(+), 2 deletions(-) create mode 100644 fastlane/metadata/ar-SA/release_notes.txt create mode 100644 fastlane/metadata/de-DE/release_notes.txt create mode 100644 fastlane/metadata/en-CA/release_notes.txt create mode 100644 fastlane/metadata/he/release_notes.txt create mode 100644 fastlane/metadata/id/release_notes.txt create mode 100644 fastlane/metadata/it/release_notes.txt create mode 100644 fastlane/metadata/ja/release_notes.txt create mode 100644 fastlane/metadata/ko/release_notes.txt create mode 100644 fastlane/metadata/pt-BR/release_notes.txt create mode 100644 fastlane/metadata/tr/release_notes.txt create mode 100644 fastlane/metadata/zh-Hans/release_notes.txt create mode 100644 fastlane/metadata/zh-Hant/release_notes.txt diff --git a/fastlane/metadata/ar-SA/release_notes.txt b/fastlane/metadata/ar-SA/release_notes.txt new file mode 100644 index 000000000000..f8ad1a175fdc --- /dev/null +++ b/fastlane/metadata/ar-SA/release_notes.txt @@ -0,0 +1,7 @@ +يجعل هذا التحديث تضمين محتوى خارجي على مواقعك أمرًا أكثر سهولة! تقديم مكوِّنات التضمين المخصصة الجديدة الخاصة بفيسبوك وإنستغرام وLoom وSmartframe. بالإضافة إلى ذلك، يكتشف المحرر تلقائيًا عناوين URL القابلة للتضمين التي تلصقها في فقرة فارغة. إلى جانب هذه الميزات الجديدة، أصلحنا مشكلة حيث كان يتعذر تحرير بعض عناوين URL المُضمنة وتعديل حجم المعاينة بحيث سترى المحتوى المضمَّن بالكامل دومًا. + +بمناسبة الحديث عن المكوِّنات، يمكنك الآن تخصيص لون النص والخلفية في المكوِّنات المهيأة والمنسَّقة سابقًا. + +هل تحتاج إلى مساعدة بشأن الوصول إلى مزيد من القراء؟ ستساعدك إشارات تذكيرات التدوين والإشهار الجديدة على الالتزام بجدول نشر ثابت. + +وأخيرًا، قمنا بتحسين دعم أحجام النص الأكبر عند اختيار صفحة رئيسية أو تخطيط صفحة، وأصلحنا قائمة تعليقات الموقع التي لا يتم تحديثها في مناسبات معينة وصقلنا ترويسة الورقة السفلية للنشر المسبق. diff --git a/fastlane/metadata/de-DE/release_notes.txt b/fastlane/metadata/de-DE/release_notes.txt new file mode 100644 index 000000000000..8068b3f8a741 --- /dev/null +++ b/fastlane/metadata/de-DE/release_notes.txt @@ -0,0 +1,7 @@ +Mit diesem Update wird das Einbetten externer Inhalte auf deinen Websites noch einfacher! Neu: die eigenen Embed-Blöcke für Facebook, Instagram, Loom und Smartframe. Außerdem erkennt der Editor einbettbare URLs, die du in einen leeren Absatz einfügst. Abgesehen von diesen neuen Features haben wir ein Problem behoben, bei dem einige eingebettete URLs nicht bearbeitet werden konnten, und das Abschneiden der Vorschau angepasst, damit du immer den vollständigen eingebetteten Inhalt siehst. + +Apropos Blöcke: Du kannst jetzt in den Pullquote- und Vorformatiert-Blöcken den Text und die Hintergrundfarbe anpassen. + +Brauchst du Unterstützung dabei, mehr Leser zu erreichen? Die neuen Publicize- und Blog-Erinnerungen helfen dir, einen konsistenten Veröffentlichungsplan einzuhalten. + +Und schließlich haben wir die Unterstützung für größere Textgrößen bei der Auswahl einer Startseite oder eines Seitenlayouts verbessert, einen Fehler behoben, durch den die Liste der Website-Kommentare in bestimmten Fällen nicht aktualisiert wurde, und den Header des Vorveröffentlichungs-Bottom-Sheets überarbeitet. diff --git a/fastlane/metadata/en-CA/release_notes.txt b/fastlane/metadata/en-CA/release_notes.txt new file mode 100644 index 000000000000..c9bd67ee1862 --- /dev/null +++ b/fastlane/metadata/en-CA/release_notes.txt @@ -0,0 +1,7 @@ +This update makes it even easier to embed external content on your sites! Introducing the new dedicated embed blocks for Facebook, Instagram, Loom, and Smartframe. Plus, the editor automatically detects embeddable URLs you paste into an empty paragraph. Alongside these new features, we fixed an issue where some embedded URLs could not be edited and adjusted the preview cut-off so that you’ll always see the full embedded content. + +Speaking of blocks, you can now customize the text and background color in the Pullquote and Preformatted blocks. + +Need help reaching more readers? The new Publicize and Blogging Reminder nudges will help you stick to a consistent publishing schedule. + +Finally, we improved support for larger text sizes when choosing a homepage or page layout, fixed the site comments list not refreshing on certain occasions, and polished the pre-publishing bottom sheet header. diff --git a/fastlane/metadata/fr-FR/release_notes.txt b/fastlane/metadata/fr-FR/release_notes.txt index 998f0178f625..63f6a8342937 100644 --- a/fastlane/metadata/fr-FR/release_notes.txt +++ b/fastlane/metadata/fr-FR/release_notes.txt @@ -1,7 +1,7 @@ -Cette mise à jour permet d’intégrer encore plus facilement du contenu externe sur vos sites ! Voici les nouveaux blocs d’intégration dédiés pour Facebook, Instagram, Loom et Smartframe. De plus, l’éditeur détecte automatiquement les URL embarquables que vous collez dans un paragraphe vide. En plus de ces nouvelles fonctionnalités, nous avons corrigé un problème où certaines URL embarquées ne pouvaient pas être modifiées et ajusté la coupure de l’aperçu afin que vous puissiez toujours voir l’intégralité du contenu embarqué. +Cette mise à jour permet d’intégrer encore plus facilement du contenu externe sur vos sites ! Voici les nouveaux blocs d’intégration dédiés pour Facebook, Instagram, Loom et Smartframe. De plus, l’éditeur détecte automatiquement les URL embarquables que vous collez dans un paragraphe vide. En plus de ces nouvelles fonctionnalités, nous avons corrigé un problème où certaines URL embarquées ne pouvaient pas être modifiées et ajusté la coupure de l’aperçu afin que vous puissiez toujours voir l’intégralité du contenu embarqué. En ce qui concerne les blocs, vous pouvez désormais personnaliser le texte et la couleur d’arrière-plan dans les blocs Citation et Préformaté. - Avez-vous besoin d’aide pour atteindre davantage de lecteurs ? Les nouveaux assistants Publicize et Rappels vous aideront à respecter un calendrier de publication régulier. +Avez-vous besoin d’aide pour atteindre davantage de public ? Les nouveaux assistants Publicize et Rappels vous aideront à respecter un calendrier de publication régulier. Enfin, nous avons amélioré la prise en charge des tailles de texte plus grandes lors du choix de la page d’accueil ou de la mise en page, corrigé le problème de rafraîchissement de la liste des commentaires du site à certaines occasions et amélioré l’en-tête de la feuille de bas de page avant publication. diff --git a/fastlane/metadata/he/release_notes.txt b/fastlane/metadata/he/release_notes.txt new file mode 100644 index 000000000000..47641665992c --- /dev/null +++ b/fastlane/metadata/he/release_notes.txt @@ -0,0 +1,7 @@ +בעדכון הזה שיפרנו את תהליך הטמעת התוכן החיצוני באתר שלך! אנחנו שמחים להציג בלוקים ייעודיים חדשים להטמעת תוכן של פייסבוק, אינסטגרם, Loom ו-Smartframe. בנוסף, העורך יכול לזהות באופן אוטומטי כתובות URL מוטמעות שהודבקו בפסקה ריקה. לצד האפשרויות החדשות האלו, תיקנו בעיה שמנעה עריכה של כמה כתובות URL והתאמנו את החיתוך של התצוגה המקדימה כדי שהתוכן המוטמע תמיד יוצג במלואו. + +ועוד בנושא בלוקים, עכשיו אפשר לבצע התאמה לטקסט ולצבע הרקע בבלוקים של ציטוטים ו-Preformatted. + +רוצה לקבל עזרה כדי להגיע לעוד קוראים? השיתוף האוטומטי ונדנודים של תזכורות לכתיבה בבלוג יעזרו לך לעמוד בלוח זמנים עקבי לפרסום. + +אחרון חביב, שיפרנו את התמיכה בממדי טקסט גדולים יותר במהלך הבחירה בעמוד הבית או בפריסת עמוד, תיקנו את רשימת התגובות באתר שלא התעדכנה במקרים מסוימים ושיפצנו את הכותרת בגיליון התחתון שלפני הפרסום. diff --git a/fastlane/metadata/id/release_notes.txt b/fastlane/metadata/id/release_notes.txt new file mode 100644 index 000000000000..90cca66b4a81 --- /dev/null +++ b/fastlane/metadata/id/release_notes.txt @@ -0,0 +1,7 @@ +Pembaruan ini mempermudah penyematan konten eksternal pada situs Anda! Memperkenalkan blok sematan khusus baru untuk Facebook, Instagram, Loom, dan Smartframe. Selain itu, editor secara otomatis mendeteksi URL yang dapat disematkan dan Anda tempelkan pada paragraf kosong. Bersama fitur-fitur baru ini, kami memperbaiki masalah terkait sejumlah sematan URL yang tidak dapat disunting dan disesuaikan batas pratinjaunya sehingga Anda akan selalu melihat konten yang disematkan secara penuh. + +Mengenai blok, sekarang Anda dapat menyesuaikan teks dan warna latar belakang di blok Kutipan Besar dan blok Praformat. + +Butuh bantuan untuk menjangkau lebih banyak pembaca? Peningkatan Pengingat Publikasikan dan Blogging akan membantu Anda menjalankan jadwal pos yang konsisten. + +Terakhir, kami meningkatkan dukungan untuk ukuran teks yang lebih besar saat menentukan beranda atau tata letak halaman, memperbaiki daftar komentar situs yang tidak disegarkan pada kesempatan tertentu, dan mempercantik header lembar bawah prapublikasi. diff --git a/fastlane/metadata/it/release_notes.txt b/fastlane/metadata/it/release_notes.txt new file mode 100644 index 000000000000..63e5a403017b --- /dev/null +++ b/fastlane/metadata/it/release_notes.txt @@ -0,0 +1,7 @@ +Questo aggiornamento rende ancora più semplice incorporare contenuti esterni nei tuoi siti. Presentazione dei nuovi blocchi Incorporamenti dedicati per Facebook, Instagram, Loom e Smartframe. Inoltre, l'editor rileva automaticamente gli URL incorporabili che incolli in un paragrafo vuoto. Oltre a queste nuove funzionalità, abbiamo risolto un problema che non permetteva di poter modificare alcuni URL incorporati e di regolare l'interruzione dell'anteprima in modo da visualizzare sempre l'intero contenuto incorporato. + +Parlando di blocchi, ora puoi personalizzare il testo e il colore di sfondo nei blocchi Citazione evidenziata e Preformattato. + +Hai bisogno di aiuto per raggiungere più lettori? I nuovi suggerimenti di Pubblicizza e Promemoria relativi al blog ti aiuteranno a rispettare un programma di pubblicazione coerente. + +Infine, abbiamo migliorato il supporto relativo alle dimensioni del testo più grandi quando si sceglie una homepage o un layout di pagina, corretto l'elenco dei commenti del sito che non si aggiornava in determinate occasioni e dato un tocco di classe all'intestazione del foglio nella parte inferiore prima della pubblicazione. diff --git a/fastlane/metadata/ja/release_notes.txt b/fastlane/metadata/ja/release_notes.txt new file mode 100644 index 000000000000..711a823afb64 --- /dev/null +++ b/fastlane/metadata/ja/release_notes.txt @@ -0,0 +1,7 @@ +今回の更新でサイトへの外部コンテンツの埋め込みがさらに簡単になります。 Facebook、Instagram、Loom、SmartFrame 専用の新しい埋め込みブロックが利用可能になりました。 さらに、空の段落に URL をペーストすると、エディターによって埋め込み可能な URL が自動的に検出されます。 こうした新機能に加え、一部の埋め込み URL を編集できないバグの修正、プレビューの途切れの調整を行っており、いつでも埋め込みコンテンツの全体を確認できます。 + +ブロックについては、プルクオートブロックと整形済みブロックで、テキスト色と背景色をカスタマイズできるようになりました。 + +読者を増やすためのサポートが必要ですか ? 新しいパブリサイズとブログ投稿のリマインダー通知を使えば、一定の投稿スケジュールを維持するのに役立ちます。 + +最後に、ホームページまたは固定ページのレイアウトを選ぶ際の大きいテキストサイズへのサポート改善、特定の場面でサイトのコメント一覧が更新されない不具合の修正、投稿前のボトムシートヘッダーの修正を実施しています。 diff --git a/fastlane/metadata/ko/release_notes.txt b/fastlane/metadata/ko/release_notes.txt new file mode 100644 index 000000000000..68c999c3631f --- /dev/null +++ b/fastlane/metadata/ko/release_notes.txt @@ -0,0 +1,7 @@ +이 업데이트를 통해 사이트에 외부 콘텐츠를 훨씬 쉽게 임베드할 수 있습니다! 새로운 페이스북, 인스타그램 Loom 및 Smartframe 전용 임베드 블록을 도입했습니다. 또한, 빈 문단에 붙여넣는 임베드 가능한 URL을 편집기에서 자동으로 감지합니다. 이러한 새로운 기능과 함께 임베드된 일부 URL을 편집할 수 없었던 문제를 해결하고, 항상 임베드된 전체 콘텐츠가 표시되도록 미리보기 자르기를 조정했습니다. + +블록 자체의 경우 이제는 요약글 블록과 정형화된 형식 블록에서 텍스트와 배경 색상을 사용자 정의할 수 있습니다. + +더 많은 독자에게 도달하기를 원하시나요? 일관된 발행 일정을 유지하는 데 도움이 되도록 배포 기능과 블로깅 알림을 새롭게 수정했습니다. + +마지막으로, 홈페이지 또는 페이지 레이아웃을 선택할 때 더 큰 텍스트 크기에 대한 지원을 개선하고, 특정 경우에 사이트 댓글 목록이 새로 고쳐지지 않는 문제를 해결하고, 발행 전 하단 시트 헤더를 수정했습니다. diff --git a/fastlane/metadata/pt-BR/release_notes.txt b/fastlane/metadata/pt-BR/release_notes.txt new file mode 100644 index 000000000000..9719690f0493 --- /dev/null +++ b/fastlane/metadata/pt-BR/release_notes.txt @@ -0,0 +1,7 @@ +Com esta atualização, ficou ainda mais fácil incorporar conteúdo externo aos seus sites! Apresentamos os novos blocos de mídia incorporada dedicados para Facebook, Instagram, Loom e SmartFrame. Além disso, o editor detecta automaticamente as URLs incorporáveis que você cola em um parágrafo vazio. Junto com essas funcionalidades, outra novidade é a correção de um erro que impedia as URLs incorporadas de serem editadas e o ajuste da visualização cortada para que você veja sempre o todo o conteúdo. + +Falando em blocos, agora você pode personalizar o texto e a cor de fundo nos blocos de citação destacada e pré-formatado. + +Precisa de ajuda para atrair mais leitores? As novas funções Lembrete de publicação e Publicize ajudam você a manter um cronograma consistente de publicação. + +Por fim, aprimoramos a compatibilidade com tamanhos de texto maiores na escolha de um layout de página, corrigimos a lista de comentários no site, que não estava atualizando em certas situações, e aperfeiçoamos o cabeçalho de pré-publicação no fim da página. diff --git a/fastlane/metadata/tr/release_notes.txt b/fastlane/metadata/tr/release_notes.txt new file mode 100644 index 000000000000..234cca5420f6 --- /dev/null +++ b/fastlane/metadata/tr/release_notes.txt @@ -0,0 +1,7 @@ +Bu güncelleme sitelerinize harici içerik gömmeyi daha da kolaylaştırıyor! Facebook, Instagram, Loom ve Smartframe'e yönelik yeni ve özel gömülü bloklarla tanışın. Ayrıca düzenleyici boş bir paragrafa yapıştırdığınız gömülebilir URL'leri otomatik olarak algılar. Bu yeni özelliklerin yanı sıra, bazı gömülü URL'lerin düzenlenememesine neden olan sorunu düzelttik ve her zaman gömülü içeriğin tamamını görebilmeniz için önizleme kırpmasını ayarladık. + +Bloklardan bahsetmişken, şimdi artık Alıntı ve Önceden Biçimlendirilmiş bloklardaki metni ve arka plan rengini özelleştirebilirsiniz. + +Daha fazla okuyucuya ulaşmak için yardıma mı ihtiyacınız var? Yeni Duyuru ve Blog Oluşturma Hatırlatıcısı öğeleri tutarlı bir yayın planına bağlı kalmanıza yardımcı olacaktır. + +Son olarak, bir ana sayfa veya sayfa düzeni seçerken daha büyük metin boyutları için desteği iyileştirdik, site yorumları listesinin belirli durumlarda yenilenmemesi ile ilgili hatayı düzelttik ve yayın öncesi alt sayfa üst bilgisini yeniledik. diff --git a/fastlane/metadata/zh-Hans/release_notes.txt b/fastlane/metadata/zh-Hans/release_notes.txt new file mode 100644 index 000000000000..88089bd6b2b2 --- /dev/null +++ b/fastlane/metadata/zh-Hans/release_notes.txt @@ -0,0 +1,7 @@ +经过此次更新后,您可以更容易地在站点上嵌入外部内容! 推出面向 Facebook、Instagram、Loom 和 Smartframe 的新的专用嵌入区块。 此外,编辑器会自动检测粘贴到空段落中的可嵌入 URL。 除了这些新功能外,我们还修复了导致无法对部分嵌入的 URL 进行编辑的问题,并调整了预览截断的问题,以便您始终可以看到完整的嵌入内容。 + +现在,您可以自定义醒目引文和预格式化区块中的文本和背景颜色。 + +需要帮助您吸引更多读者? 新的 Publicize 和博客发布提醒功能将帮助您保持一致的发布计划。 + +最后,我们改进了在选择主页或页面布局时对较大文本大小的支持、修复了某些情况下站点评论列表不能刷新的问题,并完善了预发布底部表页标题。 diff --git a/fastlane/metadata/zh-Hant/release_notes.txt b/fastlane/metadata/zh-Hant/release_notes.txt new file mode 100644 index 000000000000..9c02b651938d --- /dev/null +++ b/fastlane/metadata/zh-Hant/release_notes.txt @@ -0,0 +1,7 @@ +本次更新讓你能更輕鬆地在網站嵌入外部內容! 我們推出 Facebook、Instagram、Loom 和 Smartframe 的全新專屬嵌入區塊。 另外,編輯器能自動偵測到貼至空白段落的可嵌入 URL。 除了這些新功能外,我們修正了無法編輯部分嵌入 URL 的錯誤,並調整預覽裁切情況,讓你隨時查看完整嵌入內容。 + +至於區塊,你現在可在重要引述和預設格式區塊中自訂文字和背景色彩。 + +需要協助以利觸及更多讀者嗎? 全新的 Publicize 和網誌提醒提示,可協助您按照排程定期發文。 + +最後,我們改善了選擇首頁或頁面版面配置時的大型文字支援、修正網站留言清單在某些情況下未重新整理的問題,並修飾了發佈前底部工作表標題。 From 3fffe7640e20a308b33d52cd2e9d048535408502 Mon Sep 17 00:00:00 2001 From: Oguz Kocer Date: Fri, 29 Oct 2021 12:50:25 -0400 Subject: [PATCH 20/29] Update Jetpack metadata translations --- fastlane/jetpack_metadata/ar-SA/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/de-DE/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/es-ES/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/fr-FR/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/he/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/id/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/it/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/ja/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/ko/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/nl-NL/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/ru/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/sv/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/tr/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/zh-Hans/release_notes.txt | 7 +++++++ fastlane/jetpack_metadata/zh-Hant/release_notes.txt | 7 +++++++ 15 files changed, 105 insertions(+) create mode 100644 fastlane/jetpack_metadata/ar-SA/release_notes.txt create mode 100644 fastlane/jetpack_metadata/de-DE/release_notes.txt create mode 100644 fastlane/jetpack_metadata/es-ES/release_notes.txt create mode 100644 fastlane/jetpack_metadata/fr-FR/release_notes.txt create mode 100644 fastlane/jetpack_metadata/he/release_notes.txt create mode 100644 fastlane/jetpack_metadata/id/release_notes.txt create mode 100644 fastlane/jetpack_metadata/it/release_notes.txt create mode 100644 fastlane/jetpack_metadata/ja/release_notes.txt create mode 100644 fastlane/jetpack_metadata/ko/release_notes.txt create mode 100644 fastlane/jetpack_metadata/nl-NL/release_notes.txt create mode 100644 fastlane/jetpack_metadata/ru/release_notes.txt create mode 100644 fastlane/jetpack_metadata/sv/release_notes.txt create mode 100644 fastlane/jetpack_metadata/tr/release_notes.txt create mode 100644 fastlane/jetpack_metadata/zh-Hans/release_notes.txt create mode 100644 fastlane/jetpack_metadata/zh-Hant/release_notes.txt diff --git a/fastlane/jetpack_metadata/ar-SA/release_notes.txt b/fastlane/jetpack_metadata/ar-SA/release_notes.txt new file mode 100644 index 000000000000..f8ad1a175fdc --- /dev/null +++ b/fastlane/jetpack_metadata/ar-SA/release_notes.txt @@ -0,0 +1,7 @@ +يجعل هذا التحديث تضمين محتوى خارجي على مواقعك أمرًا أكثر سهولة! تقديم مكوِّنات التضمين المخصصة الجديدة الخاصة بفيسبوك وإنستغرام وLoom وSmartframe. بالإضافة إلى ذلك، يكتشف المحرر تلقائيًا عناوين URL القابلة للتضمين التي تلصقها في فقرة فارغة. إلى جانب هذه الميزات الجديدة، أصلحنا مشكلة حيث كان يتعذر تحرير بعض عناوين URL المُضمنة وتعديل حجم المعاينة بحيث سترى المحتوى المضمَّن بالكامل دومًا. + +بمناسبة الحديث عن المكوِّنات، يمكنك الآن تخصيص لون النص والخلفية في المكوِّنات المهيأة والمنسَّقة سابقًا. + +هل تحتاج إلى مساعدة بشأن الوصول إلى مزيد من القراء؟ ستساعدك إشارات تذكيرات التدوين والإشهار الجديدة على الالتزام بجدول نشر ثابت. + +وأخيرًا، قمنا بتحسين دعم أحجام النص الأكبر عند اختيار صفحة رئيسية أو تخطيط صفحة، وأصلحنا قائمة تعليقات الموقع التي لا يتم تحديثها في مناسبات معينة وصقلنا ترويسة الورقة السفلية للنشر المسبق. diff --git a/fastlane/jetpack_metadata/de-DE/release_notes.txt b/fastlane/jetpack_metadata/de-DE/release_notes.txt new file mode 100644 index 000000000000..8068b3f8a741 --- /dev/null +++ b/fastlane/jetpack_metadata/de-DE/release_notes.txt @@ -0,0 +1,7 @@ +Mit diesem Update wird das Einbetten externer Inhalte auf deinen Websites noch einfacher! Neu: die eigenen Embed-Blöcke für Facebook, Instagram, Loom und Smartframe. Außerdem erkennt der Editor einbettbare URLs, die du in einen leeren Absatz einfügst. Abgesehen von diesen neuen Features haben wir ein Problem behoben, bei dem einige eingebettete URLs nicht bearbeitet werden konnten, und das Abschneiden der Vorschau angepasst, damit du immer den vollständigen eingebetteten Inhalt siehst. + +Apropos Blöcke: Du kannst jetzt in den Pullquote- und Vorformatiert-Blöcken den Text und die Hintergrundfarbe anpassen. + +Brauchst du Unterstützung dabei, mehr Leser zu erreichen? Die neuen Publicize- und Blog-Erinnerungen helfen dir, einen konsistenten Veröffentlichungsplan einzuhalten. + +Und schließlich haben wir die Unterstützung für größere Textgrößen bei der Auswahl einer Startseite oder eines Seitenlayouts verbessert, einen Fehler behoben, durch den die Liste der Website-Kommentare in bestimmten Fällen nicht aktualisiert wurde, und den Header des Vorveröffentlichungs-Bottom-Sheets überarbeitet. diff --git a/fastlane/jetpack_metadata/es-ES/release_notes.txt b/fastlane/jetpack_metadata/es-ES/release_notes.txt new file mode 100644 index 000000000000..8c788de5af13 --- /dev/null +++ b/fastlane/jetpack_metadata/es-ES/release_notes.txt @@ -0,0 +1,7 @@ +Con esta actualización, será incluso más fácil incrustar contenido externo en tus sitios. Te presentamos los nuevos bloques de incrustar específicos para Facebook, Instagram, Loom y Smartframe. Además, el editor detecta automáticamente las URL que se puedan incrustar cuando las pegues en un párrafo vacío. Junto con estas funciones nuevas, también hemos solucionado un problema por el que algunas URL incrustadas no se podían editar y hemos ajustado el área que se recorta de la vista previa para que veas siempre el contenido incrustado completo. + +Por cierto, hablando de bloques, ahora puedes personalizar el texto y el color de fondo de los bloques Párrafo de cita y Preformateados. + +¿Necesitas ayuda para llegar a más lectores? Los nuevos avisos de recordatorios de blogueo y de difundir te ayudarán a ceñirte a una programación de publicaciones continua. + +Para terminar, hemos mejorado la asistencia para los tamaños de texto grandes al elegir una página de inicio o un diseño de página, hemos arreglado el problema por el que la lista de comentarios a veces no se actualizaba y hemos mejorado el encabezado de la hoja inferior previa a la publicación. diff --git a/fastlane/jetpack_metadata/fr-FR/release_notes.txt b/fastlane/jetpack_metadata/fr-FR/release_notes.txt new file mode 100644 index 000000000000..eca739f48f3b --- /dev/null +++ b/fastlane/jetpack_metadata/fr-FR/release_notes.txt @@ -0,0 +1,7 @@ +Cette mise à jour facilite encore plus l’intégration de contenu externe sur vos sites ! Présentation des nouveaux blocs de contenu embarqué dédiés pour Facebook, Instagram, Loom et Smartframe. De plus, l’éditeur détecte automatiquement les URL intégrables que vous collez dans un paragraphe vide. En plus de ces nouvelles fonctionnalités, nous avons corrigé un problème d’impossibilité de modifier certaines URL intégrées et nous avons réglé la coupure aléatoire de l’aperçu afin que vous puissiez toujours voir l’ensemble du contenu embarqué. + +Concernant les blocs, vous pouvez désormais personnaliser le texte et la couleur d’arrière-plan dans les blocs de citation en exergue et préformatés. + +Besoin d’aide pour toucher plus de lecteurs ? Les nouveaux coups de pouce Publicize et Rappel de blog vous aideront à respecter un planning de publication cohérent. + +Enfin, nous avons amélioré la prise en charge des tailles de texte plus grandes lors du choix d’une page d’accueil ou d’une mise en page, corrigé la liste des commentaires du site qui ne s’actualisait pas à certaines occasions et peaufiné l’en-tête de la feuille du bas avant la publication. diff --git a/fastlane/jetpack_metadata/he/release_notes.txt b/fastlane/jetpack_metadata/he/release_notes.txt new file mode 100644 index 000000000000..47641665992c --- /dev/null +++ b/fastlane/jetpack_metadata/he/release_notes.txt @@ -0,0 +1,7 @@ +בעדכון הזה שיפרנו את תהליך הטמעת התוכן החיצוני באתר שלך! אנחנו שמחים להציג בלוקים ייעודיים חדשים להטמעת תוכן של פייסבוק, אינסטגרם, Loom ו-Smartframe. בנוסף, העורך יכול לזהות באופן אוטומטי כתובות URL מוטמעות שהודבקו בפסקה ריקה. לצד האפשרויות החדשות האלו, תיקנו בעיה שמנעה עריכה של כמה כתובות URL והתאמנו את החיתוך של התצוגה המקדימה כדי שהתוכן המוטמע תמיד יוצג במלואו. + +ועוד בנושא בלוקים, עכשיו אפשר לבצע התאמה לטקסט ולצבע הרקע בבלוקים של ציטוטים ו-Preformatted. + +רוצה לקבל עזרה כדי להגיע לעוד קוראים? השיתוף האוטומטי ונדנודים של תזכורות לכתיבה בבלוג יעזרו לך לעמוד בלוח זמנים עקבי לפרסום. + +אחרון חביב, שיפרנו את התמיכה בממדי טקסט גדולים יותר במהלך הבחירה בעמוד הבית או בפריסת עמוד, תיקנו את רשימת התגובות באתר שלא התעדכנה במקרים מסוימים ושיפצנו את הכותרת בגיליון התחתון שלפני הפרסום. diff --git a/fastlane/jetpack_metadata/id/release_notes.txt b/fastlane/jetpack_metadata/id/release_notes.txt new file mode 100644 index 000000000000..90cca66b4a81 --- /dev/null +++ b/fastlane/jetpack_metadata/id/release_notes.txt @@ -0,0 +1,7 @@ +Pembaruan ini mempermudah penyematan konten eksternal pada situs Anda! Memperkenalkan blok sematan khusus baru untuk Facebook, Instagram, Loom, dan Smartframe. Selain itu, editor secara otomatis mendeteksi URL yang dapat disematkan dan Anda tempelkan pada paragraf kosong. Bersama fitur-fitur baru ini, kami memperbaiki masalah terkait sejumlah sematan URL yang tidak dapat disunting dan disesuaikan batas pratinjaunya sehingga Anda akan selalu melihat konten yang disematkan secara penuh. + +Mengenai blok, sekarang Anda dapat menyesuaikan teks dan warna latar belakang di blok Kutipan Besar dan blok Praformat. + +Butuh bantuan untuk menjangkau lebih banyak pembaca? Peningkatan Pengingat Publikasikan dan Blogging akan membantu Anda menjalankan jadwal pos yang konsisten. + +Terakhir, kami meningkatkan dukungan untuk ukuran teks yang lebih besar saat menentukan beranda atau tata letak halaman, memperbaiki daftar komentar situs yang tidak disegarkan pada kesempatan tertentu, dan mempercantik header lembar bawah prapublikasi. diff --git a/fastlane/jetpack_metadata/it/release_notes.txt b/fastlane/jetpack_metadata/it/release_notes.txt new file mode 100644 index 000000000000..63e5a403017b --- /dev/null +++ b/fastlane/jetpack_metadata/it/release_notes.txt @@ -0,0 +1,7 @@ +Questo aggiornamento rende ancora più semplice incorporare contenuti esterni nei tuoi siti. Presentazione dei nuovi blocchi Incorporamenti dedicati per Facebook, Instagram, Loom e Smartframe. Inoltre, l'editor rileva automaticamente gli URL incorporabili che incolli in un paragrafo vuoto. Oltre a queste nuove funzionalità, abbiamo risolto un problema che non permetteva di poter modificare alcuni URL incorporati e di regolare l'interruzione dell'anteprima in modo da visualizzare sempre l'intero contenuto incorporato. + +Parlando di blocchi, ora puoi personalizzare il testo e il colore di sfondo nei blocchi Citazione evidenziata e Preformattato. + +Hai bisogno di aiuto per raggiungere più lettori? I nuovi suggerimenti di Pubblicizza e Promemoria relativi al blog ti aiuteranno a rispettare un programma di pubblicazione coerente. + +Infine, abbiamo migliorato il supporto relativo alle dimensioni del testo più grandi quando si sceglie una homepage o un layout di pagina, corretto l'elenco dei commenti del sito che non si aggiornava in determinate occasioni e dato un tocco di classe all'intestazione del foglio nella parte inferiore prima della pubblicazione. diff --git a/fastlane/jetpack_metadata/ja/release_notes.txt b/fastlane/jetpack_metadata/ja/release_notes.txt new file mode 100644 index 000000000000..711a823afb64 --- /dev/null +++ b/fastlane/jetpack_metadata/ja/release_notes.txt @@ -0,0 +1,7 @@ +今回の更新でサイトへの外部コンテンツの埋め込みがさらに簡単になります。 Facebook、Instagram、Loom、SmartFrame 専用の新しい埋め込みブロックが利用可能になりました。 さらに、空の段落に URL をペーストすると、エディターによって埋め込み可能な URL が自動的に検出されます。 こうした新機能に加え、一部の埋め込み URL を編集できないバグの修正、プレビューの途切れの調整を行っており、いつでも埋め込みコンテンツの全体を確認できます。 + +ブロックについては、プルクオートブロックと整形済みブロックで、テキスト色と背景色をカスタマイズできるようになりました。 + +読者を増やすためのサポートが必要ですか ? 新しいパブリサイズとブログ投稿のリマインダー通知を使えば、一定の投稿スケジュールを維持するのに役立ちます。 + +最後に、ホームページまたは固定ページのレイアウトを選ぶ際の大きいテキストサイズへのサポート改善、特定の場面でサイトのコメント一覧が更新されない不具合の修正、投稿前のボトムシートヘッダーの修正を実施しています。 diff --git a/fastlane/jetpack_metadata/ko/release_notes.txt b/fastlane/jetpack_metadata/ko/release_notes.txt new file mode 100644 index 000000000000..68c999c3631f --- /dev/null +++ b/fastlane/jetpack_metadata/ko/release_notes.txt @@ -0,0 +1,7 @@ +이 업데이트를 통해 사이트에 외부 콘텐츠를 훨씬 쉽게 임베드할 수 있습니다! 새로운 페이스북, 인스타그램 Loom 및 Smartframe 전용 임베드 블록을 도입했습니다. 또한, 빈 문단에 붙여넣는 임베드 가능한 URL을 편집기에서 자동으로 감지합니다. 이러한 새로운 기능과 함께 임베드된 일부 URL을 편집할 수 없었던 문제를 해결하고, 항상 임베드된 전체 콘텐츠가 표시되도록 미리보기 자르기를 조정했습니다. + +블록 자체의 경우 이제는 요약글 블록과 정형화된 형식 블록에서 텍스트와 배경 색상을 사용자 정의할 수 있습니다. + +더 많은 독자에게 도달하기를 원하시나요? 일관된 발행 일정을 유지하는 데 도움이 되도록 배포 기능과 블로깅 알림을 새롭게 수정했습니다. + +마지막으로, 홈페이지 또는 페이지 레이아웃을 선택할 때 더 큰 텍스트 크기에 대한 지원을 개선하고, 특정 경우에 사이트 댓글 목록이 새로 고쳐지지 않는 문제를 해결하고, 발행 전 하단 시트 헤더를 수정했습니다. diff --git a/fastlane/jetpack_metadata/nl-NL/release_notes.txt b/fastlane/jetpack_metadata/nl-NL/release_notes.txt new file mode 100644 index 000000000000..16faaffcdb77 --- /dev/null +++ b/fastlane/jetpack_metadata/nl-NL/release_notes.txt @@ -0,0 +1,7 @@ +Deze update maakt het nog eenvoudiger om externe content in te sluiten op je sites! Maak kennis met de nieuwe speciale insluitblokken voor Facebook, Instagram, Loom en Smartframe. Daarbij detecteert de editor automatisch insluitbare URL's die je in lege paragrafen plakt. Naast het toevoegen van deze nieuwe functies, hebben we een probleem opgelost met het niet kunnen bewerken van sommige ingesloten URL's. Ook hebben we het bijsnijden van de voorbeeldweergave aangepast, zodat je altijd de volledige ingesloten content ziet. + +Over blokken gesproken; je kunt nu de tekst en de achtergrondkleur aanpassen in de Pullquote- en vooraf ingestelde blokken. + +Wil je meer lezers bereiken? De nieuwe Publiceren- en Blog-herinneringsmeldingen zorgen ervoor dat je volgens een consistent schema publiceert. + +Ten slotte hebben we de ondersteuning van grotere lettertypen verbeterd tijdens het kiezen van een startpagina of pagina-lay-out, ervoor gezorgd dat de opmerkingenlijst op de site nu altijd wordt vernieuwd en de pre-publiceren-footer van de sheet wat opgepoetst. diff --git a/fastlane/jetpack_metadata/ru/release_notes.txt b/fastlane/jetpack_metadata/ru/release_notes.txt new file mode 100644 index 000000000000..5be2098e5601 --- /dev/null +++ b/fastlane/jetpack_metadata/ru/release_notes.txt @@ -0,0 +1,7 @@ +С этим обновлением вставлять внешнее содержимое на сайтах стало ещё проще! Представляем новые блоки "Вставка" для Facebook, Instagram, Loom и Smartframe. Теперь редактор автоматически обнаруживает внедряемые URL-адреса, которые вы вставляете в пустой абзац. Помимо добавления функций, мы исправили проблему, из-за которой не удавалось изменить некоторые внедрённые URL-адреса, а также скорректировали обрезку в режиме предварительного просмотра, чтобы вам всегда было видно внедрённое содержимое целиком. + +Что касается блоков, теперь вы можете настраивать текст и цвет фона в блоках "Выдержка" и "Форматированный". + +Хотите расширить круг читателей? Новые уведомления "Публикация" и "Напоминание о блоге" помогут вам придерживаться графика публикаций. + +Мы улучшили поддержку текста более крупного размера при выборе макета главной и других страниц, исправили список комментариев на сайте, который не обновлялся в некоторых случаях, и доработали заголовок нижнего листа предварительной публикации. diff --git a/fastlane/jetpack_metadata/sv/release_notes.txt b/fastlane/jetpack_metadata/sv/release_notes.txt new file mode 100644 index 000000000000..da8489aaafe9 --- /dev/null +++ b/fastlane/jetpack_metadata/sv/release_notes.txt @@ -0,0 +1,7 @@ +Den här uppdateringen gör det ännu enklare att bädda in externt innehåll på dina webbplatser! Vi introducerar nya dedikerade inbäddningsblock för Facebook, Instagram, Loom och Smartframe. Dessutom detekterar redigeraren nu automatiskt inbäddningsbara URL:er som klistras in i ett tomt stycke. Utöver dessa nya funktioner har vi även åtgärdat ett problem som gjorde att vissa inbäddade URL:er inte gick att redigera och justerat beskärningen på förhandsgranskningar, så att du alltid kommer att kunna se hela det inbäddade innehållet. + +På tal om block kan du nu anpassa texten och bakgrundsfärgen i markerat citat-block och förformaterade block. + +Behöver du hjälp med att nå fler läsare? De nya Offentliggör- och Blogga-påminnelseknuffarna hjälper dig att hålla dig till ett konsekvent publiceringsschema. + +Slutligen har vi förbättrat stödet för större textstorlekar när du väljer en startsides- eller sidlayout, åtgärdat ett problem som gjorde att listan över webbplatskommentarer inte alltid uppdaterades samt snyggat till rubriken för det nedre bladet vid förpublicering. diff --git a/fastlane/jetpack_metadata/tr/release_notes.txt b/fastlane/jetpack_metadata/tr/release_notes.txt new file mode 100644 index 000000000000..234cca5420f6 --- /dev/null +++ b/fastlane/jetpack_metadata/tr/release_notes.txt @@ -0,0 +1,7 @@ +Bu güncelleme sitelerinize harici içerik gömmeyi daha da kolaylaştırıyor! Facebook, Instagram, Loom ve Smartframe'e yönelik yeni ve özel gömülü bloklarla tanışın. Ayrıca düzenleyici boş bir paragrafa yapıştırdığınız gömülebilir URL'leri otomatik olarak algılar. Bu yeni özelliklerin yanı sıra, bazı gömülü URL'lerin düzenlenememesine neden olan sorunu düzelttik ve her zaman gömülü içeriğin tamamını görebilmeniz için önizleme kırpmasını ayarladık. + +Bloklardan bahsetmişken, şimdi artık Alıntı ve Önceden Biçimlendirilmiş bloklardaki metni ve arka plan rengini özelleştirebilirsiniz. + +Daha fazla okuyucuya ulaşmak için yardıma mı ihtiyacınız var? Yeni Duyuru ve Blog Oluşturma Hatırlatıcısı öğeleri tutarlı bir yayın planına bağlı kalmanıza yardımcı olacaktır. + +Son olarak, bir ana sayfa veya sayfa düzeni seçerken daha büyük metin boyutları için desteği iyileştirdik, site yorumları listesinin belirli durumlarda yenilenmemesi ile ilgili hatayı düzelttik ve yayın öncesi alt sayfa üst bilgisini yeniledik. diff --git a/fastlane/jetpack_metadata/zh-Hans/release_notes.txt b/fastlane/jetpack_metadata/zh-Hans/release_notes.txt new file mode 100644 index 000000000000..88089bd6b2b2 --- /dev/null +++ b/fastlane/jetpack_metadata/zh-Hans/release_notes.txt @@ -0,0 +1,7 @@ +经过此次更新后,您可以更容易地在站点上嵌入外部内容! 推出面向 Facebook、Instagram、Loom 和 Smartframe 的新的专用嵌入区块。 此外,编辑器会自动检测粘贴到空段落中的可嵌入 URL。 除了这些新功能外,我们还修复了导致无法对部分嵌入的 URL 进行编辑的问题,并调整了预览截断的问题,以便您始终可以看到完整的嵌入内容。 + +现在,您可以自定义醒目引文和预格式化区块中的文本和背景颜色。 + +需要帮助您吸引更多读者? 新的 Publicize 和博客发布提醒功能将帮助您保持一致的发布计划。 + +最后,我们改进了在选择主页或页面布局时对较大文本大小的支持、修复了某些情况下站点评论列表不能刷新的问题,并完善了预发布底部表页标题。 diff --git a/fastlane/jetpack_metadata/zh-Hant/release_notes.txt b/fastlane/jetpack_metadata/zh-Hant/release_notes.txt new file mode 100644 index 000000000000..9c02b651938d --- /dev/null +++ b/fastlane/jetpack_metadata/zh-Hant/release_notes.txt @@ -0,0 +1,7 @@ +本次更新讓你能更輕鬆地在網站嵌入外部內容! 我們推出 Facebook、Instagram、Loom 和 Smartframe 的全新專屬嵌入區塊。 另外,編輯器能自動偵測到貼至空白段落的可嵌入 URL。 除了這些新功能外,我們修正了無法編輯部分嵌入 URL 的錯誤,並調整預覽裁切情況,讓你隨時查看完整嵌入內容。 + +至於區塊,你現在可在重要引述和預設格式區塊中自訂文字和背景色彩。 + +需要協助以利觸及更多讀者嗎? 全新的 Publicize 和網誌提醒提示,可協助您按照排程定期發文。 + +最後,我們改善了選擇首頁或頁面版面配置時的大型文字支援、修正網站留言清單在某些情況下未重新整理的問題,並修飾了發佈前底部工作表標題。 From db41dd5c567d2a32c7ad3899d676e9eaa825e14e Mon Sep 17 00:00:00 2001 From: Oguz Kocer Date: Fri, 29 Oct 2021 12:50:25 -0400 Subject: [PATCH 21/29] 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 f31c4e246f75..0ebf47eb6214 100644 --- a/config/Version.internal.xcconfig +++ b/config/Version.internal.xcconfig @@ -6,4 +6,4 @@ VERSION_SHORT=18.5 // build for the day so I bumped it to 10/02. On 10/04 we'll code freeze 18.4 // and this should be the very last build for 18.3, so we should be fine. // – Gio -VERSION_LONG=18.5.0.20211026 +VERSION_LONG=18.5.0.20211029 diff --git a/config/Version.public.xcconfig b/config/Version.public.xcconfig index f7ccc4a0f75a..1769ed0a6b6a 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,4 +1,4 @@ VERSION_SHORT=18.5 // Public long version example: VERSION_LONG=9.9.0.0 -VERSION_LONG=18.5.0.4 +VERSION_LONG=18.5.0.5 From 73737bd0f54f5704639018bbc2e73d2c1a110373 Mon Sep 17 00:00:00 2001 From: Oguz Kocer Date: Fri, 29 Oct 2021 13:04:54 -0400 Subject: [PATCH 22/29] Update translations --- .../ar.lproj/Localizable.strings | Bin 4619 -> 4619 bytes .../bg.lproj/Localizable.strings | Bin 3614 -> 3614 bytes .../cs.lproj/Localizable.strings | Bin 4727 -> 4727 bytes .../cy.lproj/Localizable.strings | Bin 3239 -> 3239 bytes .../da.lproj/Localizable.strings | Bin 3228 -> 3228 bytes .../de.lproj/Localizable.strings | Bin 4917 -> 4917 bytes .../en-AU.lproj/Localizable.strings | Bin 3057 -> 3057 bytes .../en-CA.lproj/Localizable.strings | Bin 3123 -> 3123 bytes .../en-GB.lproj/Localizable.strings | Bin 3067 -> 3067 bytes .../es.lproj/Localizable.strings | Bin 4114 -> 4114 bytes .../fr.lproj/Localizable.strings | Bin 5336 -> 5336 bytes .../he.lproj/Localizable.strings | Bin 4586 -> 4586 bytes .../hr.lproj/Localizable.strings | Bin 3228 -> 3228 bytes .../hu.lproj/Localizable.strings | Bin 3297 -> 3297 bytes .../id.lproj/Localizable.strings | Bin 3469 -> 3469 bytes .../is.lproj/Localizable.strings | Bin 3414 -> 3414 bytes .../it.lproj/Localizable.strings | Bin 3926 -> 3926 bytes .../ja.lproj/Localizable.strings | Bin 3632 -> 3632 bytes .../ko.lproj/Localizable.strings | Bin 3476 -> 3476 bytes .../nb.lproj/Localizable.strings | Bin 3832 -> 3832 bytes .../nl.lproj/Localizable.strings | Bin 3689 -> 3689 bytes .../pl.lproj/Localizable.strings | Bin 3214 -> 3214 bytes .../pt-BR.lproj/Localizable.strings | Bin 4358 -> 4358 bytes .../pt.lproj/Localizable.strings | Bin 3712 -> 3712 bytes .../ro.lproj/Localizable.strings | Bin 4930 -> 4930 bytes .../ru.lproj/Localizable.strings | Bin 5105 -> 5105 bytes .../sk.lproj/Localizable.strings | Bin 4899 -> 4899 bytes .../sq.lproj/Localizable.strings | Bin 4927 -> 4927 bytes .../sv.lproj/Localizable.strings | Bin 5070 -> 5070 bytes .../th.lproj/Localizable.strings | Bin 3316 -> 3316 bytes .../tr.lproj/Localizable.strings | Bin 4905 -> 4905 bytes .../zh-Hans.lproj/Localizable.strings | Bin 3125 -> 3125 bytes .../zh-Hant.lproj/Localizable.strings | Bin 3102 -> 3102 bytes .../ar.lproj/Localizable.strings | Bin 146 -> 146 bytes .../bg.lproj/Localizable.strings | Bin 174 -> 174 bytes .../cs.lproj/Localizable.strings | Bin 176 -> 176 bytes .../cy.lproj/Localizable.strings | Bin 118 -> 118 bytes .../da.lproj/Localizable.strings | Bin 128 -> 128 bytes .../de.lproj/Localizable.strings | Bin 139 -> 139 bytes .../en-AU.lproj/Localizable.strings | Bin 84 -> 84 bytes .../en-CA.lproj/Localizable.strings | Bin 84 -> 84 bytes .../en-GB.lproj/Localizable.strings | Bin 84 -> 84 bytes .../es.lproj/Localizable.strings | Bin 128 -> 128 bytes .../fr.lproj/Localizable.strings | Bin 129 -> 129 bytes .../he.lproj/Localizable.strings | Bin 150 -> 150 bytes .../hr.lproj/Localizable.strings | Bin 119 -> 119 bytes .../hu.lproj/Localizable.strings | Bin 160 -> 160 bytes .../id.lproj/Localizable.strings | Bin 134 -> 134 bytes .../is.lproj/Localizable.strings | Bin 138 -> 138 bytes .../it.lproj/Localizable.strings | Bin 120 -> 120 bytes .../ja.lproj/Localizable.strings | Bin 118 -> 118 bytes .../ko.lproj/Localizable.strings | Bin 110 -> 110 bytes .../nb.lproj/Localizable.strings | Bin 133 -> 133 bytes .../nl.lproj/Localizable.strings | Bin 116 -> 116 bytes .../pl.lproj/Localizable.strings | Bin 96 -> 96 bytes .../pt-BR.lproj/Localizable.strings | Bin 158 -> 158 bytes .../pt.lproj/Localizable.strings | Bin 156 -> 156 bytes .../ro.lproj/Localizable.strings | Bin 148 -> 148 bytes .../ru.lproj/Localizable.strings | Bin 166 -> 166 bytes .../sk.lproj/Localizable.strings | Bin 140 -> 140 bytes .../sq.lproj/Localizable.strings | Bin 134 -> 134 bytes .../sv.lproj/Localizable.strings | Bin 146 -> 146 bytes .../th.lproj/Localizable.strings | Bin 154 -> 154 bytes .../tr.lproj/Localizable.strings | Bin 170 -> 170 bytes .../zh-Hans.lproj/Localizable.strings | Bin 110 -> 110 bytes .../zh-Hant.lproj/Localizable.strings | Bin 112 -> 112 bytes 66 files changed, 0 insertions(+), 0 deletions(-) diff --git a/WordPress/WordPressShareExtension/ar.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ar.lproj/Localizable.strings index 91c77a896693873c786f2655b2d53e8415cbc3db..a337b5a77d40848f6c2c4683dd3296f1cd70d8e3 100644 GIT binary patch delta 1455 zcmZ8fU2GIp814Msnc3;=Txx58w)FOo?Uq7Qu;ot@wsc#lr8Mnsp%l6fyLa1x>CQ4U zrBsBCFZxhIY`&NnMFeA_JZa*C`Tz-$Cyj<^2#JwkqA`&|jFKqvFW%W*3E^RO?%s30 z^PTT}v)HoO^6Gr`Y|hCa&$^yJcVhnJ!V9NfJbk7B7x-GZ$$9nTyUbjg+9~|hn0bPd zjB93nl6O3xIJs?bMyi92QX@$u%xN!?Sjf{Sh~_jc5(|6{BR5Nl5mpKXp{*^2tA-t7 zo-i%jJYrMgSw8hr7>~>yu`O?g%p@>d(13;yXqEtbe%`Q!Cyu$?=jx zGGX~Pod|TuusO?yTG3Da^i04k`ef7tu}p^eZ0r=SPv&jrio%lcw2;D0a9dafc|l#e zycRA=rwSACjOCMH^22*+#xlviyl*)_EbtHg^jM#lIEB*ky*>Yytp1drlW!s z-wY|y+Kc2tn=v*Pk5R@5O#ENJ$UL47Ujki;fL$5w3}z`ar;Eg`MZXc$f0X^*gyK)s z4}_y6Q14-A3?nr)T4fY&pd^ea^(^dmw4UWPh&mm-2CiuxaMr*z!F2~SJ%IYs43D8L z4z6Zsn_5b;8^z$N-pH0)%NEpAD5cYmx|!KQ6ib&qD;0|s?{cd+!u4#RFGbg&Pg9ipGa4vThe#ZGSW~rszWikM~=z1 z{DFK|ejxv=M3oU`Nja}9tJP|^>Z%3x9ra`Nx_VpvGxS#Idgy-Wp(bl}T3nmb-qU`o z++2BAm-Hq*u4na^^t1Y9{d4`-uo#{QUkrZ}zGn;=BP)%0<11s?_#JoSop=DdxPZ^& LoA^gqUP1l?u$-DX delta 1396 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 diff --git a/WordPress/WordPressShareExtension/cs.lproj/Localizable.strings b/WordPress/WordPressShareExtension/cs.lproj/Localizable.strings index 6dd21c176759abdbe3b45765c2f4638426e28857..78e029f70f56ae24d2e197fa5f3d3af887d1e583 100644 GIT binary patch delta 1533 zcmZ`&O>7iZ9Di>w^8JgEXJLK6qS zET=~KRaOz(+p}7I(nh$14HHkB1i1z!ZdTJqy=l{MXHoI_RV&c4cbRWIJvMY?$i}*1 z<-5ANrUosSI1~*TRw0!nr|HxfnX|b{|HaWUV`dih*%l=hW!I&{)5pgM^&AUPyJ~<7 zSmxr>s&DwnOl?9sWl)n$`g2ec&v93E1BA}Z`pBwK4n5qf>xgpSS*Ms#C5DFhL{y-XJ5+Y%4EN8P~>|*HcWH_qmd#tY>QuAJ3fmYg37k%AeY)s8O;)h z@bSm|1D}sLj_pjQ_zBKq!%FuSi)MLsP|M*Qtu(G>L1|*(s@$T@#wO zG;Lp9qkrxnPo;}GrnT&{T00wt%^P1qTTC7043oGka{7HaseO2+z;1|%#iiEx#2CRk zZ#gqgOfo~+J+W1t*l)OVhU=#Mtzl1u^^K`fUg+_fM&#DKu|p8m9q!|_dG35-xej(E z+|3>-f2cWd1USHh7#M)E4S^ok6U?&P@t(FEJOL^*bb|e*b~mh!^7+o)36TRyfT3FDcnmDCgtnR>159AUv%VaFfDLp` zkHI_v`}xD*GbdUx&lZ&txP`qHZDHj|9czoO=S#PheW=}L3*k0)Qr*N* z^BQt(`V`{ymYFz z3+kS={CnvwP!F5Nyj{Y}?rg1-bN91PVof2P*X74c*~4fDyAjAIW?{4%x}TQLt(uuk zdD_98u60H6F10a1z&KCR0sjD+1L+qb`?8ju#q%6PImR!8r_MTJ&7!R#e!jOdG3HG> zMgbSNCl5^X0S3p|yl5Y70|hLAui!d};A?Oay6`kS0~x#oZ^577GeH%QFd!Tf(gGH8 zf+JLfyTY%+-=ZKYV!gOk>=s8vDqfVDq!y`DIw)nN6H-npOYch;q%WkK(xZy>OqS$s zd5^qLo{}r_2l7Yq75S=sUA`;dmwyjL0*!$Ufx+P3;BfF<@HeGZ=~i|sg9=qXQ!a;K z=+#hP=$p{B(9fXe(Xi+2XD$lI4 zp{@i5s6|i$Q^tEW-BrEP#j{Pq*3nfUMz{vn$#3DZN+Ymr9LOpgQv~#CHkom2y`G?S zx>BTBMXAHC-+Q&=o;PZo%+kX>Kp|(@m2`sSSe%OmM!Sneqr$$#yY{7@CewxgPy;qV z%|IzcP#NjSL^-6QBAjxFsxh|U-_dq7l_$0*gxa=cubp~pr(vq;L>(!*x@EFue#`!J zn&h0r-I}Jl@G-WU9!!l}Dk&4)AX5fa9o?nQvDFMzXBD2k!nbd^uaCOZd2d*)1h|c@ zRW0$}=$5u4My3GeNwvd2FmQWfS-4M4{w(e}y^IDwjORmc=%9 zR}QitgI(ZYd!2n(ZP}g*FIAC%&Z3Lx9khhLLCff89K~Dl0X%?DU>jHQ0%rJCd=X#8 zH++YDrqA(Jedm3z`>y%E^4;Y^Tr=0oJ<2`7^>HIynyYYC?h5xF_bGRa`;!;>&3uf1 zlJDV%_!OV#Px4j%P5vYPy1&7{%^&mc_ow{TdH==0wm>Fe2F?dA2R;ez3U&oA1g{2v z7qGBN=oW^AjF1-=h3`T)#mB@!@wj+a{7}3tZI?3A8R-q_E$N!{nRHwFLHae^9gc@D zg+B-{%K>><&dV>!pUXGpU*ta`ZIQl6Ch~6NM&$eG3(Ytbb|RC3B0mf4{G4bZyH A#Q*>R diff --git a/WordPress/WordPressShareExtension/cy.lproj/Localizable.strings b/WordPress/WordPressShareExtension/cy.lproj/Localizable.strings index cd6dccc700bd419958b46426ab5a284c92accf88..c27ae91602d8b1e5e26916ede6d166cee646ec32 100644 GIT binary patch literal 3239 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 delta 1462 zcmZ`&TWr%-7(R~e#EoOeEtFo8(KFfwibh*N1A*9BSK84FY1br8Ls)~`91??T2iqy6 zT*AY)7dEu=Z_+lTO67qGX>S!&NQ`wadzq$Px|fY1_Ant$?83vgCmwd36p+yN=KuIV z|Nq_2waB%|yTcOS+xP1J{(-@v1JU7;xkI6~$Mk8#EF8CNr#N%sWNG%)=`&{mGwX!p zNO4lv>^xvk3%n!v!s$^mZO#xpq#4IziP52SzhM*0snn3>+k}Hdrkd4^92i1NgK0b1 zG9vlIj)_s?6fFZgCN9tc z@hCazB;uN*ljJB-vvgoa32v?Y!^MJ5*O4rAvK!{E*c4`@D?UPRr4xm$>Qr%Nl)6cdzFA8>;#BUsgyQj1 zfn*eAb?lRKw>RZ#gQMy+8SkMGa;8;^kEl6_vJr2hyHLey4zC>jb) zM=_+L8KfZt%TICSI5xBr_Xn#GHS1p$au`JViT=iC}10<`dc(~wbrU7@krd{#4 znzP5dvsvuWkFlzIbZgYa>Wr%C>ZDGvtvSS=sCt0y>Uj8o+tO6qN1Um=yR6bev5i%` zpzIkBjm3ygrkqsVDq%IJYSfoUiogidN;TZH>U2FE7h2&X_7uG3YYn6;vdwD5BF3X& z1t%)1(R>^smO;<&*MwM88G_Hm5FA#{)KSlqnw7;lqEo{S3I(qE(y-pYj@bqe#8z0Y z?QYW1PiPVmWFecXX00knkOAl95QN0-O=C$y$y#onh@P$%IcGw$efER*wa8GK3WbNjW|4vSfCg+Jv zkAstn6$pJJl=`@WSW^5 znE~b~V=-ms0t3v4%mTB>ta$c&43F(8d*1WRdzL)kd;Vl=*cP^p-O27@``BSN&X(9R z`!V|o`#Jj~`;hZR1r73d8t2fmWLQj3(3j!LJc8`5_&D@*b|IVm5Om*f@sPVkH155eD* PjY?GcR{0C+*WiBvp;yg{ diff --git a/WordPress/WordPressShareExtension/en-AU.lproj/Localizable.strings b/WordPress/WordPressShareExtension/en-AU.lproj/Localizable.strings index 76c3a38d4f8da0a2d1c833b5fafe784f537df848..b829509d7cfc65b0bd0bd7ddbe40783b4db5f2d2 100644 GIT binary patch literal 3057 zcmd^BOK%%h6rLH+_|=w9UZgE;a@&vx;5unbQyN;DH%*%+#va>o^KfrG*Y=R{+|kT9 zi5I9lia=rm3sg2NSX69ag%A=Fh$TYm2310!A|bKi4^$uo=gv5eiJhQ!(@JY&`x+ScCjbmyVNN1i!)tg9OxKhg7S zZ(skwbI-pJIT;-sI(7QYi)V+=y>x!$IximU9?wgpL3IwNLy}W4i-H!1cwY$nr||23|drQ-{xy^CS5Sh2o`Aol9_-Tjw;+;0he# zOpbCk=b*lnF#4+pdK^Q!Yz&EeyL{V_TR+NfKb|l9I0(c;KYplEqvJ^F= zfJ``zMx%RGtiDrXP$Vn&CJnr*6GlbZ1psBY(Qko(B6EOy9c#K9%{Z{LvRtj~mi55& zxSjUus@E%Y+SqI&8K1pA3(W#z0J}J2*u-+stY)k!b7a$5jFS=t7TLj4TmuOwsNoO; z;3m^WN=-Y0Y+53Y+wulnpbd*c_ZvkZ4B16&vCJp~`sHw)Oc4;bvPzH!4_sUYU2}59 z=t`V8Wy_rhM*R*-;RH~oJWxqRb99nn(9j$%fhaB01adI)T~;7;VN6w#1F~i1V|A)F zqxD1+`aSg-g-m})vL~mtG1!E5ErfG9S_VQ?N^E3M#~WaiSS8K2HR|?Q6}m)J4Kv|^ zN81G-MGEXn0>njQYDqI-*DdT&%VjZF#0HEU3_h&Zc0xOvnNopJHcrde+?4aC1C;>y zp#(_b?vaIT$WuW@VzK#LW*3YyVp-J6C|i4!95YS5Qa@Obl?~RCw_o1CWaWe2j#NjM zsOd?P$7LOqL%R@ON9U2ckOrc_v9e=%vQ7+7JlXXSw=qScFAt5s`rinXbXeiL?=1uwz~-uuO-hs(vzCa zgjd*BX64RZ!j%|I(TYd$*7~s7-OCylCV-FvXqv8?Kx1c*(~x(VWp#}9^2J)nZce-- zWo_{u&3_+{_11gs6JxE-JoNuzosVdkO$>6`+g^P)hkT-)vC%pn!W9481$Q^Thx9xy z$i2gT%pc|vKg?%%o8RQ$;NRo#@Za%w`3J%Q0SVK>6(K2LAum|MP2ryKoA9Sk@CALX zzCPceZ{FwlZi^jaw|G*#ET+U8VqUC>Z;Bs?ABo?JzlaYcQ5uvkO5@U^bW^$|y(@ht zeIb1%-IIQje)sS5xBHL!&-y>{f9?O(|5uZiQ}#?u5P!{T%uu+#2o*&xF%qGyHz|^YGp9ea`&}y!VAa)BpN~ G|NaM*2jEQr literal 3057 zcmd^BOKcle6rJ&mzZ5e4q)kFfUeo3S7?YHK(>649655g`#vaE>^BG<|FZPh}ywS{a zT(ck>7D!0lzy_%xg$+WmK}f)c1&B2)V8Lh61ri$;NJ#7|!F@AMGHo3i5Fi92OZMo! zd+)jDo_pja+caD@FmO{jFNP#J9Erx_iTifl|3Hhfd(Yl|t@{tOwRb$&dGMhwbg29A zk)GbZ{)ZoVH2GNS@qxjkPaHdb;^e8*LubyO8-DWqNa%tbPLIaM#-G}C@e;&eetP1{ z{>iEK%rn`X+Lh<=)4hfMnc1sz^9zd*uRVJlFP$n5ozcm1sjMk`b9j{?-NDNY+00$4*$JCKsri{7>!)N0*E)jlvE=wvDa!eT3N-m$Bn7d@T#9`jMrW{Js zs;OIj44D+`h~bi(LMpZqqsSr5si&?^z=2_vQmK@tAg|z{U+%VQ4Q%sSqgY01YB6Fl zO*xpi@RCV*wyNz_7~Fsd0fkY+tr)I5pT<^^n0}GPEMZm0;vu|Yb&_0TdDUPhDP##i zq?V?%00Lgn&q;J%$V*Rj6fBU0w`Id5n&MJU_?RaE99!N3?~m4Stz+iTNK^JS<_mlv8>R@%&yMK^L;R{K@SxKm}J|s8>@u0vvF9 zl87sV_wQ;-Tds_K{0?#%1(apt@YI@epvjPU{2l6R=t))UHV~>bKzazd&QvaqS*|iP zi7R9#4Goo`j+%i$P3hjINC0Gh#J0`4rt~zqy0rltGgU9(;>sOl0chyxZi+BaML0!W zO;Y<*`9fLXEOFk6<4|YwZOnVSLUaS8DVrJ80!CYdO52p8s=^A*jOhL@P5a9SFefR( ztJpBTb>Mn&7k$+u*DqNZCCj*K0_!L+$6()qY3?2;tXSqiy;RWjw4Y5=@`W;`wwpvQ ztq|tjslhIynnU4wtqgM5D49aDAm<_us5S{&uP+eQZfywl$y>FlN8ykx*_kN z0)Td|0IsC1Eez7CDg8}|-=??iJ*J^RO}PfR9fXTTT7}MZN?c@7<}apA9PTMFqk!vF zywQQB03oi&8MqvHKn@0hM)Zndf#o|G_QIp1SjHB(CoD8r##TZXmZg~?-(%Aou>Yv> z{?%@~;47rL&Hkr6^`3Tmw?q8HCK}wHO;zu}B6n(z|2|*bi3R>i>-)PrFF2(CkHrZw z;bmc6cw6{F_)fSf{3y1F9pX9hviO|nh->0?@fGnkab0|0{4#VgWQE+&TIki#8=((F zUxj{>;!>A%L^>&*mBythNtNo-n)H_RuJnoYt#nIH$Zc}3JS?Z>2{|X1<(j-EzbStp ze;jTNcZPezr^C7M3*q%hXXI#PCZb1Pio6r~DDrjWhsZC{XtXbSBl>Cd^XT`{Te0@o zvDjoxkJVx~VxPsniTxbk7w?V_#E0Y4@s;@V@z>+;CE|(B#EAq>yeN22Nc6wqpVMtm H;@95*ium5| diff --git a/WordPress/WordPressShareExtension/en-CA.lproj/Localizable.strings b/WordPress/WordPressShareExtension/en-CA.lproj/Localizable.strings index b9d625b80fb0cc97e0cbceabe1ab54ab04fd378b..f1c016ed101822aacb7e3d7c5fd1d94b75b1da80 100644 GIT binary patch delta 1278 zcma)+TWB0r7{}+#oVmubn`EP#`_VNqLYo-Hia|-6ZDN~lF7D25vfU)xlbw^@v6Go~ zX0~=gS@gjxNacWvLbd3F_+p?S`cN?R!3PnF2n7`p1W}5JFH#i2Gdn}68jJJt!MS|@ z^ZkE+=0fs9@@!^$Mo1r-m6f?ij^1)?{&=QyVKLFOwESqcuYVvnq~{AOsnz0%yT(du z>-#s#C-G+GK7$;5VC%uD>O(bi`Vc+G_tPoalM88VSBOOiq$GVu>!bIIwRWe;-n0nvOrLn= zczn6BX_;QFeU*+&sYC2S&?1-5W=>=rY?yX+e0;og%=U=uql{^v(ih1Yzmz504igR* z*0N@$hSHAh6Wgc1s;i}qEb$wzjeG~ySwkis>9B6?71pv4cF60dZ;@iq2QA`lHc{ss z@hi39Wc!iq=;~p^Kt7wf93P}R>TUFMpwM&52>n1Fq!+bkTE$tz^ieSE`T{XbjF#%Y z>DcUiGFQVcK~1OOBF}f+CaMvau%7F|Mj%35*KvzF+rd?A+WEuvy4AeVnaGi~5Jc!l zIUbvA4}uzX%YoP+27Lk^pfRPNKCUKXrF`AMerQiQK1LV7;Lv_FVi{=5w1{_Id^Ql* zXK>{d-4*&@`T35nl`O#qBT&c@i&U6(!}Kksw|laEapj2VZJVB_2hiy+d|yIeX3RIj zry(yKiOvJmxteDBRW|TSWPOyV1|5=ajgpi~+$23C^pZ0AzjHGgxm4paoWo(x;7rcu zs%Z4a6=I|3L4rOFQ#a$( z`=6X5L_)+w3Yi2LVtWv1aSHbm_b%uK2pj}O;DIyXDL}z{;4^R;T;uogh@a!<`8<#L zE#Bo@{1yHO{ttl{6roEP6()ow!57|uJ#ZKvfJb2go`hSl37>_p!?)oj_#M0^LUBTT zSey|{VoQ8Zd|BKPKN2sBSHy3`t5TywN=O6J{nGo=C(`%QpK`Z6CLd>il;`C)XYh=>c{G*>R0NI>hId1Hl<~?4ebT(HEl=xQv0nV-Z9Lz PKOTgYdn~F^>6rctsr8Vf delta 1262 zcmb_aO^n+_7@hIhj_qx=St{Cu-73>f2nED$TZH<bUjV z#&#BRfCx?$qzW`WPzhDtUaCq|LRtwfAW?}6Co0Mb4tuV8sF0A55CB7#rV)C_8S+At3d&bk5`D|@( z{mjDR(sE~a2_Qhmy>Lfji=WAZ3VX}j5^m_&{EF7~msYqk;J zQ6^lS;ghpr|4dJ_u6I1zh{p%l{q?;!TkmZG7sx8D<+sP z_dc&5C(ZK@QQ|B(B^#6h0c*el4ln@*9`8&*ah6?_#-Cm)w}{^pKz-l!A9Pdw?ld(l zg6F)@avioQCJ*a6F@xGM!@wbbsYYIL)Pjr28nJA$VpAMgAq|$J<>Mf_o_!)dmmHa< zVYAf(>yL15)o6-!h1zJfOl{f>>$=~;#3U9sWNRa=2-9p?dzKqM#(r1cb_8@obH^+LglDBq0~4OP4l@j~!MFDjK@dZBm4T0tlXBI0c!D9-*E0?kEl4~O^r zzUO(jdbfJtPmE89@yRJ!nSSZq-t#jrCptQ3ySnG*ldr`3`cngGJ(C?;$mNd>Unne| zSXwS#WGhdXjFZpt7f!97E?36Sz$WU0z8P@87>y>YE0*b3sLRS6Mx~)M;cx2L zr_z~J;zGh1`c(@z+$wsH787Kyo8b2WVD!E}zT@nW=Nng^vy{bysz@N4d@VbCBv z4`g{z7=&NN1K^4(d?X)&>*USe{FGq^w0`K)EH_L>=iR_`Y=|lS$)$9KdG#>vd5)LY zy&7d@X4;vvu4~nH5@=n%*ks$hyBLi;*;trXT`Q!)4R{rgz_;iiOsYMRLdG>%(4Tj%gMigoG9P|I?2A?h~|ff<2znFGW`6b7~V}~!{FmEu60N1&Da6!f1B+OIUL*O*l@Uuv!x~?t0@gW z5xU^2dIbIr`w?o|yHgXK)6(C=tVM4}>gibusUab66>>$n>q!Xx+`&f<%B z71!`v_(OaH-^Rb;2LzKb@*4guskbQ<#*(d<=gU)@;&7lC9dQYOL7%Q6yEi&e_P15C2g9fWSZuWVoXx{o2I4tr7dY<;&q(=W#XOKOV&H9-EmT1 znky1gFZ6UJs0So295}(L2j1*D&Zco_kf=bcEZM7>dGCAQ z``+hSvQ5KfJw5l8t71r!!;xq#p4hkli6-t?)(t8^2GF$EKU+ub}W8`7p#txTP&*@%p|!<0uZUC zDGh*tC-h?yohS0b6CDK;B;jq@Fo~u(X_H`=AQP7@0LY32<*1{l9pVCIww;9f3&`-& z))rEET0+>;Q3yd@YIgNVE#uw*cj;m^US1R8jvY9l_4g{vl(?$-a!Qb z?OXv|Nn2AGq*YV8>kz+7ZM%C+Re_pv3vfFK=kv4-mFbkY$fC?2Oq)2|Q=mry*C~0e z14{uyT#qwwIq-lCGy)CiCBp*CcQDL_M@PPhEpSg5Xt0c}fG!M6JwtxPq*r18UE}?y z-FCrONPV0AUwP^y?R2L@)J(LcCSh*ukIzPf^HbAx`;IB83u12u`QP)#z1SfCr`R+R zUi>a5vC{w_m-7W1wFjd+Rkww^RMF;Lr@S8X``fk)RZSHCn%N04;SFI!_)z#p_))ko z{3{5EtgWQE+&dgyNGozT6|ccI^;xYR1OOXsD2 zX;hk!RH-7ZOCLxdOJ7JoNDt(M+$49(SL7jiOwPzfc}-rI-;+O;KMyyCTf&{;i{VW8 zc6cMw5;+~2j_8rsBOgURi+msXCGvYT8tsa{9sM%;b@b=xgV?dyxmY^39IM3MjeQmS uDfUOaDc%`B6CaGv#%cU^{Qda7L_?x2(Vs99cLeVViT*d-p|(By;(r37Fyp@f diff --git a/WordPress/WordPressShareExtension/es.lproj/Localizable.strings b/WordPress/WordPressShareExtension/es.lproj/Localizable.strings index 34704357eea652111731a8f8541cd07aac4d76d5..86c8931f954a91d935150d92978b8db4bca88551 100644 GIT binary patch delta 1597 zcmZ9LU2GIp6vyXtcV~BYJ1yNR($Z^zQV1LSocNh%w=XXf(!P3?_cX#25r$42dt^nOz# zXU_SZ|M|}ua0Z+nZ%*t#aB$?%Goxe4@rmYVC#O=Yur0o5lucrxCEIZ;%STtL$Bw^n zVw9d2Hqh^Qrz0~2%>pv=+PW#YjDT*#q6;kIxPX{@=t;SqJ}N&9QYlz+QmLwi{+9?# z$WN>ZahAMEPED{+X-(|u$!jf10^l;l2Anq#aIlMZQ)78||jj zlcUd#5~yRd)YsRS8!;VZyI>TXi>V}9adVTXOc(wL2FiMMKoXYOP|f?1TUhWieNL7-Gob6hWn<^Hje7u%T=-36`(5*|C*Lvs}-?4EA*kb6Qhz;bd;Uqkq)F3P@($B>WtGBwE zrY8~9*^V<)$Up^`{vdWmr-!jq#*UNnJVS2_54ENy*gEIxjKHbSMi23zXJ&}CEwRa` z8{5chtp_U5)}g5rz;3d{D~2yNOP*i74kJL$L4_NHvY#Y+|BLS{j1 z5xO^=pq8?gZjYta8NX}++Iej^oeOTKS}4+<*VZ%dEx@X`O-vl1W5*&UW_41;&szuAK&)C3hbT!rGC)H zevS+=mXQr0FyOuEXeqL7`%J>XWo$yb$fdYjoXb@>gCop%Nm8C?7SWN>=uE#-AD~aD zo9N$cnp@#rbR>|Ywb;?FInQQ3h%Xv5__$SIK0|Ci1j@{L^ro_}*5dCFKm!y=*@Cu< znKtW2{2v9{2Jw>33R))91D1h(dyikw1O72S%RBrEe}bp{MgBVfHGfx#3P9K|91_w36pDf^ z)Px(t@4~;LAcn*iv0L0Jj*G5%PKryNQm=GS%1B3~qEwY$mfn=!mcEdFlJ3fqyi?BD1%B;IiftTtSG0$`@-q)$?&Q0+3>~i)$lJ7HL@>qPHk3!x?8o>m(;h^chyhT zZ`9w^JJF8l-so&}Df)i&a`gMy##n!MtT#3rE5%6cZ0thpqu8&U{|J2jb%7 delta 1477 zcmZ8gZEO@p7@ob|y}jGpyB_q*LZJh#r4VRKh(Scaa$KRlB~qDc*+Bqm0Q7)=N<@sBa6L}QF5po#o228nEUro^?tX_7i(1lO5^L_1PY#e#K@vxh?X1zk>{7 zo9rE-rP1;HAZT)g6sBRyv3+d&`Q$pbDA%$zvf4LxfOxaS^CnZsE?|p?b#`_h9l?H) z+R%5P%M<8>_>`a3iErVt5sVC;FrTd1Uik-$uEon?gLR1;7cYApX?wRm%%gHy*Fb(1 zXFj=lg$XYJUCxA8nMfPNhk@(j`L&TX*=iz&#Cp~xHHrCTBS+bIIG?P|AkNpI=(t~r z4G8J_yo>Y6Evv@qkA(#%G*N2hG2F3Ppw#Rj?dG@W)u|waF3N!zM z#?f$S7RUeuN`L?xm;eHoTPDD;on4SOZa$KkMl>LTDRt;WD_yY$ut5+Ua(&|1?2gp5 zOV^R{+LUSZIgouYjDu(hHO zsZjDcArm-&a^UDV7zV#`GZ+_Mt($cx+G-xRj0cdtu^yK#MD{47qmEU=lx5Y;>}q@y z>q>MoS8HS&wOY0}-l9&V{Xj?`dF+PT8XZqtWR}>xO*bRWY&lWSe$#fZuN#`;ub2zR z+3=wtj>pOHK@Z+9cU_2n&@q~}ut_-l+P=z*N7QmS1!xy>$>DN5Z2yw7h0Voxvz?JF zyBIrJ1`%)`EQ2fH8}Ku@1O51+tvO`{|9C{`6 zR_K$^_o4e@RBRF3#GT^PVy`$P>f*du7T*=$7e5z&691J{=`pEY+AF1`ekmhOODCnW z^tN zE3!7aH98q}qpw9TN3Tb3t4-=&^=0*(`l0%%dQ<&Hy%&SAj@Yr78C!^b9J?F)N2}2~ zwI{WlW@s;IuWHNM*V`z!N5#h!4aV6AfyD(HICSL82tY5KIVx#23%(ZVWM#oSdBh_I>~N z&9%O3eWzlZT{}lcca4otOisNXizkxPsr1b5%%1Gt+&*PCui`>+j?C{bl{LMB7Yx&? zE*@B_y?XG_8;9XEw*r1<&F<+TMa$z-P7cSFMT}HKDOjkYn-3Y{-mgCN?ZIMzsBj3A|)wVz{hRkoLo#7|G9}Azibu zX2B&PJ-auCt*W6ROK;$(^IM~6x5f)?Io<4#Oc1MtXY4*`LMc;H!5!Gj&)Jy`oHR8( zsH(`Kv~zNIvQna`Ff8-!d`?~szww<=;oZyU*TPxxP<>`tB^I)oXUDNh6f{|}h_2Df zj`*BnU{uqq1~M((sG&J*VA?%v2kdd!Fmz)kK_g00AzE^V+*g#FVK4* z+;k4Yx!_30Jad_`7{V+tRR+_WMNdtO2r^$Y#`dN zM6d=ut_Wz(91}zHd95)V4XAoJ?<>r^5rRn=UWik z;eul`{1mzqp)MWQRZ<}Kh^LhXa`+_h6kPH4z?nc~)jShp?$}i6r!X~oJIJ6J+a+Y7 ziVYyat-)+#eTwZl%0ZVSaKhUQC#5Ag?j44!fvs@Q(+_=4^p5`-xEE-LNw)*8Nl$p_ z?_g1D>T(waW=qlo_k$~8#F>TPU2X76uoJchlt^l%sOgkrW>_IbAtJh?PL-AB0IyH>=JvJ z1@;{K9s2|Oi1TxZ+rf=;NlxJkoWa$(tK4nwAD-h~e28Dm5Ac(`#lI)C39E#DVW%)H z>=Oz?O?XRqS2!blCEOGqi9%f*5Vwfi#Ee)MkBV=LABz{oOX5}WSMe{0*Aa0<9VzF8 zbJ}^q6?I|PLDyy1pYBn2-2J`#4^PnZrstIBwC4-YH=bWScfGfLVc(c9;oI#i_}=$@ z>tEwP?tc)t5x6h4OD{>gqwVYzPR56Jj*UM(F*!9o^GrOEoSjR}FD#~aE$!~gJS#8vW^-&$zMvF~drM_i ztL)Pa(^}bopnCAo;Uhq~7BMwrEteFd0MyadBj*{_)Gg^aD{Cu^PAKZ$#B6*bJ*FB= zH|sH^oxS4XgeK<{H4m?GU9Fm7+DW_OO13~pG}UCPnUU^?Q_cvqJH2D6Cl#Zt7{;y< zSuY)*Ppsz zAkx@F$r;Q_&sK7>*}$2Rn%0GB@4o@*0ICaV>ek)*Y<|Lxmn7i?|llw4->BM2d{>DA1K* z2VUe4@tU*|x?E9E-NU|yznHE`57+nlyzTH|V2Ea%qxL z7~b}D!nD{7DcA21_8Ktm@xd)5dPVGnuY;|y&b5_We=ilD#|zLB>P9Jg5Y!I*#?~Zp z!JnQWJmBep?>zmj=}}c@dBrdhaC%BB)0|~X0p}vkn6n9Up8_q=5m>N2rR=k8A-Cdg z7XJ1}yf|u8vv8{e%Arlp0fG;l2oHhLl!>6i=oe<`G{?}qI(h?s3HHLv(za-kTp=bB z--nbLu1tIz@REPfjn~gqbOxV#+F&peg>OR#py1yurs`@k9e(uwQ8(`@D#u8+UPeO` zs~G7;5+|#6Eqr8B#nnMVp%~f*o#Ggd^GKbP?Tx?0N%%FeS|cJkM$VHr$W?NK+$2A6 zA+DW!oEztgoX*v_;~a1=aOb&qxNDA`4%J~eYL3&6vyS&2UpVgY9=?n3|LD(#kdL_qi{)FNxjaX7QwWM!X>BZ451jmO}?aCql1EPHBs@ YJ-juX3@hP_;h&q-rfY=22hHpL0f*Mk<^TWy diff --git a/WordPress/WordPressShareExtension/he.lproj/Localizable.strings b/WordPress/WordPressShareExtension/he.lproj/Localizable.strings index 69e8062ded68af441293f2a596ef51b7a73e8e62..374b5da4868377acbe6b93439bd8d58f5ebeafc9 100644 GIT binary patch delta 1486 zcmZ8fTWl0n817uoUS@Z8W^1cm+QKPKu`0Bwf+i9ZpwcJ-O18VbSYVm%oNlMx&MZ6A zmRexrizXV4&5w!kfoSwW5)(COVohp9p2WmZ+R_RXfe+EguZ|r*aS~4Rl`zZM)$PrinP%CP`be8L%&4B% zdL5dxY=>Ir^Kg<>!PBIMCK6i4P9#Qi?0-Nl!#rStFGp}KNgTkZP!Q_tQ)=mci)zD~ zk=1&#jM|37?3Ah=80yIyb|1~HJ{>=^VaKXmTQa`)mA#gx8)l}Vp`rU_(`I>x?lsJT z#C~?n>5j8O3r)Hg2jfP%k2YJT!%PPz#m=6?apnx=P3l;lf7D-;{6W2e;WWG;)Y7>o;#3Mq9XEC?~k3BmC*o8Tid zR_NNT8xD1oAKJ%sL!+%Z$FNL%S<%*~a^F$GJDO=Zr4s?mzExYb3*0#?;DklIMa08aeEufva|zNgpG2? zi-tXD*mlDG&%hu2y0XLpT<77UM`{dDBK}^?p!h7gMSgXe zN*V^pj7M|ZL)=B}dw5<<#l7~*!qIgyjlXALQrZbm$+0SfTq8HU4&CT(s3{#S&EfS7lq+>= z2A_DFC>CM5OF-T^G7b0TcC=FIt>v^-1DgB>lb4}OsX*{ORKY&sZ|ONa-SSS;a6^uv0R4Awg$!0TkDEuN8^Yb~B6?pa z36#85@(CB?DEBPa#o633?gR(ir`%86MQ(+cdCIr&d-x=;@x6SWFYt5x9sYs93jv{2 z*d#Oxt%4(bAeM_8#4X}WV!L=m>=j4F*Twh655@E14RM8tq>&U}AiGF6DUdhFJLC)U z4VmbYzYnpe-7RZE=ztXBGpJ+ zrE}6{=|PAO$sror9*T#?L$|`ugztp!%Vly>Hs#mkH|5Xe@8qlUa-=EJA9*kGnL;X* dh|;8-QodHcR~5BFZB;wfqv}`cdAJaz{{Yw!@9_Wt delta 1436 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 diff --git a/WordPress/WordPressShareExtension/hu.lproj/Localizable.strings b/WordPress/WordPressShareExtension/hu.lproj/Localizable.strings index c3444da6fd788883f35ff85d92b17ffd2161e18e..f9803cb828ed86127f3eab37c5acd36861d0da18 100644 GIT binary patch literal 3297 zcmd^BU2GIp6uvV%vpbyy849I<{9HgN>au|RDT2_J)&gxQ-Pv7A3(M`y?e27E=Z-V8 zrP~B~Fu@0nFFa`Ug$F~7PrR7$;*&;AFvd3?G*L7$Ax3>u5@X`IGfTVl&tOa-ahvRH z?mhS1bH498-*nWqEkD?`>pShJAjTv)o=}?9_ltl_`l0R#V%cFd$G|UW zTK(qm+NhWTdpO6l{1G^l!^9ys)~AcYmEG8Yw<)vds$L%cNHPbxsl@@@(_IQStd5PGKF zG;sj56}0sYtj-7P=6T?c*yj*({vpYtm`=-J6591JF$`7(Kukt`?64pbuuHv)<@**3 zd#n>(p{7MR@qnWr7N5pC%t{8x#qDOra$wdy5-=}B(I^oIBnQHW(V9u-lpDZJQ26Q$P!Z0NhkeLX!zJo*eV*eR95U*8%p210&r!DBb?sWCuplcJ)<`s8 zkzfkivS>!?lBH(;7#$;38<@ij0Nw!S+J=xhShqCFe>(qg)-?&B!f7vP+vg#zk=*IK zrrYe|ZR#DwD9^Pm0`^6@ZEfmgRoishz-(YPLID9G#N`xu6uc&#AEdCsoLq+5)PQa` z&QnR$Qe+b4Nw{0 zs#E9=Y+^JD;T8nj@bqCdIz%mW5^_w0xytZ8C7gb2OuLM_!tU-seGGp60!2eJ2I_>L zmHE8;|6$ooTNScD4ty0+4ansD{Q4)AL0PmwvmF~K<^7{1T5?qh6G=j6fOx@ zg%5;V!q>t*ajA&KZt;Ye6^S?|dg5jAw)m6yXH1MKvF6ye*v{CgSP*+xYLPZdJER^d zCtZ-nq?&X^dPlk@eIk7?-IFDGr+irMkcZ{V^6T{IPsn{#O1uo{X=IuZ!=C ze;EHLek=ZKLP=~$>`CMjuO_Z0t|z`s{HUx{+LXP@o63924drv?E9HkKv8k=8ujz}X zKU7)8YFceq`_&8TYw9)iruwP+oBCH$O0G|~CynG}@>25c*^aOw(_$0si E8*a`Vq5uE@ literal 3297 zcmd^ANo*Tc7=Gg!FXI56rgWhTd0mn&7?TuA=}J>K-Lf_w$4%3A`s{hJCmzomW}cHe zheqPSr2+|+3ztge00Q-f1Sbw~;RXk|K#?ktH~>Q2P!B!uzZtuow&@}S2!Y4j^St*j z-~WA|ORjDCytntdc0h{BN<5KFsp*c#9)DtqwzPBElgn4ET=mrIHEY*B-G$e0*tn^? zXY-b=+n&ihn|-dgZ~OBv?09kKOS^XO*}HH5%Ln=o=9KuMfx}0R9y>lbG(56&bnL|V zio9N!D4v`=)ire*&Y$TyYn&scvPq|V`zlpy$4t$x@807u_Z833mgUJT#imE5Id+-P zF>`ho#~LLlv1(`=gS*|fiQOvW%*O1^iMX2istRQxQ~iHkYI9_3y$duj-7SWYFI%^DgG6844Z?#R}v?ew@+uHqbX zICZ$8tt&XBWK$8X;RYG{+U3E4;vvhgTfTofN1QUX!z5?NDQ|d=I3gO>N9cK8&@FD$ z;y8s8nPX^6paPLFj7d$ACiK(r}&PHGhU4Ugg`Yv8IF2?4|)q8JF=vN+9%pm5%6Vp1WN186;P zJT1WVG59i7a81I)85vqLSn?_r-asIp2u5!%pJE;1x>{x0^l_@wJi7XZ~-MFtfLp6P-b zlY(V@Xe*)1{v9 z6qr%Ob?U+Bz)}DZKfnxJ4m=&W z5dDtk;ra>j;6;)B5c#)yVcJS`6vR9WqUNXuVxC9egP<`gAqv0Sa8X##2Z4PAN_x0u z*U&*Y#Gxj;bu5eE`m61G1`R-h2BaWR;ji!sl|RVKtpKOlptc&k&r2uDCWXc%0i0(=0u|2=*l9qIqazEKKYL|4%J=u31BT}Qu2 zOQhA(KIynLBYDz-^oDdvdRw|8eJFhuI~sFherzH3R_t=@|gBSE|aKvY@=9e58C5Umjl@?}_h<=i?XR zR}yOz+Y?6;^~B}GXNhkTHVwqhsUK1| z)lRir-KLJJbLs{4l6qDBLj6wtS-p|g(wozJ(}QUz{c8I4^pEKq9i1KfI?kcs5tG7C LV9_0qj%$Aay!IVW diff --git a/WordPress/WordPressShareExtension/id.lproj/Localizable.strings b/WordPress/WordPressShareExtension/id.lproj/Localizable.strings index 83b9b26fb024a13d17aa296cfcd27b99c6c3cab0..669f4942de5be8c17080fc5d7b36eaf90ef36b88 100644 GIT binary patch delta 1502 zcmZ8gTWB0r7|z^hXEyETR@-dSoUAscnzXb+(P*(rOiXhpJDbgBldNYmC%ebY&Wtl> z(yp~#C|HrwYCIxEL=+XQPsJA%DIz|#eNjOIMX66dDBkExKntGPU2E}aX8zmv{onu1 zh4_W|t22!wqfd_=AD@_sz-OkX`W@$Y z&JRO-6A%V0v(k0N3#eaO?qkM(Uu4rEXvtu;3d;*+u^=gauSBtnh8D_=%JsZ{57yb*v7TOwCO$PCC%UcHzK* z1KH!Yk30ea_JAns$;&^3HL>^+(m%~H| zhdj^mG6u`Q0>pM|&~>fyy)xCcS*qQsrc5rj^HA+b0b?dIY9>7)_S4V!&V6l%?mc3d z57XI{YeG_!E*I;iQ(WiXKCsU+!5X%Zf0xckNXHn0tLyYjA-?%*VrO~|L6hBhK8Y-} zO6W}?(U^V;`z7rAM(7#(JKx@F%(8Q?)Hnjawi_MiK-0o7gDtSl)Aei6b7~iTPjTeb z5G2r|9dbLpA@8SW^#>wJX0y~dvN7c%T{NS{>9_jB^r#x8uSa_5SuN4NXA0TK%VV+* zZBT?3EU~8xO*lZC)xO84P$__f>B|&KVjsI$|}G7sI0$0BU>Vv-$U9eZqaYCJFlE6Xed>l14o1z5^sE3{G& zb}Sq08x}(@%usYg>E{6bGqPL#SATj;K1lEA9`)2#eR0P1F{m1eUQ-jaNozTh8Fumz zSg?Q>4CKLZE#_JFT33QG1126=Vf*JpRau_l(j}#Xdx(~m1ih(g^aHhrj%rz$)N-oyQ7aB}8j`Y7r6Ro~U6ig!pGsGy zE$Msd7g?8EMs2c5#?vFkZU5X-FY6SlPkP+*= delta 1517 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 delta 1470 zcmb7?U1%It6vyv;?0k}D+n6*-Q!;Jh+9IU3ro>b&rb(70-EPv|+1;f1*xu~k%--x| zW}TT$y9h3Q5)^{N){&f_(HayB=v{30<4ajZuG%`u@Tw zb_&FXoPmLXr4$LOo?`^AQE~miOp>cX#-xEwaw&p~AR!-ZJ=yqYR4X?0B1LvWILd}3 zA9Ti^GG`!dK2s^;ps6w+J+M0mbTBF~2eg?RFVesWud*KLkkXxLmSR|FXD7riAs;;m zIuEiVa>t-))+!_)jqX-ylnAXb(|DcCg+>@jyhdh6p`+z`HFE}AEGfjK%t)nT*Vs4Q zv8T;*xKMsb2{Z>KHcBIm))7SxvXFr)5Lt*AF}4vodVDcm!d|GGc%JL+MdOX=0x42# zOjiQxI&bJ*Bc_Qhe|Dr;Gy?d@Ha7)Lldgf+F}3lsO$?s~#9wM!ZurgWxiPYWt9HO{ zYmayBkCUKK3VSxLg2Zg|Hmmcqhq7s6lR_|OdNl)En8G^l8^dO}J}~as?t0rSz#qnBGReq8+9wK!)DG&q5P$LeLHxfR~+@4~Gdsf{CCc+D1MK5Y7Tp)V3eZQp*a8LxKk>Ho~k+?>+E$ zlvs<_^DskgY)Tt?fT7OQ_dVK!CzGXqfESW@1z0DJMQuM9x7~8N>V=;C0z+apEj+=# zp_3#+!b^s4fh=Lt*k&u-b#kx50Gy{x2W_ zKz*!L?P{a2#cePetcGQUbnk@tX#Y-29VzHFw25w_uh9?aNAxq-%5`(kb5q*BlON8+cE_DD}878#DDBlVXfn^KQ-N_s|GlCDXwN?X#G z(p~9K`7wD=9+u;BM!qata!tOW>{AAn5oJm7l?`P}`Aqp;ZC9UE&#GhUMRiVHR$oy+ yP(M+>Qnxil>(KhOacxm^v}@X1+WXoU+E3bVdP2|ZHT^yPbJTcv4k7kJOUGYypu0@~ diff --git a/WordPress/WordPressShareExtension/it.lproj/Localizable.strings b/WordPress/WordPressShareExtension/it.lproj/Localizable.strings index 62746636a58d80d1888e1b1a538dd3321f672681..c9e73ab46165d988ccb909e28fc926f55c906a34 100644 GIT binary patch delta 1483 zcmZ9MTWB0r7{@!eotfR4WYZ?0ZEmLtY13#EQ)r=z#Wc1yb#oy*n{1k-+mo4--9u+* z#+lh|x3_%|tssc;dl5mYAfE;_D9-tdF4R6c#Ca`xQ$3m4%Nz5{;d zg09&y?3l#PCAXw;nIOx@DR1RbgNtm)tz*B3#DQ#>+NA0S!rzOD3mF%Qg)P$ZM3YUh8?KF)p2%NgYqQ*rHB; zXlQ6*+zE&uq7-#b8I$BpxG+PCE)y9&EY47~fW}-WBu)so#O(5k84{L!2Ze4;Kbzke z#k$pASj*XZhm1i(o6JXj&?GLhrCN@V&@4omHJvOqJ8D@dWNYV=T^Y}2stBwK?Lscu z3%?56z!TKfYdhgn>0EXGuth@@ZN4-?EQ-;T7gE<@m0QyV>=RUROFjxh*RP-g@d@j` z6a}Jj#P?l)-e3`&$JEJ;dY)Z*_Dqf2EY^LhUnZAq9;usDV#-7&&4Sb79=OSO^|y^Y zYho0S!V4MC!eRY%x#R#$a9!Qcqkh{$E7T^zhMdEZ9ODo+Pr+@WWA)G8=D8VyE#~oT zn%Kk)VO{9e=U$~jkp_VgF$0hJ?XAW%v-3n@MYkbF0v>xYw(mpir}rp z8Z5}WU}t=AY_5?%%OG)WcWKfsvhRY}wZ6Gzdz!Ke>LBw!^A|_+d0KMvG-3vB$h){f zc&s8=SK|zsK^Rq9As1`EA?W+KUdG#mYta>^A7MYFW;AEYJIkP!O@h6vh6`a5J>Mh5K5L<3LK_fMO zvNI&`C^I6H#&(&7dsw)qdzL{#qwLm()zQf}7J_DZpgP~cgW@dXgZ&vyyh+*g?xxSU zZ5-nEbMsulo#8HUz+L6O=k9V(c%4W55&jsT;W59$`+SvO;~(-*1zu2u&B9J$SeOz* z;Ulq4>=E~fN5xt3q_`qh#J9x{#mnLy@qze65~X43W$BQ#P?f6ECFwos3+Wr_mb50_ zmmb9uvDR2;EFHTUyB+&o=H(r7zdR_X*`nP9reEYN4zQiQoNA(IPqoT+r)#!Q%%qkTAy}MGqjW1CGD#Ao%WM1=}r1R-P5;J a^f&eE`q%m`{Wtxg{&!P<(=hCBM*jj>%<5DC delta 1494 zcmZ8gU2GIp6rS1npWU`w{z`wKmlm2Lp+FP~AZV>1t;@FQ&bC|nv$>tQ-CjF8GtAFI zi?9iaCWc6?mj~2n0ttwTi6$iSgbB|YHPIlE2YevAKXXc#meBb%L zxx4x9=C?30I%2V1LeJ{;0GRgeHpXCTI`3IHtn)0U*EE#C0_1@b z*fMp*q9KY~S1)v`9r-#C!@_#DOKca4={8{5Hd0Kl&0)}M`FJ6$&BlTZW7#9cbh-ii z@B6rSD!vWM;xZ`=0fmz5FB@aH#Ii!4oFDW&dzpR9_djjCh|Q({Q3EzW&E|3(<|-WJ z9InJ6&V#DN5!A;nNe-P8}>JxUe9juz3e^V47(%uY6UnO1k1$ipuV#U!cmUg3PoW5 z(p)W0G%)KW+uL-o1&I03T!!qpz<@oJQQKNbl<6XiBD0pND5R*E-o{#W#89);TNo#S zM`56t-ZTx6Og2x!HffQY%aTgZ@7iJ~B4hf^CsLJ#{w zY1fch;}BAolNX+W2L$YPw~D=G~PQ43h`)!%l_b*+BqueFxW+v5c}~ zP3v*jq6;7fVLzlMtYcmBe)eW+3%irt!gmAzZuXSYBN+zuT=u)NWm~?sX*L@#u!vp5 znrh^V;t2>AbueqzcP1y}YyoyLJ@EJr>}y3+3&V~@N$9gP+78y-w4LvV&pq-Uv_Ngb zeoA&W&yIR45EzQeaeUZ~RM$ujax)VPh#a^EWM{Hr6Z{xiI9TMwk%%1#JeZsZsA76u zTog}{Dmg=kTtDmYrYl_ydjcB%ZQhP_ctX{QVS_3^+xJi>Ryw;o^3(@09j$+YXATM diff --git a/WordPress/WordPressShareExtension/ja.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ja.lproj/Localizable.strings index 876ec1b833a0f7a867b9c81370cde511fce90cef..ff9a95a31b969e4aa6b3b0bbd699f3475e62f9c3 100644 GIT binary patch delta 1550 zcmZuvZEO=|9PhpL?s`{N5D?e~&(O`0x$z96Br^oq7_zc;Ti30d1?pYzX?yAIT6)*9 zfur$*U|0fMpN#O5AR-?ihA^WT3=$+5#PG!rnk6U+MkOk~gy07fX5w@02E>@l-G~3n z@Be$bsfwwJ@lJ2+=GV5g`M0)r1UkFsPi!k+XbhU^4BDBs?A*|<;gQ{Y-W=VFPtfJ~ zTgs~JYf;P?GNQg`dXymqw5$@hK_+e4AZ<3`y<7!e!&QM$NJ&_s&`1XTXHZF?;$WU$ zM24T^LS1AP=b75tsBb|a4U{28Hx$)Cz|w7GMSZ@moNDM+5@cpqC(f?eFng}2H`xAq zds@+SGttn{5NR_ll(j*-Zl*#3G;BwLXfRDkI)!aPJ(dJ5Y12lgjW4tP>W(0?b6FGE z=^}q}fA$nXD^>_(UkRZ%q}v7>aBx6C86=|SZ$@@3=}Z=RlF|N+ng(nlJL;?K%@~9g z!V}D5ChA*>Z!=4Ah7l*u*5LQJJ^6uFO}Bxge0vAdbOm%~Y&~s~%_TiaC5ymFI+q2O zoz9McB+4R!zTIg!=TJ7A&JKh~M@cBU*}E~5F-D%YY1W%jttO(`j|+gqoFD3SVW) zC;nJj77ijsBN_MgAOpp0e2ZD>4R6w|LEW-K&Od|yqL(cUb&)uClsE#bqz(Hi0Qy_V z*#uD@o=qd6PVQb03!S$k{egN=gTLV?B?QmGAK?Rd3EsmM?xpxEcO9OQUT#+56*v_m zpVM&K2uSgVumj$LGw>oTq^e-b!EiO1bER%$atwxH9BzVp;ee~bd2mLq<5cG)KFU9j zABoRGGq@^O3ljut3|=6}H()z#h6l(_1Y+I6eHzf!gmq!ny7+-}Fn{PXn0GkG;ctZO zd02?8??x)w7=By{`VVVK(!K_-!jH(%b@G0JO)0t&6?G4*ufnmxk_G?AS9JiiqT(Cy z-W;qM@&-GwUn&=gAFy!fpWsO%XB~c5dv8x4{1UzoPaUX_ z9MfSBc~WTq?mMv1je^HP4eH*R5aAj4E1XH;ZeekqIo37SQ2DTkY@Nq>?{ zpnld+o3AcNekSc(f=`O8_%QJ;45Rpnr`kJ5w-EmuP2om){c_cjYs~rS`j4O62Orp{0|sjsPrw3i0-X4+5p(h41?vvi)Grti{^7@857 z1xyXIn(1V0<`}z(UBT9~Ti8DK4K~h>u>05}>`C?-dxw3_ZGJX@^#&_{LzmNZr|AfCU%oC~vzYrEQK^KOE z{lZ=0z9@_H#bx3P;s$Z6xKF$!{_cr+OwS(ALC;aol;?uyhUYuUB}tNB8kJ5-=cPZT f2eK@;$N{;>C%+?4%E#m@@^yLIOMAW8HxK*^8&4Eg delta 1473 zcmZ8feQXnD7{BY?^}ae*26J?5?trmCaN`}sEKHH$*o1EDy0&ARMao_Kwmo~hE4|xT zK~^eQkSZyf_;Im@Fv}a8LL>MFjLPx+hxcxRZpO|$hs=S zwCtuW0X3SG+6>)-x)pKPqDf{Rs%C^u{TozsNHxtZZL%JP8g6T9YT6or)^J9bEJI3T zf{+i6T74na(qMl8$}vnBahEq2ze&Ss4a>n8T1hRQJY{014It#lUE#iTOtwlsBkqcO zNw9#F#!0ZsV0%opBpW)JU&vMWm57i`Ric%&hl;qXu*)iM#62%4Z+S&l+}v zt!YG%kckmOC3GS|NJJV}2?9zDXdkn9`E$XfoUwzzOvcDOsM?EFH;k#W)RVSULq|7h z&zew3PM8DhV=>9XFPlr-!>T?*l1F4!lNAk0rfNZRYiS3PS)xaW=tj@n4roP_wpbB@ zy=^X`P|h*1aB~o9Flr5kGFeGZ$SU5;{fQtyxdhK}*}Y9yqSNFObcEW4zIJ*TrB^$U zN9XzG>Nxlv{0+{6Lclu}dr(Bz^+M!wwakx?p8>i37eLO}C^Z=F`9w2_p~tudwZ30{ zB1rZ87#<*6lbGW(a0#5lOqcQfIlAszf%dw}T2ycb{DM!;gWJAFqRGCXa$x5=FseKO z@=9tE7>$8Xz)A2WxD9QoiB;ewkViAZQq;+>MU75`7IDif6uaqxyZBu=ja0U_y2PdL z{%z`VqDWh?4cS(aS6n?$1wnkJ;GUg7fkH0~9L48HTuYIk^{kH;Wv{E)LJHgfv*2S4 z!9yWh6`SL}mL4h#bVKki&hzA{S+PDR$Y zY&`|M<8h4c0oyj&yyK4NA4pLd6+y-o+H0^Y;@=j(~)z$<~Zi~$Z^eahvKO^s-9}0o}@ac z9x6m-sT}n-^&WMJxt@%+3HL=N1d-YFF3z)-enmUuxnXA8)mn$Dr>Qa*=wB26}W@kN$wK&4L8Hj;TQ28 ze1wnlS$>Sq^Hcom{8j$CP$5(atAtMBMIkR75-tj#3Ri@y!X1$iMbRrpMP0liUKMYN Pv#w@W+I1AU=Scqo!o>2% diff --git a/WordPress/WordPressShareExtension/ko.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ko.lproj/Localizable.strings index 731ab47ea2e3dc8230b52fd5472624038dd2efa5..500cad36e8031577f5b5bcb884aeff4b06585904 100644 GIT binary patch delta 1504 zcmZ8fYitx%7`^k_nVs2&ZRv|X;1;B|!M;qDq>&(x)`ESd-IlFgSY~%_wWWlZB(L8TAdXHSXH|dQ)>tYg^`+uP|Hb533q_OE=7c!Gni}-X4DE@DY5P zEW}HMQQWmd3R_1qSwWv@W6lFyWCDICFb+4w!b#%5j zz0stKk{k|IR#x`x3L8i_VUrv_;AugJ%$|1CuUaDQ3tzh&?1MYhu!+JZzD#=q``VE? zpogKUCiPqM)1xf5cvI%YHdz+CYi?CHQWi@Pd=6CdoI)X#$ zfDR2))rVjo(vii!*Dl!OkgltGx5ui8AyE!@Zqqbn=-HUk+4xd>N+siWuc}EcX~0rO zThb(akgmYfWbwwFnrD}2*X?porzVMJDmuTr3^xO-uB*Uy9M#D zytp|u0b)J?C%>ED83hy7vaRb0eUdIriwJ;^q?3@ck$ibot<3*MZG+He4)S7%QE z7(YBw4eA23aPdAS_^Q0XrP{fKWcMt2C#qHVs?=}{+5D_vYF%l&$p^8T-58N>nRl9^ z52mA%owMBrIPf7jOROOv@iNg(7{npsFoB74#J9vEu}o%=kZd4#lbxhU_L4doA@7nu zlYdhr#Zg&QDOE+aQYQ5YokOpqE9geLi{4N7(nIw7^eOrbeT9BNFEcb##cW}=Gd)Zs z!hFDd#GGeh%w^^-lVE;v2##z=k)y^j;h1#%$Wm-6yNRu4cd`4~5q6Zl!aijG;wrf< zTqD=ac{#*gsq~SJ<$NtcAMH?i_bVmYwO&fFhNB zX!~HiL~<~(eIVM#R+{Oi5p1ERu)+}X6ty}P-^GuTt+uMFs(r1<=!wUm zp+e0f@HL~uMw?GDqNu$UNwP&4a4uWF@CJLds3nJFTurVT{6x2$mb-i&tE;0;lO-eL zGvItFo5T`;nw7*-*}Gj<3}{0Kj~8);Z5bjgk-4~*rFMV z8pDsNf{i|(6xRJ)Wf>aQWlv^%mTI#KrCv#iO2H_Cx?&)GUuFkT&(Pzu)VhM@4af*Z zY_SE1~oSW>LL{4){kAy!*6tjKOU7hfb+;}6MxJj#^v z@;Alzj@|PoUAUiLmxm^%=A!`47Moi3di6@`ecUTLh@vqe&O2Q^0z&7{DX|aAsz_b1XepflK*HT*LI^KiJw`A@js^dU8`Z z<8)?bRI@p{?wm~-b5{Yh<19+cHqD*!x!VVmAhpd322vO9`7aIG2y2B8gtd69P=uE( zDa9_fU`sFs@8>H2qpFiLeMwh#C@Ev&J^7|_+im_dVTLkz)wvQs5(;snm`}|T*GKSa zwg&GLnKibBf4h32VAE!;+!Cu-BJ)`a0(iY_!hc}$`Q;TeV^;CXlphmfer|9+{rPib ze*nBOWCCk~riQ;|OT}!PJ#_q;;KF}#1$1zsLY!0*oPzU@(4{BSX#l6wqt_yfe!e(2 zm&OFU2Co%s@qV@vU*z9S01g}n=fMcL1s;OO;8$W9QAlhinuvo$oJbI-2uyrHoF_(! zJB~(2%%M9Hjv>de<15Eq$8RK0mXKv+ExCzoAX`Wu*+(YGPf3%UA|H@{QUbM-DyLqj z>M1wnr6SZJDnWfjeMw!RbLnEboZd)#>BInio+)NFGYyQ+3^2!-S>{KUVRP75+0Cq* z?O^w_h&{rdWXHJmT!d4(0qzVp%#CsnxMzGGU(Ijeckmv*gO~X(ewhE5zt2D9p9+NF p5?&J;g@7Ons$d9bgmc0LVP5z}cq+DtJ~1F_A{M_Bf5*mB_%|@^{E7eo diff --git a/WordPress/WordPressShareExtension/nb.lproj/Localizable.strings b/WordPress/WordPressShareExtension/nb.lproj/Localizable.strings index f236a311816a292f5db88fdad4efe0e8661473f2..dfcf00cba0d4117b774da4625f748c0df28212a1 100644 GIT binary patch delta 1541 zcmaJ=TWl0n7~Z*cW;!!4Z7EXd~w-#s>q5K1fibi9G0wL7$9GeDTcAmY@&5P5%Es z|9APnS?*fyx;Xm6fx&~)p`pV^lEWjTEn}~Yr;K!FBAc7cADx;ukHMK)3l)kb`*_)z zb3MyH5rlZYa`II5^qI3q$Ypi|xyOWEnSIcmMUJVrrCJ^%`a($rWITkssT&BR`z!l5 z$8r+a%5CO$a-$sP-s9W(9)3H2h|loH_yS+$-{9Znukc^+Kl951FYFXv6b6L6P!rx1 z-V&}0pVow1!hPXK;kPEGX-!jS(=%d=xK11r&x=>YCGocSt@xLekTy#LQd)Xjx-4Cj zZb-MKyYig;x_n7~UtW@L$Y09e%YQa+Y(A(=DvnZ7E-IIlPn4U=1LdL0sj9k79Z@~? hoVuu9SHIHsXa}{VhPAWWdF=yDSk!K6_sDmvz&{U&`p^IX delta 1463 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 diff --git a/WordPress/WordPressShareExtension/pl.lproj/Localizable.strings b/WordPress/WordPressShareExtension/pl.lproj/Localizable.strings index 2940abf316c5ab0ec2044064cb896f1a31960c55..f3141c14c5ea60f38de4852d0f27bad58e306509 100644 GIT binary patch literal 3214 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 Nj_y(9!S}?@e*kFp<%<9S diff --git a/WordPress/WordPressShareExtension/pt.lproj/Localizable.strings b/WordPress/WordPressShareExtension/pt.lproj/Localizable.strings index fc8ef3148babd44aebd041b11732c8fd0dce01be..8cec4b09a50d04b5addb8e39f106413d9983493d 100644 GIT binary patch delta 1446 zcmb7?O=uit7{}*xXJ%)&*?eizCge?o(xfD94^|_ou#HKZG+*w{er1zv-t4@)J7zMo zdFS0U+oIcgu%J@3FO^acTI|7t2N47h_E73YJ*WpMh=QUhA~A{{3c2{sZVUxM+QTp~ z&oj^edH(<3h3*U8ug#8(jh|9aPfVVfnx2_$o_jVHHxkKIIy0YLSX|02!=3dNH3 z+^W6ixaD>19e;vUHqLHV&z(O*bJ_v=HScvNN1>BPb}rHyhZ_i(7#0X9yB-0q^AvqS z?xOoNg$~R6gN6Z%o?%qWi2k8<(2GJVD?cV1bF7)x#6yR2k(L=3zzt~GaK%Qzvk3BX zk;q(S#kRZ>D8nMEPu*4z4#yL*sre}vnwC=>8XC$@I3B_TOj*vVF@rWqHip(*wvhi} zA!g-EVAOR8atOU8rL#*hL@L+;#I5hjly^ngwE7n|GTE4rFf3xDj6Vm=z%`VMG>;>a zFZrGI4OweCYMOws^Ky}H`i1@|{ap!&xkw-VPVA&*QKQ>x54|qGSj&u=76Jani_^%o zAeb!^%XQd)9q|&x2vpq)1|D&76_gN0Z1$pG@Wl|uF3uRN0*lac647$muHJ9YuIUSn zL>j*2B2C8{aa78-D?t;P^sF>U&$0NX^o~$AQ8poI*hJq79d6x|8}sFilQ6$ZZ;JnGwH?P;6p+5~6D zG;tH0!+9LyFlVs`a5j4vImrFO{m8lLI4V{wMiGU9-td2@8h#L}n2A1@xWF0Q7Du=W zlW=Kou(y>(83pbNK@0$&e6|sF^hX#+|I5_AMV~2%0mQ^AvQheBdR2?2_JXW)vt%&z zS(Ax?<8HXAXxX;d=?{lbot_W%k$>r-?OH#*5$bQ>)2c(0Ou9DHV%T)jcLJAuP9mv^ zqT^zSQ>Q8ro2Bh&VR|@6T$)z#)U~CAwZ!ZV4)`56@C_WL_t)=7V)5XM4T0gcwK6jdZa<=w3L*V zrGiwIUXrd!Z%cQi@1=XPBp;Da$S38jT$3-!m*w~6+DGy&`L6t}{98Z|v<12Xk1I!& zVP#gq%B#v7%6rOf6KY;vSFfmVsvoPLYQ5S~ZA_ci=C$+MW$mW+iS}!- zDfn{mTJVl8=`DJ%-mj176M9z1`c?e{{WJZ~P*-RmbSyL(`YQBSXeTU&yTb!g`04Nx IUET-&0bjJy+W-In delta 1380 zcmaJ=TWB0r7@q6S&PB5^rpd;XoU}Dqi)kZ>w#LFHCT-$2+3wEXvPssHos-#VCNqTEhQqGxmYLUE?lH#;|9ejF}T476xgt#eEEvg3Ly zet>HyR?n~1pLmi0c3(7~sx8=7P$hutBR@z|Zz+wI-BkpVma~+}rjw-!CqO=Ko=HhO z6rD-B(6Ahnd@A+b=>{0M&WYKyRjGne*TKla;jKw>QiV9XLSqPD4#~qpq0w8wxQ-7sChQ+gA8(%KXB!pfX+8?Oi$6QQr0sd zZVgzD-LXACZ2&xIBHE=mW>^@6p`l%dI(0>>mDk{V%wGf`5(p>LtelXTtvI)<#>*Oo;9#J2G zl_hda?j%E6oP4bvI6RlBLO+}m`M&G#p2nJ|Gsv(YnD(&cI^+X2eq7g~859zR0Wkf@ zwKSn?)o=RfE1kfz8PMUBzv^Ex5>}n4cMwu^5MeWSYM_ znooGP6*5G%mvTARrj7rte($c{d#F#YDo4mqLbp;J!`4a-VHl80^1dOu6X7QMd&*vp zwYMat2)z)ZU4^8i4)??oz+J$|-<6*FG~7TsP=hOW>vTbBih+RRu2N=qF#lKi1`}mo zWY(GYm@k>{nID;7**3O^eT1E4&#^w+U@x(ReU)8jKV-k*PIC?ya1HKd?hWo^?gqET z%X}Yyh<}hD=EwPIUgzt4gMXL5#$V^Z` zUU5J?E@s5W1#vyn8@WI7a0Eu4j=U}1D?KEYq^k6SbXj^`x+ZN%pGh~QKcZW5r#vj5 zmCN#){EGao{F@R{;!3|Vq9m1~azS}cd0*L3HkDsgQSDIs)ud{uj{1!HlDe*Ls9&gC Z8mFmRMf0_1wKug*?IzQF$l~oie*-q&yTn8D?e+ zU4Ax1qYoOTxjq;Z4JJN_Pa0wrl|&)N7!$(_DN#v$Fc^P`555q2@yzTZ#F=F71{sNekf>tQ&aQAjs7{;uaKTy1H!WZW-Cl(zOdc&otX*ax>%4k6T#N z&C<}&(82-JC60&2b@OO;lAQ1sW=O>XlK#cwjINf^uw{D0^yp<_e)-T0@v4rAJS*T2 z{hO@-Ew};5*#<%`t9u5?`#5M4S3p#9lz3{{&kT4%>U>($kO#60N-Ad?z>3f{zLPH~ zz4Ru(f!cg@?Lt3&S3FtIk7&AweC10MMAI>vvOV20q4J?j89M~6T2%+Rp5?5fGI0o? zFZlt#9dR7X$!8&gOISB^Y1=kdAGE3I&0=Ft4QC2UVtZpqRbVCnHH{t@2I(a()z`88 z!6Eu_KfI8$HS9I4D<}hWf=xaA80s@LRMZXP{zqrTr<2`>)uZ$)zI*Ld6bEA`Q?*ixI$e9xGS3P=uo zhy0iR8tQ}l9Nbh`9{O1DS7i)(CDccM3-?eV@d-T~X{RXOIbj6#8gQ{8*SXIsSgvY? znS{~`gb`!Fw-f+Y8Ha@pQqo#g4K{7C>gYaWQQky9i!8AHz;y?Gy`_t{lp&gm?V@jo zwq8sn!z{fV+e$x(r|4d3PbZi-;#mG_X#{jT9zNpRb}g|vUS!gY4J~y>1&97l4EE-I zS4j=p6qJsfdCzx*Rj-N-y@ow{RxZ+iVk7jM_)c1nJxU7-M#VrN1~7}!fpZ22Q@ihS zOZeE}5oQ=V!9=(XfddHA$q^<4ihb4UeOoMLOH-RjUx+7@^E1S?VV%jG5A3r)CG7wUVa38=ndvK5b3Muo6Dq=e6UR_lra(J73Mv51B=)v**xpAC)m?0W#4DN zW3RDyxHyNnQSKm@<1km`9Ino-bGNv=JjX})R=%I##!vAc|CZ1p^az8(eqmNPEEI)R z;U(cs;koYSLhYfAp&j9;!s+mt z@Oq>((i3?+Qi{|f*CRKhyQ7(CExI24J(h^|#>Qfrl#;efW71)%D4mtwkUnmaTb5eB zh<_dbQx40c@}gXqUzIP(SLGk&UlQrWi;2$@x0Ep@tCW-*PbjyOTyi2gn>>`H$@9r? VTb0%>CU`iuaWeJh**sde{0pw{(~bZD delta 1532 zcmZ9LTZ|J`7{|}t+UaH5DRo(P7qSO-DXXvrL?xgrsda(Hy``7kEsNAcd$t{z&Xk$y z!Y-GF7fnP7n?vH|!2}X75Fa!o7)25#`YI%vn8*V!CV2P3CkaNsnHDs*$(%Vo=lj0j z|Nnixp17VkJE2I!J9q6K+4J1!*!aZc(!QRD4(T<+tRJ>)r!jxz=)&T$<0nos%q^Fv zCmRQJ&8{-c_x6zr#ip@+HbZOXJjJ7$aVVS5jLwc2HnkjY&t|25dGDx6%9>GOZ*#q! zrtP>v`!ZUoiqodyP{S#ztJsnhXWde8Wcpdnu4%TtFHMXR)gdgIOzzK6r(qe`F>xId zeA^RxjWxV#E8(rHi}(BQSAiE&OJpno+Y5SY>_#~i**I%atn1@ zRMmFce}8xH7F=)eIH}Q@G$2$=YausDDr{Ux`0}ZGU0+}~xq&UYXGrPL|ImO2&~%hV z1kEE28K{CVs>7~=C{D05(wc{#&sK@$3Za%|S`T)^-foPRHG(JVj%FI{w%D~Tmm?K> zCRHwD2VSOH-Gi#*CMNSl)5!syVq0^ly}#81Y`4<0*TuoE*iPz{s%|mw3b0MJZm}jm z(=(N&IxRVcoV9>Sg=o;1`;M?lt`9sMXm`4Uy~p*jH-%#?%-GXP*{j!t(0^1er<<_uRxR?DcuWim`s9gs@ zT1XiUoh|}mQH^Ejyk?kKCzx1{Rx))Bz-Ylm?$2MENfF>A4M^ z?Z_MVLoq2i4Wes{#4*+N(3(L&!ss^_j$>g(W;a5q%a8daPB7KMwwzt^bgEUEU5&0^ zcHfwiJ1Lq$l1cW3GQd{)Rt1ji0uMVkFrhj)>swgpoZ-M5wyq&EE`z2eL73@ zc`&Vp#(}@)!Rqj=c&Zx6;)Ftb;50giCcUYF8G`UgctV{+DVQW3)RtPLEeoGi<~*Yb z9GXaDn?uW&1Fl<(ECAk ztJI)5Tx96J??gJaM^H&HqGG5Zz%fBPe=*(;Gj z_N{*h*t4bx13vgtSe{O3jnfdEZK3!B_HK_ucV_ z{U`iq{Xfb+c}$*?UyvR7CHYnPg8WG!9_$Vt2{wb5g4crI2k(Z4LdQcNhJFbB8OGs( za5_8|-W$FczM{kxtURHNDCd+*%9qN$h!jagc0^_(ry?&$?nLfJ`RLW?&FCL0R*ULq Tu^x=P56`t$)NHTqWm*3}hvLF* diff --git a/WordPress/WordPressShareExtension/ru.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ru.lproj/Localizable.strings index 93f5c4aea9875ee963049330e5209fc03c86778f..d2f7c4ae5c0df6d2304cc1d00de863c5daedc538 100644 GIT binary patch delta 1470 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 vEOJ$CQd`wt^=c}!GuhnG@W|-c_=&EQ6VH>$yiN zhJ|-rkeS$?NkP_F*3pUA)H$KHE|&oWnnQ{dSVs2ihNtrk;&8?I-#n|APoe+tW28B&=KDWElH;7a32sB?Mf|^B1M+u6M^hAj$_u? z_jt?WnP*A9{E!gf1|cR&BZ6j-fh<%+8ggJ&L{v+#bK-`rC(Hj-I)w2y2H=ty5_-0uGuSKP1+inA%;mNO{%$uN8OW6$2GSJ&n^ht z+FK4#FJJP>8X=%9*NkFyZn!g-rY6mMBbiD~BSm6B7w$R2Qg|acwq?1mZERfH$ll~n zvwU#p3ImNobrepJMQQJD=Xn^!*6yv7u7nF7i_sMkbEpqK-Sng5i&)Y8^kgt72I znJ)nhvDHVHfm_&GrA;kBeKz>e@Xc0x;V{c?MC6bTc@FvwO#Ua_+y4KgQ0gKGIwZL-F0DC^mIc`MtYY<$Z18Vmvt%cwTpFw}tdG|ilQaAcqX*mm#B^*j8B zw2u{AHnUe_Q;bHov3U6Ex&q3f8k+R&#_&HWDZ5;CwK>}%FjtBI>D}na|Uk7`FM}mvN&m~#vkb0zHDKAY)FH4uD zJK;c>gst%T@a6C~;oFgIkwWBB`Pk!z7ZqhfSrv>cs{{u=#Vj?3HSy1XENBwv&7 w#v-vqY4c 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 delta 1458 zcmZ8gZEO>D82{f(+uQZp-k3Of(O%fnF_mpVkc@}~$2N!CsO`1e>|FD2@4xow?XKS4 z1{J09$ruvCcr+0|m|z0FM8K$MjFM>lVho^(FNyL2V)T!@f8Ku2 z@A*B?UFo^fbNs*^)`IO+pL9Kcap}Op+Ea&~e&%o;H11AmD!Ev&Os@6)Ih+z z8r$5AX^T}0+c5+Bg$>JRJY<>}(34n|%Tx{Ow|M5&RV$NV1FedaV3(O;!}PUA>hjTb z(%MW52&k|c`o%RuUhPDdoqO|YN1EcihD+!DW^H32U9VMHUR76M|MfR=XBygQlXQVi z4YI)Y*Tgl0x=u^p^lrn@e0*eE+rzGtjz*WL zY0-kkG|%*zH`m&M=C$DAC2`Z5_7Ub6%Z+Bu6y%m|WkH>vUYAWXixvGD-K}Y~L`~ew zEkz*7b)kkES2n#GUgx^tW#JHP3vHHXnz9v{OW_kGz0D#z4ycg=afnNNd|Bit9KE9B zeeI}_F?`Qstkld}iNP1@^YY9%H4N$^Etn6D!790z8-UAd59A`N;JTFP>|-dU-$X0r zb}tp&n$IvD`os6f8JWa@hhdscEf!p}GEc^vo`&K-!*9{8ASzR^D|iEHZ4=$ubj2)I zs7*2$t`Y;;_=F+j2KQU62Bn^OjHJ+S;QDZBEAhrE8#yIXg7v{JE&*?c*1>tD9X^U} zfYIon;HcfVslTYifS0z5X*@GXw)Jkzq^s1W&vus?rH_t5m&6@W_ zEmX~>zPSWfW25rSuy0nFk3P5>?vtg$jBo5D`bTHjski3t)Pf4!EAUBl|LIAgp>oI#eHi*t8kUmMtn{38LOLm(k-l&1ljE`_d-8Glg8ZF) zGdvPL627DeN=O+{9#BS=q>@oSRxU^Gjckn=kt31okzXT!MTevNq6eeTMlVJ$MZb-0 ZiP2bD&8ua#uD+xG(LTqwpNDfD+COzC!S(qaQAGPBf*=Y$6nxNgXSbVe{-nON z;0Chc-gD3S&i9@3LFOIP@caV@eu|&sg^(zPWhD}gJ+=XDj5lrC+}!eb>z20mj?S&y zw&NW;yLNT&?%DIi-hGMQ$QX0qpJFU)PbcnaD%ReqQ&1!q@6K3c-lU9*asU9zE}_2%0*Xum?yJNwgJ{Nq zmy5@1m4mWXFkL~X-KJLU6*^tnY&tVNabW_Q1;hY$Zrt*y>*EQ-T2LqHqCYoHOE$2` z4lYg`AYsb3d};yQOjfsT$4g+(E>S;d`5Ii{YpxC5U(mnRJ}B|zND zJjDh)2yhim!_Vu<%hS{^yTLp#>X%UpCxCLM3M!)-zDZ{pG(1U4AWG9Hg&d6hfE5Tm zKcs2c2ibD*tqrQKM(fU1=&!2JC}jFWl65()kHI3e>td46+hrg`v#EzI+pi9=L*0_$ zd4?VISQENLHG?qWfk!U@pTsKcN*ct)Lt4qOVAoyZ+it*OUMCie91K3J)>1+*IeS_I zLfJT7Ivb=s=lDP3tW%fG=OuQ*D5I`xyR+)OJ<1F@j#+6OEXc|R z>tc1kssodYZ>;V}ZDgsI9iatMHbFVO2H_2Kwl{>V;JT%8{OkGWGLA-o6()NwzGoHD z8pW;Gs<(NXwW$u1{K87xB4A&X+18GfT{bnV2h0X`BN!kMgg8thmx9+Mv(pqVY-=V> zO`3;px37Yv+EUd#vLlAagjd;C=HjhugsW39MVG4--&-FxyX#rQ`4kXR1WmIw6Ij{V z!!+aq+KG5{3U#AHh+pQMwV7JaBTqucRL2x|waWf=cH)YcdZ z4`EV~h>oJos1+TCs5bVyIx=-D3>^Q#9sZGa_5x7H)}$Ti>saZ758&|sZs`T6!kBMG z1I*agvh)XZ^CBqO31&8gwt?%6aSHb;_b%VYV}5|2@(#4BP!tcWj*Z;3a= zFU33JT}hPoODCmaX->K>y&}CPeIR`-eJw7Ntu$s0=D^D(@+uDPJhJlsn3wk><#;NG|ey3hjmI{& zCuuf>6-7c~11vxSscaCR9TKcqAlS2j1%gFa2qYFrg=H7q=b0pKo3;UgguwIj=e>K+ zJ@?$BnRQIV^Y`t$BMtEpL5#-YiDatjsi#r1v|;0>%`MNgZrPe{Yu~oL1MleU+S%RH zyX)EAdoq35z5Dw2A2@jE@R6g(1_qCxIC*Ml_;hY0dgknNqhsgJk6)O$xFP@iWI--Y zl`c(Rp1IO-^_tSP^Lh`NEvvMm>Bf!zIkS4mvd=pMgD<$AUsI$_1u{>u>XM3&9ozG< zZ4H$2wON3uD^geRwA)m%quajiVFK^v)kLFg^~@x#+7M&hu;vQI$?=&n%cHIzTr1L! zoLw_jtJlY-O;qd?&C6n$IM}zbOMQ1SdwCol7?zgJW)%qs3H$5m?#tG|c4g8i>o{jy zKDB&B+E%p4tVvn4niFK`Uxo)8N+X6>H9YT1j#y=C){|VDq<+n{*cMi>JV9^zMcMF8 zTAHK)(Y6$+84$39^_Wy;iGuJ{#o+`QxT+W?RU|iWQsPl;l9~koeVyWx?W%c~dO(@u zWT1Wx8$sHY2idY+#l%u^mCRA>)m(}f?HbluO9(Iq5m`gvk>S$}3kv()MNBkeSisg} z+tVOS&cn$}(NT$C?~x*HZ1flSzz%c~n4dnQ8a`%AO|HNZZk{tZi_ zQ}y8km=iW8^TaTNabSA!uGLkKy?V;h2(6Hs39RE#AH#Kry1C&j^~*W~8iazPr|QuZ zsaVo&+wn5kv#Zn()-1p*;sw`+(Vo=*cU?!SrK&I?e zfts}JPs_{l4l4j?X9{3STAji$t%|g34dNeB+oL_Ep+H5t3AkNM%4NF-m8mxMux0!8 z!E~t0JOz3ba-C|>IjVu5?YK!ath2J~Q9 z)-q%b4WV|_iH6a3)P+W$F!+rsG}MjK@HvR$h)3f(%Awt8boIu1yxD}E2VhG-#5j%i zz}aRl%U*xCQ&*rm9;#$;`N!EcMJ-T79~wbz6#&$adQk+8p}zl=XIFrUE_5U)H2y^I zo&#O*z`+PG5!&~#ORdMqZK)l?r6F}3wE?|b!yzF-AKVwwQM3uQqC>E1EBjv7#Gfi>yND3XoPT`1fTsSLS6l7shSQ6eBJ{GFAH}|k{S^B> zzB#@lo{gV~kH(8}Eq*J0FVUIUn;1;w6I$Y>#5;-a5_gk{WLt7qaxi&4`AYK5R1yMVmUB&NWrJ;E3?`U-J*Len(8< z|9#*8eP^|MwfppBY-G>geftlLj*U-DPU$O$k{j%j|0_p^CL7Y3XFinGs=itC? z=x6+ER1B?g!yspx2x-F#Y?`U#;0aP>0O`NxE>fe(yQkP@wBDo@bEhJa|=!nlw zQ)04=XHwLrxd46;I%2cCEx%;>zEOWOaEsrv!I)xkE;Kb_zquP6;IKY7%xDX2^VzjD zAgc78-x5x63gsR~WfUNSY-kNV39q&s2C5C~nUTOMQWlVxLk7BwJh-h4DXx}4Db`y> zd3ah|57#1b$<_MNAh@A}a5|#E?dX0uu5O2?q607xA;}WTu<0VQ5k(HN*rba*)L;ML zW+*Aord-D(MGG#4df;YD5@zFe{d3m%85iW~tb|{t_hjvyY z3^rg_n1TDK1OxG8f<<#rzJ+PgrmnUXZm6B`H$y%X9ff>|!km5{ZbjN(Q@h{=We5Bc zYfmm1wCE8Jo7ACI%b7`63l*EV+D4Rtflvabvl70(qgqg%PpV^^MfFh{g`=EM3o$~n4;fZ ztrHft9dIogj-^LQnFKSVq-xRtzEBBg1-P)i>PSoZ`n@L**<~z%Y z=_@r%lF`fPEVr4%+@oBE^SNd21P9zX?i=nhcZZMhnBT)6;L|+e^SsB`_$&Nx{67LO z$ih0ITNn@~g+O>)Oo;7bpSVw)5uXwBVpV)ed{cZ+yeM81??|FFAk}tAyQF!kCY_RA zkv@?=lP*YCq@Sc4AtkgS)Ee5`ve06+oRv9ww>%-I<=5ql;f`=`cq#m0_-f?wh!Jrk zMbsI%&_dP;poy`cUY7vh`ZBz`V_ kMMK)8W^B?6mG_^FVxU?KH=TZS9#JV+DJGks-s%r_y6X)BTpq9IqC`w6sM&I%HGbuySx6 zw>8GfE2kB-esy!H#|~JT{_<)Z%EgHfC>%JEj9}owTZKA8px>YQk3h}9XjXLYO8`Y ztz2XoRec2e?|C(Ms_G3HrUf?H%PHh+r>u?A91IHye|mqhXqMq~yuC*|K(qP(QR8el zH4~)}MGMG47Rn)liag38MiQ_nZSHtEHBX(Y5au|x^Em3OMMs!!P%={V4BLWLv3a+q z(VRQEU)PDpH{+o<{+|e9A$h_=)wOK8Na~rQ` zLB%)OGM-{4%X(9qQzkS=4L+BD9Dz~X&OO}zXwnUE6Su?L!Wqd{TagC$0}b$MU{frI zrnt5;PND)b5rumSgK}tV^8rM0TlIuH;PG367|QdQ!C5sAyF)D;X9r5ccfq4@HPiz4 z;ywQKAT3f4?nXP{weZI7iIi1NuVr9dE z#b^=)dHg0JD* zc*S?vXZc)T#dpbf)py7DrEg6L3T?s`VVAI1I4Fz=not%h!VTe;a9{XZcqoR%^L2lO2(BZ410V~Y A2mk;8 diff --git a/WordPress/WordPressShareExtension/zh-Hans.lproj/Localizable.strings b/WordPress/WordPressShareExtension/zh-Hans.lproj/Localizable.strings index 07d27a25af9e34cb5102bf8145770124dc802244..a220e9aecbfe617a41f2d6a0a80978e1e2dd2eac 100644 GIT binary patch delta 1469 zcmZ8fTWnKh9Phbb#-JP9+=a;pWLTXW84sFxhskY@)3rUjQMP(c&$srl)1K0E3hOpj z6M~RTgz_<5Of;B?fe;g3rtrW6@j(+MK_ep&r}zNI7&1c;Nfw#k*A_+7r}O>)zyI&n zncA7!qyCCbo40J;*6~K?cE#US5eSCVyjD{^Y$cL*3hqujZf4Kkk?iQ$_`Xi`A>Dwk zQchz}yOxYXE8<-q()K`Lq_rUzq-@6pcJc)@!L2~+xm7?_wV0!-*%bWWq85XN#T;FY zm)CG=7lxu7eJ)U_ZG76fJ>GRcwZCG)^`PI`L}X2Eza@wjJ>{cBd??3Zgty z!$iER(Hv8UQjC;8vle~Cjph0`8Kw(}^MUQqFg4&$xu%`O$l6d`OGA*gGil(sb~+2< zFb(nb0Wu(TFrBv3{VJYlG0jYNZ%C!A?Bg+&ve{YeshCW}yR5BPQU)tyu`~niWn0h% zy0NLc?eP-HoQ%WWDMNFM(M7yIw4G{v@>$Si8DPk?p!1KMO+=2mQHu_vOH4!l&gx~o zL8uwHb$uRp>r z)}xpB=3^q?QqXZ^UjTYq$7l6kfMo;Mzzf9aQvI{2+@)Zq#6F3mQfCTyZEyj`W zdwwLU3s7>gXhA2-Sn%|80iu>?e=q3W|9NPZ$S4sc7J?^VwBK zzLG^k^GMKQeNi8dw8(4@+$G_7fTzs^#=az%(Iu&s!^sWYML&xG4F7jy|F+Rr3;aX( z;5m{4dP{y9HA}KgdLtF!-g10nt@&@jihP2bTv)8vk4pNlNRif*=>cczj!qD}u-U4m zIsqD_X<`KZ#MkD=$AZls(KG4!n5v@y^&HhtIn)TXk3!UG>TBu>^?)v?0lk^-pu1^} z9-`B9j=o0UrWY8R5t&M6EwhgCGcNN!Tg|RyTiC5^5BnxN#AeyI*=hD9`vrTGeZaBY zI__m|BNyg!+(GVL?i_cXyU1PRazAjt@nw7!zk+Y(r}+=~^ZYG=7s>>$&@8+n3=1h? zN;oOZ2)Bhlgoh#{E)kcD9b!n-#h7S`8S#*q7e5o{q@_|o+95@yap{2cj+B=^k!GZ? qq|4HMxj|kpzbG5BDUZlg@@e@~`HFm1z9G-c_vF9mvMN-)1pEyRXZ{BO delta 1398 zcmZ8fTWl0n7@pa=o&jWO=^bRGSe7&thz|%N2G&-nWwyIB?Y1m*nb|q)4ttqpXSQ@( z=$fF>WW!}WfRz{p6SM?LNDLwmJm7=)ps^|t!63X4V+^SwMjxu;IlC1TGcV^q=llQf z^3TP_i;YJEHC$)cOIx;fzudD;3G@a-svra*vfss(qoJ$kvPlb8e+Z5pJ2dy~ox~D-%a& z=p_xdkzn+P~6mIM2=okt?H=oPM zt}SQr08N1-Zl7kkDHskx-NXZ<-uY`PZ*o4H!gSC?tC*$b4;-wtZMD{myCQvAQ+KO6 zqu!cXCzwFaVkekou+y|$nLx{>7O}anItb}Z9a_aUF;Q;=R@u-U_13C7_G{+!-EO6q z7}B&t7Dm0^*|GoK6YL<#MppDR9PncaaXVMgdi6L`m^Qv|Q#P9_pefq-jJ8>iCI2T4 ztHIJzluGH;FlA90Do)8%7FTf!%5CT{w{*o$HKFH-5tz%_xyMy!rP>BfOP2##*RnI{ zF59$D)AYDAu*o!K7a#ho+rzAiE$hR&mC}tAlpV{3&QNs+vQr(8CfJot3%Z~iOAxXO z1Z(TBqEOK@(9*BM6pXopTCO1Laoxgu`8N^NOSj?-eY2acLz8qXI?0S7uTVD!zCL>I zQL~|bGsK`f;+h(>Fmu8@_IK=z8T&Q}$pMW>i$OdY3;T{72txF%uoB%9cp(<~GWc5L zGWttu>n+*ZY4Y!;SHu#vd37VPe7x`;`02oMLeFmLi?tN;8j| zt(^}QDInuq*HH4v{+PuQA_&(Hb5Hj0agV7CWN}R_TL&x$ylog(CHHgKkZ7ixv{8$HR!#~M+skPP& z?p4kmZz@fj+usbRN5MoPiKamPavaLoxS5^_ogxQ=1P|dobvo}Gy_LOek}OFl`T}$` zR=gj)q~0V?RRabApjvV5T;nJ(evXy?D1TMDfy$r`-RGY|&q*uLM!c&hfWJtIREauG zou$5}exUABztHpPX8L)$o8Cj`=pucXM)ceCY5HUOJI@wR#^ZR3o@1VOJ(oP!J<|+e zmN3hhwaf;liwQ6qQ(%hBhs;OJRpvJHCo8dyY#Y0g^|L*!$|l%-Y>|DR{e->3)p3is zHf|lKa>a4(G{1;n%WvS*{4ihS-{H^k-}86*-}xCq5^9A;VX?4U@CymyhRBQa#ie4q zxL%BkBjO=(QamqyCSDV##2eymKm#7MgVo>#pn$z#6dVL6!Fym5oClwRtKf4mEqNqC W+9>&@ZYe6gBAu0PQWR>K`{X~KPTTGP diff --git a/WordPress/WordPressShareExtension/zh-Hant.lproj/Localizable.strings b/WordPress/WordPressShareExtension/zh-Hant.lproj/Localizable.strings index 440f1f2d013b1a3e028bd35e38371cf6ddf7c967..dfe22ca2502760645e715231e706407cccb8c812 100644 GIT binary patch delta 1500 zcmZWnZEO=|9PhoqEDL1}*eH`{5M~v(Q4)pg96z4f}@b*$Y+ zKaj{6FWY=X3o(l%e1NFQ#F&UeqVWTXnqUksfq+4cMq`wO7$lhy?`ao8H23N5|NH-5 z{=b{Ao3ESguHL!pmG<2ouXc7x-QMMM{jOSlIBjI$NY=D+qx;74h4G2W{b-(ap{s=1 z(9L}sXbaN_fQj%vzvROQ(Vo9J3;RIBeJ^@rQoD7E6LQBW=O7g)Y*)%Ag-wxojF(M%llu zza(X|mA}}OJr#yfP_uN{hk1Y`58I)Z?}An=iIHWWHnexUsshW79d$N@GP>;wqB&|6 z6?Lvhx2bxRp@g}!P3ROeUhLbcY8JrB2fCoD$)G!9X-3-KtP3RNEChKYmj$L}Wb+^i zv(RQAzymA?vsokC7qlmGLe|ou?U{_8fBZ~Kx9P9+RJlylxy(~3DQ7#QZEGspM>nJM zWW&alp2thXb3BfOGOBD zRs60V@kYM(B_ik1AHr6zI&-DxJDjDwJ~}a#tOQdq-1c7TEH4GC3!W5?uKpFchMi!7 zB_X)bJC8#e&gBF5P)1xWJhG0?^G~A9Y%{tjw$-SUzs$5^c6HC|C$G$ol^FCQzgklL ztn@Bwoj$Glj!wrVN2*cj3+LPkjKqE_5g``GcLq(`z&%Oyeu%H;0OOZ1PANI3o9$bc z^_wW{<1-#msq%ZRpvM1%3phK{#7(PWk|;S!#G@uFO(27H)x`aqXX~fF-}nBZA0Mt! zX2$~8kVn|iq8z_<{E&jH9U5uWul`Sc@?42fu{j(?x7({LDt@*!sEkf@w>x;pVaI8r zo&dyiL?2-iW5gtZh%>}j#5cqPvYG_sF0z9Rkun)4vt*IHPX0_TQY6JwHB=MTN_A5f zb&_65ucMpkcDje&OULOv{Tf}O-=V*t@6ZnznrUUWGCPVMHhhMd6rmLU>R3K)5M96jzDs#17FX?iI(yDen*)^ zW8Di)G)CBX={TST&5{{Ji5LkO4G~QI#22Fm2#II}qa+d&F~r0ei1VBlF)`=MdCqzM z&+~i!&-}{ymATF(?DicyTie=S@^&blzPbMD2ir%Ga zDlFR}qJF;_iODTi(t$}Q?0y2xv1O==mD++Yn)Zlk+x;zCG6EA=*3i%}=!ec|Iw?Dr zoWccE1&%x2s_7(P&<`~O7Yw_XHW&Wn(NqGrg9d7(*UX)=F{!6X^S9ewqS&)mCmR>Es7M{!*y>F(vSyyj$PXH!h#OYJh8Ci>JCf>`xjvyaZi#@D=xao5AK2?iO(354+e*V?AiRZhX z4)wx|i&gsAR44jMXec!@_unvbwbMQ$a-|EB3wl|qUK))@g7t^RE(jXPL1(!-$vEH( zec2TaT}YsuwA@R|>Bqi5wjYw*!1a-Rvd1`lt>*{$`oyh>Qlfy#%ldF--aF)P%2n?B zanFbQe_E_E2kt47?>u(58OW2DNv`Eyc0^i%-WDE58#oIs@as0};f)6_8bg1;vxKMs zLtgUKn>ubX{mbD-A}qWYCc**U(hbpr{Nf5~nD8Cpt2gQS!QgDXpC>w^57sNUm6Fbm zY!W*_goVk~B@@lMpUV&G)93P(Z z$WsM^v8jDAf+Kq#0Tn^fL8-RX@N>!ssBz|`vFpf*Yq{|}ix$O-C$TeAh5^s^&XbEy zwg7jp4%{8BpFTJ7twHQ82+xQOtK!69HN-d?Ts4Y}GHB6?+p7Ze{~)b}zfYt>V^mP22!C#97=7cbxm2 zyUg9tNSqd55og7m_?CE5JS|=k?})!i>!l`Xv(ze?(oyLW`nyE_2M3Mc A8vpr$R4G32Y$aP`!Vsip<(}08vn-QA_kT&EH6qi-gxATo* Q00Txw2+hC=rD0Si0M#QId;kCd literal 146 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12R K5nC{^PXPewRvXU% delta 112 zcmZ3-xQJLn=ca!`q3GvVz_~!CWx6gyA7$Btz;%eQ{0>L2+3%eW%!h Hi4zn60fiqe delta 133 zcmdnMxPehWsURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE`NGer|4RUP*DNPiA&%acEd( zYI*U*0&%ZQ25*LZhFpeJhCGH6hKG!i45_&cAwVGohGL+g0#GUwNairSWk_Opo5>Ib cluBYKVn}4D0_%CpAt{;{X5v diff --git a/WordPress/WordPressTodayWidget/cy.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/cy.lproj/Localizable.strings index bab21854cd02c457e98967f9b7eea5fb3d0a4c29..0447571f8d5a333d5ebfcab0f9e52a851c38e79a 100644 GIT binary patch literal 118 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL5L^nVni3;hdkFo0?Zr91)gToLQ1zR2=G_ zpHrS5>XDz8mKoufpOTrFl2{rMnOmNkQ(jrbAt)}Zrf+KP!T<)0j1ZcE6H3DXDz8mKo}vpHrUBAtRQj0PfoETCWiWz<|qyy F007~79@qc? literal 128 zcmYc)$jK}&F)+Bo$i&RT%Ertd5tdn;S(0B=9O0awo12@gf>O$w`WDVn R3}C>>2%#A`p)`z20sy7~A`k!o diff --git a/WordPress/WordPressTodayWidget/en-AU.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/en-AU.lproj/Localizable.strings index ed5f38f733c56b24dba5bd161ec287b8a22756fb..7fa299d008b92c0b917dbbd17e9032fdf4a1fac3 100644 GIT binary patch literal 84 zcmYc)$jK}&F)+Bo$i&P7!l7ZAspZ9?KAG96#SzZ=xw)x%CB+e8nZ=nU`9;MXg5t7j R3}C>>2%#BRp)`!r2LQD`5QzW) literal 84 zcmYc)$jK}&F)+Bo$i&P7!VzJa#hE4fMa2=$`MJ5Nc_qc6KAG96#i3!DspZ8Sf>O$w R3}C>>2%#BRp)`!r2LQVx5S0J` diff --git a/WordPress/WordPressTodayWidget/en-CA.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/en-CA.lproj/Localizable.strings index ed5f38f733c56b24dba5bd161ec287b8a22756fb..7fa299d008b92c0b917dbbd17e9032fdf4a1fac3 100644 GIT binary patch literal 84 zcmYc)$jK}&F)+Bo$i&P7!l7ZAspZ9?KAG96#SzZ=xw)x%CB+e8nZ=nU`9;MXg5t7j R3}C>>2%#BRp)`!r2LQD`5QzW) literal 84 zcmYc)$jK}&F)+Bo$i&P7!VzJa#hE4fMa2=$`MJ5Nc_qc6KAG96#i3!DspZ8Sf>O$w R3}C>>2%#BRp)`!r2LQVx5S0J` diff --git a/WordPress/WordPressTodayWidget/en-GB.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/en-GB.lproj/Localizable.strings index ed5f38f733c56b24dba5bd161ec287b8a22756fb..7fa299d008b92c0b917dbbd17e9032fdf4a1fac3 100644 GIT binary patch literal 84 zcmYc)$jK}&F)+Bo$i&P7!l7ZAspZ9?KAG96#SzZ=xw)x%CB+e8nZ=nU`9;MXg5t7j R3}C>>2%#BRp)`!r2LQD`5QzW) literal 84 zcmYc)$jK}&F)+Bo$i&P7!VzJa#hE4fMa2=$`MJ5Nc_qc6KAG96#i3!DspZ8Sf>O$w R3}C>>2%#BRp)`!r2LQVx5S0J` diff --git a/WordPress/WordPressTodayWidget/es.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/es.lproj/Localizable.strings index 94fccab34375b0cd16f15a1904abaa1182273062..6ec98b48c0a3ba6e81ca23fa0051cd5504ed53d8 100644 GIT binary patch literal 128 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL5L^nVni3;hdkFo0?Zr91)gToLQ1zR2&Xw zBo;^brYfYD7MCPO1C;<(Bo<}n7e_%P^GZ^SIRwRJ)%49Bd>Fuhkr6^Oa6)Mq6%GJp Cks+c0 literal 128 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12Tgl6D`(l9Cl E04LEOxc~qF diff --git a/WordPress/WordPressTodayWidget/he.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/he.lproj/Localizable.strings index e043cde68287247c8a5a49762133b0433b806a0e..2b3200f1412836f5ef75a67bb174913d06c80658 100644 GIT binary patch literal 150 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL5L^nVni3;hdkFo0?Zr91)gToLQ1zRGh_n zne_?lP1d^%3ak%UpF!B^K+YYY;7!)&AgMIgSFD#+^9D?Gq WYWgn02@GJs$OxesIH5F*$^`%<(krq6 literal 150 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12i}f<=6A%L^{DActgv}u+ XrL3uM;~BvK28@glnt>Ba!>C*UM@lQC diff --git a/WordPress/WordPressTodayWidget/hr.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/hr.lproj/Localizable.strings index 6f7e43e2551b86a51005d87a0421bc8e127298bc..9e0dc2a0f87376248d97765f39b16e9708f90f4b 100644 GIT binary patch literal 119 zcmYc)$jK}&F)+Bo$i&RT%EZPV8kU(_UL5L^nVni3;hdkFo0?Zr91)gToLQ1zR2&gd zl$xHCnvxmmoez>pEXs@t$S=-HEy*lN&B@B-5EPeH)3FduUi@YI$*}PiA&%afEYzZfJ`4{TN*MAP(iswg^k;@_4nc8QHGQwti46(>;ZYj` delta 87 zcmZ3$xPZ|isURn_xWvHV3L_IU3o9Eldqh}fab`(=QE`NGer|4RUP*DNPiA&%acEd( pYI$)cgAc<)h7yK+hIEERApLowhwMasX$}rSDP>K4r`U-N3IMQ$8f*Xn diff --git a/WordPress/WordPressTodayWidget/id.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/id.lproj/Localizable.strings index f4d87ae0e6fafd47126d347794e9a85a24bbe294..7f09986b39ba27bbd7c292d1aec91ed685893619 100644 GIT binary patch literal 134 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL5L^nVni3;hdkFo0?Zr91)gToLQ1zR2=DD znwM3Ym!6mx5?q>{7%w2`oexrxSfrZ`Wkdy}=A}baaR`dbs_9$W1u=jDBO`=n;DpjJ GDi#1~mm_}w literal 134 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12K4D`yV|Fkoba&nqsio;Gw~1gA>UHEudfm0G|dD5b2aZ)Wet00xYV5SoD#O2a5$0EQtQ ACjbBd diff --git a/WordPress/WordPressTodayWidget/ko.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/ko.lproj/Localizable.strings index d4d975b8631d3681e2ed6d62dc25e6e712ab7ad6..9d76f3cca8eb87125891d7d59d9001dfc87384bd 100644 GIT binary patch delta 84 zcmd1H^Ghno$t*50Fu20V#LU9V#?BEMmYG^!9O{#qomw2>oS&PUnpaXB5tdn;S(0B= ooVfQx@`>)FF2|-MZ5Cd~ki188x5e=Z9D?GqYWhZ&b`$*+0Q~VD^8f$< delta 84 zcmd1H^Ghno$t*50Fu20V#LU9V#?BEDmRX!xl3!FD;hdkFo0?Zr9O{#qomw0kmYG^! ooV-VKx5e=ZNt=b&F(jYpKI(F8O5)xR9D-8Hn)+teP80nU0Pz7I2><{9 diff --git a/WordPress/WordPressTodayWidget/nb.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/nb.lproj/Localizable.strings index 803bcf9e28f33f53f3d5d2fefa44da413bc06afc..74233a822799cf8333004767d9a0ac7955e9909f 100644 GIT binary patch literal 133 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL5L^nVni3;hdkFo0?Zr91)gToLQ1zR2&Ip zoS&PUnpaXB5tdn;S(0B= q92uUPT9lqxmYNq4l$w}al9^f@>6BWPpPHRoRLmhLE~_>%P#FLms2(E# delta 87 zcmXRZ2}~-;$t*50Fu20V#LU9V#>^fOmRX!xl3!FD;hdkFo0?Zr9O{#qomw0kmYG^! p9O;x=m7kiO3X~2?O-wGyOf8NKPfaaKPb^E#;}Dcm)|?oq3;-eQ9xwm^ diff --git a/WordPress/WordPressTodayWidget/pl.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/pl.lproj/Localizable.strings index 6a6a51beb89badedd69f57b4a8ac276752c5cc61..f9584ce5df2ec1cf975aade6db67bb2a470d3598 100644 GIT binary patch literal 96 zcmYc)$jK}&F)+Bo$i&RT$i&JL8kU(_UL5L^nVni3;hdkFo0?Zr91)gToLQ1zR2=1< d4-!Z$s!HV$6qi-gX8;36MhMNo2Bl$?6#zdW6+i$0 literal 96 zcmYc)$jK}&F)+Bo$i&RT$jZzT5tdn;S(0B=9O0awo12VqQsVF^8bIteU=8 JaMr{+1ptn!B830| delta 110 zcmbQoIFB(hsURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE`NGer|4RUP*DNPiA&%acEd( zYI$)KST-@QB(*r3!I>eSA(tVQA&;Si;UPm2Lne?9)K*$ll9`e?QBQ`GLr_XtQ{O5u IYGR!N0J4}OL;wH) diff --git a/WordPress/WordPressTodayWidget/pt.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/pt.lproj/Localizable.strings index 1d4837cc8b9c84f9a60b4705e9bbdef675435706..ce192247375fcdb05305111cf663d26a6462ee0f 100644 GIT binary patch literal 156 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL5L^nVni3;hdkFo0?Zr91)gToLQ1zRGiBY z#*oQS%uvdZ$dChMRRQVe3||>i8H&T)^NUOJi?bP=8S)u&fg*VfB@7Q4ih!!}8H%I8 gCM4#Sq!x1sip#3$dj)1NfB_>Tgl6D`(lDwR0Q5^Gv;Y7A delta 88 zcmbQkIET?PsURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE`NGer|4RUP*DNPiA&%acEd( oYI$)KST-@QBz0nd1Y4MUesM|uL_HZ!4nZkpO?|7th>0}{0Q}kBa!>DWk&hsK$ diff --git a/WordPress/WordPressTodayWidget/ru.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/ru.lproj/Localizable.strings index c22f3d4cfa9027ab22b5b39634fa7e7ca141237d..9925cfa7be9286f369011cfe7b37510b9c35f442 100644 GIT binary patch literal 166 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL5L^nVni3;hdkFo0?Zr91)gToLQ1zRGi5o z&*H#h$KuFh10yuV$EW~At)}ZrtcJ(!2kw~j1ZcE6H3FVS^!h<9FG71 literal 166 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12bpc|F@OOhBZOw)gwimo764E89H{^R diff --git a/WordPress/WordPressTodayWidget/sk.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/sk.lproj/Localizable.strings index decfdcee9354f0da211793fb27c16ee9914ec8d5..dc886336ab13c35e7de5493d1dad54d02eab36f4 100644 GIT binary patch delta 97 zcmeBS>|yjxD#*z!E-^5;!pOwT!pg+P9vYUJT3#ILlbM}b9O0awo12D$56uXkfDenb)vpF2Zx}zteU=+@5CGh0OJuI AbN~PV delta 97 zcmeBS>|xYTD#*z!E-^5;!pOwT!pg?X9ubyVoLQ1zR2<=)pPQSSS5h46lbM}b92%CH zT3$TSS6nTV!J8qUA(tVQA&;Si;UPm2Luyo1eo|3lRcc;lB8Q-qvZlUU0A0lFn|FgBZOw)gwil7698vRCF1}9 literal 146 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12+eQ#AnLq0VEaqxcC$^_*nSV`HX-Z2R>~+cRtBjkr6^Oa6)MqRR{pEv>G@7 diff --git a/WordPress/WordPressTodayWidget/tr.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/tr.lproj/Localizable.strings index a48f9e030fd58353910c8621f93ee33a9570ae1c..f4f2924f86a67a01d0ffe4bff5cc46003211952f 100644 GIT binary patch delta 103 zcmZ3*xQfv=sURn_xWvHV3L_IU3o9EtM`&1PYI$*}PiA&%afEYzZfihE#?khD?TBh8!SkVt^E9L}Y$ZX>Lwp(L{YoP7XnFSv7sP_>75N F3IKw19~%Gw literal 170 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O0awo12oS&PUnpaXB5tdn;S(0B= noSgo&oIAB3u{SQM`$+e$~qaxl;=`1f`TU_06m&`YHkd&V3#J diff --git a/WordPress/WordPressTodayWidget/zh-Hant.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/zh-Hant.lproj/Localizable.strings index 7d7cb1d58613b6077a5270e49b32a8b7fb0d625e..a44c74c910ed53d154bad6b1e7de2a0054cd980e 100644 GIT binary patch delta 86 zcmXRY2uLc($t*50Fu20V#LU9V#?BEMmYG^!9O{#qomw2>oS&PUnpaXB5tdn;S(0B= qoILN|)QzbX$;q7Evr;RPN+Y`%lDf2_7jX!R%c|*{**Z-OPyhfKDIORA delta 86 zcmXRY2uLc($t*50Fu20V#LU9V#?BEDmRX!xl3!FD;hdkFo0?Zr9O{#qomw0kmYG^! qoYbWiy(p2R&WSPDQoJRSUOA$Pyhf37# Date: Fri, 29 Oct 2021 13:05:06 -0400 Subject: [PATCH 23/29] Bump version number --- config/Version.public.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/Version.public.xcconfig b/config/Version.public.xcconfig index 1769ed0a6b6a..788b97730d7f 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,4 +1,4 @@ VERSION_SHORT=18.5 // Public long version example: VERSION_LONG=9.9.0.0 -VERSION_LONG=18.5.0.5 +VERSION_LONG=18.5.0.6 From a7ecaed4390266da95ea545cdcada8c12b5c9498 Mon Sep 17 00:00:00 2001 From: Oguz Kocer Date: Fri, 29 Oct 2021 13:47:54 -0400 Subject: [PATCH 24/29] Remove subtitle.txt files from jetpack_metadata --- fastlane/jetpack_metadata/ar-SA/subtitle.txt | 1 - fastlane/jetpack_metadata/de-DE/subtitle.txt | 1 - fastlane/jetpack_metadata/es-ES/subtitle.txt | 1 - fastlane/jetpack_metadata/fr-FR/subtitle.txt | 1 - fastlane/jetpack_metadata/he/subtitle.txt | 1 - fastlane/jetpack_metadata/id/subtitle.txt | 1 - fastlane/jetpack_metadata/it/subtitle.txt | 1 - fastlane/jetpack_metadata/ja/subtitle.txt | 1 - fastlane/jetpack_metadata/ko/subtitle.txt | 1 - fastlane/jetpack_metadata/nl-NL/subtitle.txt | 1 - fastlane/jetpack_metadata/pt-BR/subtitle.txt | 1 - fastlane/jetpack_metadata/ru/subtitle.txt | 1 - fastlane/jetpack_metadata/sv/subtitle.txt | 1 - fastlane/jetpack_metadata/tr/subtitle.txt | 1 - fastlane/jetpack_metadata/zh-Hans/subtitle.txt | 1 - fastlane/jetpack_metadata/zh-Hant/subtitle.txt | 1 - 16 files changed, 16 deletions(-) delete mode 100644 fastlane/jetpack_metadata/ar-SA/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/de-DE/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/es-ES/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/fr-FR/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/he/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/id/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/it/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/ja/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/ko/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/nl-NL/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/pt-BR/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/ru/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/sv/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/tr/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/zh-Hans/subtitle.txt delete mode 100644 fastlane/jetpack_metadata/zh-Hant/subtitle.txt diff --git a/fastlane/jetpack_metadata/ar-SA/subtitle.txt b/fastlane/jetpack_metadata/ar-SA/subtitle.txt deleted file mode 100644 index 480ee7925cae..000000000000 --- a/fastlane/jetpack_metadata/ar-SA/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -اجعل موقعك على ووردبريس أسرع وأكثر أمانًا. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/de-DE/subtitle.txt b/fastlane/jetpack_metadata/de-DE/subtitle.txt deleted file mode 100644 index 89260dec71b3..000000000000 --- a/fastlane/jetpack_metadata/de-DE/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -Mache deine WordPress-Website schneller und sicherer. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/es-ES/subtitle.txt b/fastlane/jetpack_metadata/es-ES/subtitle.txt deleted file mode 100644 index dc55e3404ff5..000000000000 --- a/fastlane/jetpack_metadata/es-ES/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -Mejora la velocidad y la seguridad de tu sitio de WordPress. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/fr-FR/subtitle.txt b/fastlane/jetpack_metadata/fr-FR/subtitle.txt deleted file mode 100644 index 247a88b06700..000000000000 --- a/fastlane/jetpack_metadata/fr-FR/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -Site WP plus sûr, plus rapide. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/he/subtitle.txt b/fastlane/jetpack_metadata/he/subtitle.txt deleted file mode 100644 index f6774ca70b9a..000000000000 --- a/fastlane/jetpack_metadata/he/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -כדאי לוודא שהאתר שלך ב-WordPress עובד בצורה במהירה והבטוחה ביותר. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/id/subtitle.txt b/fastlane/jetpack_metadata/id/subtitle.txt deleted file mode 100644 index fe037af57cdb..000000000000 --- a/fastlane/jetpack_metadata/id/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -Buat situs WordPress Anda lebih cepat dan lebih aman. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/it/subtitle.txt b/fastlane/jetpack_metadata/it/subtitle.txt deleted file mode 100644 index 551f5aea9166..000000000000 --- a/fastlane/jetpack_metadata/it/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -Rendi più sicuro e più rapido il tuo sito WordPress. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/ja/subtitle.txt b/fastlane/jetpack_metadata/ja/subtitle.txt deleted file mode 100644 index 1563b47db148..000000000000 --- a/fastlane/jetpack_metadata/ja/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -WordPress サイトをもっと速く、もっと安全に。 \ No newline at end of file diff --git a/fastlane/jetpack_metadata/ko/subtitle.txt b/fastlane/jetpack_metadata/ko/subtitle.txt deleted file mode 100644 index bc10703d2ac6..000000000000 --- a/fastlane/jetpack_metadata/ko/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -WordPress 사이트를 더 빠르고 더 안전하게 만드세요. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/nl-NL/subtitle.txt b/fastlane/jetpack_metadata/nl-NL/subtitle.txt deleted file mode 100644 index 7f7a99754345..000000000000 --- a/fastlane/jetpack_metadata/nl-NL/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -Maak je WordPress-site sneller en veiliger. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/pt-BR/subtitle.txt b/fastlane/jetpack_metadata/pt-BR/subtitle.txt deleted file mode 100644 index 92b0ac1ff02f..000000000000 --- a/fastlane/jetpack_metadata/pt-BR/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -Deixe seu site do WordPress mais rápido e seguro. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/ru/subtitle.txt b/fastlane/jetpack_metadata/ru/subtitle.txt deleted file mode 100644 index 1f4c175a4fac..000000000000 --- a/fastlane/jetpack_metadata/ru/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -Сделайте свой сайт WordPress быстрее и безопаснее. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/sv/subtitle.txt b/fastlane/jetpack_metadata/sv/subtitle.txt deleted file mode 100644 index dbfe6c4c6c9f..000000000000 --- a/fastlane/jetpack_metadata/sv/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -Gör din WordPress-webbplats snabbare och säkrare. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/tr/subtitle.txt b/fastlane/jetpack_metadata/tr/subtitle.txt deleted file mode 100644 index 210f3fdccf76..000000000000 --- a/fastlane/jetpack_metadata/tr/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -WordPress sitenizi daha hızlı ve daha güvenli hale getirin. \ No newline at end of file diff --git a/fastlane/jetpack_metadata/zh-Hans/subtitle.txt b/fastlane/jetpack_metadata/zh-Hans/subtitle.txt deleted file mode 100644 index cf47a83dc556..000000000000 --- a/fastlane/jetpack_metadata/zh-Hans/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -提高您 WordPress 站点的速度和安全性。 \ No newline at end of file diff --git a/fastlane/jetpack_metadata/zh-Hant/subtitle.txt b/fastlane/jetpack_metadata/zh-Hant/subtitle.txt deleted file mode 100644 index ce8d9676478f..000000000000 --- a/fastlane/jetpack_metadata/zh-Hant/subtitle.txt +++ /dev/null @@ -1 +0,0 @@ -讓你的 WordPress 網站更快更安全。 \ No newline at end of file From e404d157432d6cc400ed0e2097aa853dfb95d1f5 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Wed, 3 Nov 2021 14:56:40 +1100 Subject: [PATCH 25/29] Add note with rationale for skipping some tests in Fastlane --- fastlane/Fastfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 2f07f0de8a90..b6a427f16ced 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -844,6 +844,12 @@ platform :ios do UI.user_error!("Unable to find .xctestrun file at #{build_products_path}") end + # Because of what is likely a bug in `multi_scan`, we need to exclude + # certain tests from the execution. + # + # See more details at: + # - https://github.com/wordpress-mobile/WordPress-iOS/pull/17233#issuecomment-954897098 + # - https://github.com/lyndsey-ferguson/fastlane-plugin-test_center/issues/358 all_tests = tests_from_xctestrun(xctestrun: test_plan_path) only_testing = all_tests["WordPressTest"].reject { |t| t.include?("ContextManagerMock") || t.include?("TestContextManager") || t.include?("OCMLocation") || t.include?("HTTPStubsDescriptor") } From f96393764431d28e9a1f13e4cfbf7bbfa9585fa8 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 4 Nov 2021 11:21:17 +1100 Subject: [PATCH 26/29] Read Ruby version for chruby from .ruby-version in CircleCI This ensures there is a single source of truth fro the Ruby version across: - Local tooling - CircleCI - Buildkite --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 62e6d910a078..77bab3b8c8ae 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -39,7 +39,7 @@ commands: echo $PATH fi - chruby ruby-2.7.4 + chruby ruby-$(cat .ruby-version) gem install bundler # Prevent fastlane from checking for updates, also removing the verbose fastlane changelog at the end of each invocation. From 3fdcc22a4c60645e7e65b2e1bb1a91e7728e4825 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Thu, 4 Nov 2021 11:22:25 +1100 Subject: [PATCH 27/29] Bump Ruby version to latest 2.x stable: 2.7.4 --- .ruby-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ruby-version b/.ruby-version index e46a05b1967c..a4dd9dba4fbf 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.6.4 \ No newline at end of file +2.7.4 From 5c830f72b6be9139528d04be0eff6958f1976233 Mon Sep 17 00:00:00 2001 From: Jeremy Massel <1123407+jkmassel@users.noreply.github.com> Date: Thu, 4 Nov 2021 11:22:56 -0600 Subject: [PATCH 28/29] Update .buildkite/commands/build-for-testing.sh Co-authored-by: Olivier Halligon --- .buildkite/commands/build-for-testing.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/commands/build-for-testing.sh b/.buildkite/commands/build-for-testing.sh index 8d900ce67ac8..24241f55f657 100755 --- a/.buildkite/commands/build-for-testing.sh +++ b/.buildkite/commands/build-for-testing.sh @@ -1,6 +1,6 @@ #!/bin/bash -eu -# Temporary fix until we're on the Xcode 13.1 VM +# FIXIT-13.1: Temporary fix until we're on the Xcode 13.1 VM echo "--- :rubygems: Fixing Ruby Setup" gem install bundler From d27e39ba8f884bbe231ee9bf1ca528e39233ddb7 Mon Sep 17 00:00:00 2001 From: Jeremy Massel <1123407+jkmassel@users.noreply.github.com> Date: Thu, 4 Nov 2021 11:24:01 -0600 Subject: [PATCH 29/29] Add fixit note --- .buildkite/pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 7487334305d2..7d98026e85dc 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -8,7 +8,7 @@ common_params: repo: "wordpress-mobile/wordpress-ios/" # Common environment values to use with the `env` key. - &common_env - IMAGE_ID: xcode-13 + IMAGE_ID: xcode-13 # Remember to address all 'FIXIT-13.1' comments when we'll update to new image # This is the default pipeline – it will build and test the app steps: