From 5e3ed684cd9157a27f8185e754f98d06da493902 Mon Sep 17 00:00:00 2001 From: Jorge Leandro Perez Date: Mon, 20 Jan 2020 11:45:12 -0300 Subject: [PATCH 01/17] SiteSegmentsCellTests: Fixing breaking test --- .../SiteCreation/SiteSegmentsCellTests.swift | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/WordPress/WordPressTest/SiteCreation/SiteSegmentsCellTests.swift b/WordPress/WordPressTest/SiteCreation/SiteSegmentsCellTests.swift index e48f67f69889..e594e3defac7 100644 --- a/WordPress/WordPressTest/SiteCreation/SiteSegmentsCellTests.swift +++ b/WordPress/WordPressTest/SiteCreation/SiteSegmentsCellTests.swift @@ -45,7 +45,18 @@ final class SiteSegmentsCellTests: XCTestCase { } func testCellTitleIsTheCorrectFont() { - XCTAssertEqual(cell?.title.font, WPStyleGuide.fontForTextStyle(.body, fontWeight: .semibold)) + // SiteSegmentsCell's UILabel has `title.adjustsFontForContentSizeCategory = true`. + // We cannot relaly assert on the Label's font, since it's bond to be changed. + // + // XCTAssertEqual(cell?.title.font, WPStyleGuide.fontForTextStyle(.body, fontWeight: .semibold)) + + let expectedFont = WPStyleGuide.fontForTextStyle(.body, fontWeight: .semibold) + let actualFont = cell?.title.font + + XCTAssertNotNil(actualFont) + + XCTAssertEqual(expectedFont.fontName, actualFont!.fontName) + XCTAssertEqual(expectedFont.pointSize, actualFont!.pointSize, accuracy: 0.01) } func testCellSubtitleIsTheCorrectFont() { From a0b74c2a984e46fc8bbad1c25fd1a1fb68f9def5 Mon Sep 17 00:00:00 2001 From: Emily Laguna Date: Mon, 15 Jun 2020 08:13:48 -0700 Subject: [PATCH 02/17] Update the recent date format to prefix the date with a 0 --- .../ViewRelated/Reader/ReaderRelativeTimeFormatter.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/Classes/ViewRelated/Reader/ReaderRelativeTimeFormatter.swift b/WordPress/Classes/ViewRelated/Reader/ReaderRelativeTimeFormatter.swift index e8409c52a261..fd4b1ccc02d6 100644 --- a/WordPress/Classes/ViewRelated/Reader/ReaderRelativeTimeFormatter.swift +++ b/WordPress/Classes/ViewRelated/Reader/ReaderRelativeTimeFormatter.swift @@ -12,7 +12,7 @@ class ReaderRelativeTimeFormatter: NSObject { /// Date formatter used for dates older than a week but earlier than a year private lazy var recentDateFormatter: DateFormatter = { let formatter = DateFormatter() - formatter.setLocalizedDateFormatFromTemplate("MMM d") + formatter.setLocalizedDateFormatFromTemplate("MMM dd") return formatter }() From 911dd63acd76d10fe6e0d91ecd8a091d1a0d24a8 Mon Sep 17 00:00:00 2001 From: Emily Laguna Date: Mon, 15 Jun 2020 08:14:07 -0700 Subject: [PATCH 03/17] Change the date formatter timeZone to timeStyle --- .../ViewRelated/Reader/ReaderRelativeTimeFormatter.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/Classes/ViewRelated/Reader/ReaderRelativeTimeFormatter.swift b/WordPress/Classes/ViewRelated/Reader/ReaderRelativeTimeFormatter.swift index fd4b1ccc02d6..cf025c4bb76c 100644 --- a/WordPress/Classes/ViewRelated/Reader/ReaderRelativeTimeFormatter.swift +++ b/WordPress/Classes/ViewRelated/Reader/ReaderRelativeTimeFormatter.swift @@ -5,7 +5,7 @@ class ReaderRelativeTimeFormatter: NSObject { private lazy var dateFormatter: DateFormatter = { let formatter = DateFormatter() formatter.dateStyle = .medium - formatter.timeZone = .none + formatter.timeStyle = .none return formatter }() From 53eddae29e4cb2105d105301834101adabd9d324 Mon Sep 17 00:00:00 2001 From: Emily Laguna Date: Mon, 15 Jun 2020 08:14:28 -0700 Subject: [PATCH 04/17] Update the reader formatter tests to match the code --- .../WordPressTest/ReaderRelativeTimeFormatterTests.swift | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/WordPress/WordPressTest/ReaderRelativeTimeFormatterTests.swift b/WordPress/WordPressTest/ReaderRelativeTimeFormatterTests.swift index 9e2c8b7271d1..bdc68fab5af7 100644 --- a/WordPress/WordPressTest/ReaderRelativeTimeFormatterTests.swift +++ b/WordPress/WordPressTest/ReaderRelativeTimeFormatterTests.swift @@ -44,8 +44,8 @@ class ReaderRelativeTimeFormatterTests: XCTestCase { func testOlderThanAWeek() { let dateFormatter = DateFormatter() - dateFormatter.dateFormat = "MMM dd" - + dateFormatter.setLocalizedDateFormatFromTemplate("MMM dd") + let formatter = ReaderRelativeTimeFormatter(calendar: calendar) let date = Date(timeIntervalSinceNow: -(86400 * 14)) @@ -54,8 +54,9 @@ class ReaderRelativeTimeFormatterTests: XCTestCase { func testNotThisYear() { let dateFormatter = DateFormatter() - dateFormatter.dateFormat = "MMM d, YYYY" - + dateFormatter.dateStyle = .medium + dateFormatter.timeStyle = .none + let formatter = ReaderRelativeTimeFormatter(calendar: calendar) guard let date = calendar.date(from: DateComponents(year: 2001, month: 01, day: 01)) else { From afd21cf7f19f101db6091d20d62f2893a904e72c Mon Sep 17 00:00:00 2001 From: Emily Laguna Date: Mon, 15 Jun 2020 08:21:48 -0700 Subject: [PATCH 05/17] Fix lint issues --- .../WordPressTest/ReaderRelativeTimeFormatterTests.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WordPress/WordPressTest/ReaderRelativeTimeFormatterTests.swift b/WordPress/WordPressTest/ReaderRelativeTimeFormatterTests.swift index bdc68fab5af7..fb2c616afac1 100644 --- a/WordPress/WordPressTest/ReaderRelativeTimeFormatterTests.swift +++ b/WordPress/WordPressTest/ReaderRelativeTimeFormatterTests.swift @@ -45,7 +45,7 @@ class ReaderRelativeTimeFormatterTests: XCTestCase { func testOlderThanAWeek() { let dateFormatter = DateFormatter() dateFormatter.setLocalizedDateFormatFromTemplate("MMM dd") - + let formatter = ReaderRelativeTimeFormatter(calendar: calendar) let date = Date(timeIntervalSinceNow: -(86400 * 14)) @@ -56,7 +56,7 @@ class ReaderRelativeTimeFormatterTests: XCTestCase { let dateFormatter = DateFormatter() dateFormatter.dateStyle = .medium dateFormatter.timeStyle = .none - + let formatter = ReaderRelativeTimeFormatter(calendar: calendar) guard let date = calendar.date(from: DateComponents(year: 2001, month: 01, day: 01)) else { From 6ecc1115c39461522d2c86ce88030f997112cac4 Mon Sep 17 00:00:00 2001 From: Jeremy Massel Date: Wed, 18 Nov 2020 13:23:20 -0700 Subject: [PATCH 06/17] Bump version number --- Scripts/fastlane/Deliverfile | 2 +- config/Version.internal.xcconfig | 4 ++-- config/Version.public.xcconfig | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Scripts/fastlane/Deliverfile b/Scripts/fastlane/Deliverfile index 8cc8c25aae30..e19bfe2ceabd 100644 --- a/Scripts/fastlane/Deliverfile +++ b/Scripts/fastlane/Deliverfile @@ -5,7 +5,7 @@ screenshots_path "./screenshots/" app_identifier "org.wordpress" # Make sure to update these keys for a new version -app_version "16.1" +app_version "16.1.1" privacy_url({ 'default' => 'https://automattic.com/privacy/', diff --git a/config/Version.internal.xcconfig b/config/Version.internal.xcconfig index 57470553d78d..b99002ba3084 100644 --- a/config/Version.internal.xcconfig +++ b/config/Version.internal.xcconfig @@ -1,4 +1,4 @@ -VERSION_SHORT=16.1 +VERSION_SHORT=16.1.1 // Internal long version example: VERSION_LONG=9.9.0.20180423 -VERSION_LONG=16.1.0.20201116 +VERSION_LONG=16.1.1.20201118 diff --git a/config/Version.public.xcconfig b/config/Version.public.xcconfig index 281dd250e57a..a359d8a92ba6 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,4 +1,4 @@ -VERSION_SHORT=16.1 +VERSION_SHORT=16.1.1 // Public long version example: VERSION_LONG=9.9.0.0 -VERSION_LONG=16.1.0.7 +VERSION_LONG=16.1.1.0 From 7a4ff0baa60300d433b216267407ae7debdcf8a1 Mon Sep 17 00:00:00 2001 From: Stephenie Harris Date: Wed, 18 Nov 2020 12:11:30 -0700 Subject: [PATCH 07/17] Undo toggling the refresh control. --- .../ViewRelated/Blog/Blog List/BlogListViewController.m | 4 ---- 1 file changed, 4 deletions(-) diff --git a/WordPress/Classes/ViewRelated/Blog/Blog List/BlogListViewController.m b/WordPress/Classes/ViewRelated/Blog/Blog List/BlogListViewController.m index fcfd47377da1..1eb3173d7339 100644 --- a/WordPress/Classes/ViewRelated/Blog/Blog List/BlogListViewController.m +++ b/WordPress/Classes/ViewRelated/Blog/Blog List/BlogListViewController.m @@ -241,7 +241,6 @@ - (void)updateViewsForCurrentSiteCount // Ensure No Results VC is not shown. Will be shown later if necessary. [self.noResultsViewController removeFromView]; - [self.tableView.refreshControl setHidden: NO]; // If the user has sites, but they're all hidden... if (count > 0 && visibleSitesCount == 0 && !self.isEditing) { @@ -289,8 +288,6 @@ - (void)showNoResultsViewForSiteCount:(NSUInteger)siteCount image:@"mysites-nosites" subtitleImage:nil accessoryView:nil]; - - [self.tableView.refreshControl setHidden: YES]; [self addNoResultsToView]; } } @@ -335,7 +332,6 @@ - (void)showNoResultsViewForAllSitesHidden accessoryView:nil]; } - [self.tableView.refreshControl setHidden: YES]; [self addNoResultsToView]; } From 24322f03df891e685ae7b38fb8e2175d6ed0464a Mon Sep 17 00:00:00 2001 From: Diego Rey Mendez Date: Wed, 18 Nov 2020 12:22:01 -0300 Subject: [PATCH 08/17] Removes a bad workaround for an issue that was introduced in 16.0 --- .../Blog/Blog List/BlogListViewController.m | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/WordPress/Classes/ViewRelated/Blog/Blog List/BlogListViewController.m b/WordPress/Classes/ViewRelated/Blog/Blog List/BlogListViewController.m index 1eb3173d7339..5ed7d00eb362 100644 --- a/WordPress/Classes/ViewRelated/Blog/Blog List/BlogListViewController.m +++ b/WordPress/Classes/ViewRelated/Blog/Blog List/BlogListViewController.m @@ -522,16 +522,6 @@ - (void)configureTableView UIRefreshControl *refreshControl = [[UIRefreshControl alloc] init]; [refreshControl addTarget:self action:@selector(syncBlogs) forControlEvents:UIControlEventValueChanged]; self.tableView.refreshControl = refreshControl; - - // Workaround: The refresh control was showing on top of the table view, apparently because - // iOS is failing to put it behind the table view contents (iOS bug). - // - // Ref: https://stackoverflow.com/a/59713642 - // - // If you want to test if this workaround can be removed, simply comment it, run the app - // and check that when the blog list if first displayed, the refresh control is NOT visible - // at the front of the table view. - refreshControl.layer.zPosition = -1; self.tableView.tableFooterView = [UIView new]; [WPStyleGuide configureColorsForView:self.view andTableView:self.tableView]; From 2c55172f6c8b052a1122359378274efb2796d6c9 Mon Sep 17 00:00:00 2001 From: Jeremy Massel Date: Fri, 12 Feb 2021 13:03:56 -0700 Subject: [PATCH 09/17] Fix broken metadata Shorten metadata so it can be submitted --- fastlane/metadata/ar-SA/keywords.txt | 2 +- fastlane/metadata/ar-SA/subtitle.txt | 2 +- fastlane/metadata/es-MX/subtitle.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/fastlane/metadata/ar-SA/keywords.txt b/fastlane/metadata/ar-SA/keywords.txt index f444438d1603..67c74258f8f6 100644 --- a/fastlane/metadata/ar-SA/keywords.txt +++ b/fastlane/metadata/ar-SA/keywords.txt @@ -1 +1 @@ -اجتماعي، شبكة، ملاحظات، jetpack، صور، كتابة، تحديد المواقع جغرافيًّا، وسائط، مدونة، ووردبريس، موقع ويب، تدوين، تصميم +اجتماعي، شبكة، ملاحظات، jetpack، صور، كتابة، تحديد المواقع جغرافيًّا، وسائط، مدونة، ووردبريس، موقع و \ No newline at end of file diff --git a/fastlane/metadata/ar-SA/subtitle.txt b/fastlane/metadata/ar-SA/subtitle.txt index a1f3cdbde8ea..b34d71b64f35 100644 --- a/fastlane/metadata/ar-SA/subtitle.txt +++ b/fastlane/metadata/ar-SA/subtitle.txt @@ -1 +1 @@ -إدارة موقعك على الويب من أي مكان \ No newline at end of file +Manage your website anywhere \ No newline at end of file diff --git a/fastlane/metadata/es-MX/subtitle.txt b/fastlane/metadata/es-MX/subtitle.txt index d74d0c65b4ac..b34d71b64f35 100644 --- a/fastlane/metadata/es-MX/subtitle.txt +++ b/fastlane/metadata/es-MX/subtitle.txt @@ -1 +1 @@ -Gestiona tu web desde cualquier parte \ No newline at end of file +Manage your website anywhere \ No newline at end of file From 629709f6d2fa0c8b262cc09fc215adcbef57db91 Mon Sep 17 00:00:00 2001 From: Jeremy Massel Date: Thu, 1 Apr 2021 14:37:58 -0600 Subject: [PATCH 10/17] Update strings --- .../Resources/ar.lproj/Localizable.strings | 124 +++++++++--------- .../Resources/de.lproj/Localizable.strings | 120 ++++++++--------- .../Resources/en-CA.lproj/Localizable.strings | 8 +- .../Resources/es.lproj/Localizable.strings | 108 +++++++-------- .../Resources/fr.lproj/Localizable.strings | 120 ++++++++--------- .../Resources/he.lproj/Localizable.strings | 118 ++++++++--------- .../Resources/id.lproj/Localizable.strings | 122 ++++++++--------- .../Resources/it.lproj/Localizable.strings | 124 +++++++++--------- .../Resources/ja.lproj/Localizable.strings | 120 ++++++++--------- .../Resources/ko.lproj/Localizable.strings | 122 ++++++++--------- .../Resources/nl.lproj/Localizable.strings | 26 ++-- .../Resources/sq.lproj/Localizable.strings | 124 +++++++++--------- .../Resources/tr.lproj/Localizable.strings | 122 ++++++++--------- .../zh-Hant.lproj/Localizable.strings | 120 ++++++++--------- .../ar.lproj/Localizable.strings | Bin 4067 -> 4067 bytes .../bg.lproj/Localizable.strings | Bin 3189 -> 3189 bytes .../cs.lproj/Localizable.strings | Bin 4264 -> 4264 bytes .../cy.lproj/Localizable.strings | Bin 2837 -> 2837 bytes .../da.lproj/Localizable.strings | Bin 2830 -> 2830 bytes .../de.lproj/Localizable.strings | Bin 4485 -> 4485 bytes .../en-AU.lproj/Localizable.strings | Bin 2674 -> 2674 bytes .../en-CA.lproj/Localizable.strings | Bin 2740 -> 2740 bytes .../en-GB.lproj/Localizable.strings | Bin 2682 -> 2682 bytes .../es.lproj/Localizable.strings | Bin 3507 -> 3507 bytes .../fr.lproj/Localizable.strings | Bin 4687 -> 4687 bytes .../he.lproj/Localizable.strings | Bin 3994 -> 3994 bytes .../hr.lproj/Localizable.strings | Bin 2845 -> 2845 bytes .../hu.lproj/Localizable.strings | Bin 2914 -> 2914 bytes .../id.lproj/Localizable.strings | Bin 3018 -> 3018 bytes .../is.lproj/Localizable.strings | Bin 3005 -> 3005 bytes .../it.lproj/Localizable.strings | Bin 3444 -> 3444 bytes .../ja.lproj/Localizable.strings | Bin 3204 -> 3204 bytes .../ko.lproj/Localizable.strings | Bin 3056 -> 3056 bytes .../nb.lproj/Localizable.strings | Bin 3442 -> 3442 bytes .../nl.lproj/Localizable.strings | Bin 3350 -> 3350 bytes .../pl.lproj/Localizable.strings | Bin 2795 -> 2795 bytes .../pt-BR.lproj/Localizable.strings | Bin 3960 -> 3960 bytes .../pt.lproj/Localizable.strings | Bin 3314 -> 3314 bytes .../ro.lproj/Localizable.strings | Bin 4337 -> 4337 bytes .../ru.lproj/Localizable.strings | Bin 4532 -> 4532 bytes .../sk.lproj/Localizable.strings | Bin 4484 -> 4484 bytes .../sq.lproj/Localizable.strings | Bin 4377 -> 4377 bytes .../sv.lproj/Localizable.strings | Bin 4501 -> 4501 bytes .../th.lproj/Localizable.strings | Bin 2918 -> 2918 bytes .../tr.lproj/Localizable.strings | Bin 4260 -> 4260 bytes .../zh-Hans.lproj/Localizable.strings | Bin 2712 -> 2712 bytes .../zh-Hant.lproj/Localizable.strings | Bin 2694 -> 2694 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 130 -> 130 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 80 files changed, 739 insertions(+), 739 deletions(-) diff --git a/WordPress/Resources/ar.lproj/Localizable.strings b/WordPress/Resources/ar.lproj/Localizable.strings index ed82a8aa8a31..6515f323d105 100644 --- a/WordPress/Resources/ar.lproj/Localizable.strings +++ b/WordPress/Resources/ar.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-03-23 18:55:59+0000 */ +/* Translation-Revision-Date: 2021-03-30 09:51:21+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 */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "يحتوي أحد الملفات على نمط أكواد برمجية ضارة"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "ارتباط إلى رابط URL."; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "رابط إلى تصنيف."; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "رابط إلى صفحة."; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "رابط إلى مقالة."; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "رابط إلى وسم."; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "قائمة المواقع الموجودة على هذا الحساب."; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "طريقة جديدة لإنشاء ونشر محتوى جذّاب على موقعك."; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "سلسلة من الخطوات توضح لك كيفية إضافة قالب، وأيقونة موقع والمزيد."; @@ -453,7 +453,7 @@ "Add any topic" = "إضافة أي موضوع"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "إضافة نصّ للزر"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "أضف صورة أو أفاتار لتمثيل هذا الحساب الجديد."; @@ -579,10 +579,10 @@ "Allow this connection to be used by all admins and users of your site." = "السماح لجميع مسؤولي الموقع ومستخدميه باستخدام هذا الاتصال."; /* Allowlisted IP Addresses Title */ -"Allowlisted IP Addresses" = "Allowlisted IP Addresses"; +"Allowlisted IP Addresses" = "قائمة عناوين IP المسموح بها"; /* Jetpack Settings: Allowlisted IP addresses */ -"Allowlisted IP addresses" = "Allowlisted IP addresses"; +"Allowlisted IP addresses" = "قائمة عناوين IP المسموح بها"; /* Instructions for users with two-factor authentication enabled. */ "Almost there! Please enter the verification code from your authenticator app." = "تقريبًا هناك! يرجى إدخال رمز التحقق من تطبيق الموثق الخاص بك."; @@ -939,7 +939,7 @@ /* Blocklist Title Settings: Comments Blocklist */ -"Blocklist" = "Blocklist"; +"Blocklist" = "قائمة الحظر"; /* Opens the WordPress Mobile Blog */ "Blog" = "مدونة"; @@ -983,7 +983,7 @@ "Button Style" = "نمط الزر"; /* No comment provided by engineer. */ -"ButtonGroup" = "ButtonGroup"; +"ButtonGroup" = "مجموعة أزرار"; /* Label for the post author in the post detail. */ "By " = "بواسطة "; @@ -1119,7 +1119,7 @@ "Category" = "التصنيف"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "رابط التصنيف"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "عنوان التصنيف مفقود."; @@ -1281,7 +1281,7 @@ "Choose video" = "اختيار فيديو"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "اختر مواضيعك"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "سيؤدي اختيار موقع مختلف إلى فقد التعديلات التي تمت على محتوى موقع معين مثل الوسائط والتصنيفات. هل أنت متأكد من ذلك؟"; @@ -1962,11 +1962,11 @@ "Dimensions" = "الأبعاد"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "تعطيل"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "تعطيل رابط الدعوة"; /* Adjective. Comment threading is disabled. */ "Disabled" = "معطّل"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "اكتشف وتابع المدوَّنات التي تحبها"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "اكتشاف المزيد من المواضيع"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "تحرير مكوّن %@"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "تحرير كلمة قائمة الحظر"; /* No comment provided by engineer. */ "Edit Comment" = "تحرير التعليق"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "بدلاً من ذلك، أدخل كلمة المرور."; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "أدخل بيانات اعتماد الخادم الخاص بك لتمكين استعادة الموقع بنقرة واحدة من النُسخ الاحتياطية."; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "التوسيع لتحديد منطقة قائمة مختلفة"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "تنتهي الصلاحية في"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "اكتب نبذة قصيرة عن الموقع."; @@ -2541,7 +2541,7 @@ "Failed" = "فشل"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "فشل تصدير الوسائط"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "فشل إدراج الملف الصوتي. يرجى النقر على الخيارات."; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "فشل في تسلسل الطلب إلى REST API."; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "فشل إلغاء متابعة المحادثة"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "فشل رفع الملفات.\nيرجى النقر على الخيارات."; @@ -2679,10 +2679,10 @@ "Follow site" = "متابعة الموقع"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "متابعة المواضيع"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "تابع مواقعك المفضَّلة واكتشف مدوّنات جديدة."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "تابع مواقعك المفضَّلة واكتشف مواضيع جديدة."; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "متابعة المحادثة عبر البريد الإلكتروني"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "جاري متابعة مواضيع جديدة..."; /* Filters Follows Notifications */ "Follows" = "متابعات"; @@ -2781,7 +2781,7 @@ "General" = "عام"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "إنشاء رابط جديد"; /* Message to indicate progress of generating preview */ "Generating Preview" = "تجهيز المعاينة"; @@ -3194,7 +3194,7 @@ "Invite" = "دعوة"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "رابط الدعوة"; /* Invite People Title */ "Invite People" = "دعوة أشخاص"; @@ -3744,10 +3744,10 @@ "More Posts" = "مقالات أكثر"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "المزيد من %1$@"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "المزيد على WordPress.com"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "الوقت الأكثر شعبية"; @@ -3866,7 +3866,7 @@ "New" = "جديد"; /* Blocklist Keyword Insertion Title */ -"New Blocklist Word" = "New Blocklist Word"; +"New Blocklist Word" = "كلمة جديدة بقائمة الحظر"; /* IP Address or Range Insertion Title */ "New IP or IP Range" = "عنوان IP أو نطاق عنوان IP جديد"; @@ -4053,7 +4053,7 @@ "No network available" = "لا تتوفر شبكة"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "لا توجد مواضيع جديدة لمتابعتها"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "لا توجد إشعارات حتى الآن"; @@ -4240,7 +4240,7 @@ "Oldest first" = "الأقدم أولاً"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "بمجرد تعطيل رابط الدعوة هذا، لن يتمكن أي شخص من استخدامه للانضمام إلى فريقك. هل أنتَ متأكد؟"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "بمجرد إنشاء موقع WordPress.com، يمكنك إعادة تدوين المحتوى الذي أعجبك على موقعك الخاص."; @@ -4372,7 +4372,7 @@ "Page" = "الصفحة"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "رابط الصفحة"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "تمت استعادة الصفحة إلى مسودات"; @@ -4668,7 +4668,7 @@ "Post Format" = "تنسيق المقالة"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "رابط المقالة"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "تم استعادة المقالة إلى المسودات"; @@ -5425,7 +5425,7 @@ "Search Locations" = "البحث عن المواقع"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "إعدادات البحث"; /* Label for list of search term */ "Search Term" = "مصطلح البحث"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "شارك المعلومات مع أداة التحليلات لدينا حول استخدامك الخدمات أثناء تسجيل الدخول إلى حساب WordPress.com الخاص بك."; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "مشاركة رابط الدعوة"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "رابط المشاركة"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "تم مسح فهرس spotlight بنجاح"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "تمت متابعة المحادثة بنجاح"; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "تم تثبيت %@ بنجاح."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "تم إلغاء متابعة المحادثة بنجاح"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "تم تحديث الاقتراحات"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "تلخيص مقالتك بقائمة من العناوين. أضف روابط القفز HTML إلى مكوّنات العناوين لربطها هنا."; /* User role badge */ "Super Admin" = "مسؤول فائق"; @@ -6158,7 +6158,7 @@ "System default" = "النظام الافتراضي"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "جدول المحتويات"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "جدول يعرض %@"; @@ -6174,7 +6174,7 @@ "Tag" = "العلامة"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "رابط الوسم"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "يوجد وسم بالفعل"; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "انقر لإلغاء الرفع."; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "أنقر لتغيير عنوان الموقع"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "أنقر لطي وسوم المقالة"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "انقر لتحديد المدونة التي ستنشر عليها"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "أنقر للتبديل إلى موقع آخر، أو إضافة موقع جديد"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "أنقر لعرض مقالات هذا الوسم"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "أنقر لعرض موقعك"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "الفئة"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "يُعرض عنوان الموقع في شريط العناوين في متصفح الويب ويُعرض في رأس الصفحة في معظم القوالب."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "محرر القصص غير متوفر حاليًا لجهاز iPad. يرجى تجربة ميزة القصص على جهاز iPhone الخاص بك."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "يفتقد عنوان URL إلى مضيف صالح."; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "حدثت مشكلة أثناء محاولة الوصول إلى الوسائط الخاصة بك. يُرجى المحاولة مرة أخرى لاحقاً."; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "حدثت مشكلة في محرر القصص. إذا استمرت المشكلة، يمكنك الاتصال بنا من خلال شاشة \"أنا\" > \"المساعدة والدعم\"."; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "جرّبه الآن"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "تجربة محرر المكوِّنات الجديد"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "حاول ببريد إلكتروني آخر"; @@ -6853,7 +6853,7 @@ "Type a label" = "اكتب تسمية"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "اكتب اسمًا لموقعك (اسم للنطاق)"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "اكتب للحصول على مزيد من الاقتراحات"; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "يتعذر الاتصال"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "تعذر إنشاء محرر القصص"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "يتعذر تحميل المقالات"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "Unable to block site"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "تعذر إنشاء روابط دعوة جديدة."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "يتعذر حذف جميع عناصر الوسائط."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "يتعذر حذف عنصر الوسائط."; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "تعذر تعطيل روابط الدعوة."; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "تعذّر تنزيل الملف"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "غير قادر على متابعة المحادثة"; /* Notice title when following a site fails. */ "Unable to follow site" = "غير قادر على متابعة الموقع"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "تعذر التحقق من عنوان البريد الإلكتروني. يُرجى إعادة المحاولة لاحقًا."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "غير قادر على زيارة إعدادات Jetpack للموقع"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "غير قادر على زيارة الموقع"; @@ -7085,7 +7085,7 @@ "Unsupported" = "غير مدعوم"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "جهاز غير مدعوم"; /* Label for an untitled post in the revision browser */ "Untitled" = "بدون عنوان"; @@ -7204,7 +7204,7 @@ "Use block editor" = "استخدام مُحرر المكوّنات"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "استخدم هذا الرابط لضمّ أعضاء فريقك دون الحاجة إلى دعوتهم واحدًا تلو الآخر. سيتمكن أي شخص يزور عنوان الموقع هذا من الاشتراك في مؤسستك، حتى إذا تلقى الرابط من شخص آخر، لذا تأكد من مشاركته مع أشخاص موثوق بهم."; /* No comment provided by engineer. */ "Use this site" = "استخدام هذا الموقع"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "أهلاً بك في القارئ"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "مرحبًا بك في أداة إنشاء مواقع الويب الأكثر رواجًا في العالم."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "مرحبًا بك في أداة إنشاء مواقع الويب الأكثر رواجًا في العالم."; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "نحن نرسل دومًا رسائل بريد إلكتروني مهمة بخصوص حسابك، ومع ذلك يمكنك الحصول على بعض الإضافات المفيدة أيضًا."; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "سنقوم بإزالة المحرر التقليدي (Classic Editor) للمقالات الجديدة قريباً، لكن هذا لن يؤثر في تحرير أي من مقالاتك أو صفحاتك الحالية. امضي قدماً بتجربتك من خلال تفعيل محرر المكوّنات الآن في إعدادات الموقع."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "لم تنشر أي مقالات بعد. بعد أن تبدأ في النشر، سيظهر آخر ملخص للمقالة هنا."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "لقد حققت إنجازًا 🚀"; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "يمكنك إدراج عنوان IP أو سلسلة عناوين في قائمة السماح، الأمر الذي يعمل على منعهم من الحظر بواسطة Jetpack. IPv4 وIPv6 مقبولان. لتحديد نطاق، أدخل القيمة المنخفضة والقيمة المرتفعة مفصولاً بينهما بشرطة. على سبيل المثال: ‎12.12.12.1-12.12.12.100."; /* A suggestion of topics the user might like */ "You might like" = "قد ترغب في"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "ستكون نسختك الاحتياطية الأولى جاهزة قريبًا"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "لا يمكن تصدير ملفات الوسائط الخاصة بك. إذا استمرت المشكلة، يمكنك الاتصال بنا من خلال شاشة \"أنا\" > \"المساعدة والدعم\"."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "تنتقل الإشعارات معك — راجع التعليقات والإعجابات عندما تحدث."; @@ -8110,7 +8110,7 @@ "connections" = "الاتصالات"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "ملخص عناوين المستند"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "أليس من الأفضل حذف أشياء من القائمة؟"; @@ -8160,7 +8160,7 @@ "phone number" = "رقم الهاتف"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "ملخّص (موجز)"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "سيتم حذف هذه العناصر:"; diff --git a/WordPress/Resources/de.lproj/Localizable.strings b/WordPress/Resources/de.lproj/Localizable.strings index cc5e0a2bfd34..17b5cd419db1 100644 --- a/WordPress/Resources/de.lproj/Localizable.strings +++ b/WordPress/Resources/de.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-03-04 11:54:08+0000 */ +/* Translation-Revision-Date: 2021-04-01 09:54:09+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: de */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "Eine Datei enthält ein bösartiges Codemuster"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "Ein Link zu einer URL."; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "Ein Link zu einer Kategorie."; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "Ein Link zu einer Seite."; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "Ein Link zu einem Beitrag."; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "Ein Link zu einem Schlagwort."; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "Eine Liste der Websites in diesem Konto."; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "Eine neue Möglichkeit zum Erstellen und Veröffentlichen ansprechender Inhalte auf deiner Website."; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "Eine Reihe von Schritten, die dir zeigen, wie du ein Theme, ein Website-Icon und mehr hinzufügen kannst."; @@ -453,7 +453,7 @@ "Add any topic" = "Beliebiges Thema hinzufügen"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "Button-Text hinzufügen."; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Füge ein Bild oder einen Avatar hinzu, der dieses neue Konto repräsentiert."; @@ -579,10 +579,10 @@ "Allow this connection to be used by all admins and users of your site." = "Zulassen, dass alle Administratoren und Benutzer deiner Website diese Verbindung nutzen."; /* Allowlisted IP Addresses Title */ -"Allowlisted IP Addresses" = "Allowlisted IP Addresses"; +"Allowlisted IP Addresses" = "IP-Adressen als zulässig gespeichert"; /* Jetpack Settings: Allowlisted IP addresses */ -"Allowlisted IP addresses" = "Allowlisted IP addresses"; +"Allowlisted IP addresses" = "IP-Adressen als zulässig gespeichert"; /* Instructions for users with two-factor authentication enabled. */ "Almost there! Please enter the verification code from your authenticator app." = "Fast geschafft! Gib bitte den Verifizierungscode aus deiner Authenticator-App ein."; @@ -983,7 +983,7 @@ "Button Style" = "Buttonstil"; /* No comment provided by engineer. */ -"ButtonGroup" = "ButtonGroup"; +"ButtonGroup" = "Schaltflächengruppe"; /* Label for the post author in the post detail. */ "By " = "Von"; @@ -1119,7 +1119,7 @@ "Category" = "Kategorie"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "Kategorielink"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "Kategorietitel fehlt."; @@ -1281,7 +1281,7 @@ "Choose video" = "Video auswählen"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "Wähle deine Themen"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "Beim Wechseln auf eine andere Website gehen alle Seiten-spezifischen Änderungen, wie Kategorien und Medien, verloren. Trotzdem weitermachen?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "Abmessungen"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "Deaktivieren"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "Einladungslink deaktivieren"; /* Adjective. Comment threading is disabled. */ "Disabled" = "Deaktiviert"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "Entdecke Beiträge, die dir gefallen, und folge ihnen"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "Weitere Themen entdecken"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "%@-Block bearbeiten"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "Wort für Sperrliste bearbeiten"; /* No comment provided by engineer. */ "Edit Comment" = "Kommentar bearbeiten"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "Gib stattdessen dein Passwort ein."; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "Gib deine Serveranmeldedaten ein, um Ein-Klick-Website-Wiederherstellungen von Backups zu aktivieren."; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "Klappt auf, um einen anderen Menübereich auszuwählen"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "Läuft ab am"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Erkläre worum es auf dieser Website geht."; @@ -2541,7 +2541,7 @@ "Failed" = "Fehlgeschlagen"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "Medienexport fehlgeschlagen"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "Audiodatei kann nicht eingefügt werden. Für Optionen hier tippen."; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "Fehler beim Serialisieren der Anforderung an die REST-API."; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "„Unterhaltung nicht mehr folgen“ fehlgeschlagen"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "Das Hochladen der Dateien ist fehlgeschlagen.\nBitte tippe hier für Optionen."; @@ -2679,10 +2679,10 @@ "Follow site" = "Follow site"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "Themen folgen"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "Folge deinen Lieblingswebsites und entdecke neue Blogs."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "Folge deinen Lieblingswebsites und entdecke neuen Lesestoff."; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "Du folgst der Unterhaltung per E-Mail"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "Du folgst neuen Themen …"; /* Filters Follows Notifications */ "Follows" = "Follows"; @@ -2781,7 +2781,7 @@ "General" = "Allgemein"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "Neuen Link generieren"; /* Message to indicate progress of generating preview */ "Generating Preview" = "Vorschau erstellen"; @@ -3194,7 +3194,7 @@ "Invite" = "Einladung"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "Einladungslink"; /* Invite People Title */ "Invite People" = "Personen einladen"; @@ -3744,10 +3744,10 @@ "More Posts" = "Weitere Beiträge"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "Mehr von %1$@"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "Mehr auf WordPress.com"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Beliebteste Zeit"; @@ -4053,7 +4053,7 @@ "No network available" = "Kein Netzwerk verfügbar"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "Keine neuen Themen, denen du folgen könntest"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "Es gibt noch keine Benachrichtigungen"; @@ -4240,7 +4240,7 @@ "Oldest first" = "Ältester zuerst"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Wenn dieser Einladungslink deaktiviert ist, kann ihn niemand verwenden, um deinem Team beizutreten. Bist du dir sicher?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "Sobald du eine Website bei WordPress.com erstellt hast, kannst du Inhalte, die dir gefallen, auf deiner eigenen Website rebloggen."; @@ -4372,7 +4372,7 @@ "Page" = "Seite"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "Seitenlink"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "Seite unter „Entwürfe“ wiederhergestellt"; @@ -4668,7 +4668,7 @@ "Post Format" = "Artikel-Formatvorlage"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "Beitragslink"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "Beitrag als Entwurf wiederhergestellt"; @@ -5425,7 +5425,7 @@ "Search Locations" = "Standortsuche"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "Sucheinstellungen"; /* Label for list of search term */ "Search Term" = "Begriff suchen"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "Teile Informationen über deine Nutzung von Diensten mit unserem Analysewerkzeug, während du in deinem WordPress.com-Konto angemeldet bist."; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "Einladungs-Link teilen"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "Link teilen"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "Spotlight-Index erfolgreich gelöscht"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "Der Unterhaltung wird jetzt gefolgt"; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "%@ wurde erfolgreich installiert."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "Der Unterhaltung wird nicht mehr gefolgt"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "Vorschläge aktualisiert"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Fasse deinen Beitrag mit einer Liste an Überschriften zusammen. Füge HTML-Anker zu Überschriftenblöcken hinzu, um sie hier zu verknüpfen."; /* User role badge */ "Super Admin" = "Super-Admin"; @@ -6158,7 +6158,7 @@ "System default" = "Systemstandard"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "Inhaltsverzeichnis"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "Tabelle zeigt %@ an"; @@ -6174,7 +6174,7 @@ "Tag" = "Schlagwort"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "Schlagwort-Link"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "Das Schlagwort existiert bereits"; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "Tippe, um das Hochladen abzubrechen."; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "Tippen, um den Website-Titel zu ändern"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "Tippe, um die Beitragsschlagwörter einzuklappen"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "Tippe auf den Blog auf dem veröffentlicht werden soll"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "Tippen, um zu einer anderen Website zu wechseln oder eine neue Website hinzuzufügen"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "Tippe, um Beiträge für dieses Schlagwort anzuzeigen"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "Tippen, um deine Website anzusehen"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "Taxonomie"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "Der Website-Titel wird in der Titelleiste eines Webbrowsers angezeigt und wird bei den meisten Themes im Header angezeigt."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "Für dein iPad ist der Story-Editor zurzeit nicht verfügbar. Probiere Storys auf deinem iPhone aus."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "Diese URL hat keinen gültigen Host."; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "Beim Versuch, auf deine Medien zuzugreifen, ist ein Problem aufgetreten. Versuche es später erneut."; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "Es ist ein Problem mit dem Story-Editor aufgetreten. Wenn das Problem weiterhin auftritt, kannst du uns über „Ich > Hilfe & Support“ kontaktieren."; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "Jetzt versuchen"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "Probiere den neuen Block-Editor aus"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "Mit einer anderen E-Mail-Adresse versuchen"; @@ -6853,7 +6853,7 @@ "Type a label" = "Gib eine Beschriftung ein."; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "Gib einen Namen für deine Website ein"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "Tippe, um weitere Vorschläge zu erhalten"; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "Keine Verbindung möglich"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "Editor zum Erstellen von Storys kann nicht geöffnet werden"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "Beiträge können nicht geladen werden"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "Kann Website nicht blockieren"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "Neue Einladungslinks können nicht erstellt werden."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "Es konnten nicht alle Medienelemente gelöscht werden."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "Medienelement kann nicht gelöscht werden."; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "Einladungslinks können nicht deaktiviert werden"; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "Datei kann nicht heruntergeladen werden"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "Der Unterhaltung kann nicht gefolgt werden"; /* Notice title when following a site fails. */ "Unable to follow site" = "Der Website kann nicht gefolgt werden"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "Die E-Mail-Adresse konnte nicht überprüft werden. Versuche es später erneut."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "Jetpack-Einstellungen der Website können nicht aufgerufen werden"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "Website kann nicht besucht werden"; @@ -7085,7 +7085,7 @@ "Unsupported" = "Nicht unterstützt"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "Nicht unterstütztes Gerät"; /* Label for an untitled post in the revision browser */ "Untitled" = "Ohne Titel"; @@ -7204,7 +7204,7 @@ "Use block editor" = "Block-Editor benutzen"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Verwende diesen Link, um deine Teammitglieder einzuladen. Jeder, der diese URL besucht, kann sich bei deiner Organisation registrieren, auch wenn er oder sie den Link von jemand anderem erhalten hat. Teile ihn also nur mit vertrauenswürdigen Personen."; /* No comment provided by engineer. */ "Use this site" = "Diese Website verwenden"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "Willkommen zum Reader"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "Willkommen beim beliebtesten Website-Baukasten der Welt."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "Willkommen beim beliebtesten Website-Baukasten der Welt."; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "Wichtige E-Mails zu deinem Konto senden wir dir auf jeden Fall, aber du kannst auch ein paar nützliche Extras dazubekommen."; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "Für neue Beiträge wird der klassische Editor bald nicht mehr verfügbar sein. Das betrifft jedoch nicht die Bearbeitung bestehender Beiträge oder Seiten. Du kannst den Block-Editor bereits jetzt in den Website-Einstellungen aktivieren."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "Du hast noch keine Beiträge veröffentlicht. Sobald du Beiträge veröffentlichst, wird hier deine neueste Übersicht angezeigt."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "Du hast einen Meilenstein erreicht 🚀 "; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "Du kannst eine IP-Adresse oder eine Reihe von IP-Adressen auf die Liste zulässiger IP-Adressen setzen und so dafür sorgen, dass diese niemals von Jetpack blockiert werden. IPv4 und IPv6 sind zulässig. Gib für einen Bereich den unteren und oberen Wert ein (getrennt durch einen Bindestrich). Beispiel: 12.12.12.1-12.12.12.100."; /* A suggestion of topics the user might like */ "You might like" = "Das gefällt dir vielleicht"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "Dein erstes Backup ist bald fertig"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "Deine Medien konnten nicht exportiert werden. If the problem persists you can contact us via the Me > Hilfe & Support."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "Deine Benachrichtigungen hast du immer dabei – schaue Kommentare und Likes in Echtzeit an."; @@ -8110,7 +8110,7 @@ "connections" = "Verbindungen"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "Gliederung des Dokuments"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "Fühlt es sich nicht gut an, Dinge von einer Liste abzuhaken?"; @@ -8160,7 +8160,7 @@ "phone number" = "Telefonnummer"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "Zusammenfassung"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "Diese Auswahl wird gelöscht:"; diff --git a/WordPress/Resources/en-CA.lproj/Localizable.strings b/WordPress/Resources/en-CA.lproj/Localizable.strings index c282eda73951..838a0bcf50af 100644 --- a/WordPress/Resources/en-CA.lproj/Localizable.strings +++ b/WordPress/Resources/en-CA.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-02-28 17:56:35+0000 */ +/* Translation-Revision-Date: 2021-03-28 12:26:04+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: en_CA */ @@ -2682,7 +2682,7 @@ "Follow topics" = "Follow topics"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "Follow your favourite sites and discover new blogs."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "Follow your favourite sites and discover new reads."; @@ -7204,7 +7204,7 @@ "Use block editor" = "Use block editor"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted people."; /* No comment provided by engineer. */ "Use this site" = "Use this site"; @@ -7950,7 +7950,7 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "You hit a milestone 🚀"; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; diff --git a/WordPress/Resources/es.lproj/Localizable.strings b/WordPress/Resources/es.lproj/Localizable.strings index e0e61d57ea0f..aa1b536d71b7 100644 --- a/WordPress/Resources/es.lproj/Localizable.strings +++ b/WordPress/Resources/es.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-03-25 13:39:11+0000 */ +/* Translation-Revision-Date: 2021-03-29 18:53:04+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: es */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "Un archivo contiene un patrón de código malicioso"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "Un enlace a una URL."; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "Un enlace a una categoría."; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "Un enlace a una página."; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "Un enlace a una entrada."; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "Un enlace a una etiqueta."; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "Una lista de sitios en esta cuenta."; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "Una nueva forma de crear y publicar contenidos atrayentes en tu sitio."; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "Una serie de pasos que te muestran cómo añadir un tema, el icono del sitio y más."; @@ -453,7 +453,7 @@ "Add any topic" = "Añadir cualquier debate"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "Añadir el texto del botón"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Añade una imagen o avatar para representar a esta nueva cuenta."; @@ -983,7 +983,7 @@ "Button Style" = "Estilo del botón"; /* No comment provided by engineer. */ -"ButtonGroup" = "ButtonGroup"; +"ButtonGroup" = "Grupo de botones"; /* Label for the post author in the post detail. */ "By " = "Por "; @@ -1119,7 +1119,7 @@ "Category" = "Categoría"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "Enlace de la categoría"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "Falta el título de la categoría"; @@ -1281,7 +1281,7 @@ "Choose video" = "Elegir un vídeo"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "Elige tus temáticas"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "Eligiendo un sitio diferente perderás la capacidad de editar algún contenido, como elementos multimedia y categorías. ¿Estás seguro?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "Dimensiones"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "Desactivar"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "Desactivar el enlace de invitación"; /* Adjective. Comment threading is disabled. */ "Disabled" = "Desactivado"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "Descubre y sigue los blogs que te gustan"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "Descubrir más temáticas"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2370,7 +2370,7 @@ "Enter your password instead." = "Introduce tu contraseña."; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "Introduce las credenciales de tu servidor para activar las restauraciones con un clic de las copias de seguridad."; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "Amplía para seleccionar un área de menú diferente"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "Caduca el"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Explica de qué trata este sitio."; @@ -2541,7 +2541,7 @@ "Failed" = "Fallado"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "Exportación fallida de medios"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "Fallo al insertar el archivo de audio. Por favor, toca para ver las opciones."; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "No se ha podido serializar la solicitud a la API REST."; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "Cancelación fallida del seguimiento de la conversación"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "Fallo al subir los archivos.\nPor favor, toca para ver las opciones."; @@ -2679,10 +2679,10 @@ "Follow site" = "Seguir sitio"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "Seguir temáticas"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "Sigue tus sitios favoritos y descubre nuevos blogs."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "Sigue tus sitios favoritos y descubre nuevas lecturas."; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "Siguiendo la conversación por correo electrónico"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "Siguiendo nuevas temáticas..."; /* Filters Follows Notifications */ "Follows" = "Seguimientos"; @@ -2781,7 +2781,7 @@ "General" = "General"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "Generar un nuevo enlace"; /* Message to indicate progress of generating preview */ "Generating Preview" = "Generando vista previa"; @@ -3194,7 +3194,7 @@ "Invite" = "Invitar"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "Enlace de invitación"; /* Invite People Title */ "Invite People" = "Invitar a gente"; @@ -3744,10 +3744,10 @@ "More Posts" = "Más entradas"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "Más de %1$@"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "Más en WordPress.com"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Lo más popular"; @@ -4053,7 +4053,7 @@ "No network available" = "No hay ninguna red disponible"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "No hay nuevas temáticas para seguir"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "Aún no hay notificaciones"; @@ -4240,7 +4240,7 @@ "Oldest first" = "Más antiguo primero"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Una vez desactivado el enlace de invitación, nadie podrá usarlo para unirse a tu equipo. ¿Estás seguro?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "Una vez que crees un sitio en WordPress.com, puedes volver a publicar el contenido que te gusta en tu propio sitio."; @@ -4668,7 +4668,7 @@ "Post Format" = "Formato de entrada"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "Enlace a la entrada"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "Se ha restaurado la entrada a borradores"; @@ -5425,7 +5425,7 @@ "Search Locations" = "Buscar ubicaciones"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "Ajustes de búsqueda"; /* Label for list of search term */ "Search Term" = "Buscar término"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "Comparte información con nuestra herramienta de análisis acerca del uso que haces de los servicios mientras estás conectado a tu cuenta de WordPress.com."; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "Compartir el enlace de invitación"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "Compartir enlace"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "Índice de spotlight vaciado con éxito"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "Conversación seguida correctamente"; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "%@ instalado con éxito."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "Conversación dejada de seguir correctamente"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "Sugerencias actualizadas"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Resume tu entrada con una lista de encabezados. Añade anclas HTML a los bloques de encabezados para enlazarlos aquí."; /* User role badge */ "Super Admin" = "Super Admin"; @@ -6158,7 +6158,7 @@ "System default" = "Valores por defecto del sistema"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "Tabla de contenidos"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "Tabla mostrando %@"; @@ -6174,7 +6174,7 @@ "Tag" = "Etiqueta"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "Enlace de la etiqueta"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "La etiqueta ya existe"; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "Pulsa para cancelar la subida."; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "Toca para cambiar el título del sitio"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "Toca para cerrar las etiquetas de la entrada"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "Pulsa para seleccionar en qué blog publicar"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "Toca para cambiar a otro sitio o para añadir un nuevo sitio"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "Toca para ver las entradas para esta etiqueta"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "Toca para ver tu sitio"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "Taxonomía"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "El título del sitio se muestra en la barra del título de un navegador web y se muestra en la cabecera de la mayoría de los temas."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "El editor de historias no está disponible en este momento para tu iPad. Por favor, prueba las historias en tu iPhone."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "La URL no contiene un host válido."; @@ -6820,7 +6820,7 @@ "Try it now" = "Probar ahora"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "Prueba el nuevo editor de bloques"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "Prueba con otro correo electrónico"; @@ -6853,7 +6853,7 @@ "Type a label" = "Escribe una etiqueta"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "Escribe un nombre para tu sitio"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "Teclea para obtener más sugerencias"; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "No se ha podido conectar"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "No se ha podido crear el editor de historias"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "No se pudieron cargar las entradas"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "No ha sido posible bloquear este sitio"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "No se han podido crear nuevos enlaces de invitación."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "No ha sido posible eliminar todos los elementos multimedia."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "No ha sido posible eliminar el elemento multimedia."; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "No se han podido desactivar los enlaces de invitación."; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "No es posible descargar el archivo"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "No se ha podido seguir la conversación"; /* Notice title when following a site fails. */ "Unable to follow site" = "No es posible seguir el sitio"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "No ha sido posible verificar la dirección de correo electrónico. Por favor, inténtalo de nuevo más tarde."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "No se han podido visitar los ajustes de Jetpack para el sitio"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "No es posible visitar el sitio"; @@ -7085,7 +7085,7 @@ "Unsupported" = "Incompatible"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "Dispositivo no compatible"; /* Label for an untitled post in the revision browser */ "Untitled" = "Sin título"; @@ -7204,7 +7204,7 @@ "Use block editor" = "Usar el editor de bloques"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Usa este enlace para incorporar a los miembros de tu equipo sin tener que invitarlos uno por uno. Cualquiera que visite esta URL podrá registrarse en tu organización, incluso si ha recibido el enlace de alguien, así que, asegúrate de que lo compartes con personas de confianza."; /* No comment provided by engineer. */ "Use this site" = "Usar este sitio"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "Bienvenido al lector"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "Bienvenido al maquetador web más popular del mundo."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "Bienvenido al maquetador web más popular del mundo."; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "Siempre enviamos correos electrónicos importantes que tengan que ver con tu cuenta, pero también puede que recibas extras interesantes."; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "Pronto eliminaremos el editor clásico para las nuevas entradas, pero esto no afectará a la edición de ninguna de tus entradas o páginas existentes. Adelántate ahora activando el editor de bloques en los ajustes del sitio."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,7 +7950,7 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "Aún no has publicado ninguna entrada. Una vez empieces a publicar aparecerá aquí un resumen de tus últimas entradas."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "Has alcanzado un hito 🚀"; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "Puedes poner en lista blanca una dirección o serie de direcciones IP para que no las bloquee Jetpack. Se acepta tanto IPv4 como IPv6. Para especificar un rango introduce el valor más bajo y el más alto separados por un guión. Ejemplo: 12.12.12.1-12.12.12.100. "; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "Tu primera copia de seguridad estará lista pronto"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "No se han podido exportar tus medios. Si continúa el problema, puedes contactar con nosotros a través de la pantalla «Yo > Ayuda y soporte»."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "Tus avisos viajan contigo - mira los comentarios y «me gusta» a medida que ocurran."; @@ -8110,7 +8110,7 @@ "connections" = "conexiones"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "esquema del documento"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "¿a que sienta bien tachar cosas de una lista?"; @@ -8160,7 +8160,7 @@ "phone number" = "número de teléfono"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "resumen"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "Se eliminarán estos elementos:"; diff --git a/WordPress/Resources/fr.lproj/Localizable.strings b/WordPress/Resources/fr.lproj/Localizable.strings index d0f27cd08487..dd71f6e908b2 100644 --- a/WordPress/Resources/fr.lproj/Localizable.strings +++ b/WordPress/Resources/fr.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-03-04 15:54:57+0000 */ +/* Translation-Revision-Date: 2021-03-31 09:54:09+0000 */ /* Plural-Forms: nplurals=2; plural=n > 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: fr */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "Un fichier contient un modèle de code malveillant"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "Un lien vers une URL."; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "Un lien vers une catégorie."; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "Un lien vers une page."; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "Un lien vers un article."; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "Un lien vers une étiquette."; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "Un liste de sites de ce compte"; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "Une nouvelle façon de publier du contenu attrayant sur votre site."; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "Une série d’étapes vous affichant comment ajouter un thème, une icône de site et plus encore."; @@ -453,7 +453,7 @@ "Add any topic" = "Ajouter un sujet"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "Ajouter le libellé du bouton"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Ajouter une image ou un avatar pour représenter ce nouveau compte."; @@ -579,10 +579,10 @@ "Allow this connection to be used by all admins and users of your site." = "Autoriser cette connexion pour tous les administrateurs et les utilisateurs de votre site."; /* Allowlisted IP Addresses Title */ -"Allowlisted IP Addresses" = "Allowlisted IP Addresses"; +"Allowlisted IP Addresses" = "Adresses IP autorisées"; /* Jetpack Settings: Allowlisted IP addresses */ -"Allowlisted IP addresses" = "Allowlisted IP addresses"; +"Allowlisted IP addresses" = "Adresses IP autorisées"; /* Instructions for users with two-factor authentication enabled. */ "Almost there! Please enter the verification code from your authenticator app." = "On y est presque ! Veuillez saisir le code de vérification de votre app d’authentification."; @@ -939,7 +939,7 @@ /* Blocklist Title Settings: Comments Blocklist */ -"Blocklist" = "Blocklist"; +"Blocklist" = "Liste noire"; /* Opens the WordPress Mobile Blog */ "Blog" = "Blog"; @@ -1119,7 +1119,7 @@ "Category" = "Catégorie"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "Lien de catégorie"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "Il manque le titre de la catégorie"; @@ -1281,7 +1281,7 @@ "Choose video" = "Choisir une vidéo"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "Choisir vos thèmes"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "Choisir un site différent vous fera perdre vos modifications propres à un site, tels que les médias et les catégories. Êtes-vous sûr(e) de vouloir cela ?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "Dimensions"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "Désactiver"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "Désactiver le lien d’invitation"; /* Adjective. Comment threading is disabled. */ "Disabled" = "Désactivé"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "Découvrez et suivez les blogs que vous aimez"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "Découvrir plus de sujets"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "Modifier le block %@"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "Modifier le mot de liste noire"; /* No comment provided by engineer. */ "Edit Comment" = "Modifier le commentaire"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "Saisissez votre mot de passe à la place."; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "Saisissez les identifiants de votre serveur afin d’activer les restaurations de site en un clic à partir des sauvegardes."; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "Déplier pour sélectionner une autre zone de menu"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "Expire le"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Décrivez ce site."; @@ -2541,7 +2541,7 @@ "Failed" = "Échec"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "Échec de l’exportation du média"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "Échec d’insertion du fichier audio Veuillez appuyer pour afficher les options."; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "Échec de la publication de la demande sur l’API REST."; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "Échec du désabonnement de la conversation"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "Le téléversement des fichiers a échoué.\nVeuillez toucher pour accéder aux options."; @@ -2679,10 +2679,10 @@ "Follow site" = "S’abonner au site"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "Suivre des sujets"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "Suivez vos sites préférés et découvrez de nouveaux blogs."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "Suivez vos sites préférés et découvrez de nouvelles lectures."; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "Suivi de la discussion par e-mail"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "Suivi de nouveaux sujets…"; /* Filters Follows Notifications */ "Follows" = "Abonnements"; @@ -2781,7 +2781,7 @@ "General" = "Général"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "Générer un nouveau lien"; /* Message to indicate progress of generating preview */ "Generating Preview" = "Génération de l’aperçu…"; @@ -3194,7 +3194,7 @@ "Invite" = "Invitation"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "Lien d’invitation"; /* Invite People Title */ "Invite People" = "Inviter des personnes"; @@ -3744,10 +3744,10 @@ "More Posts" = "Plus d’articles"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "Articles connexes de %1$@"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "Articles connexes sur WordPress.com"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Heure la plus populaire"; @@ -4053,7 +4053,7 @@ "No network available" = "Aucun réseau disponible"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "Aucun nouveau sujet à suivre"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "Aucune notification pour l'instant"; @@ -4240,7 +4240,7 @@ "Oldest first" = "Les plus anciens en premier"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Une fois le lien d’invitation désactivé, plus personne ne pourra l’utiliser pour rejoindre votre équipe. Voulez-vous vraiment désactiver ce lien ?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "Une fois que vous avez créé un site, vous pouvez rebloguer un contenu que vous avez aimé sur votre propre site."; @@ -4372,7 +4372,7 @@ "Page" = "Page"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "Lien de page"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "Page rétablie dans Brouillons"; @@ -4668,7 +4668,7 @@ "Post Format" = "Format d'article"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "Lien de l’article"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "Article rétabli dans Brouillons"; @@ -5425,7 +5425,7 @@ "Search Locations" = "Recherche de lieu"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "Paramètres de recherche"; /* Label for list of search term */ "Search Term" = "Chercher un terme"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "Partager l’information avec notre outil d’analyse à propos de votre utilisation des services lorsque vous êtes connectés avec votre compte WordPress.com."; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "Partager le lien de partage"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "Lien de partage"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "L’index spolight a bien été effacé"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "Conversation suivie avec succès"; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "L’extension %@ a bien été installée."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "Abonnement à la conversation supprimé"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "Suggestions mises à jour"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Résumez votre article avec une liste d’en-têtes. Ajoutez des ancres HTML aux blocs d’en-tête pour les lier ici."; /* User role badge */ "Super Admin" = "Super Admin"; @@ -6158,7 +6158,7 @@ "System default" = "Réglage système"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "Table des matières"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "Le tableau affiche%@"; @@ -6174,7 +6174,7 @@ "Tag" = "Étiquette"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "Lien de l’étiquette"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "Cette étiquette existe déjà."; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "Touchez pour annuler le téléversement."; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "Appuyer pour modifier le titre du site"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "Toucher pour replier les étiquettes d’article"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "Touchez pour sélectionner dans quel blog écrire"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "Appuyer pour passer à un autre site, ou ajouter un nouveau site"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "Toucher pour voir les articles de cette étiquette"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "Appuyer pour voir votre site"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "Taxonomie"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "Le titre du site est affiché dans la barre de titre du navigateur web et dans l’en-tête de la plupart des thèmes."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "L’éditeur Stories n’est pas actuellement disponible pour votre iPad. Veuillez essayer Stories sur votre iPhone."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "L’URL ne contient pas d’hôte valide."; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "Un problème est survenu lors de la tentative d'accès à votre appareil multimédia. Réessayez ultérieurement."; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "Un problème est survenu avec l’éditeur Stories. Si le problème persiste, vous pouvez nous contacter via l’écran Moi > Aide & Support."; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "Essayer maintenant !"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "Essayer le nouvel éditeur de blocs"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "Essayer avec une autre adresse de messagerie"; @@ -6853,7 +6853,7 @@ "Type a label" = "Saisissez une étiquette"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "Saisissez un nom pour votre site"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "Toucher pour obtenir plus de suggestions."; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "Connexion impossible"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "Impossible de créer un éditeur Stories"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "Impossible de charger les articles"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "Impossible de bloquer le site"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "Impossible de créer de nouveaux liens d’invitation."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "Impossible de supprimer tous les médias."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "Impossible de supprimer le média."; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "Impossible de désactiver les liens d’invitation."; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "Impossible de télécharger le fichier"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "Impossible de s’abonner à la conversation"; /* Notice title when following a site fails. */ "Unable to follow site" = "Impossible de s’abonner au site"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "Impossible de vérifier l’adresse e-mail. Veuillez réessayer ultérieurement."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "Impossible de visiter les réglages Jetpack du site"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "Impossible de visiter le site"; @@ -7085,7 +7085,7 @@ "Unsupported" = "Non reconnu"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "Appareil non pris en charge"; /* Label for an untitled post in the revision browser */ "Untitled" = "Sans titre"; @@ -7204,7 +7204,7 @@ "Use block editor" = "Utiliser l’éditeur de blocs"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Utilisez ce lien pour ajouter les membres de votre équipe sans avoir à les inviter individuellement. Toute personne ayant accès à ce lien sera en mesure de rejoindre votre organisation, même si le lien a été envoyé par quelqu’un d’autre que vous. Faites attention à le partager uniquement à des personnes de confiance."; /* No comment provided by engineer. */ "Use this site" = "Utiliser ce site"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "Bienvenue dans le lecteur"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "Bienvenue sur le constructeur de site le plus populaire au monde."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "Bienvenue sur le constructeur de site le plus populaire au monde."; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "Nous vous enverrons toujours des e-mails importants sur votre compte, mais vous pouvez aussi recevoir des conseils utiles !"; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "Nous allons bientôt supprimer l’éditeur classique pour les nouveaux articles, mais cela n’affectera pas la modification de vos articles ou pages existants. Prenez une longueur d’avance en activant l’éditeur de blocs maintenant dans les réglages du site."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "Vous n’avez pas encore publié d'articles. Lorsque vous commencez à publier, le résumé de votre dernier article apparaît ici."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "Vous avez atteint un événement marquant 🚀 "; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "Vous pouvez autoriser une adresse IP ou une série d’adresses IP pour empêcher leur blocage par Jetpack. IPv4 et IPv6 sont acceptables. Pour spécifier une plage, entrez la valeur basse et la valeur haute en les séparant par un tiret. Exemple : 12.12.12.1-12.12.12.100."; /* A suggestion of topics the user might like */ "You might like" = "Vous pourriez aimer"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "Votre première sauvegarde sera bientôt prête."; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "Votre média n’a pas pu être exporté. If the problem persists you can contact us via the Me > écran Aide & Support."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "Vos notifications voyagent avec vous. Visualisez les commentaires et les réactions dès leur arrivée."; @@ -8110,7 +8110,7 @@ "connections" = "connexions"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "aperçu du document"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "On se sent pas mieux après avoir coché des éléments de la liste ?"; @@ -8160,7 +8160,7 @@ "phone number" = "numéro de téléphone"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "sommaire"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "ces éléments vont être supprimés :"; diff --git a/WordPress/Resources/he.lproj/Localizable.strings b/WordPress/Resources/he.lproj/Localizable.strings index f7bc6a07d1ca..4d540cc7ffea 100644 --- a/WordPress/Resources/he.lproj/Localizable.strings +++ b/WordPress/Resources/he.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-03-04 15:54:56+0000 */ +/* Translation-Revision-Date: 2021-04-01 13:54:08+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: he_IL */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "קובץ שמכיל תבנית של קוד זדוני"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "קישור לכתובת URL."; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "קישור לקטגוריה מסוימת."; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "קישור לעמוד מסוים."; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "קישור לפוסט מסוים."; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "קישור לתגית מסוימת."; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "רשימה של אתרים בחשבון זה."; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "דרך חדשה ליצור ולפרסם תוכן מעניין באתר שלך."; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "סדרת צעדים שתראה לך כיצד להוסיף ערכת עיצוב, סמל לאתר ועוד."; @@ -453,7 +453,7 @@ "Add any topic" = "להוסיף נושא כלשהו"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "להוסיף טקסט לכפתור"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "להוסיף תמונה או תמונת פרופיל שתייצג את החשבון חדש."; @@ -939,7 +939,7 @@ /* Blocklist Title Settings: Comments Blocklist */ -"Blocklist" = "Blocklist"; +"Blocklist" = "רשימת החסימות"; /* Opens the WordPress Mobile Blog */ "Blog" = "אתר"; @@ -1119,7 +1119,7 @@ "Category" = "קטגוריה"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "קישור לקטגוריה"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "חסרה כותרת לקטגוריה"; @@ -1281,7 +1281,7 @@ "Choose video" = "לבחור וידאו"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "לבחור את הנושאים שמעניינים אותך"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "בבחירת אתרים שונים תאבד את היכולת לערוך תכנים\/מדיה\/קטגוריות מאתר ספציפי. האם אתה בטוח?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "מידות"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "להשבית"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "להשבית את הקישור להזמנה"; /* Adjective. Comment threading is disabled. */ "Disabled" = "לא פעיל"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "לגלות בלוגים שימצאו חן בעינייך ולעקוב אחריהם"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "לגלות נושאים נוספים"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "לערוך את הבלוק '%@'"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "לערוך את המילה ברשימת החסימות"; /* No comment provided by engineer. */ "Edit Comment" = "ערוך תגובה"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "במקום זאת יש להזין סיסמה."; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "יש להזין את פרטי הכניסה של השרת כדי להפעיל שחזורים בלחיצה אחת מגיבויים."; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "הפעולה מרחיבה כדי לאפשר בחירה באזור תפריט אחר"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "התוקף פג בתאריך"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "מה מהות האתר."; @@ -2541,7 +2541,7 @@ "Failed" = "נכשל"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "ייצוא המדיה נכשל"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "נכשלה ההוספה של קובץ האודיו. יש להקיש לאפשרויות."; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "לא הצלחנו לערוך בסדרה בקשה אל REST API."; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "ביטול המעקב אחר השיחה נכשל"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "העלאת קבצים נכשלה.\nיש להקיש לאפשרויות."; @@ -2679,10 +2679,10 @@ "Follow site" = "לעקוב אחרי האתר"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "לעקוב אחר נושאים"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "כדאי לעקוב אחר האתרים המועדפים שלך ולגלות בלוגים חדשים לקריאה."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "כדאי לעקוב אחר האתרים המועדפים שלך ולגלות חומרי קריאה חדשים."; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "הופעל מעקב אחר השיחה באמצעות האימייל"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "מתחיל מעקב אחר נושאים חדשים..."; /* Filters Follows Notifications */ "Follows" = "עוקב"; @@ -2781,7 +2781,7 @@ "General" = "כללי"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "ליצור קישור חדש"; /* Message to indicate progress of generating preview */ "Generating Preview" = "יוצר תצוגה מקדימה"; @@ -3194,7 +3194,7 @@ "Invite" = "שליחת הזמנה"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "קישור להזמנה"; /* Invite People Title */ "Invite People" = "להזמין אנשים"; @@ -3744,10 +3744,10 @@ "More Posts" = "פוסטים נוספים"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "תוכן נוסף של %1$@"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "עוד מ-WordPress.com"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "המועד הפופולרי ביותר"; @@ -3866,7 +3866,7 @@ "New" = "חדש"; /* Blocklist Keyword Insertion Title */ -"New Blocklist Word" = "New Blocklist Word"; +"New Blocklist Word" = "מילה חדשה לרשימת החסימות"; /* IP Address or Range Insertion Title */ "New IP or IP Range" = "כתובת IP או טווח IP חדשים"; @@ -4053,7 +4053,7 @@ "No network available" = "אין רשת זמינה"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "אין נושאים חדשים למעקב"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "אין עדיין התראות"; @@ -4240,7 +4240,7 @@ "Oldest first" = "הישן ביותר תחילה"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "לאחר שהקישור להזמנה יושבת, לא תהיה עוד לאף אחד אפשרות להשתמש בו כדי להצטרף לצוות שלך. האם ההחלטה סופית?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "לאחר יצירת אתר ב-WordPress.com, אפשר לפרסם מחדש בבלוג את התוכן שברצונך להציג באתר שלך."; @@ -4372,7 +4372,7 @@ "Page" = "עמוד"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "קישור לעמוד"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "עמוד שוחזר למצב 'טיוטה'"; @@ -4668,7 +4668,7 @@ "Post Format" = "פורמט"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "קישור לפוסט"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "פוסט שוחזר למצב \"טיוטה\""; @@ -5425,7 +5425,7 @@ "Search Locations" = "חיפוש מיקומים"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "הגדרות חיפוש"; /* Label for list of search term */ "Search Term" = "מונח חיפוש"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "שיתוף של פרטי השימוש שלך בשירותים השונים עם כלי הניתוח שלנו לאחר ההתחברות לחשבון שלך ב-WordPress.com."; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "לשתף קישור הזמנה"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "שיתוף הקישור"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "האינדקס של Spotlight נוקה בהצלחה"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "התחלת לעקוב אחר השיחה בהצלחה"; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "%@ הותקן בהצלחה."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "הפסקת לעקוב אחר השיחה בהצלחה"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "ההצעות עודכנו"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "לסכם את הפוסט עם רשימה של כותרות. להוסיף עוגנים של HTML לבלוקים של כותרת כדי לקשר אותם כאן."; /* User role badge */ "Super Admin" = "מנהל מערכת בכיר"; @@ -6158,7 +6158,7 @@ "System default" = "ברירת המחדל לפי המערכת"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "תוכן עניינים"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "הטבלה מציגה את %@"; @@ -6174,7 +6174,7 @@ "Tag" = "תגית"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "קישור לתגית"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "התגית כבר קיימת"; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "יש להקיש כדי לבטל את ההעלאה."; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "יש להקיש כדי לשנות את כותרת האתר"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "יש להקיש כדי לכווץ את התגיות של הפוסט"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "הקש כדי לבחור את האתר לפרסם בו"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "יש להקיש כדי להחליף לאתר אחר או להוסיף אתר חדש"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "יש להקיש כדי להציג את הפוסטים בתגית זו"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "יש להקיש כדי להציג את האתר שלך"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "טקסונומיה"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "שם האתר מוצג בסרגל הכותרת של הדפדפן ובתור הכותרת עליונה ברוב ערכות העיצוב."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "עורך הסטוריז לא זמין כרגע ב-iPad שלך. אפשר לנסות ליצור סטוריז במכשיר ה-iPhone."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "בכתובת האינטרנט חסר מארח חוקי."; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "אירעה בעיה בניסיון לגשת למדיה שלך. כדאי לנסות שוב מאוחר יותר."; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "אירעה בעיה בעורך הסטוריז. אם הבעיה נמשכת, אפשר ליצור איתנו קשר באמצעות המסך 'עזרה ותמיכה' תחת 'אני'."; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "כדאי לנסות עכשיו"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "כדאי לנסות את עורך הבלוקים החדש"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "ניתן לנסות באמצעות כתובת אימייל שונה"; @@ -6853,7 +6853,7 @@ "Type a label" = "הזנת תווית"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "יש להקליד שם לאתר שלך"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "יש להקליד כדי לקבל הצעות נוספות"; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "אי אפשר להתחבר"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "לא ניתן ליצור את עורך הסטוריז"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "לא ניתן לטעון את הפוסטים"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "אין אפשרות לחסום את האתר"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "לא ניתן ליצור קישורי הזמנה חדשים."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "לא ניתן למחוק את כל פריטי המדיה."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "לא ניתן למחוק פריט מדיה."; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "לא ניתן להשבית את קישורי ההזמנה."; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "לא ניתן להוריד את הקובץ"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "לא ניתן לעקוב אחר השיחה"; /* Notice title when following a site fails. */ "Unable to follow site" = "לא ניתן לעקוב אחרי האתר"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "אין אפשרות לאמת את כתובת האימייל. יש לנסות שוב מאוחר יותר."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "לא ניתן לבקר בהגדרות של Jetpack לאתר"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "לא ניתן לבקר באתר"; @@ -7085,7 +7085,7 @@ "Unsupported" = "לא נתמך"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "מכשיר לא נתמך"; /* Label for an untitled post in the revision browser */ "Untitled" = "ללא כותרת"; @@ -7204,7 +7204,7 @@ "Use block editor" = "להשתמש בעורך הבלוקים"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "ניתן להשתמש בקישור זה כדי להזמין את כל חברי הצוות שלך במקביל, במקום לשלוח הזמנות אישיות. לכל אדם שמבקר בכתובת ה-URL הזאת תהיה אפשרות להירשם לארגון שלך, גם אם הוא מקבל את הקישור מאדם אחר ולכן, חשוב לוודא שהקישור נשלח לאנשים מהימנים בלבד."; /* No comment provided by engineer. */ "Use this site" = "שימוש באתר זה"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "ברוכים הבאים ל-Reader"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "ברוך בואך לבונה האתרים הפופולרי ביותר בעולם."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "ברוך בואך לכלי הפופולרי ביותר בעולם לבניית אתרי אינטרנט."; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "תמיד נשלח הודעות אימייל חשובות לגבי החשבון שלך, אבל אפשר לקבל גם כמה תוספות מועילות."; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "בקרוב נסיר את העורך הקלאסי ליצירת פוסטים חדשים אבל המהלך לא ישפיע על העריכה של פוסטים ועמודים שכבר קיימים באתר שלך. אפשר להקדים את המעבר ולהפעיל את עורך הבלוקים בהגדרות האתר."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "עדיין לא פרסמת אף פוסט. לאחר פרסום של תוכן, סיכום הפוסטים האחרונים שלך יופיע כאן."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "הגעת לשיא חדש 🚀 "; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "באפשרותך להכניס כתובת IP או סדרת כתובות לרשימת ההיתרים ובכך למנוע לחלוטין את חסימתם על ידי Jetpack. יש תמיכה ב-IPv4 ו-IPv6. כדי לציין טווח, יש להזין את הערך הנמוך והערך הגבוה כשהם מופרדים באמצעות מקף. לדוגמה: 12.12.12.1-12.12.12.100."; /* A suggestion of topics the user might like */ "You might like" = "אולי יעניין אותך"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "הגיבוי הראשון שלך יהיה מוכן בקרוב"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "לא ניתן היה לייצא את המדיה שלך. If the problem persists you can contact us via the Me > מסך 'עזרה ותמיכה'."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "ההודעות שלך אתך בכל מקום - אפשר לראות תגובות ולייקים בזמן אמת."; @@ -8110,7 +8110,7 @@ "connections" = "חשבונות מקושרים"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "חלוקת המסמך לרמות"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "שמחים שהשלמת את המטרה שהצבת לעצמך!"; @@ -8160,7 +8160,7 @@ "phone number" = "מספר טלפון"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "סיכום"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "פריטים אלה יימחקו:"; diff --git a/WordPress/Resources/id.lproj/Localizable.strings b/WordPress/Resources/id.lproj/Localizable.strings index 40f10d091937..45ac4486b6a3 100644 --- a/WordPress/Resources/id.lproj/Localizable.strings +++ b/WordPress/Resources/id.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-03-02 21:28:45+0000 */ +/* Translation-Revision-Date: 2021-04-01 09:54:08+0000 */ /* Plural-Forms: nplurals=2; plural=n > 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: id */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "Sebuah file mengandung pola kode berbahaya"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "Tautan ke URL."; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "Tautan ke kategori."; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "Tautan ke halaman."; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "Tautan ke pos."; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "Tautan ke tag."; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "Daftar situs di akun ini."; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "Cara baru untuk membuat dan memposkan konten menarik di situs Anda."; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "Serangkaian langkah yang menunjukkan cara menambahkan tema, ikon situs, dan masih banyak lagi."; @@ -453,7 +453,7 @@ "Add any topic" = "Tambahkan topik yang mana saja"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "Tambahkan teks tombol"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Tambahkan gambar, atau avatar, untuk mewakili akun baru ini."; @@ -579,10 +579,10 @@ "Allow this connection to be used by all admins and users of your site." = "Izinkan koneksi ini untuk digunakan oleh semua admin dan pengguna situs Anda."; /* Allowlisted IP Addresses Title */ -"Allowlisted IP Addresses" = "Allowlisted IP Addresses"; +"Allowlisted IP Addresses" = "Alamat IP yang Diizinkan"; /* Jetpack Settings: Allowlisted IP addresses */ -"Allowlisted IP addresses" = "Allowlisted IP addresses"; +"Allowlisted IP addresses" = "Alamat IP yang diizinkan"; /* Instructions for users with two-factor authentication enabled. */ "Almost there! Please enter the verification code from your authenticator app." = "Hampir selesai! Masukkan kode verifikasi dari aplikasi pengautentikasi."; @@ -939,7 +939,7 @@ /* Blocklist Title Settings: Comments Blocklist */ -"Blocklist" = "Blocklist"; +"Blocklist" = "Daftar blokir"; /* Opens the WordPress Mobile Blog */ "Blog" = "Blog"; @@ -1119,7 +1119,7 @@ "Category" = "Kategori"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "Tautan Kategori"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "Belum ada judul kategori."; @@ -1281,7 +1281,7 @@ "Choose video" = "Pilih video"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "Pilih topik Anda"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "Suntingan per situs, seperti suntingan media dan kategori, akan hilang jika Anda pindah ke situs yang lain. Apakah Anda yakin?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "Dimensi"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "Nonaktifkan"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "Nonaktifkan tautan undangan"; /* Adjective. Comment threading is disabled. */ "Disabled" = "Non-aktif"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "Temukan dan ikuti blog yang Anda suka"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "Jelajahi topik-topik lainnya"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "Edit blok %@"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "Edit Daftar Blokir Kata"; /* No comment provided by engineer. */ "Edit Comment" = "Sunting Komentar"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "Masukkan kata sandi saja."; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "Masukkan kredensial server Anda untuk mengaktifkan pemulihan situs sekali klik dari pencadangan."; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "Perluas untuk memilih area menu yang berbeda"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "Kedaluwarsa pada"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Jelaskan tentang apa situs ini."; @@ -2541,7 +2541,7 @@ "Failed" = "Gagal"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "Ekspor Media Gagal"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "Gagal memasukkan file audio. Ketuk untuk melihat pilihan."; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "Gagal menyambungkan permintaan ke REST API."; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "Gagal untuk berhenti mengikuti percakapan"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "Gagal mengunggah file.\nKetuk untuk melihat pilihan."; @@ -2679,10 +2679,10 @@ "Follow site" = "Follow site"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "Ikuti topik"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "Ikuti situs favorit Anda dan temukan blog-blog baru."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "Ikuti situs favorit Anda dan temukan bacaan-bacaan baru."; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "Mengikuti percakapan melalui email"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "Mengikuti topik baru..."; /* Filters Follows Notifications */ "Follows" = "Mengikuti"; @@ -2781,7 +2781,7 @@ "General" = "Umum"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "Hasilkan tautan baru"; /* Message to indicate progress of generating preview */ "Generating Preview" = "Membuat Pratinjau"; @@ -3194,7 +3194,7 @@ "Invite" = "Undang"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "Tautan Undangan"; /* Invite People Title */ "Invite People" = "Undang Orang-orang"; @@ -3744,10 +3744,10 @@ "More Posts" = "Pos Lebih Banyak"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "Lainnya dari %1$@"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "Lainnya di WordPress.com"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Waktu yang Paling Disukai"; @@ -3866,7 +3866,7 @@ "New" = "Baru"; /* Blocklist Keyword Insertion Title */ -"New Blocklist Word" = "New Blocklist Word"; +"New Blocklist Word" = "Daftar Blokir Kata Baru"; /* IP Address or Range Insertion Title */ "New IP or IP Range" = "IP atau Rentang IP baru"; @@ -4053,7 +4053,7 @@ "No network available" = "Tidak ada jaringan"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "Tidak ada topik baru untuk diikuti"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "Belum ada notifikasi."; @@ -4240,7 +4240,7 @@ "Oldest first" = "Paling lama dulu"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Setelah tautan undangan ini dinonaktifkan, tidak ada yang dapat menggunakannya lagi untuk bergabung dengan tim Anda. Apakah Anda yakin?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "Setelah membuat situs WordPress.com, Anda dapat me-reblog konten yang disukai ke situs Anda sendiri."; @@ -4372,7 +4372,7 @@ "Page" = "Halaman"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "Tautan Halaman"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "Halaman Dipulihkan ke Draf"; @@ -4668,7 +4668,7 @@ "Post Format" = "Format Tulisan"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "Tautan Pos"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "Pos Dipulihkan ke Draf"; @@ -5425,7 +5425,7 @@ "Search Locations" = "Cari Lokasi"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "Pengaturan Pencarian"; /* Label for list of search term */ "Search Term" = "Istilah Pencarian"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "Berbagi informasi dengan alat analitik kami tentang penggunaan layanan Anda saat sudah login ke akun WordPress.com Anda."; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "Bagikan tautan undangan"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "Bagikan tautan"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "Berhasil menghapus indeks spotlight"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "Berhasil mengikuti percakapan"; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "Berhasil menginstal %@."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "Berhasil berhenti mengikuti percakapan"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "Saran diperbarui"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Rangkum pos Anda dengan daftar heading. Tambahkan anchor HTML ke blok Heading untuk menautkannya ke sini."; /* User role badge */ "Super Admin" = "Super Admin"; @@ -6158,7 +6158,7 @@ "System default" = "Default sistem"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "Daftar Isi"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "Tabel menunjukkan %@"; @@ -6174,7 +6174,7 @@ "Tag" = "Tag"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "Tautan Tag"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "Tag sudah ada"; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "Ketuk untuk membatalkan unggahan."; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "Ketuk untuk mengganti judul situs"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "Ketuk untuk menciutkan tag pos"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "Tekan untuk memilih blog yang akan diposting"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "Ketuk untuk beralih ke situs lain, atau menambahkan situs baru"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "Ketuk untuk melihat pos untuk tag ini"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "Ketuk untuk melihat situs Anda"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "Taksonomi"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "Judul Situs ditampilkan di bilah judul perambah web dan ditampilkan pada header sebagian besar tema."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "Editor Cerita belum tersedia untuk iPad Anda. Silakan coba Cerita di iPhone Anda."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "URL tidak menemukan host yang valid."; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "Ada masalah saat mencoba mengakses media Anda. Harap coba lagi nanti."; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "Terjadi masalah dengan editor Cerita. Jika masalah berlanjut, Anda dapat menghubungi kami melalui layar Saya > Bantuan & Dukungan."; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "Coba sekarang"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "Coba Editor Blok yang baru"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "Coba dengan email lain"; @@ -6853,7 +6853,7 @@ "Type a label" = "Ketikkan label"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "Ketik nama untuk situs Anda"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "Ketik untuk mendapatkan lebih banyak saran"; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "Tidak Dapat Terhubung"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "Tidak dapat Membuat Editor Cerita"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "Tidak Dapat Memuat Pos."; @@ -6883,7 +6883,7 @@ "Unable to block site" = "Unable to block site"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "Tidak dapat membuat tautan undangan baru."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "Tidak dapat menghapus semua item media."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "Tidak dapat menghapus item media."; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "Tidak dapat menonaktifkan tautan undangan."; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "Tidak dapat mengunduh berkas"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "Tidak dapat mengikuti percakapan"; /* Notice title when following a site fails. */ "Unable to follow site" = "Tidak dapat mengikuti situs"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "Tidak dapat memverifikasi alamat email. Silakan coba lagi nanti."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "Tidak dapat membuka pengaturan Jetpack situs"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "Tidak dapat mengunjungi situs"; @@ -7085,7 +7085,7 @@ "Unsupported" = "Tidak didukung"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "Perangkat Tidak Didukung"; /* Label for an untitled post in the revision browser */ "Untitled" = "Tak Berjudul"; @@ -7204,7 +7204,7 @@ "Use block editor" = "Gunakan penyunting blok"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Gunakan tautan ini untuk mendaftarkan anggota tim Anda tanpa harus mengundang mereka satu per satu. Siapa pun yang mengunjungi URL berikut akan dapat mendaftar ke organisasi Anda meskipun mereka menerima tautan dari orang lain, jadi pastikan Anda membagikannya dengan orang tepercaya."; /* No comment provided by engineer. */ "Use this site" = "Gunakan situs ini"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "Selamat Datang di Pembaca"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "Selamat datang di pembuat situs web terpopuler di dunia."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "Selamat datang di pembuat situs web terpopuler di dunia."; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "Kami akan selalu mengirim email penting terkait akun Anda, namun Anda juga dapat memperoleh beberapa tambahan yang bermanfaat."; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "Kami akan segera menghapus editor klasik untuk pos baru tetapi hal ini tidak akan memengaruhi proses pengeditan pos atau halaman yang sudah ada. Mulailah dengan mengaktifkan Editor Blok sekarang di pengaturan situs."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "Anda belum memublikasikan satu pos pun. Setelah mulai memublikasikan, ringkasan pos terbaru Anda akan muncul di sini."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "Anda mendapatkan pencapaian 🚀 "; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "Anda dapat membuat daftar izin alamat IP atau rangkaian alamat IP untuk mencegah alamat tersebut diblok oleh Jetpack. IPv4 dan IPv6 diterima. Untuk menentukan rentang, masukkan nilai rendah dan nilai tinggi yang dipisahkan oleh tanda hubung. Misalnya: 12.12.12.1-12.12.12.100."; /* A suggestion of topics the user might like */ "You might like" = "Anda mungkin suka"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "Pencadangan pertama Anda akan segera tersedia"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "Media Anda tidak dapat diekspor. If the problem persists you can contact us via the Me > layar Bantuan & Dukungan."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "Bawa pemberitahuan ke mana pun Anda pergi — lihat komentar dan suka seketika."; @@ -8110,7 +8110,7 @@ "connections" = "sambungan"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "outline dokumen"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "bukankah menyenangkan rasanya saat mencoret satu hal dari daftar?"; @@ -8160,7 +8160,7 @@ "phone number" = "nomor telepon"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "ringkasan"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "item berikut akan dihapus:"; diff --git a/WordPress/Resources/it.lproj/Localizable.strings b/WordPress/Resources/it.lproj/Localizable.strings index 408655d02e1a..a4f92824f3f7 100644 --- a/WordPress/Resources/it.lproj/Localizable.strings +++ b/WordPress/Resources/it.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-03-24 18:54:34+0000 */ +/* Translation-Revision-Date: 2021-03-31 15:54:08+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: it */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "Un file contiene un modello di codice dannoso"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "Un link a un URL."; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "Un link a una categoria."; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "Un link a una pagina."; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "Un link a un articolo."; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "Un link a un tag."; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "Un elenco dei siti su questo account."; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "Un nuovo modo di creare e pubblicare contenuti coinvolgenti sul tuo sito."; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "Una serie di passaggi per mostrare come aggiungere un tema, un'icona del sito e molto altro."; @@ -453,7 +453,7 @@ "Add any topic" = "Aggiungi qualsiasi argomento"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "Aggiungi il testo del pulsante"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Aggiungi un'immagine, o un avatar, per rappresentare questo nuovo account."; @@ -579,10 +579,10 @@ "Allow this connection to be used by all admins and users of your site." = "Consenti che questa connessione venga utilizzata da tutti gli amministratori e tutti gli utenti del tuo sito."; /* Allowlisted IP Addresses Title */ -"Allowlisted IP Addresses" = "Allowlisted IP Addresses"; +"Allowlisted IP Addresses" = "Indirizzi IP consentiti inclusi nell'elenco"; /* Jetpack Settings: Allowlisted IP addresses */ -"Allowlisted IP addresses" = "Allowlisted IP addresses"; +"Allowlisted IP addresses" = "Indirizzi IP consentiti inclusi nell'elenco"; /* Instructions for users with two-factor authentication enabled. */ "Almost there! Please enter the verification code from your authenticator app." = "Ci siamo quasi! Inserisci il codice di verifica dalla tua app di autenticazione."; @@ -939,7 +939,7 @@ /* Blocklist Title Settings: Comments Blocklist */ -"Blocklist" = "Blocklist"; +"Blocklist" = "Elenco di elementi da bloccare"; /* Opens the WordPress Mobile Blog */ "Blog" = "Blog"; @@ -983,7 +983,7 @@ "Button Style" = "Stile del pulsante"; /* No comment provided by engineer. */ -"ButtonGroup" = "ButtonGroup"; +"ButtonGroup" = "Gruppo pulsante"; /* Label for the post author in the post detail. */ "By " = "Di"; @@ -1119,7 +1119,7 @@ "Category" = "Categoria"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "Link categoria"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "Manca il titolo della categoria"; @@ -1281,7 +1281,7 @@ "Choose video" = "Scegli video"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "Scegli gli argomenti"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "Se scegli un sito diverso perderai tutte le modifiche a contenuti specifici per questo sito, come file multimediali e categorie. Confermi?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "Dimensioni"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "Disattiva"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "Disattiva il link di invito"; /* Adjective. Comment threading is disabled. */ "Disabled" = "Disabilitato"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "Scopri e segui i blog che ami"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "Scopri ulteriori argomenti"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "Modifica blocco %@"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "Modifica elenco delle parole da bloccare"; /* No comment provided by engineer. */ "Edit Comment" = "Modifica Commento"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "Immetti la password."; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "Inserisci le credenziali del server per abilitare i ripristini del sito con un clic dai backup."; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "Espande per selezionare un'area del menu differente"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "Scade il giorno"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Spiega di cosa tratta il sito."; @@ -2541,7 +2541,7 @@ "Failed" = "Fallito"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "Esportazione file multimediali non riuscita"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "Inserimento del file audio non riuscito Tocca per le opzioni."; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "Tentativo di richiesta di serializzazione all'API REST non riuscito."; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "Impossibile smettere di seguire la conversazione"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "Impossibile caricare i file.\nTocca per le opzioni."; @@ -2679,10 +2679,10 @@ "Follow site" = "Segui sito"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "Segui gli argomenti"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "Segui i tuoi siti preferiti e scopri nuovi blog."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "Segui i tuoi siti preferiti e scopri nuove letture."; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "Stai seguendo la conversazione tramite e-mail"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "Stai seguendo nuovi argomenti..."; /* Filters Follows Notifications */ "Follows" = "Segue"; @@ -2781,7 +2781,7 @@ "General" = "Generali"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "Genera un nuovo link"; /* Message to indicate progress of generating preview */ "Generating Preview" = "Generazione dell'anteprima in corso"; @@ -3194,7 +3194,7 @@ "Invite" = "Invita"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "Link di invito"; /* Invite People Title */ "Invite People" = "Invita delle persone"; @@ -3744,10 +3744,10 @@ "More Posts" = "Più articoli"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "Ulteriori informazioni da %1$@"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "Ulteriori informazioni su WordPress.com"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Orari più popolari"; @@ -3866,7 +3866,7 @@ "New" = "Nuovo"; /* Blocklist Keyword Insertion Title */ -"New Blocklist Word" = "New Blocklist Word"; +"New Blocklist Word" = "Nuovo elenco delle parole da bloccare"; /* IP Address or Range Insertion Title */ "New IP or IP Range" = "Nuovo IP o nuovo IP Range"; @@ -4053,7 +4053,7 @@ "No network available" = "Nessuna rete disponibile"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "Nessun nuovo argomento da seguire"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "Nessuna notifica"; @@ -4240,7 +4240,7 @@ "Oldest first" = "Prima i meno recenti"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Una volta disattivato il link di invito, nessuno sarà in grado di usarlo per unirsi al tuo team. Sei sicuro?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "Una volta creato un sito WordPress.com, puoi ripubblicare il contenuto che ti piace sul tuo sito."; @@ -4372,7 +4372,7 @@ "Page" = "Pagina"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "Link pagina"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "Pagina ripristinata in Bozze"; @@ -4668,7 +4668,7 @@ "Post Format" = "Formato articolo"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "Link articolo"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "Articolo ripristinato in Bozze"; @@ -5425,7 +5425,7 @@ "Search Locations" = "Cerca località"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "Impostazioni di ricerca"; /* Label for list of search term */ "Search Term" = "Cerca il termine"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "Condividi informazioni con il nostro strumento di analisi relativamente al tuo uso dei servizi mentre sei connesso con il tuo account WordPress.com."; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "Condividi il link di invito"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "Condividi il link"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "Indice Spotlight cancellato correttamente"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "Conversazione seguita"; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "Installazione di %@ completata correttamente."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "Conversazione non più seguita"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "Suggerimenti aggiornati"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Riassumi il tuo articolo con un elenco di titoli. Aggiungi ancoraggi HTML ai blocchi Titolo per collegarli qui."; /* User role badge */ "Super Admin" = "Super Admin"; @@ -6158,7 +6158,7 @@ "System default" = "Sistema predefinito"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "Indice dei contenuti"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "La tabella mostra %@"; @@ -6174,7 +6174,7 @@ "Tag" = "Tag"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "Link tag"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "Il tag esiste già"; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "Fai tap per cancellare il caricamento."; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "Tocca per modificare il titolo del sito"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "Tocca per comprimere i tag dell'articolo"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "Tocca per selezionare il blog su cui pubblicare"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "Tocca per passare a un altro sito o aggiungerne uno nuovo"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "Tocca per visualizzare gli articoli per questo tag"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "Tocca per visualizzare il tuo sito"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "Tassonomia"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "Il titolo del sito viene visualizzato nella barra del titolo di un browser web e nell'intestazione nella maggior parte dei temi."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "L'Editor delle Storie non è attualmente disponibile per il tuo iPad. Prova Storie sull'iPhone."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "L'host dell'URL non è valido."; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "Si è verificato un problema nel tentativo di accedere ai tuoi elementi media. Riprova più tardi."; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "Si è verificato un problema con l'Editor delle Storie. Se il problema persiste, puoi contattarci tramite la schermata Io > Schermata di Aiuto e supporto."; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "Prova ora"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "Prova il nuovo editor a blocchi"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "Prova con un'altra email"; @@ -6853,7 +6853,7 @@ "Type a label" = "Scrivi un'etichetta"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "Digita un nome per il sito"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "Digita per ottenere ulteriori suggerimenti"; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "Impossibile connettersi"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "Impossibile creare l'Editor delle Storie"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "Impossibile caricare gli articoli"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "Impossibile bloccare il sito"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "Impossibile creare nuovi link di invito."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "Non è possibile eliminare tutti gli elementi multimediali."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "Non è possibile eliminare l'elemento multimediale. "; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "Impossibile disattivare i link di invito."; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "Impossibile scaricare il file"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "Impossibile seguire la conversazione"; /* Notice title when following a site fails. */ "Unable to follow site" = "Impossibile seguire il sito"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "Impossibile verificare l'indirizzo email. Riprova più tardi."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "Impossibile visitare le impostazioni di Jetpack per il sito"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "Impossibile visitare il sito"; @@ -7085,7 +7085,7 @@ "Unsupported" = "Non supportato"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "Dispositivo non supportato"; /* Label for an untitled post in the revision browser */ "Untitled" = "Senza titolo"; @@ -7204,7 +7204,7 @@ "Use block editor" = "Usa editor a blocchi"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Usa questo link per accettare i membri del team senza doverli invitare uno per uno. Chiunque visiti questo URL potrà iscriversi alla tua organizzazione, anche se ha ricevuto un link da qualcun altro, quindi assicurati di condividerlo con le persone fidate."; /* No comment provided by engineer. */ "Use this site" = "Utilizza questo sito"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "Benvenuto al Reader"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "Benvenuto nel costruttore di siti web più popolare del mondo."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "Benvenuto nel costruttore di siti web più popolare del mondo."; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "Inviamo sempre email importanti riguardanti il tuo account ma puoi ricevere anche altre informazioni extra."; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "Rimuoveremo presto l'editor classico per i nuovi articoli, ma questa operazione non influenzerà la modifica di qualsiasi tuo articolo o pagina esistente. Parti in vantaggio abilitando ora l'editor a blocchi nelle impostazioni del sito."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "Non hai ancora pubblicato alcun articolo. Una volta avviata la pubblicazione, il riepilogo del tuo ultimo articolo verrà visualizzato qui."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "Hai raggiunto un traguardo 🚀 "; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "Puoi includere nella lista di ciò che è consentito un indirizzo IP o serie di indirizzi per evitare che vengano bloccati da Jetpack. Sono accettati indirizzi IPv4 e IPv6. Per specificare un intervallo, inserisci il valore minimo e il valore massimo separati da un trattino. Esempio: 12.12.12.1-12.12.12.100."; /* A suggestion of topics the user might like */ "You might like" = "Potrebbe piacerti"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "Il tuo primo backup sarà pronto a breve"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "Impossibile esportare i file multimediali. If the problem persists you can contact us via the Me > Schermata di Aiuto e supporto."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "Le tue notifiche viaggiano con te: vedi i commenti e i mi piace in tempo reale."; @@ -8110,7 +8110,7 @@ "connections" = "connessioni"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "struttura del documento"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "Non è bello spuntare le cose su una lista?"; @@ -8160,7 +8160,7 @@ "phone number" = "numero di telefono"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "Riepilogo"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "questi elementi verranno eliminati:"; diff --git a/WordPress/Resources/ja.lproj/Localizable.strings b/WordPress/Resources/ja.lproj/Localizable.strings index 2871d5081237..889d4ea74389 100644 --- a/WordPress/Resources/ja.lproj/Localizable.strings +++ b/WordPress/Resources/ja.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-03-24 00:24:43+0000 */ +/* Translation-Revision-Date: 2021-03-31 09:54:08+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ja_JP */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "ファイルには、悪意のあるコードが含まれています"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "URL へのリンク。"; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "カテゴリーへのリンク"; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "ページへのリンク。"; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "投稿へのリンク。"; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "タグへのリンク。"; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "このアカウントのサイトのリストです。"; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "心をつかむコンテンツを作り、サイトで公開する新しい方法。"; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "テーマやサイトアイコンなどを追加する方法の手順。"; @@ -453,7 +453,7 @@ "Add any topic" = "任意のトピックを追加"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "ボタンのテキストを追加"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "この新規アカウントを表す画像またはアバターを追加します。"; @@ -579,10 +579,10 @@ "Allow this connection to be used by all admins and users of your site." = "この連携に対するサイトの全管理者およびユーザーの利用を許可する。"; /* Allowlisted IP Addresses Title */ -"Allowlisted IP Addresses" = "Allowlisted IP Addresses"; +"Allowlisted IP Addresses" = "許可リストに登録された IP アドレス"; /* Jetpack Settings: Allowlisted IP addresses */ -"Allowlisted IP addresses" = "Allowlisted IP addresses"; +"Allowlisted IP addresses" = "許可リストに登録された IP アドレス"; /* Instructions for users with two-factor authentication enabled. */ "Almost there! Please enter the verification code from your authenticator app." = "もう少しで完了です。認証アプリから認証コードを入力してください。"; @@ -939,7 +939,7 @@ /* Blocklist Title Settings: Comments Blocklist */ -"Blocklist" = "Blocklist"; +"Blocklist" = "ブロックリスト"; /* Opens the WordPress Mobile Blog */ "Blog" = "ブログ"; @@ -1119,7 +1119,7 @@ "Category" = "カテゴリー"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "カテゴリーリンク"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "カテゴリー名を入力してください。"; @@ -1281,7 +1281,7 @@ "Choose video" = "動画を選択"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "トピックを選択"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "別のサイトを選択するとサイト特定のコンテンツ (メディア、カテゴリーなど) に関する編集が失われます。変更しますか ?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "サイズ"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "無効化"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "招待リンクを無効化"; /* Adjective. Comment threading is disabled. */ "Disabled" = "無効"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "お気に入りのブログを探してフォロー"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "さらにトピックを見つける"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "%@ ブロックを編集"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "ブロックリストの単語を編集"; /* No comment provided by engineer. */ "Edit Comment" = "コメントを編集"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "代わりにパスワードを入力することもできます。"; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "サーバーのログイン情報を入力すると、1クリックでバックアップからサイトを復元できるようになります。"; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "拡大して別のメニューエリアを選択"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "有効期限日"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "このサイトの簡単な説明。"; @@ -2541,7 +2541,7 @@ "Failed" = "失敗しました"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "メディアのエクスポートに失敗しました"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "音声ファイルの挿入に失敗しました。 タップすると、オプションが表示されます。"; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "REST API へのリクエストをシリアライズできませんでした。"; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "会話のフォロー解除に失敗しました"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "ファイルのアップロードに失敗しました。\nタップすると、オプションが表示されます。"; @@ -2679,10 +2679,10 @@ "Follow site" = "サイトをフォロー"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "トピックをフォロー"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "お気に入りのサイトをフォローして新しいブログを発見しましょう。"; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "お気に入りのサイトをフォローして新しい読み物を発見しましょう。"; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "会話をメールでフォローしています"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "新しいトピックをフォローしています..."; /* Filters Follows Notifications */ "Follows" = "フォロー"; @@ -2781,7 +2781,7 @@ "General" = "一般"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "新規リンクを作成"; /* Message to indicate progress of generating preview */ "Generating Preview" = "プレビューを生成中"; @@ -3194,7 +3194,7 @@ "Invite" = "招待"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "招待リンク"; /* Invite People Title */ "Invite People" = "他の人を招待"; @@ -3744,10 +3744,10 @@ "More Posts" = "投稿が多い"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "%1$@ からの詳細情報"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "WordPress.com の詳細"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "最も人気のある時間"; @@ -4053,7 +4053,7 @@ "No network available" = "利用可能なネットワークがありません"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "フォローする新規トピックがありません"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "まだ通知はありません"; @@ -4240,7 +4240,7 @@ "Oldest first" = "古いものから表示"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "招待リンクを無効化すると、このリンクを使用してチームに参加できなくなります。 本当に実行しますか ?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "WordPress.com サイトの作成後は、お気に入りのコンテンツを自分のサイトにリブログできます。"; @@ -4372,7 +4372,7 @@ "Page" = "ページ"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "ページのリンク"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "ページが下書きに復元されました"; @@ -4668,7 +4668,7 @@ "Post Format" = "投稿フォーマット"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "投稿リンク"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "投稿を下書きとして復元しました。"; @@ -5425,7 +5425,7 @@ "Search Locations" = "位置情報を検索"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "検索設定"; /* Label for list of search term */ "Search Term" = "検索キーワード"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "WordPress.com アカウントへのログイン中のサービス利用の情報を分析ツールと共有してください。"; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "招待リンクを共有"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "リンクを共有"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "スポットライトインデックスのクリアに成功しました。"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "会話のフォローが完了しました"; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "%@ をインストールしました。"; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "会話のフォロー解除が完了しました"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "提案が更新されました"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "見出しのリストを使用して投稿を要約します。 見出しブロックに HTML アンカーを追加してここにリンクします。"; /* User role badge */ "Super Admin" = "特権管理者"; @@ -6158,7 +6158,7 @@ "System default" = "システムの初期設定"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "目次"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "Table showing %@"; @@ -6174,7 +6174,7 @@ "Tag" = "タグ"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "タグリンク"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "タグはすでに存在します"; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "アップロードをキャンセルするにはタップしてください。"; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "タップしてサイトのタイトルを変更"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "タップして投稿のタグを折りたたむ"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "投稿先のブログを選択"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "タップして別のサイトに切り替え、または新しいサイトを追加"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "タップしてこのフラグが付いた投稿を表示"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "タップしてサイトを表示"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "投稿カテゴリー・タグ"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "サイトのタイトルは、Web ブラウザーのタイトルバーに表示され、ほとんどのテーマのヘッダーに表示されます。"; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "ストーリーエディターは現在 iPad ではご利用いただけません。 iPhone でストーリーをお試しください。"; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "この URL には有効なホストがありません。"; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "メディアにアクセスしようとした際に問題が発生しました。後ほどもう一度お試しください。"; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "ストーリーエディターに問題が生じました。 問題が解決しない場合は、「ME」>「ヘルプとサポート」画面からお問い合わせください。"; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "今すぐ試す"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "新しいブロックエディターを試す"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "別のメールで試す"; @@ -6853,7 +6853,7 @@ "Type a label" = "ラベルを入力"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "サイトの名前を入力してください"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "入力してさらに候補を表示"; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "連携できません"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "ストーリーエディターを作成できません"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "投稿を読み込めません"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "サイトをブロックできませんでした"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "新規招待リストを作成できません。"; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "すべてのメディアファイルを削除できません。"; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "メディアファイルを削除できません。"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "招待リンクを無効にできません。"; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "ファイルをダウンロードできません"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "会話をフォローできません"; /* Notice title when following a site fails. */ "Unable to follow site" = "サイトをフォローできません"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "メールアドレスを検証できません。後ほど、もう一度お試しください。"; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "サイトの Jetpack 設定にアクセスできません"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "サイトにアクセスできません"; @@ -7085,7 +7085,7 @@ "Unsupported" = "非サポート"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "サポートされていないデバイス"; /* Label for an untitled post in the revision browser */ "Untitled" = "無題"; @@ -7204,7 +7204,7 @@ "Use block editor" = "ブロックエディターを使用"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "このリンクを使用すると、チームメンバーを1人ずつではなく一括で招待できます。 この URL にアクセスすると、だれでも組織に登録されます。リンクをだれから受け取ったかは関係ないため、信頼できる人と共有するようにしてください。"; /* No comment provided by engineer. */ "Use this site" = "このサイトを使用"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "Reader へようこそ"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "世界で最も人気のサイト構築サービスへようこそ。"; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "世界で最も人気のサイト構築サービスへようこそ。"; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "アカウントに関する重要なお知らせは常にメールでお送りしますが、役に立つ追加情報を受け取ることもできます。"; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "新規投稿のクラシックエディターはまもなく削除されますが、既存の投稿やページの編集に影響はありません。 サイト設定でブロックエディターを有効にして一足早くはじめましょう。"; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "公開した投稿はまだありません公開を開始すると、最新の投稿のサマリーがここに表示されます。"; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "マイルストーンに到達しました 🚀 "; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "Jetpack によるブロックを回避するため、IP アドレスなどを許可リストに登録できます。 IPv4と IPv6を使用できます。 範囲を指定するには、下限値と上限値をダッシュで区切って入力します。 例:12.12.12.1-12.12.12.100"; /* A suggestion of topics the user might like */ "You might like" = "おすすめ"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "初回のバックアップは間もなく完了します"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "メディアをエクスポートできません. If the problem persists you can contact us via the Me >「ヘルプとサポート」画面。"; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "モバイルでも通知を受信し、コメントやいいねをリアルタイムで確認できます。"; @@ -8110,7 +8110,7 @@ "connections" = "連携"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "文書の概要"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "リストから消したいものがありますか ?"; @@ -8160,7 +8160,7 @@ "phone number" = "電話番号"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "要約"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "次の項目が削除されます。"; diff --git a/WordPress/Resources/ko.lproj/Localizable.strings b/WordPress/Resources/ko.lproj/Localizable.strings index a28f1661b82d..1a8679c9b3b5 100644 --- a/WordPress/Resources/ko.lproj/Localizable.strings +++ b/WordPress/Resources/ko.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-03-04 10:54:08+0000 */ +/* Translation-Revision-Date: 2021-03-31 11:54:07+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ko_KR */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "파일에 악성 코드 패턴이 있음"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "URL 링크입니다."; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "카테고리 링크입니다."; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "페이지 링크입니다."; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "글 링크입니다."; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "태그 링크입니다."; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "이 계정의 사이트 목록"; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "사이트에서 매력적인 콘텐츠를 만들고 공개하는 새로운 방법입니다."; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "테마, 사이트 아이콘 등을 추가할 수 있는 방법을 보여주는 여러 단계로 이루어진 과정."; @@ -453,7 +453,7 @@ "Add any topic" = "모든 토픽 추가하기"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "추가 버튼 텍스트"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "새 계정을 나타내는 이미지 또는 아바타를 추가합니다."; @@ -579,10 +579,10 @@ "Allow this connection to be used by all admins and users of your site." = "이 연결을 사이트의 모든 관리자와 사용자가 사용할 수 있도록 허용합니다."; /* Allowlisted IP Addresses Title */ -"Allowlisted IP Addresses" = "Allowlisted IP Addresses"; +"Allowlisted IP Addresses" = "허용 목록에 포함된 IP 주소"; /* Jetpack Settings: Allowlisted IP addresses */ -"Allowlisted IP addresses" = "Allowlisted IP addresses"; +"Allowlisted IP addresses" = "허용 목록에 포함된 IP 주소"; /* Instructions for users with two-factor authentication enabled. */ "Almost there! Please enter the verification code from your authenticator app." = "마지막 부분입니다! 인증 앱의 확인 코드를 입력하세요."; @@ -939,7 +939,7 @@ /* Blocklist Title Settings: Comments Blocklist */ -"Blocklist" = "Blocklist"; +"Blocklist" = "차단 목록"; /* Opens the WordPress Mobile Blog */ "Blog" = "블로그"; @@ -1119,7 +1119,7 @@ "Category" = "카테고리"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "카테고리 링크"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "카테고리 제목 없음."; @@ -1281,7 +1281,7 @@ "Choose video" = "비디오 고르기"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "주제 선택"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "다른 사이트로 변경하면 미디어와 카테고리 같은 특정 사이트 콘텐츠의 수정 사항을 잃게 됩니다. 계속할까요?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "크기"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "비활성화"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "초대 링크 비활성화"; /* Adjective. Comment threading is disabled. */ "Disabled" = "비활성화"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "좋아하는 블로그를 발견하고 팔로우하기"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "게시글 더 검색"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "%@ 블록 편집"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "차단 목록 단어 편집"; /* No comment provided by engineer. */ "Edit Comment" = "댓글 편집"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "비밀번호를 입력하세요."; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "클릭 한 번으로 백업에서 사이트를 복원할 수 있도록 서버 자격 증명을 입력하세요."; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "다른 메뉴 영역을 선택하도록 펼치기"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "만료 날짜"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "이 사이트의 주제에 대해 설명하세요."; @@ -2541,7 +2541,7 @@ "Failed" = "실패함"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "미디어 내보내기 실패"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "오디오 파일 삽입에 실패했습니다. 옵션을 보려면 누르세요."; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "REST API에 요청을 일련화할 수 없습니다."; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "대화 팔로우 취소 실패"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "파일 업로드에 실패했습니다.\n옵션을 누르시기 바랍니다."; @@ -2679,10 +2679,10 @@ "Follow site" = "Follow site"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "토픽 따르기"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "좋아하는 사이트를 팔로우하고 새 블로그를 검색하세요."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "좋아하는 사이트를 팔로우하고 새 읽을 거리를 발견하세요."; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "이메일로 대화 팔로우 중"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "새 게시글 팔로우 중..."; /* Filters Follows Notifications */ "Follows" = "팔로우"; @@ -2781,7 +2781,7 @@ "General" = "일반"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "새 링크 생성"; /* Message to indicate progress of generating preview */ "Generating Preview" = "미리보기 생성 중..."; @@ -3194,7 +3194,7 @@ "Invite" = "초대"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "초대 링크"; /* Invite People Title */ "Invite People" = "사람 초대하기"; @@ -3744,10 +3744,10 @@ "More Posts" = "게시글 더 보기"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "%1$@에서 더 보기"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "워드프레스닷컴 상세 정보"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "가장 인기 있는 시간"; @@ -3866,7 +3866,7 @@ "New" = "신규"; /* Blocklist Keyword Insertion Title */ -"New Blocklist Word" = "New Blocklist Word"; +"New Blocklist Word" = "새 차단 목록 단어"; /* IP Address or Range Insertion Title */ "New IP or IP Range" = "새 IP 또는 IP 범위"; @@ -4053,7 +4053,7 @@ "No network available" = "사용 가능한 네트워크가 없음"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "팔로우할 새 게시글 없음"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "아직 알림이 없습니다"; @@ -4240,7 +4240,7 @@ "Oldest first" = "오래된 항목 먼저"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "초대 링크를 비활성화하면 아무도 이 링크를 사용해서 이 팀에 참여할 수 없습니다. 계속할까요?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "워드프레스닷컴 사이트를 만든 후 원하는 콘텐츠를 자신의 사이트로 리블로그할 수 있습니다."; @@ -4372,7 +4372,7 @@ "Page" = "페이지"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "페이지 링크"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "페이지를 원본으로 복원"; @@ -4668,7 +4668,7 @@ "Post Format" = "글 형식"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "글 링크"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "글이 임시글 목록으로 복원됨"; @@ -5425,7 +5425,7 @@ "Search Locations" = "검색 위치"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "설정 검색"; /* Label for list of search term */ "Search Term" = "검색어"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "워드프레스닷컴 계정에 로그인되어 있는 동안 이용하는 서비스에 대한 정보를 워드프레스의 분석 도구와 공유합니다."; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "초대 링크 공유"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "공유 링크"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "스포트라이트 색인 삭제됨"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "대화 팔로우에 성공했습니다."; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "%@을(를) 성공적으로 설치했습니다."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "대화 팔로우가 취소되었습니다."; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "추천 사항이 업데이트됨"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "헤딩요소 목록으로 글을 요약하세요. 여기에서 HTML 앵커를 헤딩요소 블록에 추가하여 링크를 설정하세요."; /* User role badge */ "Super Admin" = "최고 관리자"; @@ -6158,7 +6158,7 @@ "System default" = "시스템 기본값"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "목차"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "%@ 보여주기"; @@ -6174,7 +6174,7 @@ "Tag" = "태그"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "태그 링크"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "태그가 이미 존재합니다."; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "눌러서 업로드를 취소하세요."; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "눌러서 사이트의 제목 변경하기"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "글 태그를 접으려면 누르기"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "글을 올릴 블로그를 선택하려면 탭하세요"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "눌러서 다른 사이트로 전환하거나 새 사이트 추가하기"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "이 태그의 글을 보려면 누르기"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "눌러서 사이트 보기"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "분류"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "사이트 제목은 웹 브라우저의 제목 표시줄에 보이고 대부분의 테마의 헤더에 보입니다."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "현재 회원님의 iPad에서 스토리 편집기를 사용할 수 없습니다. iPhone에서 스토리를 시도해 보세요."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "URL에 올바른 호스트가 없습니다."; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "미디어 액세스 시도 중 문제가 발생했습니다. 나중에 다시 시도해 주세요."; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "스토리 편집기에서 문제가 발생했습니다. 문제가 지속될 경우 내 계정 > 도움 & 지원 화면을 통해 문의할 수 있습니다."; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "지금 사용해 보기"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "새 블록 편집기 시도"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "다른 이메일로 시도"; @@ -6853,7 +6853,7 @@ "Type a label" = "레이블 입력"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "사이트의 이름 입력"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "제안을 더 가져오려면 입력하세요."; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "연결할 수 없음"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "스토리 편집기를 만들 수 없습니다."; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "게시글을 로드할 수 없습니다"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "사이트를 차단할 수 없음"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "새 초대 링크를 만들 수 없습니다."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "모든 미디어 항목을 삭제할 수 없습니다."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "미디어 항목을 삭제할 수 없습니다."; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "초대 링크를 비활성화할 수 없습니다."; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "파일을 다운로드할 수 없음"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "대화를 팔로우할 수 없습니다."; /* Notice title when following a site fails. */ "Unable to follow site" = "사이트를 팔로우할 수 없음"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "이메일 주소를 확인할 수 없습니다. 나중에 다시 시도하세요."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "사이트에 대한 젯팩 설정을 방문할 수 없습니다."; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "사이트를 방문할 수 없음"; @@ -7085,7 +7085,7 @@ "Unsupported" = "지원되지 않음"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "지원되지 않는 기기"; /* Label for an untitled post in the revision browser */ "Untitled" = "제목없음"; @@ -7204,7 +7204,7 @@ "Use block editor" = "블록 편집기 사용"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "이 링크를 활용하면 일일이 한 명씩 초대하지 않아도 여러 팀원이 팀에 참여할 수 있게 됩니다. 이 URL을 방문하는 사람은 누구나 조직에 가입할 수 있습니다. 다른 사람을 통해서 이 링크를 전달받은 사람도 가입할 수 있기 때문에 신뢰할 수 있는 사람에게만 공유하세요."; /* No comment provided by engineer. */ "Use this site" = "이 사이트 사용"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "리더에 오신 것을 환영합니다."; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "세계적으로 가장 잘 알려진 웹사이트 제작기에 오신 것을 환영합니다."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "세계적으로 가장 잘 알려진 웹사이트 제작기에 오신 것을 환영합니다."; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "사용자 계정에 관한 중요 이메일을 항상 보내 드리며, 유용한 정보도 받으실 수 있습니다."; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "곧 새 글에 대한 구 버전 편집기가 제거되지만, 기존 글 또는 페이지 편집은 영향을 받지 않습니다. 지금 사이트 설정에서 블록 편집기를 활성화하여 유리하게 시작하세요."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "아직 글을 게시하지 않았습니다. 게시를 시작하면 최근 글의 요약이 여기에 표시됩니다."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "이정표 🚀에 도달 "; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "젯팩에서 차단하지 않도록 IP 주소 또는 여러 주소를 허용 목록에 포함할 수 있습니다. IPv4 및 IPv6를 사용할 수 있습니다. 범위를 지정하려면 낮은 값과 높은 값을 대시로 구분하여 입력하세요. 예: 12.12.12.1-12.12.12.100."; /* A suggestion of topics the user might like */ "You might like" = "좋아할 수도 있습니다"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "첫 번째 백업이 곧 준비됩니다"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "미디어를 내보낼 수 없음. If the problem persists you can contact us via the Me > 도움 및 지원 화면입니다."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "회원님이 어떤 기기를 사용하든 알림을 받을 수 있습니다. 댓글 및 좋아요가 표시되면 즉시 확인하세요."; @@ -8110,7 +8110,7 @@ "connections" = "연결"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "문서 개요"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "목록에서 끝난 일을 지우는 건 항상 기분 좋은 일이죠."; @@ -8160,7 +8160,7 @@ "phone number" = "전화번호"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "요약"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "다음 항목이 삭제됩니다."; diff --git a/WordPress/Resources/nl.lproj/Localizable.strings b/WordPress/Resources/nl.lproj/Localizable.strings index 6cfae86cf291..351830da7ea7 100644 --- a/WordPress/Resources/nl.lproj/Localizable.strings +++ b/WordPress/Resources/nl.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-03-25 21:31:01+0000 */ +/* Translation-Revision-Date: 2021-03-30 20:12:06+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: nl */ @@ -6089,7 +6089,7 @@ "Successfully installed %@." = "%@ succesvol geïnstalleerd."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "Gesprek wordt niet meer gevolgd"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "Suggesties bijgewerkt"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Vat je bericht samen met een lijst met koppen. Voeg HTML-ankers toe aan heading blokken om ze hier te linken."; /* User role badge */ "Super Admin" = "Superbeheerder"; @@ -6174,7 +6174,7 @@ "Tag" = "Tag"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "Tag link"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "Tag bestaat al"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "De site titel wordt getoont in de titelbalk van een web browser en wordt getoont in de header van de meeste thema's."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "De verhaal-editor is op dit moment niet beschikbaar voor je iPad. Probeer verhalen op je iPhone."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "De URL heeft geen geldige host."; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "Kan geen verbinding maken"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "Kan geen verhalen-editor maken"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "Kan berichten niet laden"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "Kan site niet blokkeren"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "Het is niet mogelijk om nieuwe uitnodigingslinks te maken."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "Niet mogelijk om alle media te verwijderen."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "Niet mogelijk om media te verwijderen."; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "Kan uitnodigingslinks niet uitschakelen."; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "Kan bestand niet downloaden"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "Kan gesprek niet volgen"; /* Notice title when following a site fails. */ "Unable to follow site" = "Kan de site niet volgen"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "Niet mogelijk om e-mailadres te verifiëren. Probeer het later opnieuw."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "Kan Jetpack-instellingen voor site niet bezoeken"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "Kan de site niet bezoeken"; @@ -7204,7 +7204,7 @@ "Use block editor" = "Gebruik blok-editor"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Gebruik deze link om je teamleden aan boord te krijgen zonder ze een voor een uit te nodigen. Iedereen die deze URL bezoekt, kan zich aanmelden bij je organisatie, zelfs als ze de link van iemand anders hebben ontvangen, dus zorg ervoor dat je deze deelt met vertrouwde mensen."; /* No comment provided by engineer. */ "Use this site" = "Gebruik deze site"; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "We sturen altijd belangrijke e-mails met betrekking tot je account, maar je kunt ook aanvullende nuttige berichten ontvangen."; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We zullen binnenkort de klassieke editor voor nieuwe berichten verwijderen, maar dit heeft geen invloed op het bewerken van je bestaande berichten of pagina's. Krijg een voorsprong door de blok-editor nu in de site-instellingen in te schakelen."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "Je eerste back-up is binnenkort klaar"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "Je media kunnen niet worden geëxporteerd. Als het probleem aanhoudt, kun je contact met ons opnemen via het scherm Ik> Help & Ondersteuning."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "Je meldingen reizen met je mee. Bekijk reacties en likes wanneer ze binnenkomen."; diff --git a/WordPress/Resources/sq.lproj/Localizable.strings b/WordPress/Resources/sq.lproj/Localizable.strings index 097799cc31ba..d1d3aea3cc19 100644 --- a/WordPress/Resources/sq.lproj/Localizable.strings +++ b/WordPress/Resources/sq.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-02-27 13:18:14+0000 */ +/* Translation-Revision-Date: 2021-03-29 08:15:45+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: sq_AL */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "Një kartelë përmban rregullsi kodi dashakeq"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "Një lidhje te një URL."; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "Një lidhje për te një kategori."; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "Lidhje për te një faqe."; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "Një lidhje për te një postim."; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "Një lidhje për te një etiketë."; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "Një listë sajtesh në këtë llogari."; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "Një rrugë e re për të krijuar dhe botuar lëndë tërheqëse në sajtin tuaj."; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "Një varg hapash që ju tregon se si të shtoni një temë, një ikonë sajti, etj."; @@ -453,7 +453,7 @@ "Add any topic" = "Shtoni çfarëdo teme"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "Shtoni tekst butoni"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Shton figurë, ose avatar, që të përfaqësojë këtë llogari të re."; @@ -579,10 +579,10 @@ "Allow this connection to be used by all admins and users of your site." = "Lejoje këtë lidhje që të përdoret nga krejt përgjegjësit dhe përdoruesit e sajtit tuaj."; /* Allowlisted IP Addresses Title */ -"Allowlisted IP Addresses" = "Allowlisted IP Addresses"; +"Allowlisted IP Addresses" = "Adresa IP të shënuara si të lejuara"; /* Jetpack Settings: Allowlisted IP addresses */ -"Allowlisted IP addresses" = "Allowlisted IP addresses"; +"Allowlisted IP addresses" = "Adresa IP të shënuara si të lejuara"; /* Instructions for users with two-factor authentication enabled. */ "Almost there! Please enter the verification code from your authenticator app." = "Thuajse arritëm! Ju lutemi, jepni kodin e verifikimit prej aplikacionit tuaj Authenticator."; @@ -939,7 +939,7 @@ /* Blocklist Title Settings: Comments Blocklist */ -"Blocklist" = "Blocklist"; +"Blocklist" = "Listë bllokimesh"; /* Opens the WordPress Mobile Blog */ "Blog" = "Blog"; @@ -1119,7 +1119,7 @@ "Category" = "Kategori"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "Lidhje Kategorie"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "Mungon titull kategorie."; @@ -1281,7 +1281,7 @@ "Choose video" = "Zgjidhni video"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "Zgjidhni temat tuaja"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "Zgjedhja e një sajti tjetër do të sjellë humbjen e përpunimeve te lëndë specifike e sajtit, të tilla si media dhe kategori. Jeni i sigurt?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "Përmasa"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "Çaktivizoje"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "Çaktivizoni lidhje ftese"; /* Adjective. Comment threading is disabled. */ "Disabled" = "E çaktivizuar"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "Zbuloni dhe ndiqni blogjet që keni për zemër"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "Zbuloni më tepër tema"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "Përpunoni bllok %@"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "Përpunoni Fjalë Liste Bllokimesh"; /* No comment provided by engineer. */ "Edit Comment" = "Përpunoni Komentin"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "Në vend të kësaj, jepni fjalëkalimin tuaj."; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "Që të aktivizohen rikthime me një klikim nga kopjeruatje, jepni kredencialet tuaja për te shërbyesi."; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "Zgjerohet për të përzgjedhur një zonë tjetër menuje"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "Skadon më"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Shpjegoni se për çfarë është ky sajt."; @@ -2541,7 +2541,7 @@ "Failed" = "Dështoi"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "Eksportimi i Medias Dështoi"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "S’u arrit të futej kartelë audio. Ju lutemi, prekeni për mundësi."; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "Dështoi serializimi i kërkesës ndaj API-t REST."; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "S’u arrit të ndalet ndjekja e bisedës"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "S’u arrit të ngarkohen kartela.\nJu lutemi, prekeni për mundësi."; @@ -2640,7 +2640,7 @@ "Find your site address" = "Gjeni adresën e sajtit tuaj"; /* Label displayed to the user while loading their selected interests */ -"Finding blogs and stories you’ll love..." = "Po gjenden blogje dhe artikuj që do t’i doni…"; +"Finding blogs and stories you’ll love..." = "Po gjenden blogje dhe shkrime që do t’i doni…"; /* Geo-tagging posts, status message when geolocation is found. */ "Finding your location..." = "Po gjendet vendndodhja juaj…"; @@ -2679,10 +2679,10 @@ "Follow site" = "Ndiqe sajtin"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "Ndiqni tema"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "Ndiqni sajtet tuaj të parapëlqyer dhe zbuloni blogje të rinj."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "Ndiqni sajtet tuaj të parapëlqyer dhe zbuloni gjëra të reja për të lexuar."; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "Ndjekje bisede përmes email-i"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "Ndiqni tema të reja…"; /* Filters Follows Notifications */ "Follows" = "Ndiqet"; @@ -2781,7 +2781,7 @@ "General" = "Të përgjithshme"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "Prodho lidhje të re"; /* Message to indicate progress of generating preview */ "Generating Preview" = "Po prodhohet Paraparja"; @@ -3194,7 +3194,7 @@ "Invite" = "Ftoje"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "Lidhje Ftese"; /* Invite People Title */ "Invite People" = "Ftoni Njerëz"; @@ -3744,10 +3744,10 @@ "More Posts" = "Më Tepër Postime"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "Më tepër nga %1$@"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "Më tepër në WordPress.com"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Koha Më Popullore"; @@ -3866,7 +3866,7 @@ "New" = "E re"; /* Blocklist Keyword Insertion Title */ -"New Blocklist Word" = "New Blocklist Word"; +"New Blocklist Word" = "Fjalë e Re Liste Bllokimesh"; /* IP Address or Range Insertion Title */ "New IP or IP Range" = "IP ose Interval IP-sh i ri"; @@ -4053,7 +4053,7 @@ "No network available" = "S’ka rrjet"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "S’ka tema të reja për ndjekje"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "Ende pa njoftime"; @@ -4240,7 +4240,7 @@ "Oldest first" = "Më të vjetrat së pari"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Pasi të jetë çaktivizuar kjo lidhje ftese, askush s’do të jetë në gjendje ta përdorë për t’u bërë pjesë e ekipit tuaj. Jeni i sigurt?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "Pasi të krijoni një sajt në WordPress.com, mund të riblogoni në sajtin tuaj lëndë që ju pëlqen."; @@ -4372,7 +4372,7 @@ "Page" = "Faqe"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "Lidhje Faqeje"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "Faqja u Rikthye te Skicat"; @@ -4668,7 +4668,7 @@ "Post Format" = "Format Postimesh"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "Lidhje Postimi"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "Postimi u Rikthye te Skicat"; @@ -5425,7 +5425,7 @@ "Search Locations" = "Kërkoni Për Vende"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "Rregullime Kërkimi"; /* Label for list of search term */ "Search Term" = "Term Kërkimi"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "Ndani me mjetin tuaj të analizave të dhëna rreth përdorimit tuaj të shërbimeve, teksa jeni i futur në llogarinë tuaj WordPress.com."; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "Jepuni lidhje ftese"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "Ndajeni lidhjen me të tjerët"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "Treguesi i projektorit u hoq me sukses"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "Biseda është ndjekur me sukses"; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "%@ u instalua me sukses."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "Bisedës iu hoq ndjekja me sukses"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "Sugjerimet u përditësuan"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Përmblidheni postimin tuaj me një listë kryesh. Shtoni spiranca HTML për te blloqe Kryesh, për t’i lidhur këtu."; /* User role badge */ "Super Admin" = "Superpërgjegjës"; @@ -6158,7 +6158,7 @@ "System default" = "Parazgjedhje sistemi"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "Tryeza e Lëndës"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "Tabelë që shfaqe %@"; @@ -6174,7 +6174,7 @@ "Tag" = "Etiketë"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "Lidhje Etikete"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "Ka tashmë një etiketë të tillë"; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "Prekeni që të anulohet ngarkimi."; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "Prekeni që të ndryshoni titullin e sajtit"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "Prekeni që të palosen etiketa postimesh"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "Prekeni që të përzgjidhni te cili blog të postohet"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "Prekeni që të kalohet te një sajt tjetër, ose për të shtuar një sajt të ri"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "Prekeni që të shihni postimet për këtë etiketë"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "Prekeni që të shihni sajtin tuaj"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "Klasifikim"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "Titulli i Sajtit shfaqet te shtylla e titujve të një shfletuesi dhe, për shumicën e temave, shfaqet te kryet."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "Përpunuesi i Shkrimeve aktualisht s’është i përdorshëm në iPad-in tuaj. Ju lutemi, provoni Shkrime në iPhone-in tuaj."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "URL-së i mungon një strehë e vlefshme."; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "Pati një problem kur po provohej të hyhej në median tuaj. Ju lutemi, riprovoni më vonë."; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "Pati një problem me përpunuesin e Shkrimeve. Nëse problemi vazhdon, mund të lidheni me ne përmes skenës Unë > Ndihmë & Asistencë."; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "Provojeni tani"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "Provoni Përpunuesin e ri me Blloqe"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "Provoni me një tjetër email"; @@ -6853,7 +6853,7 @@ "Type a label" = "Shtypni një etiketë"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "Shtypni një emër për sajtin tuaj"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "Shtypni që të merrni më tepër sugjerime"; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "S’arrihet të Lidhet"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "S’arrihet të Krijohet Përpunues Shkrimesh"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "S’arrihet të Ngarkohen Postime"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "S’arrihet të bllokohet sajti"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "S’arrihet të krijohen lidhje të reja ftese."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "S’arrihet të fshihen krejt objektet media."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "S’arrihet të fshihet objekt media."; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "S’arrihet të çaktivizohen lidhje ftesash."; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "S’arrihet të shkarkohet kartelë"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "S’arrihet të ndiqet biseda"; /* Notice title when following a site fails. */ "Unable to follow site" = "S’arrihet të ndiqet sajti"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "S’u arrit të verifikohej adresa email. Ju lutemi, riprovoni më vonë."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "S’arrihet të vizitohen rregullime Jetpack për sajtin"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "S’arrihet të vizitohet sajti"; @@ -7085,7 +7085,7 @@ "Unsupported" = "I pambuluar"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "Pajisje e Pammbuluar"; /* Label for an untitled post in the revision browser */ "Untitled" = "Pa titull"; @@ -7204,7 +7204,7 @@ "Use block editor" = "Përdorni përpunuesin me blloqe"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Përdoreni këtë lidhje për hapat e mirëseardhjes për anëtarët e ekipit tuaj, pa u dashur t’i ftoni tek e tek. Gjithkush që viziton këtë URL, do të jetë në gjendje të regjistrohet në entin tuaj, madje edhe nëse lidhjen e marrin nga dikush tjetër, ndaj sigurohuni se ua jepni personave të besuar."; /* No comment provided by engineer. */ "Use this site" = "Përdor këtë sajt"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "Mirë se vini te Lexuesi"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "Mirë se vini te krijuesi më popullor në botë i sajteve."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "Mirë se vini te krijuesi më popullor në botë i sajteve."; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "Do të dërgojmë përherë email-e të rëndësishëm lidhur me llogarinë tuaj, por mundeni gjithashtu të merrni ca ekstra të dobishme."; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "Së shpejti do ta heqim përpunuesin klasik për postime të reja, por kjo s’do të prekë përpunimin e çfarëdo postimi apo faqeje ekzistuese. Përfitoni një avantazh, duke e aktivizuar Përpunuesin Me Blloqe që tani, te rregullimet e sajtit."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "S’keni botuar ende ndonjë postim. Sapo të filloni të botoni, këtu do të shfaqet përmbledhja e postimit tuaj më të ri."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "Mbërritët në një piketë 🚀"; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "Një adresë ose seri adresash IP mund t’i vendosni në një listë lejimesh për të penguar përgjithmonë bllokimin e tyre nga Jetpack-u. Janë të pranueshme adresa të llojit IPv4 dhe IPv6. Që të jepni një interval vlerash, jepni vlerën e ulët dhe të lartë të ndarë nga një vijë. Për shembull: 12.12.12.1–12.12.12.100."; /* A suggestion of topics the user might like */ "You might like" = "Mund t’ju pëlqente edhe"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "Kopjeruajtja juaj e parë do të jetë gati së shpejti"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"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ë."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "Njoftimet tuaja udhëtojnë tok me ju — shihini komentet dhe pëlqimet sapo të bëhen."; @@ -8110,7 +8110,7 @@ "connections" = "lidhje"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "përvijim dokumenti"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "a s’ju kënaq t’i hiqni vizë gjërave në një listë?"; @@ -8160,7 +8160,7 @@ "phone number" = "numër telefoni"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "përmbledhje"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "këto objekte do të fshihen:"; diff --git a/WordPress/Resources/tr.lproj/Localizable.strings b/WordPress/Resources/tr.lproj/Localizable.strings index 0cf67d20e532..155a437f52d1 100644 --- a/WordPress/Resources/tr.lproj/Localizable.strings +++ b/WordPress/Resources/tr.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-02-28 17:08:26+0000 */ +/* Translation-Revision-Date: 2021-03-30 11:54:09+0000 */ /* Plural-Forms: nplurals=2; plural=n > 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: tr */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "Bir dosya kötü amaçlı bir kod modeli içeriyor"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "Bir URL bağlantısı."; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "Bir kategori bağlantısı."; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "Bir sayfa bağlantısı."; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "Bir gönderi bağlantısı."; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "Bir etiket bağlantısı."; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "Bu hesaptaki sitelerin listesi."; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "Sitenizde ilgi çekici içerik oluşturmanın ve yayınlamanın yeni bir yolu."; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "Tema, site simgesi ve daha fazlasını nasıl ekleyeceğinizi gösteren bir dizi adım."; @@ -453,7 +453,7 @@ "Add any topic" = "Herhangi bir konu ekle"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "Düğme metni ekle"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Bu yeni hesabı temsil edecek görsel veya avatar ekleyin."; @@ -579,10 +579,10 @@ "Allow this connection to be used by all admins and users of your site." = "Bu bağlantının sitenizin tüm yöneticileri ve kullanıcıları tarafından kullanılmasına izin verin."; /* Allowlisted IP Addresses Title */ -"Allowlisted IP Addresses" = "Allowlisted IP Addresses"; +"Allowlisted IP Addresses" = "İzinli IP Adresleri"; /* Jetpack Settings: Allowlisted IP addresses */ -"Allowlisted IP addresses" = "Allowlisted IP addresses"; +"Allowlisted IP addresses" = "İzinli IP adresleri"; /* Instructions for users with two-factor authentication enabled. */ "Almost there! Please enter the verification code from your authenticator app." = "Neredeyse bitiyor! Lütfen doğrulama uygulamanızdan edindiğiniz doğrulama kodunu girin."; @@ -939,7 +939,7 @@ /* Blocklist Title Settings: Comments Blocklist */ -"Blocklist" = "Blocklist"; +"Blocklist" = "Kara Liste"; /* Opens the WordPress Mobile Blog */ "Blog" = "Blog"; @@ -1119,7 +1119,7 @@ "Category" = "Kategori"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "Kategori Bağlantısı"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "Kategori başlığı eksik."; @@ -1281,7 +1281,7 @@ "Choose video" = "Video seç"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "Konularınızı seçin"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "Farklı bir site seçerseniz ortam ve kategoriler gibi sitete özel içerik düzenlemelerini kaybedersiniz. Emin misiniz?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "Ölçüler"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "Etkisizleştir"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "Davet bağlantısını etkisizleştir"; /* Adjective. Comment threading is disabled. */ "Disabled" = "Etkin değil"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "Sevdiğiniz blogları keşfedin ve takip edin"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "Daha fazla konu keşfet"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "%@ bloğunu düzenle"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "Kara Liste Sözcüğünü Düzenle"; /* No comment provided by engineer. */ "Edit Comment" = "Yorumu düzenle"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "Bunun yerine parolanızı girin."; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "Yedeklemelerinizden tek tıkla geri yüklemeyi etkinleştirmek için sunucu kimlik bilgilerinizi girin."; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "Farklı bir menü alanı seçmek için genişler"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "Sona erme tarihi:"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Bu sitenin ne hakkında olduğunu açıklayın."; @@ -2541,7 +2541,7 @@ "Failed" = "Başarısız"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "Medya Dışa Aktarılamadı"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "Ses dosyası eklenemedi. Seçenekler için lütfen dokunun."; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "REST API isteği serileştirmesi başarısız oldu."; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "Sohbet takip edilemedi"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "Dosyalar yüklenemedi.\nSeçenekler için lütfen dokunun."; @@ -2679,10 +2679,10 @@ "Follow site" = "Siteyi takip et"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "Takip edilen konular"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "Favori sitelerinizi takip edin ve yeni bloglar keşfedin."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "Favori sitelerinizi takip edin ve yeni yazılar keşfedin."; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "Sohbet e-postayla takip ediliyor"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "Yeni konular takip ediliyor..."; /* Filters Follows Notifications */ "Follows" = "Takip edilenler"; @@ -2781,7 +2781,7 @@ "General" = "Genel"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "Yeni bağlantı oluştur"; /* Message to indicate progress of generating preview */ "Generating Preview" = "Önizleme oluşturuluyor"; @@ -3194,7 +3194,7 @@ "Invite" = "Davet et"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "Davet bağlantısı"; /* Invite People Title */ "Invite People" = "İnsanları davet et"; @@ -3744,10 +3744,10 @@ "More Posts" = "Daha fazla yazı"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "%1$@ kaynağından daha fazla"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "WordPress.com üzerinden daha fazlası"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "En Popüler Zaman"; @@ -3866,7 +3866,7 @@ "New" = "Yeni"; /* Blocklist Keyword Insertion Title */ -"New Blocklist Word" = "New Blocklist Word"; +"New Blocklist Word" = "Yeni Kara Liste Sözcüğü"; /* IP Address or Range Insertion Title */ "New IP or IP Range" = "Yeni IP veya IP aralığı"; @@ -4053,7 +4053,7 @@ "No network available" = "Kullanılabilir ağ yok"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "Takip edilecek yeni konu yok"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "Henüz bildirim yok"; @@ -4240,7 +4240,7 @@ "Oldest first" = "İlk en eski"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Davet bağlantısı dışı bırakıldığında hiç kimse onu kullanarak ekibinize katılamaz. Emin misiniz?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "Bir WordPress.com sitesi oluşturduktan sonra, beğendiğiniz içeriği kendi sitenize yeniden bloglayabilirsiniz."; @@ -4372,7 +4372,7 @@ "Page" = "Sayfa"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "Sayfa Bağlantısı"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "Sayfa taslaklara kaydedildi"; @@ -4668,7 +4668,7 @@ "Post Format" = "Yazı biçimi"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "Gönderi Bağlantısı"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "Yazı taslaklara geri yüklendi"; @@ -5425,7 +5425,7 @@ "Search Locations" = "Arama konumları"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "Arama Ayarları"; /* Label for list of search term */ "Search Term" = "Arama terimi"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "WordPress.com hesabınızda oturum açmış durumdayken hizmetlerini kullanımınız hakkında bilgileri analiz aracımızla paylaşın."; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "Davet bağlantısını paylaş"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "Bağlantıyı paylaş"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "Gündem dizini başarıyla temizlendi"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "Sohbet başarıyla takip edildi."; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "%@ başarıyla kuruldu."; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "Sohbet başarıyla takipten çıkarıldı"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "Öneriler güncelleştirildi"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Gönderinizi bir başlık listesiyle özetleyin. HTML bağlantılarını buraya bağlamak için Başlık bloklarına ekleyin."; /* User role badge */ "Super Admin" = "Süper yönetici"; @@ -6158,7 +6158,7 @@ "System default" = "Sistem varsayılanı"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "İçerik tablosu"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "%@ gösteren tablo "; @@ -6174,7 +6174,7 @@ "Tag" = "Etiket"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "Etiket Bağlantısı"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "Etiket zaten var"; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "Yüklemeyi iptal etmek için dokunun."; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "Sitenin başlığını değiştirmek için dokunun"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "Yazı etiketlerini daraltmak için dokunun"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "Yazıyı hangi bloga göndereceğinizi seçiniz"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "Başka bir siteye geçmek için dokunun veya yeni bir site ekleyin"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "Bu etiketle ilgili yazıları görüntülemek için dokunun"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "Sitenizi görüntülemek için dokunun"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "Kategorilendirme"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "Site Başlığı, web tarayıcısının başlık çubuğunda görüntülenir ve çoğu temada üst bilgide gösterilir."; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "Öyküler düzenleyicisi şu anda iPad'inizde kullanılamıyor. Lütfen Öyküler'i iPhone'unuzda deneyin."; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "URL'de geçerli ana bilgisayar yok."; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "Ortam dosyasına erişmeye çalışılırken bir sorun oluştu. Lütfen daha sonra tekrar deneyin."; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "Öyküler düzenleyicisinde bir sorun oluştu. Sorun tekrar ederse lütfen Ben > Yardım ve Destek ekranından bizimle iletişim kurun."; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "Şimdi deneyin"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "Yeni Blok Düzenleyici'yi deneyin"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "Başka bir e-posta ile deneyin"; @@ -6853,7 +6853,7 @@ "Type a label" = "Bir etiket yazın"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "Siteniz için bir ad yazın"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "Daha fazla tavsiye için yazın"; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "Bağlanamıyor"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "Öyküler Düzenleyicisi Oluşturulamıyor"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "Yazılar yüklenemedi"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "Site engellenemiyor"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "Yeni davet bağlantıları oluşturulamıyor."; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "Tüm ortam dosyaları silinemiyor."; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "Ortam dosyası silinemiyor."; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "Davet bağlantıları devre dışı bırakılamıyor."; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "Dosya indirilemiyor"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "Sohbet takip edilemiyor"; /* Notice title when following a site fails. */ "Unable to follow site" = "Site takip edilemiyor"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "E-posta adresi doğrulanamıyor. Lütfen daha sonra tekrar deneyin."; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "Sitenin Jetpack ayarları ziyaret edilemiyor"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "Site ziyaret edilemiyor"; @@ -7085,7 +7085,7 @@ "Unsupported" = "Desteklenmeyen"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "Desteklenmeyen Cihaz"; /* Label for an untitled post in the revision browser */ "Untitled" = "Başlıksız"; @@ -7204,7 +7204,7 @@ "Use block editor" = "Blok düzenleyici kullan"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Ekip üyelerinizi tek tek davet etmenize gerek kalmadan, bu bağlantıyla hepsini getirebilirsiniz. Ekibinizin üyelerini tek tek davet etmek zorunda kalmadan dahil etmek için bu bağlantıyı kullanın. Bu bağlantıya tıklayan herkes, başkasından bile almış olsa, kurumunuza dahil olabilir. O nedenle, sadece güvendiğiniz kişilerle paylaşmaya dikkat edin."; /* No comment provided by engineer. */ "Use this site" = "Bu siteyi kullan"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "Okuyucuya hoşgeldiniz"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "Dünyanın en popüler web sitesi oluşturucusuna hoş geldiniz."; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "Dünyanın en popüler web sitesi oluşturucusuna hoş geldiniz."; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "Hesabınızla ilgili önemli e-postaları her zaman göndereceğiz, ayrıca bazı yardımcı içerikler de alabilirsiniz."; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "Yakında yeni gönderiler için klasik düzenleyiciyi kaldıracağız, ancak bu mevcut gönderilerinizin veya sayfalarınızın hiçbirinde düzenleme özelliğini etkilemeyecektir. Hemen site ayarlarından Blok Düzenleyiciyi etkinleştirerek bir adım önde başlayın."; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "Henüz hiçbir yazı yayımlamadınız. Yayımlamaya başladıktan sonra en son yazınızın özeti burada görüntülenir."; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "Bir dönüm noktasına ulaştınız🚀 "; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "Bir IP adresine veya bir adres dizisine izin verebilir, böylece Jetpack tarafından engellenmelerini önleyebilirsiniz. IPv4 ve IPv6 kabul edilebilir niteliktedir. Bir aralık belirtmek için aralarına tire ekleyerek düşük ve yüksek değerleri girin. Örnek: 12.12.12.1-12.12.12.100."; /* A suggestion of topics the user might like */ "You might like" = "Şunları beğenebilirsin"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "İlk yedeğiniz az sonra hazır olacak"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "Medyanız dışa aktarılamadı. If the problem persists you can contact us via the Me > Yardım ve Destek ekranı."; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "Bildirimleriniz sizinle birlikte geziyor; yorumları ve beğenileri gerçekleştikleri sırada görün."; @@ -8110,7 +8110,7 @@ "connections" = "bağlantılar"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "belge taslağı"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "listedeki bazı işleri tamamlamak iyi hissettirmiyor mu?"; @@ -8160,7 +8160,7 @@ "phone number" = "telefon numarası"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "özet"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "bu ögeler silinecekler:"; diff --git a/WordPress/Resources/zh-Hant.lproj/Localizable.strings b/WordPress/Resources/zh-Hant.lproj/Localizable.strings index 9c101bbac9e0..a81a5ed6261b 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-03-17 09:54:07+0000 */ +/* Translation-Revision-Date: 2021-03-31 09:54:08+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: zh_TW */ @@ -268,25 +268,25 @@ "A file contains a malicious code pattern" = "檔案包含惡意程式碼模式"; /* No comment provided by engineer. */ -"A link to a URL." = "A link to a URL."; +"A link to a URL." = "URL 連結。"; /* No comment provided by engineer. */ -"A link to a category." = "A link to a category."; +"A link to a category." = "類別連結。"; /* No comment provided by engineer. */ -"A link to a page." = "A link to a page."; +"A link to a page." = "網頁連結。"; /* No comment provided by engineer. */ -"A link to a post." = "A link to a post."; +"A link to a post." = "文章連結。"; /* No comment provided by engineer. */ -"A link to a tag." = "A link to a tag."; +"A link to a tag." = "標籤連結。"; /* Accessibility hint for My Sites list. */ "A list of sites on this account." = "此帳號的網站清單。"; /* Story Intro welcome title */ -"A new way to create and publish engaging content on your site." = "A new way to create and publish engaging content on your site."; +"A new way to create and publish engaging content on your site." = "在網站上建立及發布吸睛內容的新方法。"; /* A VoiceOver hint to explain what the user gets when they select the 'Customize Your Site' button. */ "A series of steps showing you how to add a theme, site icon and more." = "提供一系列步驟,說明如何新增佈景主題、網站圖示等其他項目。"; @@ -453,7 +453,7 @@ "Add any topic" = "新增任何主題"; /* No comment provided by engineer. */ -"Add button text" = "Add button text"; +"Add button text" = "新增按鈕文字"; /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "新增圖片或大頭貼來代表這個新帳號。"; @@ -579,10 +579,10 @@ "Allow this connection to be used by all admins and users of your site." = "允許網站的所有管理員和使用者使用此連結。"; /* Allowlisted IP Addresses Title */ -"Allowlisted IP Addresses" = "Allowlisted IP Addresses"; +"Allowlisted IP Addresses" = "在允許清單中的 IP 位址"; /* Jetpack Settings: Allowlisted IP addresses */ -"Allowlisted IP addresses" = "Allowlisted IP addresses"; +"Allowlisted IP addresses" = "在允許清單中的 IP 位址"; /* Instructions for users with two-factor authentication enabled. */ "Almost there! Please enter the verification code from your authenticator app." = "快完成了!請輸入驗證器應用程式上的驗證碼。"; @@ -1119,7 +1119,7 @@ "Category" = "分類"; /* No comment provided by engineer. */ -"Category Link" = "Category Link"; +"Category Link" = "類別連結"; /* Error popup title to indicate that there was no category title filled in. */ "Category title missing." = "分類標題遺失。"; @@ -1281,7 +1281,7 @@ "Choose video" = "選擇視訊"; /* Reader select interests subtitle label text */ -"Choose your topics" = "Choose your topics"; +"Choose your topics" = "選擇你的主題"; /* And alert message warning the user they will loose blog specific edits like categories, and media if they change the blog being posted to. */ "Choosing a different site will lose edits to site specific content like media and categories. Are you sure?" = "選擇不同網站會遺失對網站特定內容 (例如媒體和類別) 所做的編輯。確定要執行?"; @@ -1962,11 +1962,11 @@ "Dimensions" = "尺寸"; /* Title. Title of a button that will disable group invite links when tapped. */ -"Disable" = "Disable"; +"Disable" = "停用"; /* Title. A call to action to disable invite links. Title. Title of a prompt to disable group invite links. */ -"Disable invite link" = "Disable invite link"; +"Disable invite link" = "停用邀請連結"; /* Adjective. Comment threading is disabled. */ "Disabled" = "已停用"; @@ -2008,7 +2008,7 @@ "Discover and follow blogs you love" = "探索並關注你喜愛的網誌"; /* Button title. Tapping shows the Follow Topics screen. */ -"Discover more topics" = "Discover more topics"; +"Discover more topics" = "探索更多主題"; /* Label for selecting the Blog Discussion Settings section Title for the Discussion Settings Screen */ @@ -2209,7 +2209,7 @@ "Edit %@ block" = "編輯 %@ 區塊"; /* Blocklist Keyword Edition Title */ -"Edit Blocklist Word" = "Edit Blocklist Word"; +"Edit Blocklist Word" = "編輯封鎖清單字詞"; /* No comment provided by engineer. */ "Edit Comment" = "編輯迴響"; @@ -2370,7 +2370,7 @@ "Enter your password instead." = "請改為輸入你的密碼。"; /* Error message displayed when restoring a site fails due to credentials not being configured. */ -"Enter your server credentials to enable one click site restores from backups." = "Enter your server credentials to enable one click site restores from backups."; +"Enter your server credentials to enable one click site restores from backups." = "輸入你的伺服器憑證,啟用從備份一鍵還原網站的功能。"; /* Generic error alert title Generic error. @@ -2509,7 +2509,7 @@ "Expands to select a different menu area" = "展開以選取其他選單區域"; /* Title. Indicates an expiration date. */ -"Expires on" = "Expires on"; +"Expires on" = "到期日:"; /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "說明此網站的內容。"; @@ -2541,7 +2541,7 @@ "Failed" = "失敗"; /* Error title when picked media cannot be imported into stories. */ -"Failed Media Export" = "Failed Media Export"; +"Failed Media Export" = "無法匯出媒體"; /* No comment provided by engineer. */ "Failed to insert audio file. Please tap for options." = "無法插入音訊檔案。 請點選以顯示選項。"; @@ -2559,7 +2559,7 @@ "Failed to serialize request to the REST API." = "REST API 無法序列化要求。"; /* The app failed to unsubscribe from the comments for the post */ -"Failed to unfollow conversation" = "Failed to unfollow conversation"; +"Failed to unfollow conversation" = "無法取消追蹤討論"; /* No comment provided by engineer. */ "Failed to upload files.\nPlease tap for options." = "上傳檔案失敗。\n請點選以顯示選項。"; @@ -2679,10 +2679,10 @@ "Follow site" = "Follow site"; /* Screen title. Reader select interests title label text. */ -"Follow topics" = "Follow topics"; +"Follow topics" = "追蹤主題"; /* Caption displayed in promotional screens shown during the login flow. */ -"Follow your favorite sites and discover new blogs." = "Follow your favorite sites and discover new blogs."; +"Follow your favorite sites and discover new blogs." = "追蹤你喜歡的網站並探索新網誌。"; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Follow your favorite sites and discover new reads." = "關注你喜歡的網站並發掘新讀物。"; @@ -2723,7 +2723,7 @@ "Following conversation by email" = "透過電子郵件追蹤對話"; /* Label displayed to the user while loading their selected interests */ -"Following new topics..." = "Following new topics..."; +"Following new topics..." = "追蹤新主題..."; /* Filters Follows Notifications */ "Follows" = "關注"; @@ -2781,7 +2781,7 @@ "General" = "一般"; /* Title. A call to action to generate a new invite link. */ -"Generate new link" = "Generate new link"; +"Generate new link" = "產生新連結"; /* Message to indicate progress of generating preview */ "Generating Preview" = "正在產生預覽"; @@ -3194,7 +3194,7 @@ "Invite" = "邀請"; /* Title for the Invite Link section of the Invite Person screen. */ -"Invite Link" = "Invite Link"; +"Invite Link" = "邀請連結"; /* Invite People Title */ "Invite People" = "邀請他人"; @@ -3744,10 +3744,10 @@ "More Posts" = "更多文章"; /* Section title for local related posts. %1$@ is a placeholder for the blog display name. */ -"More from %1$@" = "More from %1$@"; +"More from %1$@" = "如需更多資訊,請瀏覽 %1$@"; /* Section title for global related posts. */ -"More on WordPress.com" = "More on WordPress.com"; +"More on WordPress.com" = "如要瞭解更多資訊,請前往 WordPress.com"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "最熱門的時間"; @@ -3866,7 +3866,7 @@ "New" = "新增"; /* Blocklist Keyword Insertion Title */ -"New Blocklist Word" = "New Blocklist Word"; +"New Blocklist Word" = "新增封鎖清單字詞"; /* IP Address or Range Insertion Title */ "New IP or IP Range" = "新IP或IP範圍"; @@ -4053,7 +4053,7 @@ "No network available" = "沒有可用網路"; /* Message shown when there are no new topics to follow. */ -"No new topics to follow" = "No new topics to follow"; +"No new topics to follow" = "沒有可追蹤的新主題"; /* Displayed in the Notifications Tab as a title, when there are no notifications */ "No notifications yet" = "尚無通知"; @@ -4240,7 +4240,7 @@ "Oldest first" = "最舊的在前"; /* Warning message about disabling group invite links. */ -"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?"; +"Once this invite link is disabled, nobody will be able to use it to join your team. Are you sure?" = "一旦停用這個邀請連結,就沒有人可以再用此連結加入你的團隊。 確定要這麼做嗎?"; /* A subtitle with more detailed info for the user when no WordPress.com sites could be found. */ "Once you create a WordPress.com site, you can reblog content that you like to your own site." = "建立 WordPress.com 網站後,可以將喜歡的內容轉發到自己的網站。"; @@ -4372,7 +4372,7 @@ "Page" = "網頁"; /* No comment provided by engineer. */ -"Page Link" = "Page Link"; +"Page Link" = "網頁連結"; /* Prompts the user that a restored page was moved to the drafts list. */ "Page Restored to Drafts" = "頁面已還原為草稿"; @@ -4668,7 +4668,7 @@ "Post Format" = "文章格式"; /* No comment provided by engineer. */ -"Post Link" = "Post Link"; +"Post Link" = "文章連結"; /* Prompts the user that a restored post was moved to the drafts list. */ "Post Restored to Drafts" = "文章已還原為草稿"; @@ -5425,7 +5425,7 @@ "Search Locations" = "搜尋位置"; /* No comment provided by engineer. */ -"Search Settings" = "Search Settings"; +"Search Settings" = "搜尋設定"; /* Label for list of search term */ "Search Term" = "搜尋字詞"; @@ -5675,7 +5675,7 @@ "Share information with our analytics tool about your use of services while logged in to your WordPress.com account." = "在登入你的 WordPress.com 帳號時,請將你的服務使用情況相關資訊與我們的分析工具分享。"; /* Title. A call to action to share an invite link. */ -"Share invite link" = "Share invite link"; +"Share invite link" = "分享邀請連結"; /* Title for the button that will share the link for the downlodable backup file */ "Share link" = "分享連結"; @@ -6083,13 +6083,13 @@ "Successfully cleared spotlight index" = "已成功清除焦點索引"; /* The app successfully subscribed to the comments for the post */ -"Successfully followed conversation" = "Successfully followed conversation"; +"Successfully followed conversation" = "已成功追蹤討論"; /* Notice displayed after installing a plug-in. */ "Successfully installed %@." = "已成功安裝 %@。"; /* The app successfully unsubscribed from the comments for the post */ -"Successfully unfollowed conversation" = "Successfully unfollowed conversation"; +"Successfully unfollowed conversation" = "已成功取消追蹤討論"; /* Setting: WordPress.com Suggestions Suggested domains */ @@ -6099,7 +6099,7 @@ "Suggestions updated" = "已更新建議"; /* No comment provided by engineer. */ -"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here."; +"Summarize your post with a list of headings. Add HTML anchors to Heading blocks to link them here." = "列出標題以呈現文章摘要。 將 HTML 錨點新增至標題區塊,藉此連結相應文章內容。"; /* User role badge */ "Super Admin" = "超級管理員"; @@ -6158,7 +6158,7 @@ "System default" = "系統預設"; /* No comment provided by engineer. */ -"Table of Contents" = "Table of Contents"; +"Table of Contents" = "目錄"; /* Accessibility of stats table. Placeholder will be populated with name of data shown in table. */ "Table showing %@" = "顯示 %@ 的表格"; @@ -6174,7 +6174,7 @@ "Tag" = "標籤"; /* No comment provided by engineer. */ -"Tag Link" = "Tag Link"; +"Tag Link" = "標籤連結"; /* Title of the alert indicating that a tag with that name already exists. */ "Tag already exists" = "標籤已經存在"; @@ -6225,7 +6225,7 @@ "Tap to cancel uploading." = "點選以取消上傳"; /* Accessibility hint for button used to change site title */ -"Tap to change the site's title" = "Tap to change the site's title"; +"Tap to change the site's title" = "輕觸即可變更網站標題"; /* Accessibility hint to inform the user what action the hide button performs */ "Tap to collapse the post tags" = "點選以收合文章標籤"; @@ -6255,13 +6255,13 @@ "Tap to select which blog to post to" = "點選以選取要發佈文章的目標網誌"; /* Accessibility hint for button used to switch site */ -"Tap to switch to another site, or add a new site" = "Tap to switch to another site, or add a new site"; +"Tap to switch to another site, or add a new site" = "輕觸即可切換到其他網站或新增網站"; /* Accessibility hint to inform the user what action the post tag chip performs */ "Tap to view posts for this tag" = "點選以檢視有此標籤的文章"; /* Accessibility hint for button used to view the user's site */ -"Tap to view your site" = "Tap to view your site"; +"Tap to view your site" = "輕觸即可檢視你的網站"; /* Label for the Taxonomy area (categories, keywords, ...) in post settings. */ "Taxonomy" = "分類法"; @@ -6334,7 +6334,7 @@ "The Site Title is displayed in the title bar of a web browser and is displayed in the header for most themes." = "網站標題會顯示在網頁瀏覽器的標題列中,且會顯示在大部分佈景主題的頁首中。"; /* Message for stories unsupported device error. */ -"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "The Stories editor is not currently available for your iPad. Please try Stories on your iPhone."; +"The Stories editor is not currently available for your iPad. Please try Stories on your iPhone." = "你的 iPad 目前無法使用 Stories 編輯器。 請改為在 iPhone 上使用 Stories。"; /* Error message describing a problem with a URL. */ "The URL is missing a valid host." = "網址缺少有效的主機。"; @@ -6511,7 +6511,7 @@ "There was a problem when trying to access your media. Please try again later." = "嘗試存取你的媒體時發生問題。請稍後再試一次。"; /* Message for stories unknown error. */ -"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen."; +"There was a problem with the Stories editor. If the problem persists you can contact us via the Me > Help & Support screen." = "Stories 編輯器發生問題。 如果問題持續發生,請透過畫面上的「我 > 說明&客戶服務」與我們聯絡。"; /* Text displayed when there is a failure changing the password. Text displayed when there is a failure loading the history. */ @@ -6820,7 +6820,7 @@ "Try it now" = "立即試試"; /* The title of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"Try the new Block Editor" = "Try the new Block Editor"; +"Try the new Block Editor" = "試用全新的區塊編輯器"; /* When social login fails, this button offers to let the user try again with a differen email address */ "Try with another email" = "請嘗試使用其他電子郵件登入"; @@ -6853,7 +6853,7 @@ "Type a label" = "輸入標籤"; /* Site creation. Seelect a domain, search field placeholder */ -"Type a name for your site" = "Type a name for your site"; +"Type a name for your site" = "輸入網站的名稱"; /* Register domain - Search field placeholder for the Suggested Domain screen */ "Type to get more suggestions" = "請輸入以獲得更多建議"; @@ -6871,7 +6871,7 @@ "Unable to Connect" = "無法連結"; /* Title for stories unknown error. */ -"Unable to Create Stories Editor" = "Unable to Create Stories Editor"; +"Unable to Create Stories Editor" = "無法建立 Stories 編輯器"; /* Title of a prompt saying the app needs an internet connection before it can load posts */ "Unable to Load Posts" = "無法載入文章"; @@ -6883,7 +6883,7 @@ "Unable to block site" = "無法封鎖網站"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to create new invite links." = "Unable to create new invite links."; +"Unable to create new invite links." = "無法新建邀請連結。"; /* Text displayed in HUD if there was an error attempting to delete a group of media items. */ "Unable to delete all media items." = "無法刪除所有媒體項目。"; @@ -6892,13 +6892,13 @@ "Unable to delete media item." = "無法刪除媒體項目。"; /* An error message shown when there is an issue creating new invite links. */ -"Unable to disable invite links." = "Unable to disable invite links."; +"Unable to disable invite links." = "無法停用邀請連結。"; /* Message displayed when opening the link to the downloadable backup fails. */ "Unable to download file" = "無法下載檔案"; /* The app failed to subscribe to the comments for the post */ -"Unable to follow conversation" = "Unable to follow conversation"; +"Unable to follow conversation" = "無法追蹤討論"; /* Notice title when following a site fails. */ "Unable to follow site" = "無法追蹤網站"; @@ -6992,7 +6992,7 @@ "Unable to verify the email address. Please try again later." = "無法驗證電子郵件地址。請稍後再試一次。"; /* Message displayed when visiting the Jetpack settings page fails. */ -"Unable to visit Jetpack settings for site" = "Unable to visit Jetpack settings for site"; +"Unable to visit Jetpack settings for site" = "無法前往 Jetpack 的網站設定"; /* Message displayed when visiting a site fails. */ "Unable to visit site" = "無法造訪網站"; @@ -7085,7 +7085,7 @@ "Unsupported" = "不支援的使用者"; /* Title for stories unsupported device error. */ -"Unsupported Device" = "Unsupported Device"; +"Unsupported Device" = "不支援的裝置"; /* Label for an untitled post in the revision browser */ "Untitled" = "無標題"; @@ -7204,7 +7204,7 @@ "Use block editor" = "Use block editor"; /* Footer text for Invite Links section of the Invite People screen. */ -"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo"; +"Use this link to onboard your team members without having to invite them one by one. Anybody visiting this URL will be able to sign up to your organization, even if they received the link from somebody else, so make sure that you share it with trusted peo" = "你可以用這個連結一口氣加入所有團隊成員,無須逐一邀請。 凡是造訪這個 URL 的人,不管是以何種方式取得連結,都可以申請加入貴機構,因此在分享網址前,請確認對方值得信任。"; /* No comment provided by engineer. */ "Use this site" = "使用此網站"; @@ -7644,7 +7644,7 @@ "Welcome to the Reader" = "歡迎使用讀取器"; /* Caption displayed in promotional screens shown during the login flow. */ -"Welcome to the world's most popular website builder." = "Welcome to the world's most popular website builder."; +"Welcome to the world's most popular website builder." = "歡迎使用全球最受歡迎的網站建置工具。"; /* Shown in the prologue carousel (promotional screens) during first launch. */ "Welcome to the world’s most popular website builder." = "歡迎使用全球最受歡迎的網站建置工具。"; @@ -7656,7 +7656,7 @@ "We’ll always send important emails regarding your account, but you can get some helpful extras, too." = "我們會隨時傳送與帳號資訊相關的重要電子郵件,除此之外,你也能獲得實用的額外內容。"; /* The message of a notice telling users that the classic editor is deprecated and will be removed in a future version of the app. */ -"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings."; +"We’ll be removing the classic editor for new posts soon, but this won’t affect editing any of your existing posts or pages. Get a head start by enabling the Block Editor now in site settings." = "我們即將為新文章移除傳統編輯器,但這不會影響你編輯任何現有文章或頁面。 在網站設定中啟用區塊編輯器,搶先體驗。"; /* Hint displayed when we fail to fetch the status of the backup in progress. Hint displayed when we fail to fetch the status of the restore in progress. */ @@ -7950,10 +7950,10 @@ "You haven't published any posts yet. Once you start publishing, your latest post's summary will appear here." = "你尚未發表任何文章。開始發表文章後,這裡便會顯示最新文章的摘要。"; /* Title for a view milestone push notification */ -"You hit a milestone 🚀" = ""; +"You hit a milestone 🚀" = "你已達到里程碑 🚀 "; /* Text rendered at the bottom of the Allowlisted IP Addresses editor, should match Calypso. */ -"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100."; +"You may allowlist an IP address or series of addresses preventing them from ever being blocked by Jetpack. IPv4 and IPv6 are acceptable. To specify a range, enter the low value and high value separated by a dash. Example: 12.12.12.1-12.12.12.100." = "你可在允許清單中新增 IP 位址或一系列的位址,避免這些位址遭到 Jetpack 封鎖。 可接受 IPv4 和 IPv6。 若要指定範圍,請輸入最低值及最高值,並以破折號分隔。 例如:12.12.12.1-12.12.12.100。"; /* A suggestion of topics the user might like */ "You might like" = "你可能會喜歡"; @@ -8020,7 +8020,7 @@ "Your first backup will be ready soon" = "第一次備份即將準備就緒"; /* 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." = "Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen."; +"Your media could not be exported. If the problem persists you can contact us via the Me > Help & Support screen." = "無法匯出你的媒體. If the problem persists you can contact us via the Me > 說明與支援畫面。"; /* shown in promotional screens during first launch */ "Your notifications travel with you — see comments and likes as they happen." = "你走到哪,通知就到哪,第一時間查看留言和讚。"; @@ -8110,7 +8110,7 @@ "connections" = "連線"; /* No comment provided by engineer. */ -"document outline" = "document outline"; +"document outline" = "文件大綱"; /* subhead shown to users when they complete all Quick Start items */ "doesn’t it feel good to cross things off a list?" = "清單中又少了一件事情,感覺不錯吧!"; @@ -8160,7 +8160,7 @@ "phone number" = "電話號碼"; /* No comment provided by engineer. */ -"summary" = "summary"; +"summary" = "摘要"; /* Header of delete screen section listing things that will be deleted. */ "these items will be deleted:" = "這些項目將會刪除:"; diff --git a/WordPress/WordPressShareExtension/ar.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ar.lproj/Localizable.strings index b2074ed1df55e4b904c4de8d0c6117137fab99b7..4ecf410d450a897387bad5a833024956cee9a609 100644 GIT binary patch delta 1334 zcmZWoZD<@t7~YTDx!t|Hb(>n#CXF}wPR=C9r7<6cpy}PUG0o?FgD1v`17)20l#b5pqR1iv0h~gjdSAPT%EmW|7EIPM$mWl&A^Ul1_ zyz@NI%-;3i^yp(FhMZIvY}Hk`rs>F9 z7$+D)hcL;=P533cHuzXJF^MkP%Q0jZ3kI}JXLBlo)|8@dr>a`;W%fxf5m&YmUSXOW zW-E-A;_FJGEE5$9W+4^PtS!y5@Qmx_ooIPwKB{UqoF*P*WVu?YLfbS>r(ZBERInXY zvvH)Oti2f1vgt46yG%QiT+ z^}vLZ-}_q(#*?w}jQm8!jYmf5RGd<%ZAzmIDn~&oPnncO*{}`wxLWZl`*h86PAtK8(k_pY$(R}#@z)58b;p?6UctUK) zhkU~|aqxr=T0uW(2P2@9f?xxqU43Sv}7{K?$XK`AH z;;)5f)|6ZD3U>@|38#E(4m#lUWB4<^y-suD@+kplcRv`*g0r9xgz%=PQ_6yFk{UGS zPLhw}kHua*ES&Tp!mWBT{*G%T^8n}~mCk_(uJwJ2?@0Cd1EB$K5M0oy+eI`~*_FZF zWO)n(@oirRzDdBg*eIw3&;>@p5DtQrT%lUsV#+mmQE0(e`F8xHH_SCx*_^>p^5gs5 zuv9KOK(vp6Gp2l!fIIMIz6QSr-opXDo36*tOZ|9QN@F+QjMMJEBl;s2&k$9;BD)SLti?NAx%J0sVmfi}5f= znR+J3^f4)Bnb8@WxyL+Y-E1A(#&)x(*%9_UJI5}uyX-6M+w3Ro_v{}o#?|5qxOO70 zcU`w!2d;F^)o4{oIZ delta 1240 zcmZWoT}&KR6rMXfbLVGwhe0eq!j>ru5XeV93O z&pF@uzVBon)jz7gI@d5Y9gaj}Gx6EPT=LxfLTXVxpVs>IrOdLivYK5>$pKJNpd%%h zbtyT^c9iv8)>1WHi$>H9Jvyns;><^u)x2S5l;M2d%BSRd(oq4`j1T5LjSymH>yj^; zww`yC3Bz2Chjmp`EHfHaGj>X@a*G>WbB%}o%UL{?{KXR^eh$REnl;p6d; zzND^aos|64L7S`JRY9uH4XI{Y&z4$agSlLG6BbZQLrOl>rD%C|$$8RA;&H5GD&$b* z(r5Wo5`R9o=+hN<)*eoTfT@ zk!ixUTbWeX^o3GVu}h0e$t}e7dYGgIWp+^06o;%L5zTKZYDP88#IR;K$`lb}$+hsk z|0K+Ln}ccGfd_H#5^lyJ+*W*!TXGrh#637jDI_-z1HNhaU5vxN?<4;TZoWcTl8+LL`ei&! zx(5l0D~9lZ%iMEhVFwJ#$NrbU&$mL7{R1_^5B@`7dMgN127clW!wv5cToiWUlGp-o zNi}sV1o2rs{9lH+$0XE4xDSxO5+3@K@FlK+U9lFr#M;*>p4z0|qi#~Ss5{hW)Q?C& zDq2J9=vB0huAvXnb#xQmM&F>{Xn_vW{q$KnOfS+~^bUQ4zDs{We@#E6AJcz&{GMk# zif7ET=(*_GW(1~_nP&EwZ9RvW_NaN)HtLeZbIlJxG5j1V`$QZRDn27fRGRpf5Z-sZ8qMCy~<|S z?2bcyqLo^1NL43NFFo{D2_dyYJ@nQ?4+u_({sC>NIF_nH2q8h~>>4W3OM9sHvU=y$ zGr!+FkD`yFpPo9ZOddZmm7Gq^%$_`TdhX2p!u;9Ab4$zp=?u>1R`P|_^ToB&;d14I zzFsxR#%Qh1EbY>v-Am1N%k=7|UBeB>qw#pWbe0&Vj?Xoy>DXQ&rBhOK+!nj6c58*C zVPLA)JobktFptC%KR&NjgdroG9YtG(=3)E7Fx;OGWN#^dZ~Z77yqBp=Xnn$V_e zW9kGK=!vUoXMpZDv^#OZE&+;@p8nlgp8mI+kz?BLQTLzLvRF7pm>PI z;ahAS?CU7EaoB5jVBgDwN-o)GSS@CwUZ#nKJ(Wn8Ul|*&zCr&E&WiFNON9^iRU%RU z0SIn6O&5EVYru8l5^jk##W!QcT*Kgcf`<7t(G6ZZmo=$HR(&6MQQsoI=7E3J%q;c5 zOQ$TU9)77ZYQY|ufKzZ3z6VG6-y|Fr;{5Z);yN6F@AIP(c$6Q_!Nfl#vmJGS{fTf^k4XL#VUpb9PFfe6G-u~!@x$HlUEMf^;>Cf*e9ijT#oQdsJe`lMlLM9NEL$&#q_ zyYvho& sMeEj%X(zRUc2V2WzSVxv?rYCO`OsGAYUsPrldu{d3@?Y*S#B5p3x|DIEdT%j delta 1279 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 diff --git a/WordPress/WordPressShareExtension/cy.lproj/Localizable.strings b/WordPress/WordPressShareExtension/cy.lproj/Localizable.strings index ec5f300be60b79e69bde2315180d9be2fad5f966..7728724a83fdba34bc431e905470a7ef2b00edb3 100644 GIT binary patch literal 2837 zcmds2%WfP+6z#`MPme=LI}egLF{wQ4JUkgYkl+v=!5KRt#BrQ?camK7dUYus|$fgZKazEMUVT1c?P3B%~}@5EemVlStg^c5D-DWFZz7mZhHV zx^?TGd(J(z5cnP!Lqk7V!>XodvPRC#cWruV^V3_b?ycLl?|5eCuH8L*_Vzxz5A8p2 z@K9g>;Uh%^2C+N ztG(q4s@A3s)u(5!&0Zgvo44P@3k`>yYPM`Eob(Ci1o=3k4HpTQpgIek$&hf4a1a!b z&sxZ%NU-IFVuQ62rVeW38wBwvBq(MPa`8=qus|}SK#anYCrCjih5ccSa0`31Xj@w+ zqXj_hdbEWC#znDMoV!dM52GuA@EGOOB`ipbg)ziVFobVn&&LaXnvhSAI1UoH#ck_g zMV{H`J1B6OU{EsrBPYa7kz|G{&e&F8jV8MRLlpQ7JLtrUm;$^tJ)g{$Nt;2oagW}x ztsN^v7Pk?{wt8ww1|oCF+6&3)azDQ|4ygeXz_G0ZtDN~ne074{67yvuqA=;NT&|Cj zCXRejUu=VaUSzsK?tLhu+WXdwY%7Av*#xNU7o z8C@dVS1JltZYrKam6n2(Kw%131nP(0C%S`psk+rg*SiKiso3VzIuTE~v8{b;>LuM! z8wmm*=3(cGw5gubb=#`dUB&`lK%BJ+Py~#3phc(?GWpX5i9SBAh=BWqq@}Sez%a)P z1OXSFWQbb62f70#Z%eQ)D=eL<-c{;djv{<4D9~T*MT$I^cDb;z&|m!cJ!$o>oh+EICMGX_XR= zHjJIkU0{CPiol?nl)-)RH%o(0mq~{*&Ky*VdB^v`__|9#Q77i`rO9A;SqpsHapHFL z7ei|(6Uy(3zaC55;CA-EG_u`gxbix1I}v$BNh|YE+{Pg9DR44Rs&p+c1G+}N4vYs5 zBQz=}wN@oyWiw;6lfEma5-ayrUF}wT)Is&MI#A^0M=?J7o6F zvh!xAqk^TLJc!cQqGAyd{6l*wN)O^m1nI$p)gDCYQ3_H-P(i)uo84T5EqEAsFf%{C zzwhT=8NV|A#=?tUPNg*@(&LYACo>-iS$I<$#0-LBW=xAjN) zVe#xXO4GH|)F)kr79F}>&Jk=Qj}{8J>09PLF?Z}hJhGg2{I=u!#e&0JQaFJd+xcQ{ zv6LfiuSfW(I>-N!C;3%*f-a6pGY`Xs?2}9;Yl95^{CpHX zte4Yd3kNRa-za;>)>4=@h&%YSIN#~G5wF8JzO7E_GsQtqyaUG{vdqzwgf&`mNxs8~ zFGlm467oB6mfuJmofZ2a;Cyn@c35 zp6}Tx75Sm-vXbz0aIhn~KNiiWa8N7|!Px*=@H=peg^1E1rktG2wJ;6Ek|f^LXI|Gq zQ5%aw-Vw+G_~`!y9xl65NkuJ>*tRp2)(s=p@?zS4BxHLop_P>Aw<(fX=ANvFa1T2! z-gL{V4q^{h8R6m`b3;sl-O&LgKP)$Vquc{#yP)z9;`8 z|E{#z+Pm5{?NjZRc31mZ-=iPW&*+wZNB_&1Hr_NoFg`QBFupVH8uv%`@jph; EziQZk-~a#s diff --git a/WordPress/WordPressShareExtension/da.lproj/Localizable.strings b/WordPress/WordPressShareExtension/da.lproj/Localizable.strings index a138be1df20a4bc231b047a26fa5799fe6e0992e..c85a2764cc4308cf90ad609b6e614226dab7dbc8 100644 GIT binary patch delta 1186 zcmb`^Pi)&%90%}cKfmYa6wz!QrOTAbDp^{FmI~Afw2ePm+HIv-*Cuh3G)=PC_|-9W z?O?wKdSXcYIUr4lC&UFLZj*Lk6E`I8NMo8%ci4#o2Zn^kK;nQ@F@fz&h`}yMoNW0$ zef|6XJ{LzXj=n!TtsKWEo`2!Rm+~hIGs)Rgr_ap2JYPJ!aBeZZRMN{8BePts)mIu% ztu|Zj^Yodu&QX(z74q8Qy^C9GjvaJu*V21lz;n4=^DHxMs-Np|+jE0jfpTVf{odJ*yBp$Bk|HUi=Xf-X|Bj3#R*KvYTE)%%l(3veH*lxd%dy!u3Xd63^Mcc~u@$$a1Qt21`6 zX$OH=Qr=>-(U)xsY|u_7?0Uh*! z2LizLtjH;c#2P#}+#1B`!Jvb!wfF`Co&J1{#+p zMGK|Ht~MmTzz0yJ5^cYYQ<;X*GeeuWRkg&Z8CEqaHg{M(!q6A!W^6q95aV`oZ=}p@ z*9^GrIAK%fhr*AG4{_ zO8GR~j6hRH9Q>fCkzeoIv1T#WbU_I)V1_HT!lxfDHCnC-obW%^Lx4BHTznpc=RCaa z#P>JEr`qVg2P~@<+gYQQ_!><-`F}WO#2q~LUjWmB;;}dWP8X3erxua9wC@4}w!vKq zN_(V~G$lPJwWN2X52VY|SJIC3oAkRpB#+1kAm5g#&nNdDgK38^>dtEe!(&$-KK=Wt`HPAQcd$fy(@lo8w zU3>w5f-m9g_!hp6@2Egk)Cu*7dR)z`U#i#CAJkp4ha4mmWSX2H=ZR0=BcG8QahK%yp!$g=$_?b7bfbi3WQ)7PEX?X$Bp z>&)BL>H&lhP7w8R!EhkPL?cnrL=(dehzBK+5DtiEOTvMW=)rKoncW_2)R-7=lg#fo zzu)isnKRvIy5Ajm;idgAA9&?p$77j8*?x0iaA1Q2t<6c}3B90q%FCZ>;tpaIMD@WhtvxOxRGQWxk!Y~LO zb9>y;B~r@cVpe`yY%!*uDv$UP4LKfV{&F!-iHif@vPd;@%$}rpNAl%jKZ|NCifoH< zk6MRFWw~JIM9S$`x1cFawQGG)FSapolyH2xpgQD<%2t+M9dK$nK&U}+cwOt;p+aeut=rd)tYlQ54g zc(iSlaBo=0{r^Ct7PRQpyZ8KAb}EteNz?ylSn<7ZO0?vVp;1c*6Tm`>C0}@z+ z4fqy33(vz3;m7bI{0iQNzebmh#fPbV9lyeIi|!zLRcBKT8j!-{lSRRvF8~ z^1OUZKC2i?pE99bSMDfxmHWy=q@XTz01crDR7P*3)95{P9({_gqp=6-uQVKi zdRi6gx9TnRo~CGN?HMhjx!OD0DeVL8Bkc?An)Z{nsz0Ic)(7=z{YU*bqsMsPxL|x{ Rd}CZOelYHIAaTC~{{eZ}di4MR diff --git a/WordPress/WordPressShareExtension/de.lproj/Localizable.strings b/WordPress/WordPressShareExtension/de.lproj/Localizable.strings index fc438b0b1e1059628431d8b7adf087ae37877ce0..5bf66e046190d06a9ec60fcacc198d5bf0c10185 100644 GIT binary patch delta 1395 zcmZXUOKclO7{_OKZD%(d*PDbqt2T&`-sRzmdi3=he5CYT#h2G!*5|;*;U8krL@?|~WW4{0I z|LyMf@Ah9^8hPRLnX@yqbMp&xi%YS1BDtJOX9iZXt82OZIaDaBxKyra=ht=mhOl+I zZLwC+HM^o2Wmq+B5)Oyg=CGUpJY-h^lqX*w$C7}^@ab~>u6 zkf5?nZ*U_tBn&NNV|c^d#Bf$K*7HioI8-fEB5rS3tLi3Fv6@$UlZTIR+zpMvL0yF< zO~>}iEX!fzuu1Yth`z{mMIMSK=J7?6i(yi;3`k73I5mY!sHT(Dp%(g*@Q61NN1K?Q z2 zTNox#b?=|%NIV&v%`1ThjsHODAPx}N1R5|v89-14Ca?j4Lp1Ceqy^#8wp`;LXg9>= zm7@-^y`Mywj8>~UbFJ%tsK;Hm}f=R_NlVuvoghq6naW(+XqYZp>yX6=sm`ac?Hb*+I zgRt{sVx2w1#&LJi==;r6ETxM^eJo9Br>dA||DU0sOT+Y3i$dR&qis32CBt39mVpgZ z>0{x3dLVbvj^?pe)-t78DlB82ZJEI){J?**X*q@2rdqTlJu#7v6J)5!QnRkXmo%ot z$SXZ@C&hqU*kW}L>LJsZiB~bRnU&v?(tVlf2UoL~;dxxqu>}iQ+kgqI>2ypC-aL6^ zkZWy=T0~pNI*TET#R;8hem1-TW?diGnUC0gDuMgVRSXObL_v)iy9Mro3ecS+nhS(l zm1!okM&Ks4>>8WGpks2-Uji#E+hWB0N(@8#*L598jF8m>g6n zSh!fBKHrIs^WaBNVErw&P?+7d;oc=m$LJ5fd-NBvpD};jg?hysr5^`gpZg}=R2i|UPpZ6*6q<6-<-rhZs+c{ zw>Nv;ojXm0Ml2QSlQMm&<{=1TwSvXqli))OKJ`Tr>R*IHs1*?*K8O@`_AUsrunhB? z`OWwH{rs+kuY}*6eOjA1bN0n^lT*{@XJ%vZL~<@QpI*o;E@gAeC|@|C<6^07T&S2i zt%o6@XDFwsBd}&U6xM5|g>pi zCe1&QIZGUDQ#fgmN-Bnt4lR;Mppui*9&-=(xt&vEhEp{hCz&v)i4!lNLM5JzP0qz| z)oNgNOz3C-NPF43)XfH^?okuO0RjzR00K$?f*P=Z11Nkd8^g426G*M5;JG+9ae*#P zVckIRe2p3wao96rn0+Yp97)a8^QPgHbDFlZYPqz?@r6n5liP|!BAJ$krhe8g^d3%) z;UcP=G^cg!Tyy=qF8JxiQ-~C>*}9sH)@tSo%L@H{Ijw61>NYCU|0l^aPPRg2HDS;0 zoYsCC(?Z$p=ol0`yyaUfFR`zMFuUb>k~PHFqS#G(F=iCX@RUU;CUma#XeL?H5yefV zX*X^-jjA}?Dnh3PDyQ}H)c3P#QR$hF>N=zxMLJ=xKvY5oNssFWg)`g?^Q$Gc8iWVZ z@fzljVVlgQFxSK>cbvv$6WcJ4jVerF!(>-O$JkGSci7*dhX<=*vPq`G$>8Ry2p(}x z7?4b>gNYqX*dA^CSrhyK^1Nbmel`AY5#=Y{Nx)_iEPy)Segq1jk{&0t$Yo&myl_vGX3%V1`6O9>0?^#C01 zXugjsw2t_6a-EpWyIX|Ahf*3hsa{K@pHp73#vOa7|bj-WA>#ZVI0W-w4~HB8J5i z;yE!UE{m7N4e^HfnfQhHmH55*yZEOk|h&#Rtm(wZVgq*>{%^qurT`c3-F zD|tJ;C%qHiS#QRB+k4;pt9QFiZadlbt?#z)N8dwPlq2$lJS8v4x_n38Qe diff --git a/WordPress/WordPressShareExtension/en-AU.lproj/Localizable.strings b/WordPress/WordPressShareExtension/en-AU.lproj/Localizable.strings index 1a4b84d2c81209ae2c3801bd4aad5ca7f222fdf2..bd6348078a6cd0d6cbb850bfedf7652dc883d3de 100644 GIT binary patch delta 1087 zcmb7?OH30%7=SywJ3HH`SmaeO)e#FpQH%zB;0tW=#k=o{Z5`NwZdi7k-6_I}n5YMh ziE$1dH0Z&T@nF1pFdn@UxOwy7$wZ?jdV$1kw;CZPhPnKcKl%Up|L>b`wcl#*hr7C^ zlk%z4-ZN*n_Eh!ys?XJg>cS0u=bJ8E3|!icFE{rG2L^|RM@HKt(O5i@Jd#Rx9X-aO za-A1YZRa3WHG+o=OfwBT6(WpInbv&Hw`0h}WR_?;8P_ScHAd}Juc~53rfi;*+c-z9 z!LbOPF=r_r(2VJvukJ8bEi%b)!L%7J7Ic%SROS0npz6wibJvWij*gC;ubD5x#)B=o ziYGOl+OZ)z$FdR1ik5+yS*}io=_D!YEICpf*EKuOzoJ?gi;`K&uL*kt3HRMhG*2w2 zE2frZTFJ0x&uF&IN2QyzuarsmsT#v0&NMlnuhPjK&NRBmE*UnpSb6qDl6kT-$rRCyt8T*GB6f~UO!GG|SRai?26Ddbhc|4!BscOWN()~> zyS8WDN^HC1@<*^4$9oF}-QnC2uW-U{hXYP5Vc{QOia(Y8JOeRk<5?KsyU?~h{?f`6 z&znUH+srYA^VFga)>zCD5?iuL}uvkAJDw+ z2mDif#di;HM*&c_=l^4GgE&W2Js%hLRIPVYa&orpW=btHKtcM%XDF5;}#XkQH=+ z315UY5s6J=t9VfC7JJ2hF(qci8{#eTq4-i<5x+}<6qNQ$Vd=5-N?MlIpdSX{F&KjV za1@R~vIIZE@3JCy$O+ky@5(RbxAKbo14(EB-9t~&3-lVjL!Z!^Qm>p)(n?;rqdZeq ay*s=|yczGD_kpK;1mH%`l}fAx@8U0KxKd33 delta 980 zcmajcPe>F|90%}uZ~pBR>X>F$u0GrhgIY}bWB#kv^5?jP6n-}u~l>EJlC?947{ zP?2;DisvN?lP(2bBq)f8prBI+iw;qz4iR0V>>@$XuDb_Gt9SW5cz=JN?^^L%@pW$< z%hfkDHZ||qc{(q@KrTGvX=(Mgm9}?umUWd^ptF_TzN#L7Z(n~P7zz*6L}~}4$4{J8 zWGBVIc|?&5j-t3}*(e#;O{@|%6vQbK@{{xSXmAQAG-DFAB@$*rkt@g5K@hPw=lBy8l#U=^80D1;|1Mc$LyT$#B!;?=Af&9cHF&DKe%1;?g?;ec-- zKxWJop>?2|D$;(s$d%B;Tq*q}?maLTAa*igAluyd+dz=$BxaBH5LLsdH*RaDVbNpI zMGe7O8|h0<=$bX9$Z~F$ZOAn0hkWUl(jBUzVyTD1Do9pLZaqqd$+*j@=&+$ckGvC4Y z^TYfF{u+Oaf69LpP6^>QK@qMBOTr^zRrn&Ti-LGaY!{=VA^8eow26tD zh>17jkQk%!55S8t#^}Mbi6N2T#goQ^H=_p*UL?Bh5+cS#4_<$V-~7Jc&pd5>+ITy7 zu$w;z?A}NMhwWdJSw6Vo@}W=>={_%c%24I$A(x<#248 zhM5Se)|6^lbcDZwLzT%`NKpwKwo_%@?v+i|_0Z6}Q)hJxo1}W@XcTLBf}D@269pJB zbb@s<8bJC4*2ZFH8KOK=_4CfaNfGNq6Bp@A!PgayN5WZm?LKF5si@gWv7#|i1~Jo& z%IHjgm$Pd~_QGzYfTW}J1(_97K>V$z7{?7qmbO3bvINZL&Zds zWc6^G61;3X%?K^@GPkj{xl#g#Wus(5i`Y)EfK6-{9gEp4S$C7&c9Sm^FDkZUHEkk- zkz!X6kEuk%V-+Ykh^DapA4-%;KJOa;KeDfA_f>E=6_~J{4l#<87W!9+n^%c{)1^Ln z2hDM+BhRK zW#$VD*gDq3cCkm;411Hk!_Kj<*hTgm`<+|QHE>(GF75!A;4+-X5$-Fu3?$$Iey|60 zgI>@Nk{}JPgBfraJO*#U63_8IekUK~AMj83MSfXm7FvYELO|#jMue0QSP+&(R@^Ke z6BY4_cu$-Y--z$UACgzvD?O54Nb}M=>65f1H_07xpN!=hc~*WVFSy!WCtMlVE!T6` JBAs0ae*&o;U1R_N delta 1040 zcma)(OGs2v0EW-G?`xT3rJ49R`695y1hq^pALFA&(|I`Rq~mGs$+m%1By zp=Eb#TYJu$J-O@hT={!DI=i~vMLoTJCH?!#(f$h0K=t5(p<%Dj9~cSNk2Z{rH#Rl1 zcD155ZwE@47DcH<%)}be{60KO{Db5Oo$y6*Qa7fNJDD_-VOKfBa07cHNo-M3SeUP1 zuawb}P`_c3Bt;(Gm%pqaW2UC>5|*VpXm)KLbB2cJ|J8KOtJHDR2Lm@@l+U zpq>H>m;+b99k2-QgQwsVR3V0On1V;)JY0Y`;4OFu-i5E>cTVLhxmIpJ=jEojv)py= zHus2o&Mk9qxo_MLK9?`%5#Ps8@u&HDK^5wRVd16lM))jz6@H3>xIt_ed&OZfBpwql zidV(Q;sU|S=~P%1GI zI}_p*CSr`01(hMT#=^qN#9(1!XJM-`7A8g$=kACRE!6g#e2@R{H(#s1R;`6Qx~0?d znX}rto{HYxLC>DPeWB`bZU1@Sg@O9P26VA;$Ui(XdTDI@SR@*YCz2;p6CI~InWkPH z*gKY=F%5UYu;x+Dc4;6GNRJTR!01wr8n)%8LYR_y+gZ+f_Kw;JFJZ&PGbTZN=u$-ep<&Flz)Y6;lziXfF{oY*<&=Q^j}07tfhC)`^bViyMxkW>ZIVhDqGXVgA53 z^QBo&BYOb%xBh&Kjgo6L6CpJ3Scuxi)?}E>;k-$c+efn%Pz7UAyhPY#v8g^$TAhwA zV5g9WIF9Wk!-l(PxGo!)Zj$~&WujjrBovmVd(q~dsFTisKGmP;I3JU%+4=HT2g+)NiStjAjj zP0+HPcaTfDF0?=#!okL3+zube>DKzE;yIn`ET&6F2-bPzc+8+CnJD-|qj-@NzQv)x zehZdXY8jSWxbt4tsx+__wYl;)U0hEMQ|vJ%5JFDtcJ&XE7S=^Zr6Y1R;HFMmwga`ut)F-Z9@@=STDd{TjW bK=}8=9zjwJwclE80CaS&n`H)$vh# delta 999 zcma)(O-NKx7>3U|_un+HrJ<2}${(U&Fe$S?Yt+fqan$*3nshwPob=}P-eK+;%Yu?3 zT1C>aMbsjKD6)kFwFy^2vYHt?A z-Fx=#YbjW@zi4%_UUIcjd*lSp$5kDnKY+Jz~8Fu)jw!SLTZa8Cxpr5i#+QQ6UiWm-1lP1_e4^0{b_okR( zTMpljYWRIv*%;}|95W4PB(CfESFV?B?LOkoHp>=qxm>YahNa-V1Xih$c6yv-OvdM> zvb9Ish?Ssb?rX@MN|_VfCAV_7T2&g?OAb<&7+D137>qjEZ9FEOp0$ z7fBuU8;KFzW?PI}ESy^z3#F2T(WSf5MQYeb#^_*fh@BkhxV||nrJDPYh7Y@wNzAfD zqrvn9Cd0(AqMoF|a9>td-X30Q@9)kE|8%yfX}O1{|Mjp;z+1VFTk^*G71-nY8lR2H zI5A9e%%nMLS@wmo`%!#CcF*r!WsAwzJuS9hHB7W)Q$XT2wgz8&^`17Jwvb12lNg76pDoP z0u~MlL&BsmEo!1m>=$2%@5RsJS8+iSrL|Iv)FJgtG3ktSS-K(3Ngw51@(zz2moLh< x*V?pxZBRR*P4FWH_%{xnI(z^C diff --git a/WordPress/WordPressShareExtension/es.lproj/Localizable.strings b/WordPress/WordPressShareExtension/es.lproj/Localizable.strings index e9b6a39d1aff956b14494bac2a0e16ea8290d219..59b33ede23521f657c2ec7c426540e183a45dd25 100644 GIT binary patch delta 1430 zcmZWnO>9&}9G~~z?!NbSS9~p05KGy8;gQdI7?wf8$X5TFH z<`t?KBvH7w3`S#&H!hq6P8{?^;>`obpa-vBjNbC=L-wPQn@m4x_V}@RzHgxO&2e>^ss zFC!k(#GEr;8Y6z2_`aNry?=Q;ys3=4M8H|4LEUjSI(1<)?^t!h^D!3@t70Bg+!SZ# zNpl(Im?y9&iaF#pF|8E%Dnu&}6Gmt5W16Dqd;g9R5x zI~}TA+x|bPMa&4Xt15mlySCp5GDbhT$p;IP`@I0$j!% zD|cj|?HQ;pbX*mXNSM+*RD7T_%4%>-G&aKV~0~&dD|YA`_p~$emrB9Mmv-!7V<}Pw>+A- zE$^EHaxs2LI~tiltu6AJ`Kr{+?B%-CGujjZqU7yO@TEzt#KztdD1e`V0D*$YRN*vh zH&kR?Ox0uP9k9SE_(e0c9&M+V)sAX4?W%TNyQO`lJ<$Hr9_cB4tG-Lm>WB4`Uel>A z^k4PIhH30H28~0;F=O1LGs(bK@K1&zK$?hz-ZaVxPwD#2&;R$9Kg0 z<45AT_^J3@yqchi4->Z%UnIUyJTecOuF1`H^N#tY`MdeI)noNrgVt--xW%n^tTpQs zyT^w15qrX(wU_Pl_BH!6`=Xrl-=S^riG# V`s4IX5G`Hn?x4M~Z*1v%{{eqV!;1g_ delta 1315 zcmY+CUrZcD9LHz&c5ipNZM*y_&;l|omLej5v@sNG6AF~p!g1XH>jBHKI~*%}yXWrS zRd}hCyfo#(s7(!xu}XX}Bqr8GUwkqet9{n`q9OWXjZtUski>nN+01W#^ZkCl zzwNf|wrjIbs*@KkzHn)3Iyw`ZjVF?+bS9g-oS&Ot&=&EMe#Ring%$I~RZCMlD25$R zY3iXNRB}8Yl}na`4Pqn{xI&Uq^0GglSi!Do7tn<3IZkSavBAtZS;l3{ z*VKl+Yk~j31*@JL!?sSW+SSx(sbsCu1=w?3Qx6Xz!^O+~|4A~&sTx#Tg3V2uT7RDS z`byBzGkxN*me<#=&~IQDy&F0~E8MH2Bp^K(H}w@X=GZ>5{dDcoe5zz%pH!9R0^BHy zi)5j8h`d@*n%cvtchV>)qwJ_*AfH8%OS)?a7qDsPCJfU@F=j?nd+C7KJILq^A@+!i z4UD|WdZe4~)V0&U z=TD&O>N(o&?=tX-#62o7-`YerkN!cCc|ksLH0~Edwe@D z)I<8I_zXQVVEL zi?xr2m4oy_xQlvn)76C_^lGbW%0L2Z;0Cw@?t+iO=io;uLkx?s4AD^1t$b3cS!LoE0X8*{ecccvHA3yd%6X+!KBa4~HLyABj+mh=byYI4MTOjQECl zPy9*Zr8a3u8kVM|b?K(`uCyb4DSa#bEc3D|pO#~CR=y^GAb&6KMquPr1V`>ib|a6J e1IjVwS>+{VL)ik=kAt-p6sv1w?+*awlYaqSRGi8H diff --git a/WordPress/WordPressShareExtension/fr.lproj/Localizable.strings b/WordPress/WordPressShareExtension/fr.lproj/Localizable.strings index d94f4a1a72525b2046a779c8193bf2fe6a18f609..74bf8e20811c09919c334cfb75b6f51c2248e7ea 100644 GIT binary patch delta 1450 zcmZXT+fN)-9LMLfyUgsc>{+1P8sI=FG|HtU)|wh(5C{@3g}t!AvTTQ)!*b~CoOLd= zv=T5;)7VCfr-?63yu|p>hsN~5*QU|L7n>$kAAIN^V4CQIHKs;Vf3v%3nz%1JGru|K ze7~RXcOLXS=()bqIXk})Pb5=|>80hB%xZQmcTQi=8)T!fNw?0MMSerR@K*i2w{B8r zlUfB_VvajFIGCL!2G#M|l1rK8ERE?dDKL8{hwA4T*0*(P>gy)K4t0sMG-?>w)e8>4 zBc9;ha_`wpoD|tM!86o4pF>B6v0>{QZh3F)l}x4^#K@txRP_=Mmq-2hxM|=GY7%E< z2HpWVpd^R7`L5VJ^ujbbM=rW+apHQmgg>JR3VM z6ajA%n?O3;6FYk{sgeN&DT7JJ3D{y*DoI_FEc*?>b9#~ReB>$rQ9I2S!^ilC+ROYO zG{iqs9GRil`98|?nn*))4#g5)sbte4u`$%kq{L#VgMX|x^V_w3Vt4uKNq8WZ9RooH zQUvUvf}vs9W0HSWcT`CyJi4u0E=S>k_AOx^*x5kM5PlOj;MxqiW+16@R3m?c+WGh4rXKL)Qka1>Xb1uS2EirWhQ5>ZRKa2}XQ;7? zFUEgSNBF(EqS*i3@8#N7ephX5fiJvzq8~ujs1L^Hn+i3Dm;Fl7w>_|ZO`YbCLr?iB zby*yM7gqQ#+U?4rj`<3oOL&_BSG);$89>A|PyNocC~JHO4RBdGvgh~2CYd=_#D-T6 zTu{K?@1iWm#5QqAd`(;vKM+3=Z;3yM55>R5etcC^eUBo+yekseGi|R7F))Usb2ognC82q5h>FhGXGYP12gRMeTxi zUHekIrQOx;Yd_a6)Mjh1)P5H^8MzwyyiTms>XOmf=+{U_`{)bwEqWH~kB!DAh4N1l LEB}!C8};ZvzfQ&O delta 1296 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 KpN3QA4SxgEey_y< diff --git a/WordPress/WordPressShareExtension/hr.lproj/Localizable.strings b/WordPress/WordPressShareExtension/hr.lproj/Localizable.strings index 56d055014345ea72288fa1667dc3bdc741a817f9..eec62e62ace461ef3729efd12193ec0b3124c4e7 100644 GIT binary patch delta 1211 zcmb`FO>7%Q9K~mLc4v1DRZLUTVn{nFiQA^IQBhH$d?j_#QsO#^?X{gau`~8goNd;- z*6!FeNT?J67cLERDC)*FT{}XQ10NEa+sx?y zfA9U?wSj8`7pIQOFX5M8(O-RSeBwkZJ~?&r)a$3;m`)__v{tvCXU9ZYdvkQ>Y`f;z!K&>xNXrYjVHitim}OHk)8e-02Bj3`tl|0V;)eRT zUYf8h!f7KAALD~!KT1AY&a$T0VI*z4Yobp}j3msK<57!Qek`#tKB5G*w&Ps0&33}$L@qOZLxO?MU z4Vx3Kma{JIBs4-blpGAPbTJH(gx3DJi8hRbHl3K4eg z7PBlA>$zs$<_?>Wn2`)^vZx9}|5$~v0lURzoD8{-ANd>1Yrup%LZ7_rmx3lR!V@7s zuo{NofU|%B3oxhx_80txnc7*}u_Nl(%(-^cj<7#fFxMQ-~Wsfqb98*%u%Cs`4l$ATmJ>>z`uz?HM z#UJ8N@Gbl`{sC{QlB%hP)#uc4^^|&3y`z4kZmPd%sTefxuwuQQTdczGU(ik7MOQn}vBx%%f z4C|I8jVVh}&h;27ZAMgamj-~taYv|u<)SRwBq=9U+ZMTkw(Y-k&? zC`R2mMqS6Bi}-DACJzZZca*wi@t#7;rd}p#7++77u&%Rupv#ZzrwayyiOMSF7`z(R zYw}mz9r~llRsSmTj|OXF-Kib8NPi)aA5~`6ObxjR z7csSQ$|e;BC25ntllEV_7%Q7=~we_8$Z$uHuj=bZ~=FfZA#mR1_$!;}~e2q_MsJNu78*@lKs3o86Un zY;XiBAV5f5NJofEPrV>p0G@tbC>Y4AI zXK#$&82uE&0>oGmOYE}ffPE}~M|oT^l7^_BBaH&)l0 z)`jDE{n^$D_Nn$7i)-qao44_DdCu-~I_C7-y#5Fx*K*{V6^u;$KAKrkImT}5 zV}}mtt5*4svW<6crl$WtK^n`bWB<*}q!1~&^iL%%kmIqofCl>D7Xb>72;)LVcur^v z?+cfO&xGs3uJD_1Pkca(ixXl-oDpkcQ*=ct-Vyhp3ddmz9)+_o3k$Fg*WlamJ@^T{ z2ET=OB~hA^o|5LJE7IrEuCynQ$&>O4IroNKkc)Cd{#w2%-&HgvtyC3H`B1s4TvxtV zZYjU3BWgmORg0>nQuU6yr#+*c(gN*G?E~#&?TYr5wyXWDKcuJile(q%^>6f_4AnSp VEE;Vi1koc3!wT&Ex?ha#KLKrcU~d2b delta 1168 zcmb7>UuYCZ9LHy7clOU!>7J?PEG8NJM||*#me#gf^^%-XlbpH#iI-$Ext%84?Cl=6 zbJylXEcQ_ZaeOKGAVRU=i?$RBB7G?IsSheDq7R}V;zL9zlvXV5?%h3Du>Tfje?OR+ z?{B`}&%-qj*PKf3*tzS&-Fx;%UP}xN4jIXP!}|{$9EpvNr4Eg!`$%SeHn%BXC{9cs zE=^6(n6umI+&k}Uh**RxV2$ESF-R^6BgXt=aB8N!Ds! z%{2Og8(ktMuMpGHMzN$%tScRGeOBXS)OHt(8AdJQxw#yj_f4ZaJiI$x8s z9u4dU?&9%ysr{6e4H1RCT5*VdMC%S0*YN7DsX^+NnbSU+PgJYUl87q)#~O1{mRAE=2E{zTk_8^k4PlW3sh2^PjTm9fhUWYBXtb9tdHS;|)}%2{jfWSAjI z(F&VsZxX+qzG?IaQTBzF$V9@j2oLg|%+;0%ou{@tnY3(9#)F(YNO!&h=~yt+1|#5? zAXf%BSPcG6nEqG5Vvn{>>adhUmcmq5Z!CjBuna1NLIAZ%7eNv@f#!oi+Y7qoRxftI zEiYqz|G#4WN1pv3w@fra6FdpVgo^>^6>!A~Wo_50lt*ZT+76v_SQ}3Wbmd=w{x6ic zg;G?tSntd1{+^ilU482q(7+P-0$c=_z_;KB@CfRV!V0XzCOiYr!t?L~ya>OBci_)R zM;p*CG=ef{7JZJ+p|8*t^dq`~?xAPsS81j6rbMLu(ya8EbVk&p)pP1q y^@jRLeW69Q&Dz^qN%J+KUC`I*3Ek4~>&yD{2#!P}Br*b8AA;=)tWNEeNb^r(?q9C} diff --git a/WordPress/WordPressShareExtension/id.lproj/Localizable.strings b/WordPress/WordPressShareExtension/id.lproj/Localizable.strings index ede5fb5cc292bf639026859f7220d18a7b789cde..2541e401f486cff502f87c61b0047fc6e6513f62 100644 GIT binary patch delta 1399 zcmZWoOKclO7~Y5X;cWw(cN*k$NYb>0JQ{&S6~Q5KDwXEh*pBTu_Gavz*i)}}t=-vB z3qpblRESC?9V9NCP*1&3_0S_H1X9ES6|Nw0=W&Qo4^UvncB)F8y!!w7|NndWu>Y|C zlTu$MJGznE%onUJSS;CSyIjH7st)~Be(Q4AYFKn|P{D2))V+XAPEO{Rkc}Z&sT1tE zK_(6fDtmszGP{;N0CymEV9`M!zyt-ES=$B#mIL}gJV%G+v6b8!s(CvIEMm86nZ47% z_Te^Z?gnAq@t}=t%N$I#Kf!dfH4e@=HrU1v3N{wm8wQ6VvCLt*EA~%4(@id;>!h%T zNa(wOc+KJTJlck#L(*+7bYJdKk_otj=$14RTW=xCCo0hAG?DLnetI4UH5>%=YUKUB zOT3c3WMcwWnFf|=wl}q4d+to`O*cS3X|h^RAP1Gm<{B;rex+UaflYRrh zGQ{p?tI*<+oP#AM#*1+;bZqx50bGWrY?B}f>j(cDQ;F2tqGdkcQsb#mj*t+bup?l> z70Ln->VhW(0s&)mGIE9%<)N-Z>kbH7eh#u*|P}dT2kzd553SBNMTd=WG4=`w^jrQp0pUWp=>FbZt7w^>iI9~UR-PyJ%cnb^Uga2ojc1tQ2^`=$XWSx{ zTEz~oJKQ*)3&CmZ*Q5IF2$f$=Qz5*uPz(`{y!c_E4E&&mb5s|?T;Ekv+{zRk@NC< z@(1!~@_qRSdG9D9MMfhpMdl-)M;=5TMV=@FN=$i8i7N}rRVAl4 nE!r2IjV7aE^xfzehHS))H;l4z)A(37?ivq`uZ*why%XR+UqQi2 delta 1274 zcmY*YTWB0r7@nD(yDgox&8@o4AzN*-IJZ28RimA z3#~N|eW(xWX&;0bwca3WP1`im6!`RU)7W- zKkko_i{m6{ksv7KNoeEzDAby{LUwXKi(BqGrcd(&^dGU8Zizkgak1x=&E+`Y);YpC zT%ALl$GKdnd zXK&C7KhSR)ohOjx!)o|{Cz;2E#8m3>T?b90<2fAG8Zlx(LL4y2*Ee3IU-B8clX{r0 z3$Kje*y*J#sWs4;>x9?|=aZr3f@eX9+e}Nb-DnzGxRMl6kOXBK1I+b4IxT2uVZ^df z$f79a{S5?lAWrGDMM5;o#Kh^($>|{$Q#*ZB#eM?p^Tuo;xyX~ln z<7#1+*rc&I;{^n@m%%h1qnET^I-_)?Oe4e257OUc^<*iJ{VECBG#15w=k@@L440;G zD}r{;qYG# zaG!EN@EQ+%i;wto{8fI7f17`ozro++zvAx+nvfBm5hjGJup(>@@4soye+>k-;!_3cjP~m4&|6Kqu9!M<&yHM@{#hr@{{tns;CFmw0cU- qs-Ui^Z>YD_@6>ymrCru`^nQIvAJfn3WxcMS)3^1T`p5M81L$AeP@F#i diff --git a/WordPress/WordPressShareExtension/is.lproj/Localizable.strings b/WordPress/WordPressShareExtension/is.lproj/Localizable.strings index e83273ff29400bc8941468a6752a25b226545721..a9f24d290843c31bde3cf4c83e455287b10918f9 100644 GIT binary patch delta 1159 zcmb8t&2Jk;7zg0l@AZbJhE#P(WHfEusIf;20^)SsTd?w1pff4M8&12^im1L1)*}F2d-4&02KAWg-DF;=1|lFXbwA?)%(-? z&NJJw?bwa;ujy~RdG4*5+0@*8bm9Dk#fwYnOPR~dEAea&+WA7URK8MKtsbq_ucAiN z!L5^SoBwRS%Twmq$?7HS5CkuG8S%ZaltK)|+L zn4jr(skp{i{z(NKCL9yr7NM9&q!Ne5IIn6@I?QWYoNvf`4vhCl#&FZ`1u$d+0=990 zlgXrQi+dMw{3|V%sN}njfEvtJ%wpt-f%7(D6qoxFFoV|ct}x#)4#bNK)bDh9!82KR zHMwL??IMo4-~ylkgGV4KRv+>l1{v@Wgn$9`FV6fd2^gXvC;oQ;0T8T<(w5lui<9{R z2^s3kP7|;I-UbK+BK#q6`}?Pr?X=%PePV4u%x_zhW6#j#7xg$lXdT)Alv>Fq6gH3u z5OR}_=!b&G;L-o)ON{?_wvl7-5OoHoA^%lB#a;a zHo@`c}Fx{U!Y^kH};4q zuPA4f8D&W+DOKe?<+}2za$EUPd92E6LOr6+sh_J~tM}C%ZCs0Mr!+UEEom!SMf*Yf zMc4IFeM(={-_bwOZ|UFZ5A+?wG-5{Fc-=T_)Q!N{GOnAz95r7y&zfbkYrb#ZFmIaM o<~Qa8^Uuh>$cacQf+N==KSh4C_E@Ja-`cW1v+h`T`4=PbA4%F}3jhEB delta 1154 zcma*lO>7%Q6bJB`_0E2wf~&Mj(#p+{(8_{h6huowX^ZpS)^!tmZO3(z&BQx#hHQ4t z?${)7XaqtW5E5c4RY9dfa41rHh>$ozPmwqwgenevNt{~5r3&o@ae;B%9?FLl&E>6j zSMR<5Z*Fwn=zMSN$ng^=U$WAJL&GDZW81i7ive2E;{jqATaT?6Mw89*Mo@TM%@dDOIma$-Y2eWiDyd_jd_nna>@Aps=Z?1zj!_)my|oDQmION zhV8+{Zg{{b4buhE@VNLE?d_NzB7T*6?N1Bodfi(UvoN{eiSO;lZb%mR!?CpjJ*jt! zHK^@z;=4yFuP(N-ix{Vo>?SJcRq-9{6Tce=#oPKDY1#^PI>)Mucqs5W^?9+~vQntK zgwyT0%B@s!mMqiR_DdYKO`LdAYV?R_EE7+qT^Dnic-anDF{u&emq%R2@q~1}5B=P~ zp$kP8aY8{B+-_wI$d0_lfRPY^^;Ex|36@AvvNF$`vYChH$r5p;p9k)NEe1xx%aSsb zkGCbItR?m#am;%D0d{hy*y0v?{DEz^5BB6KxQw?paiL&ve_`pi^OlQf0ypz-tpDJG{Unw`0pOh`-kJzr* zz8H>;$L3;dv5TsyrqoIGYxPIoph(|XI=5Fb8*{|2w^WyAmg diff --git a/WordPress/WordPressShareExtension/it.lproj/Localizable.strings b/WordPress/WordPressShareExtension/it.lproj/Localizable.strings index e0654eb44a2a8932c64a5558b82bfe54361b057d..c0b524a2d6327b170760594c69ce05b6d540ad61 100644 GIT binary patch delta 1307 zcmZXTOKclO7{~YF-SyfIIB820M@c3j4=ZXNMXeMl2NaTuJe|ak*iPa&lii6ubiK3M zoi$B)go=ki2t+yvIB-H-C>$W1;DR_*oB*kmBjSR@0f{0}2_aFz>^iC{aoe4l??2!F z_xQ3sdwe*v7^9zeh%h{FX)wNu{P+TvSE5jR`Th;B_4%{_Nv{!H7r!HCSZTacB zu2p~6!d?U0b>I+>W-^)TGBPm)D-OlP_R2GmqB?Q+Yss!G0k8$J1$Qk3JWP>So;FQD zVcla#Vww%fqbr*^)Fdqgmau)PmOM2HOc(CaP#gG;MWBhyS~68U{sfcZ))_EjnP3lF z$lF-rXLvijlUj0!Jtv-?xNoRq*BPk7GgWn z!+q=Rj;i?vbOW2nb%|S=#a)hWM6gk5Ld{2(e{A z0Xm2O#wPN`+)^$1V4KE0P?nGvpwJSqU<-8t2#!DmPoQ9wWg;VNSMKlHZr=mEwz*nz zARu=5Qxp`Z9mnERJN-Y@lObrPi{*!E$rAym`-jBc9_|l`>BDFH*k!4sr#s+=z&`O^ z;87j~&_FKY(_y|iFuYlGOdgOBOeu%BEn*i7m|Cb3BmiV#6R}_Q2J6(*4^&s2D?C#e zG=qe(pQFPaThsMA_U$?ja4@J1i5WJSNVBhWwSyCG`lN+{#g*6_dOv$HIuJN^vB70+ zO2Ukc^8&z}SS-Gg_YDJi9&QoV8y!2fx#}VwcWh%y%6z0e=>}xq={-s@53LrfMAOmI z@g?lK(yNzq$a63k{`|ezl-Sj|OiaATYXEd9Hi$*o$I+hdFbmi-+Kp9$I0UvJ`!?Pm z=s7NFLH4N5_2z98BkB_Nhw@ked-9$VFhU!YuwS$(b|u!&KGMg!PfpvmZ&?r+gjcq( z$8}LHnGP%_5q~Vf6Db9g4V>K22H9ElNA`g>B98DQBdkAhj$P%eDQ)zi8lWYv4MTqA zCB%P$=dbhWa3|F)Y4W)vE8G>L!oKjkD2tt9N}LcM5x2!x#B1Vp@f-1`_?P&P6qim& zz0!nqUMfl3k|j~;wscq48Al!eWIE@E?yeqT2uf delta 1303 zcmY+DU2NM_7=~@fj_oAVT)Lmq(&nr`Th)zfMIc~oK(~&qEd9$*lQd1-Gy5bt)bWYz z<3M-87`uTBB&IVYCQSlWNWhB3G{g;XgQjr>NK8l|xZncNgg|H#yI=?jj+1VPE89Bf z`@Z*m-p{vsZ}q;qu-7ZPMC#{1vs@CfGnN`O$ z`WY1a?>CLD6QD_a3WBCXppEQo2DVUk7ClGHnL6~aTLVWuk9ek$ZUMhoQBa$)!_^Y1AMs z#2yhx*+25V?4sPm_Q^em93dk>p(S9!6>0(yngS7gfr8zYG@^m$0!rF~7cl;$RzO=pc&#L+?1*ggSl4_4{_Npi-y4pi0@cWg6_ zuBQ;S>S0G8Q{?lO=hmKOUyDQRa%6NHEl>yTWK-G z4Q62jRXT^j?*wHUqnvt@%}RQIVbZn%%0avA8f;8G^AEadyRMNFfI3$bwv`QMc_jV)4VUD9?7S1BOooz#-f8v zPbAsP@e%e~EXlsoA7Tl0PhT;N`V^lJ%X7`}i9sVw-86>TZ}C3%NmOTVMRy%4@XUDX z7C+d2=k-62esF;E3Vk*>R}u!gIk>Hv-ByMZrFjqWe+0W+A^TJrV@rBpJRe5g?mEtm zjOYM?2~fojVlPDp*zVZK&K(&{F~II7$2 zY!P5%V70Rjc#r&~>jsVk%aa@+@m$!}R-Pq|Hv9IMX>8lP6&Bvj#x(Ya^4Q<;`03@a zJaBmid<8h)rbk+wO4kgrag|%SOGVIxHQ|D=AzT(d6s`(Ci@FHKh8T#a#Pi}sab0{{ z+z_vb-->@ox-=vmluk%#X+=6Ky(zsTeJp(@U6;O>Zc2YfwnTa(AaXpi5_utV{#ykV>R;+NVl%N*vDf2Y Y#D9$c8o!-T69WllAyG+GS#}Hf7hl1xQvd(} diff --git a/WordPress/WordPressShareExtension/ja.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ja.lproj/Localizable.strings index 6a205524e8d218b48aac609c532c2583d464b678..fd1af636173e009130c7ddd9b7091bd59d2ce226 100644 GIT binary patch delta 1406 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 V&Yj^da?{*0x6VD_w(wdO{1;kI&r1LR delta 1231 zcmY+BYfKzf9L4X<&bu@YmI9^FUJD3nOF=O-P1V#=OWTFQK49rCEVDb8Wn`Jz>CK4NQELU_bQY9i>e5NU;0)Y$clsgJ~1Ng5MkOmv3Dpfg|YWd7%W z&iUPyoRyr{8Xgjl)Eqr_++JIEqQ1f5bh#UwJk2M)zLr*hn-mBhkWqW6LwUM0>=z5L zL=^1ti}zH(h^8B`I}+9;8ObiE)Pr1g=#ewmlV?dVvaSu%i7#jt>|5fuDe}|5k{^jrC_Ji?XWjG zP?y$&@IImx|4nVfgH$fwP31lo22LP>9-sgfga8B)paC5i@cvc@GP$%+I|L<~h!bzDgn;tz;|hnwoV17St)@QdR5Dcw?2_n)+zJ*nYP?jQ1IhQ6J;UXJ(c4Koiv5v<0L~Uoda#|}i~G4J z@H@P;2~AEfh5`KaljI9{Nyx@;3B_4~smhsDU@rgT%YpHC<395gi{L#>6+S0y$COZr z&-3@;ueq&7pn(81dOTooOz~{+ZN&+2B0BWLx-VM)ElTV_5CdrR_Dl-Enbg?lvX$m$e0~XVpch;KSHK9E0H1*$37(LME~1-wmKY!giMNUO zi7Uh?@hx$e$43|JXJvMQ@=Wr;pGLw3qIqF+E6Mq+|3gCXYGIyvV%C3^CKpEb|4k$SkuN zYzbS#cCvl!tLy-KkzHW#vVU=#xqPmKE9V-xMo!^Qac8&@F3H{DS-zkDi2q4YgdX9v W@UrlRFeH2<{2=@WtOqY|+Wrr`0JF~k diff --git a/WordPress/WordPressShareExtension/nb.lproj/Localizable.strings b/WordPress/WordPressShareExtension/nb.lproj/Localizable.strings index 269cfe1644631d485c1e409b2c12c14837346e18..ec91056943fa48f235268bf29d51279872c2e332 100644 GIT binary patch delta 1389 zcmZXTOKclO9LD!yd%YW1IIkv{rk&g>T0ab z8~iLC7pFHW8MJG45l9(kON|cC1I>mF;>`w~HnyOKG&LH__a4E#_v$p5!Ww887&%)h z_8TULDN&>2^mTq@?vb~-b+kun8ALj^35ew#E-s=5>|j#td7*EJL&01Yb`iZGOpFzL zMb&H*+OADx+m>BiG@M<-acDa5*1?jyQ(n>x0yY@~H5% z4ugEM-Nr1nk^iBd_drvbFCA5*gD$5>Lt<_Z_s99!!`H^>o^a&xQI{J6`&P#W4q-(A zO=KgM4(;$KCM)^2#tPzrDP|C}WtsV$K`<)24FKzK7tsUx4!sjTs+8Skp)SNay&0Yw zQltGTr0akfm`yfXEz8#El9c2pXf1eb@HFcNYeeP6i-={7k=a7@DS3jfgn?X6L5Col ziBOd@q5L{x-zXm*iI=hjni{mVk{=qE=iYg$+< zB)fHcpU`wzp=n-dmwGrzJ5>N!y8@H?dyk2Cs>V6F;XLgJ!w5)x$}0XMSqZv(`4uxy(&FTtHBfejLVds3m+LBVQvBYhk>Ty z=4l`|Q1_C*L-B*!Mo)+Dtih!?#46`j@0SA0m9Ubh+$c=gHMuai&)wxkzMqfrbNq9B zjem##i2s8BhQG!C$=?_HghAm6VNQ5PC<-+J3q<%`cpyq*Oq>?ah-by5xGI*!s(4v^ zTf8D(7k@es{|E?y$v`}?82B`BBXBG5AUGNv3qBiM2(AXx!Aj^{C>N@Q^w683E1{o5 z_oc9ON?Mij(q-vg>8kX(bY1#N`d0c?x-0z^7UW@hM$X7kZpe=Os{DcciTs%|q{NjM wluHU#t|{Ls-z&fMz2Em`-|dJLIT<+>kE}+vB6`H+ypO>9E4SNQdrM^RUpC3Lr~m)} delta 1324 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 diff --git a/WordPress/WordPressShareExtension/pl.lproj/Localizable.strings b/WordPress/WordPressShareExtension/pl.lproj/Localizable.strings index 103093cb00f7e4d967c5963a5d3cdeb4d92fa91f..9e5c70f6eec8163b58714078bcb488881badea7b 100644 GIT binary patch literal 2795 zcmd^BOK%%h6rP92Gj5@sB(w=Bp|{PWC3T(jMM8KwkG_&7X>7-FoMd|Axv{4i&mGO& zNn&;^V95fh>V{vy0wE+8tU+Q6En9?y1S?dKvOq$O#JMwW;)aw~h(#o9OLy#h?z!hX z-*-NF*|ja7_4og%4~UW+Q{t+YIB@W}=MNp$o0?l*IC8YL?Zx(EFLk_p9Gy7X+11^1 z>hvqUXOd@Aef{UoU$}Vb)q%m+hF*Uo{^nbWx8F$*9~#j|$1Y#FdhPo7#Er?Rj_K>@ z=1it5o14wg70%2T7Z#U{^SAJ&YtCx!D~4dF7joRpzAPY26@ zxMDeFoY=+pR#1>{O5b6kZ z7;)I_2zE-uE@U66Ya#j}Vj(+>OF-p`5gOR0a|)Enx#!A(!m-Ptc?5)+%H(Dy4E=D# z=r-B5kP)!3CRlaN!w$Ygki2N z69inWheK4hEzlh(xh2H9qp)bEI`*h{C&tiE|KomxN)5e@3pBJ45BZ>;8mbVFaG__z zA#dFy6^CBTxhD8TD31IL0cxp}%UaAP1wO-Q5?5hN_NT)Y#v_Nb@SYa;-#XjBax+^@ zgZfR-{5q@-OaT#6{QXScw#(KEQ!cms)!_DChBiBoUCV#>87$2daxj8{IJ)g2p{dQL zoxtX~_lc(!$IKcFZliU8^%Pfo%+4NjuN7fBY`!OK3gC@Tcd>o$VE-@g;%NW=uVc4u z5g{wo1O|#87BqNzAj)Es*e>>ogW{6-f%uX5iTI6pPy9oCC>@kqq+?Q_bWzGnOOh=y z={IRhR^@iNM?NbL$!U39o|6~l_vH8GyYgr9eR(q`#kyj>vC-JavCm`oVp~d^(xD6} zBg(jPQzQ(hC^*i+k^>_85 yme7uBo!S+xpn2LI?F;Q|?U#g*m`gZ`4-;P|zE3)M^#0V@tK51{5vgqnfty(Z)WKP0}=NlQBDOx83Y6+1b|W zK~X#^;`E^4L3&WJ7oR5&9uyBMDxx5I(2FQkMCe6((M{vQM?sOf49qZm|L-?b6;lYBtr6#jWASJt5hZzh zgs?5Jj(roBvhzYETPIZRFhLApFaiu|idOeU3H1sVqV{aoM2wguM|<}Z z-N2~bp@wa_OqOfd6jTU2DGiM-4TC8f1+S8m@Z|Q&Cbf;3MJW0 z`mtwH_EfAW?`gtTj+mvZ@sQ(~W310lo0XO+Rq;|&%z=v+Wddcp3C#@_YjO=rT>oj7 z7Dw50Si`RJwX8)x)#YQuTbS2{#)seX1! zU0c-^(se}rYExQa4B-K6SgEjXP}Jeu6&>q-cT99+$8Zn*4RPVmh(Fxw5+Tboy&(cL zFa{{_U}Hb%@G(X~0Zap`gShYF!RFru>;F}7Zo2wZyHm6q_J-!bGhxX89r|nx?Eer0 z5D+XbHZ87V&&2Wtzo`Ac*ZM!beukQZ=SVuNk5O+3jrx@X#V_p~m;_hBEpQjSgDS)@ z4?TDYj>GeC0$zfX@H%`6r#Y3Y;kI+FT$Ial$GHpKW$re2pL@o==00;@_yznj9`Sqm zEPs?A7gQlAbPA7zSHgSYlQ1I+V!7BL?h!l1v=}=qo)pK$3GtrzLE0rnq<$$c9h6Q; zr=*+G6X~7wO|F#J$eZOZ*^`gRXXHuwmi$0|BY#vDDeIJol2u+PGisH3R=ud+Q17UZ K)vxT~JoFvwc41@y diff --git a/WordPress/WordPressShareExtension/pt-BR.lproj/Localizable.strings b/WordPress/WordPressShareExtension/pt-BR.lproj/Localizable.strings index 469e143390b414d7cab8e7258658bdddea3b411e..88aa6b9fc230696674aae43d2dff503f0d4527fc 100644 GIT binary patch delta 1472 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 delta 1216 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 GCI0~{<9}lS diff --git a/WordPress/WordPressShareExtension/ru.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ru.lproj/Localizable.strings index e1d13ac19ff1ec9f430b90c1693cd3afb5df2a50..5dc17687cce33c4228b415957bd317b9e60cceb2 100644 GIT binary patch delta 1279 zcmZXSOKclO7{~W9eyrDyw@HYdfRl03yij8&ZK4F1(7H|_G-)1w#7>;V-PjX*o6WAZ zyAF*C3W(Q*N=d&Wgwz`#A>aUQxd4I_LR>hMBOp~=ii89L4w0Z0jP0mug+`yWJCFbO z|NmxgcHQjSTkbeFzYtF(Q;X@$(sFiX_0(GKyu6+-kd0zVxv;6iRsOlD#`(&+s+c83 zE8?ng#fVi7YFEflaN7fra% z_CY7#Gnb8%Eq$Bd8AaR7NskQSf+25MHEmoetGZkug`CuuI{d^#wWVXYTP@%XMJ49) z4BbQRP$xO56JB6_;RjZev*e<+7AIE4(6FV~4yPx`hFnpt^kEiwk#Dvo6Y@5J^ITV8 zvF>O!QId^nOkxZwD%D$I)!6T%Zr61|}URG?uQVl8U90rRod7v+@?Xk#&!<@Qm0Gp9%x; zrz-+;)aKJp!iM1!M+Dm4&2UGQ0vhTu8dC!6-1=|(WPE9_EMyT*0 z6RHk^0<_O4tzpR9FEuGliitBb%s_R9dKf`b_{i1^8A{=fhrn0fe(>9;n-tVRSH}*; zYS|$uJOQ`um*Hn;lq z3&>Ap=N>{i#yFWB<~NpSkFafQm>px+*w@%A><8>O>@D_yy~~MQ6Za?==7za6x5lZQ z#r@9R;~jh(-@^~^5kAUK^BI1Xe~EvUe~bT^|DOK~acK7_dK^ulYv?+wt#Ka z7PC#;7HnDjp8a$CFZKgRr{k34U8l|2>0EVQbKVe~LX!{?5`rqcDZDTI<8ryet|@U` zEQxQ6pNU_KcikTMpgZQCb${#r(ZhQ}9`Jn8AT&JIkZ8E=4SEgl4^pEPkd~!ONV+1u J2Um~a{{WdhY>EH? delta 1251 zcmY*WTTC2P7(QqA-^=W<>;R=eQ@R5y2EuK*tdK4Dg%%6tvKMX(EYsa#nKI07b_Nvt zppge(G{yYH#MlR;57yQgqUEXTi;2FNcu$N*)0niHm>4fHnm(v!c6lKuCprJ^`@ioy zcl>w!`%CpRvyo^lJ~zLxxRh94SzSr4$yZW+X=OdLpAbvdo^+CV950%RIePk3QY^cmn5hj5 z(NImrV305FK7n6RKOWi|aEE(#Sh1X5j;N^(DV)_!MK|Y)OB3;2S~ise(?!c}X-eKw zR*OZ+D1KB@Y-FzcaEjw=7lzYm$z)%#7|ZWUazmPtlc0&r(vXr%`TP1N4A(N!l3fPJu3}?X4o)&yz7Y;fz_`NrX z_e#U`46eDF@L!LBHcu;7@(qFly_>N2 zP&{%)nf_|L;F-ot?!WM3VH}r5U*%P(W?0iFsP!UxnrYWDXbaXmedsNz!+xRpY2qTg zLNI4QeI5(ZoJ70Ic?fk_Bt}0i(E9e?^z3IBg*YOMd9)F8J;(v4p-KP5m_XqB; x-G2yFXc5MQoUkXnB>Y{{S(5PVd+wKB@(y};yw7=Wdf)dx5T`{=yp9KD(*ILxRQvz{ diff --git a/WordPress/WordPressShareExtension/sk.lproj/Localizable.strings b/WordPress/WordPressShareExtension/sk.lproj/Localizable.strings index b8652cbf37ce0c9397c4df7a2da0ac153d2d2dc9..c7d769b69edfdcba57a9132712597276ba185833 100644 GIT binary patch delta 1399 zcmZWoTWB0r7(QoaFEg2Jc9NK;O^rFty@~F!T8*Y4=2C2$WV6{zHrZUZXLru-PBNL< z&dkPc&_*GO52ZF9MFf56iy$I3eGmmjp-}M6iuk0oP?SDITZ#(OP|wZ=8*mUziivZ!gN;f>&Ae6WzlKZ=EjLiWbTBb+9<+2NXzmbQkAx$56+M2 z7BOu{)l7_NBx^53)ocNc7`jb#du9adS)$Fw%`(Dytm+HZKvhS47-yLoM@Ed2rszF3 zs@UMz7C>=a+Sxrgp2`4tuv=Zlz~A-=TvQ z-v}xjB@L#i~cD#9a;rpro8}6aFaQJ znR<)810X;z_~s-6>)1(y80^rLc(ivJL|7#O3ad4M#=dlLTLme0Bu-+P1yo3Aq&Dcw zfdnft;5jGqxfpv=1yih*S?i2*D%mztib^!Bs{~~W2H4MB+01!&CwzKuM?JJ( zZlV{2=ja#SQ&jUGrI)<)8!vM(uaV!+O{PgYa3n1mA#f z!;j%Lcpd%??{gB@$Q|Z_+%Yc6EpZxWbANEVyq9m`yZI;hL4JrI=V$pv{x$w}{yqLO z{{w%|#ko3NeXdd02d<56*LByf`=GnkJ>VX3kGrSc^B&Ffq35dSC+`7o$a~&O8n(Jy@tH#}0x3C@juT9c4eVcpJTywb# zxl1(_Hgy|*la6O!1`~^4{4aZxl;qD23DtbDPxDnj~tztj2(+lC6cLhW_l)@%g+|(it}Wlq|s=3v7#?kjiM3) zfcK|CY7~`ijL`$VyblVl2O!GN z+?O9WZQ5|u3EiwtCn(WW%S@%nqFq$Bw!!`F&eKuduIaX&PU((8Q~OD&noK7qG6`C< zmMJ`mhu~kn56<(w@DShojDeDfpk<^Z6D=YY)scm4e#d@@_%a5&%5u%REi@%@iX zM`@Wf4X3DV*`&4ow_Pyw>;YnysL`RON9%Q?1#@_)zo-Nws@5Q7=l@BvjMJS^p^opq ztEhAzqE4yO?r7@{wOPwEt>@qd9)OFk9k9&3JWAV1&nEOzMLl4d4mF)jXJ|fM*N8(m zlxEv;t1(iebDg4UcNSGthFI#`AjV1R%&4ZR4qHVw)o7_?k?3ajpr$)&oSCs0a6J%) zE1rHB_YL-zQ5qS@!pD)0DaBoE0R|@MHn`>OE=$?Tze>TW{kx&z8-_dLpudbV zsD&07n=s^S?m;*%CE2_XT=VaMq8NmSr63%VhwrVS7}Hc?$RF8h5Ox+edxzT({O;Kf zpSlylB@}0MiZq6>m>tRv=vOe@5x6P`l`^YZOy!0}ONngye*$;IOHx0q`z9eOja<$P zJs8f2X*lQ0UKYFg$Z!bKTL|nEVSiR;6Y^=Yu@oGsZHUvEIA)b`R+u<~{iupsY(U(qHf?pqs*`GS$)PYPhfW}oWpfT) zKo`;b=o9n{mN3CJ+{7#REIyClz;EIU_!9mW-{B-~fP0!d$|bmY?j*Oyy~TaRUFW{y zzUS7tKV5#;JucOC*fsBZ(RG%W_%J`kf5Csp-{ODc{}OniN7yHf2~$E|cu)97_({0! z?s6C0`OiJCc-A~0dajEuQ4zO_s`!}rs`#1sw-k|b(n)Dm`oQb;j(Kz5)7~}jHSZ0% tM;?;1vMIkH-}DK-xbK92)qksNUtlzl3>X0jyc_shc~;3QHPE`%{{X7FYJ>m) diff --git a/WordPress/WordPressShareExtension/sq.lproj/Localizable.strings b/WordPress/WordPressShareExtension/sq.lproj/Localizable.strings index 44ddf27377cc7f9528c2506dad3dd7a68da6f00d..ed801a46253c802956a0468ded7a8b76729bf272 100644 GIT binary patch delta 1310 zcmZXTOKclO7{~YF$J!gmo0QNdQQE;yOj;USp*$N=DRn|q@^buk;@BN$$M)FkU9&qI zl8UNDq6n!HA|0esi4zqZ5K^LY1qq1*a6qWx07ymR!T}Y*0r94S@k6K*x6#Zu-~9i- z|2NkI*8{JvjGvi1`^@~p;?i<#C7wv8(wS^-b#yJiUMQY}r41F8D^*;pYYqCE_}pB7 z%r0rzs$#tYnubNf;qdw*QZWR}O@a;G%0?kU6~o*vD*a0afSV9&u%sbiVS=pew5kFE zD;B-UkJEq{T3(BzhOvpj0@mwAWndDhCM=V7Z(uhy1FA?ZDnqI65=^#_j)O5x1!b%u zYjuIuFgZ*~Q3=os{K3dQr^zL>MGA35Y*PosXkX6Epfa>IlIeP(m&E&=$pqX)^qdeJ zNp}>jC#ukF*+iykn3)-DHLzvT6~~JgXIneDSrroyV+@Ll((TldZRjW0&gvF2N!wLA zfi$#1@^QRT1yMsMNGIti)HjfpOPbpNRv^~%osEu<b4BGy zi`dRL5=c!qn;J{);Qvrhwn0-5pS{1R9B6U6HzekEXFI@;?>s+3w*=qdp%ym;whh|^ z7GZ+`s>nnv9cuGOM%PkJl?_N6OeT()EkjQwG0{-2H347=Hqd*0JszHZ;5|yOdIss1 z_c4DVQ6+|s0V24L2&5BIil3x?t`qbrIpWLD;b&VN)oKmtRFfa2e|iEm<{cIdXwl8HgfMiypi&66ss+JMPujWBNHW6*@>D>c;WkUnh?qlV}Y@|Y(Tw_yz#N{AZr z!}MFvkTcnOi(c!U^5*8)gNQY$(GPuJ)6bpL^mqRl4SFX=^H1A^sqHALb207?XL9FR zA~lwb%2io9nC|xm!?`$an#Lxx)?ifzOAN9zo7333${~($0EDuOB@;HSDxt_#A7I}q z1@sCu>o)9u2Hc?2o-u0qmgx<7o=*9vsNzb=nbi_xPOzbjF!_TNc!G4_^%4C{dXf)y z;SDlGC%Wsy^b`L8y(BHlnb{6!gH1=D>lFQ^_b7eS9dxHzP`0Mg!~WrmoWyN&Kk_2q z#}Dxl{t3Rozrg*Tg;X3-M=%;23orbIds2aNKn4JMKCUIY*q2JEP8d=ZbU9RdQW%z3tj{ z-FDq^ub*;7H;SN^{gf&QU@e*ueboS6Us delta 1186 zcmY*XO>Em#9DjD~BzBtEW$Q@k+FH#RrCSR{fGDDsx~^NNc5RxErd`seukmZ_#IZB` zrL4U$;DUsNHvU7X(hjf#pjFzcAx=AhgvyCZXdp3xxG{0qKuCxQb{Q`p7Y>&E?Dzlu ze_z{u+kKbjIrZ}V!9&^H@=AUcuN8E%UNp>7*{bB#ZopjkU|v;*wW{M$tyZ-htP?$z z#2X|vOD@pmq=8-2E^3pm>$rKfmrWdisL%$>z9Vo_SUj9PV|&D<+Kg$JGYNuq&9PG{ zT=eqlll9Aeb>z%R)2o=Cmrj|~BB>L&P)?>3GYbh)aW)9N!u7*rp%bnOQ8+F{M=g{@ z7;PXE*{Fy#R7DQ*5Y>*ZBnYj!wnm)>;e{lzNP#Y&CAx{Vxhgds+k+SR7+mMNU&zF3 zYnJI5c~xz_HB~zHtLJ8zP9|$;Xeis{(BKd4T+j2FlVly&ESguJXpPnN*Hy6Fxe06+ zh}9fTk5{YKCaiG%eR;KGSkqm+PXF&D^Ell!6{_5!gL$?66rly9j_8?`cntFL=IihS z7lU2j)3Cw6HBRbI=MrYY&?X$45}PhGmuAyd9aGX^x>UDYo5dBf()_7;&7ksXKXbho zW_hW5aa`9m%A#0Gxtkg;V$)ul)J>|znHa#4xfs)!*6bp7%QdVuOJG*gi5f1EOdNYP z;+b$-p5O-HyfOxJ;V2|SCXn!6ICrW>ZIf})jS_*oN(|POGrdbw>`XLDN((IMnq@7X zU2}2OGiYkcJWt@hKMh^VGz>&WU?4mS--luYES_m<5TnM%8s?dmGK!=7$VFQ${Ss?| zjttfW6W;ZA`5g5q91C|szO4rYr33B-`T`3l9O^I{H|4?p3Y&FUXX?$t45Q3W1|s$L zIw=9U7WxsVFff?1A^%M&VYZ*twE4 zsKb0D)GQNHf1Ce^|BS!Qf5YG5f9C(>|M7)=Px&<8lyB8{(RW3Vgdt&G z_*VEy_)Yjjcq9tq0dY(`EzXNs@w)h>xF_!WBYxsv{x0xA;96iWupf*Bqru)_e{e8( zF}N=Y(zvuPZAzD<9qEyLSdPhYxh!9h-;{62x8+~u$Du&T3Vj@U(AFM~hQ07tkq;wx XBELueR(g~Xg(|-&50r=Sud4kAQzLd5 diff --git a/WordPress/WordPressShareExtension/sv.lproj/Localizable.strings b/WordPress/WordPressShareExtension/sv.lproj/Localizable.strings index 0d73cd3637166fa4f8a6ce21acc1da6c5dfe9fd2..bcbdae193a809aa58d544a9a5038a10ca4932328 100644 GIT binary patch delta 1320 zcmZXSOKclO7{_OJZD%*@$2w`7G$>@6G-(UPZU~4rCxX*L6gLlh{YV_!9ec<2Hk(~* zcWi3ZDpWkwQ%O2h1&I?}5C{p%feS(km-fV=5#rPff+KLKP!S?6V>?2XxQ)JVzQ_Of z|89=m9NStQIlr`=NNTBcCcCnlTgw-U7jUVplS;K_TwFId*!$w^uk|f8N~Yn~46BOj zwo4nhx{fHWy6iSQ&PK(F z#ax1H*iC}shP7T)4^AT8!4=x+jT&{+#yZi9>QHL`i6%R#lW5%3QN=KcyBgxjD-v4(+H)Cy7bQbS+_& zYba)0lvp$!!&aG?E1J_nxQY#HtsCg-&|bl14&zA7ZkW1tjG{J%4z>u=aDDr6Z#0=o z#EWXEOXELKCP)Gdn!o@Sr~(A)zy>a$Xo5vN%Z5R9)u>(gBl65H8EMQkp?cveLc)w177VyX$|zG$q={1$J%=o0K>frbd&A$~ksg zJ;AO^i|k`1ci03PSByZ3D|Gc&#^7P94d5+k=`B8g1+K` z8fRhf5p4n++z z3J8bU#<~x)0^%J&?Th*~ooJLCW4+dianhVN=JPBdffo23iZBd^U=*H)1^6z!0Y8Ix z;63;d{v#+tzwne06o{v1YJ@-6&-a+rM_a$%4JMUfg=6rGA72kWl4}3rR9`(%keA=@kNm53_ z(p_m+dL;MAVfkhGocxLWx%`d%eeX{1&&omNr1GLtP>6C_xu$IUhx{Y{guj9O-v+_~ g6xa-G1%3+t5PTdeh3=?=>Q^%=Rj;boSR;)71^F47Hvj+t delta 1193 zcmY+CZ)h839LJx#T++KFZLU_g`X}4dX3h#*wNBU^Q>g1&!(!Jam!xf)UZ3QiB)44d z;@y+j`o=#4!8fb(w+#k;G4zFFLzs$!2$SIu1@VP{m^fdESOh^)2CE2KpG$_|o8y7! z_x(Me@ArFW5@!;xE)37irZZYLm!F$oC@dD2^kq^i8;5A6S~HK=t%k0~fe7)vx*8k9 zO~+%n)wCR9P(#a*Hr1x-3M*!6#5L_IKH|ELtE)S?VgLrEC=>&`U_zR^uaLAo>N1=% z?Rq{kQyZOohwa4thFT4u$ksbLa)tjSEr_TW)5 z0T+e%Bl($D$uhl~uBx|BU6+o1a3RHga$BRLqlGR*hadWd9S`RxXoa*armJ_{mihjD z7kqm0FtN+j>PoZY&8D>qOTx&ouHH3<4VP5d|C8hyXS<<7Q`mN=uJ%t-R<8LQJ(E$7 zuROK-EPO2_;Bw%8Xp1k6Q$Oj&v{|m@wMbqdfKV(D- z6V$Rfp;w_6;9eb0MP7mHy_>u0D9H<{@G`2r9*iumuu;8&QXQ$^(*}rYc7*c&Sm&~u zOSej{S)bEP%PNsN(Rl3#^BTb=$7S$O=oow!dkntl+Xt`pPJtFpz&G-PI}DWLatj^j z|7NFLVlnF4gqdwe-3uQ@lkk3QK-dlI@*dbP4=J6d%G4$BV|ZU;K1B?JxIA17X&uxO zhjuyBf6%ZNnpEa8jM#k8fK+HKUKnqe+*SS#*VVYrZoHd-81X+!}ZVu+v{i& z-QsK>|JFI5$-||{hO6PB=aGz7(K&PpT}JPrkI{yp2t;TIE#W!gw6HF`F1#sR65bKM z6>f@(m=F(%N5!hTNDTFb8lmE?o?m52?w9YCEAlh)iu|JdvV2m$ zp=?v8l#|Na%J<5KvKiLGZ-n0p{}BEq5{N`2$w)eKBC-}aANe~v5j_|EwD*HP+*gfN XVr#Lpv3FzFVqd8TRHCjxs~`Uh1iyKV diff --git a/WordPress/WordPressShareExtension/th.lproj/Localizable.strings b/WordPress/WordPressShareExtension/th.lproj/Localizable.strings index 5d813df8ef4dc7ddc18efcbbabcea862c7859ad9..4673ace50c1d59b2c446e0c1920ccf31034ba7a0 100644 GIT binary patch delta 1247 zcmbV~OKclO7{@(3`*i3eG;QLzNtxD8XdCRvYWfi6QO7nUjq4_UCyt%2y<>Zo&91e( z4&;Ce6788V2c&|;ol{i~9D3uz71~R0EuiFB1U+z}60>%R2p}Zb)k?E7-{b%PezP~S zH}X+xmcJyv_WB!dUXITtl0&Jt-kx8$vY5V_xwbU1yoj^8e7I07l~-1$D{Ix-`gOJ5 zIHwW%mHZA3$;0QWSBa*p_*%!+Ez>C{RF||YdwYH8aK^&wmZ}?S-5}V}UE-AEnucAq z<*faCkb{%KLdURFjc7QAJC@_Vf+r0PH+6$Jt7&$io2_V+ zPAgO4e1^R1*0RLy+9r0bUUVr*nrhc@OH19lp*wB*K0G4ibLtkM*SXL{vEQwlYpXUZ zgo$lib}6Ylo4VuBW&Xp#l((~z(sUOuvF`LcX*f|?FdbsMJ&na2F-XH*%j%6bPFSW( zOt+X&%?2@6^7b}XTdHoZ^*4G_qxm_tv9Yro9?2E5>Gh$(zAfB+Zj+{^F}kcw(mFhT zxYkd^PG8^p&`Wei8QXaz;zGRBG1yQ?|2CdjZ#Yx|WjZbeXjQ=A6s-vp^tN>9M8I=O z@V3>pvEwo#{UjQ2{=qwA5vG6%G%~nTzQTBScPZM+$&7%lPqGNx7 z-a?nrI68^q=r{_Yd5`&_ChHqRV`vneN5Er`>zarU!z*1B+x~ AtpET3 delta 1219 zcmbu6O>7%Q6vt=Q`)TN~CCx`eQl<$mp(I8rC5`9@b)2*bb=>&7sgrER-m$aFX4mqL z0|6mWdqz~6UZ`@YKoy`~s#d_EH;_1S00a_(6B2}50dWDO3dVLoRBa_BG3Cd z@BiEC+UmM6b?ESsqsN{*9*#}KC#TF4C#PqgKb7d2O`e`hr877?kjqC3XXeiq7Z#VS zNF3nDm@@giR zPUO>c&0nW{91ih6<=uQ!?%~67&rug-00Ha30UoFV3~Im!0bqFFQkt?x-NVdpDa~i7 zOUrC=mf8-%r)$jdy?`H-2Kg&$|AE3>qvSflie;MHS$jR-d-iNXEGYJgMx({HhL(Q5 z6YkLqle9t_F5{mmogE8t;+3h}{+f%`YVHPKfr@VsWzQ?G?^6eqTT+Jqowv@~_?Zip4Mwi-;IA{~F z%pu|GqdX}Y_)N^UF%wqLXX_i7REguwPuUK`bHeg%tmAiMt)N~sigu%JG=?BWooE`3 zph@(|{UPsML2HMj88lK6^@zCkHv5)D z+AA3E<6FkzzZsAHSH|~-YgNVEJ~2Or_MkyDeGkU2(C~Cig@z`CxCq(>qRmrn>JhQM zie)~W^f6f{j!Q}|#eu_U(1gF^4*35Qd;D(f|K{zWFgnx%@sFqfj z$_?c!W%hS9rIyr&`i8oxzNdbm-c-NS`m_UDLZcef&S_V)kF?LV@3q_dgZf^5OpoiU g`g#3r{X=8eNEyud$+#U3hr7a0gvY~We&PZA7xT+vIsgCw diff --git a/WordPress/WordPressShareExtension/tr.lproj/Localizable.strings b/WordPress/WordPressShareExtension/tr.lproj/Localizable.strings index a92068d1f1b581816db21a955517b1b8cbc5d9a4..e18783c30db5b491288719f7582bc5de7ff36f72 100644 GIT binary patch delta 1258 zcmZXSU1%It6vywK+1dHp?2c)hHqn@yY?3CWO$Z1|v}l@ywB0mKvS0b!&CSluX1bG^ zWo9<*qS9KbPl`=Xp+4w?Q1IhHN~AA>;0G$|gHj)S5(QE5#fpL-*b?vV1}XS(nLFp6 zd+z`LJLh`m_0G#PeG|t|oJ>rfnmT=IdS*76N@ucj^W6)JOUt?Z3SBLjY^}I%ohjLH zRXlsVdAhP{TmHJ`6iM0jgMop8jf@| zd!mYZcbXsOtpG2{NP9DKL9JX!hKs$wZl1~ zsr5jO8zWV>;t@aKgFx1q$9Q+3f;+kw(`AznNF7XemT_CIlTKNI&E{(pK&I#hd%Gpl zis5JNFs!Rx@RBy%%$<%0R*CU6&myd3Gx$R;z!Q1`Dq380jTRWu+u=zm0$-{pVNPp@ z!KQ?gO}dUpOBNheJG;-I3}@qU9u!sa5VHB#DWdt^-;G)T?&_^tCPAwv3tS`4i^k!G z8gE)d37%#nli%~;J*hLCPS7$9;OnNF@ItH|`n4fgm0RTkZvaC-!Sm7HST4m%9`%UH z99Fd)Xx4i|sR`ymf7pR5QU^4vN5ms&2zKNJ+{xd1oQs#>ujoPeUYd|I>1wfJQ}{v| zhilv}J#Dq8}E{o5I&x+T?8{${u?;#=79Xb>m3%wlL z4&4gfl@3Vl(!m`&HY~yY+tks(w@dE^;(-G4e*_x5(d3k45F^vFO?8 U$1yS16dQ|e#4g5Ogi8kb7b(1i1poj5 delta 1208 zcmY*YZD`zN9Dkl%(p)aryR5ZcJ6D_bY-yc4R}qxCRlBx!_1dnz*WRwZ^x5U#5a>X%n65$pl%W$r<{%x0qNVj$swmamTS8P3dNcR_Ne^u;{xJ#`yWY zxk<~Vj;Br;Rw)ywL|1JqnIuJ5Q+C&fd+W@ZF~cnzuA534o=KBONTHNS#i!D7TDI3H zJb(w_7T*bH_zt+6?>KCt1R`h+8OTCKq@oJ4k&8UFKOd)F)v;91-WHrrP?HwC#c8S= zL_JpV4BK+yJ}v_9;I4Z!v(*!(;jUk;Y|R_ctd;Zc`SzF2zUG-QM*`!lbNs$;m#*af%5 zAXp(8UY5JV=@_Z$)XOAn%ONEL)}Zn3~N1w~u%dQ+dzRw7J%1ZJfOg!~iXBFZwZ8e=Ng z#X&7F)R{&9G^8=92C6Yd4vN+<_(1G~Pnr(4t)etTIc#e+u-mr4X^H|T_loIMtynb) z*y1$Y5buG9f}@?9(w<)H58zG-|fPO1zvCIx#r@82lt_a9+9$Uj_P^%vShF z+zt6~7+wh94yS^HxPM2u%2Jnl*x4KRj1pz1!ZB1@GHE_ZOAc{Vom#YJSg;W2dJ6fO z{#VfjbP>IWK1IJ^2@_n#ReTa};xqUyd=6j0m+%kx4^HAD+#xQ;#knQ!Y3>c~ZSF(v zGwv#Po%@~p)7R|V<5PV{eM`P|-zG2dQGSm9n*WjC;(z1+5_q9i7#1dkIUy%(2=5A4 zgpY+AO?NfrUJ{qYC&Uf$HSt^Vn)tK$t9a9&@o)OSky@m~QeL9cbJBN#J%Pc%e83I7 z5_mIkHLxYO$oI>`^0V?4`QKoB^Zw?O&DTQDht7pAg|3HghP%RM_{s2Tct%nG18MxHTCmR9Er!I*%gi}v z{+Hi(W~*nbrvjemckO;*Pe-TE-`N!ihQi%Fk!Y-;H{REuNDjzKN=1X|jJ9`3$206p zyH<4-6kW42nvsS%)3RGyTKYSYs>#rwvo+JOqV2Mc(q_JxlvepnC=bh;E-N~MmS!U> z+NP?|meUqKPkV43+vJZ2QPvzrutPJ3l2Wx7s(E?PE@{I;PB�sY%J*z5EKjrL8Am zqpre1O-EL5hjYe><0MH+b$E~&J>F3A}G$)&j$FZhEPrHPjvKNJ=ZqH2wpnQz1&GhAE9Qs5Aws9A#1#Wy2=i;%dYS zyM9%o>;tWGxump#5Sv~QV0T+Cr#n+y`#;p)5@;;a(KSh_ig0>(NKV`7Vjb<7-d~IN zF)M1;5pD<;%|aepwsR3+2IY}69bBL{G{n1es&hd~U?M@})H03kux9HhMs5J~$ytQG zLe`reN<}=OZxbv!JaQE_slCVip($~;sO%pNZbs;8=vKiqawT^`%`OH{XTazm7J)*PKC za(g2l-*sOlk$6yH$*rd50*K^NrbOjNDt;+&D1Jc+UCzFqn!G#x_2dub%Fg$)EeVG| z=PK$77;UqenbL zYRnbneP;*W8$O73`X-mrZsy$+>frC_94V?jY;uB|TwHQ188ACrnof8{@irw;Me0|Y zr5~f+bSu4;PSCH>$LROzi}W0Qm%hhTGF8muOe^y=6JZjJ&e+T?<~|EpH`~NM$!=rY z*gb5N?Pp(M53wiNbL@BQZ>|Z()!=G&?Qp&2I`5iu-RIVEwcHl2o!i3&xH$JE_ak?e zyUyL_{^FZ?KOf~yeujUC|BC;HpXV3&Yy2Pl-=H3NfEPRqir`gn5}XESzz5(X@CmpG rE`b~1o=_=l75ari;SJ$U;X~nPkrvm9ZDOyO6m6F{CQjkuin@ORe{10! delta 1252 zcmY*WZA=?w9KYv!FFn|@W55PDwsSZvK`S*H7lT{s*b9ucwAa!?q2;dk(B5e8YVV2` zHZT&RfnT=a`kzu*U#xiF2om@JDQ_L6BbH;nV1-j?V+AMWn| z{C~gy@AvzcYD=~AfmZ(Dq0X+u-A8=>ozW&(2U_3D-$;oyF4yV%U(UDAo zZ$uJkd_2K#@(4NIFoi-cqe}`@LZUPZLq7PDIVh&3ysD*y{rS9}Pw+b|L^Z0THlRVr zBdCLlZi{tl2F#m6x2laqf>2TfT?>Vzl#$@K;^v*0IntpTS=BJYA=S*l(DPDqL<|SJ zdxJ2mk3zH?xX?YS9-X4<&|_5Ha~VP;Bx00M35`e*0+Azh!XQkcIUa;&A+HIhUKZRd z!VFBBgGZpEN`gOUs=8*Nr^qJsA!vLu(o>K#s*z6c{QWQ6rLH~O-);G{Y`NX;n606# zA60?vZIKQ*EEO_lg5P`}hW%p~R` z*bWutz?PZ>Uv&VQ$uwp(R1+E&6~`_#O1|QSIO&0)noJA(bj^gC*=rAt zg>#Bz!m`pn9Jk<;vM_F63WmL?1n;s^-+_E2*BJFGieOr+=nLhGf|Qa}t#7}gnnI6d z1_5qsi#mAASK$||h&_Zb{w;iU?6U0tITn>Cu1;K20x$TMm+EJ4=sb^xxEgfaxdE-R zjp!riGuxEp`2bw}C;6@#arv(JDklSDmwXi`>Dl#r4XB@MsF4H4(lt5FmP+#6h2CG} z;`&Ji-Jw0m%hf-W{Vxa)oa!9gi>F)Q6V8X5QzOZU3)gW?XjU*oS=>A)|E~1E?ic5| zQW4!{T9D4{nv})w?=h&s(S^R6Wm5Jt#2O#0bN5LwvYWdiBuoc3~;*Ej}BjnR- zv+tCfA7BMrgm^LgnvIp?iv^d?SJ_cL5Znd`58BJ{D9X4{C0mL1FkH2Y<`N1mbnFNlyDM7;tgV%SRpYov@E%wO zAA>dU2g#95WIK7743b0S6nTbxpFBr?L!KvpB5#s^IW{^P9D?JJW61HcW0B%0Hx-~( zsUNAU)OG6aBu&xP^d9;k9iU@$o}Q*>=sCJXpQG29O-vor%Cs^2nJ&i9gqS{NhIyO$ zlKGXn&fI4HW@*;Vifok4vd7qIc7|PI-(){vKV!dOe`D`Bw>v$~)6TD*x45UdcFxOn XaUwUsO>-x>C8GS0z?y$qmvNO8{ z3S!fWEmgUkqQsacMvaNq1Tj8nj6UK+qX{-dt2Ng4!M@m}ZPFNvIJ1kU#!NDqIp=); z^Z)<8Z@z54Y{~6>uB-d`p58vbzt83NczynXKya{jC^S40j*JRoRD!X1LLN&h=sbD6 ztJswh6exvJ+SNJ;iM7vKqHe@fuZG!1066XWE3N?mj%5@mQp^i zkcDWJsHq&tI~wsOgtQeCrqfzF&>`#NvaTby?etuywKCW#$p&zl3?dx2rA@zMX_u#}ap&?(C7LAm zRUELmK`^Cd(m*%NK>!JuhGutA20v6A@~0$oKyqLL9%#nWRKHI)6gX&20N{mjh$`8M z=6Et1aAs%DB;d=_zkoVvXywhzOOtDq=%LrbaH7h4E90EqnEpY6>%j|S6*FjOW%<Y-iJD=zh2Ll-=x=2@{E7a3me3&`aJ^f5h;fq~|VxBFvXp$ON`p-8q zgO(=)&SWlU|7i9!?Bvhwfoz~1b5iUsT(?riJk3iLXRaOp=LD+j63iq{7F2F&*Llj2lytwh2O*P6NN+xagb;t9w!1sm{16VxJB%c4Cx^2 z$Of{NY$JQfAUQ&wBwr%mAlJ$7$U8Q|R%<(Ao9nQ>W!tcA*>17>`#A2X=CP(fVconHx{R(}TkQg&7Syf3EOqnSq)n65iBA$YiJc}+ z)@H4WR@8N6(2ldAf=b1oG(6oGLX0NeUYC8? zh0X+ zj3jEPL^@)`%?n~0h02$FuDqx)XVX(ZfCZA>@9&Z%Uei}G;>k|)VqBD!kse9bc!zE# zg++7K(fNVm({k_+p~CTjo^u=E&s<06ir+_^?E!yO*d>57*CiJeHt?~fw{ghafWKlM z!B@XxH9FwC5^uH>ekBCDvkexM{ujzfW>>mg_*^~(BPc1V=c)nvrbeV zDCt0w0UvR})exFI=>9Elo4s26CbG&cHJ6HwUPFU#d|>5~5ntYh-+(o^6LLfn6HGNu z>#X`8{y{$t(3AS@VZ6(H7s<(z~z{p%BTGm_+dVJRknKH5nKXpKHcU!XC)Mt@3g!y3rLX4nq< zpdC7)9|qw9d=0(_zl68pUHA*U$LwRem|n)qNKBf^GPBHC<|4Dsyv2OM+%ZFQz4=A+ fHS;!G&o;76>~Xe}?PVv~B0CRC4@m&5R@D3tL;aVX diff --git a/WordPress/WordPressTodayWidget/ar.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/ar.lproj/Localizable.strings index 5c8b0f23d782e17fb9869caa787d98b4d3b3fb58..a111698232fd226e32f08c1bfd829becba04751d 100644 GIT binary patch delta 94 zcmbQlIEhg|sURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE{kGW_D_EgmZpwZfaghacEd( uYI*TQJ2_=7HcK`aHZL|OHgz_wbT(Hu6ClH#O&`SN5R_8T)VG;fpacL0sTcnM delta 94 zcmbQlIEm3NsURn_xWvHV3L_IU3o9EtM}%{JZf=K6#-~37-#?h diff --git a/WordPress/WordPressTodayWidget/cs.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/cs.lproj/Localizable.strings index 7af5b4db942e7ac7bc8714619961a5829252bc61..c20af7a779b7d12bad6096faa57812e7fd2031f1 100644 GIT binary patch delta 103 zcmdnMxPehWsURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE{kGW_D_EgmZpwZfaghacEd( zYI*TQCleiShJ1!xhE#?;h7yK{jFAkfnG8`tp(KVPhD3%cu*6#qK`8}IeYeDk{fYo; C93A!m delta 87 zcmdnMxPehWsURn_xWvHV3L_IU3o9EtM}%{JZfoS&PUnpaXB8kU(_UK|mb zTb`OzURf0Ck)M{98R3_ol9`y2SQ_e{pHrUBAtXDz8mKo}vpHrUBAtoS&PUnpaXB8kU(_UYyC` z#E{BR%X^U_m`I0U7XHTA9i7{Gv$5kfO?Kxr5i F0RYHa9`FDF diff --git a/WordPress/WordPressTodayWidget/de.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/de.lproj/Localizable.strings index 9673d9000898c02e304f8ad8d8df3cb4d002bc5b..c4a2a67baf298712a02c8b0db2290f538434dcf1 100644 GIT binary patch delta 86 zcmeBX>}J$YD#*z!E-^5;!pOwT!pg?Z5fPSIoLQ1zR2=G)nVni3;hdkFo0?Zr92%CH lT3$TSNnpRYrmdYV0rJ$*A;Xg4;5dgD29321v delta 86 zcmeBX>}Iq|D#*z!E-^5;!pOwT!pg?Z5#gMlo12H{a R3}C>>2%#BRp)`!r2LQRg5Rw1@ literal 84 zcmYc)$jK}&F)+Bo$i&P7!V%8-xw)x%CB+e8nZ=nU`9;N{KAG96#i3!DspZ8Sf>O$w R3}C>>2%#BRp)`!r2LQSr5S0J` diff --git a/WordPress/WordPressTodayWidget/en-CA.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/en-CA.lproj/Localizable.strings index a8d22f8322ff950e12cababb3aa4c911130bb4a7..e92df4e501e4e65343f11e69caf45b5ce7a54645 100644 GIT binary patch literal 84 zcmYc)$jK}&F)+Bo$i&P7!VzJa#hE4fMa7{$nc1nu5zhI!xv6<2#i3!DspZ8Sf>H{a R3}C>>2%#BRp)`!r2LQRg5Rw1@ literal 84 zcmYc)$jK}&F)+Bo$i&P7!V%8-xw)x%CB+e8nZ=nU`9;N{KAG96#i3!DspZ8Sf>O$w R3}C>>2%#BRp)`!r2LQSr5S0J` diff --git a/WordPress/WordPressTodayWidget/en-GB.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/en-GB.lproj/Localizable.strings index a8d22f8322ff950e12cababb3aa4c911130bb4a7..e92df4e501e4e65343f11e69caf45b5ce7a54645 100644 GIT binary patch literal 84 zcmYc)$jK}&F)+Bo$i&P7!VzJa#hE4fMa7{$nc1nu5zhI!xv6<2#i3!DspZ8Sf>H{a R3}C>>2%#BRp)`!r2LQRg5Rw1@ literal 84 zcmYc)$jK}&F)+Bo$i&P7!V%8-xw)x%CB+e8nZ=nU`9;N{KAG96#i3!DspZ8Sf>O$w R3}C>>2%#BRp)`!r2LQSr5S0J` diff --git a/WordPress/WordPressTodayWidget/es.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/es.lproj/Localizable.strings index 898060fbba0bc9d38af155ceee441306c1b6b1e8..daef8b6ef76ede286416dd624a744f624d945459 100644 GIT binary patch literal 128 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UK|CM zP0T9+%J`-#q?Z<#Bt`?3097OwW#$)$L*$D&1f>)-^{t%!8Nh&%5kfO?LTMNk4ghYH BA+!Jh literal 128 zcmYc)$jK}&F)+Bo$i&RT%ErzS;hdkFo0?Zr91)gToLQ1zR2=G)nVni38kU(_UK|aS z1xh9sW#$)0ffXd?m82F&_@*kPmll^KhC{@PIRvGYHTA9C{29Q2kr6^Oa6)Mq6%GJ% C9U;2_ diff --git a/WordPress/WordPressTodayWidget/fr.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/fr.lproj/Localizable.strings index 4c51ca57eb6d2d997742853dcb8d670f1f1c29aa..3bd523fe8bd1c0f8337efdd7af1b5099aef05cda 100644 GIT binary patch literal 129 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UK|OQ zO)V`dPGj&=kYq??$YjW6NR5H2O3W-uEe;7QO)cgSlv2>tw{#0;00Txw2+hC=rD0SA E00O!nwg3PC delta 83 zcmZo@Or8r1** diff --git a/WordPress/WordPressTodayWidget/he.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/he.lproj/Localizable.strings index 82dc0ba93173ab1c850dd80d351b9bafcb2ce76a..53ebdb678c65e82cde621429a6b502e0e45ecfb7 100644 GIT binary patch delta 101 zcmbQnIE_(1sURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE{kGW_D_EgmZpwZfaghacEd( zYI*TQ8yT%M)>o{TSg*2P1mag&te07zu-;_7%b>vefb|)K%^@hIps8=;J+V{~0Kuyw A;s5{u delta 101 zcmbQnIE~RJsURn_xWvHV3L_IU3o9EtM}%{JZfnqkvtXEkt0`aSf`ZBUvte07zu-;_7%b>vefb|)K%^@hItf_C~Ik8j`0L#lF A)&Kwi diff --git a/WordPress/WordPressTodayWidget/hr.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/hr.lproj/Localizable.strings index a7e9ae7aa18efe05869527cd290cd561e2e915e9..c1327865eb3bbaee2689f52f3c25e374332ad9e0 100644 GIT binary patch literal 119 zcmYc)$jK}&F)+Bo$i&RT%EZPV5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UK|sU zU!0X%l39|Pla(3ioez>qEXs@sC`wJwNlnS*5R_8T)VFbC00Txw2+hC&rD2pm0ND^8 ANdN!< literal 119 zcmYc)$jK}&F)+Bo$i&RT%Ertd;hdkFo0?Zr91)gToLQ1zR2=G)nVni38kU(_UL5J2 z50XqQ%8UufFV0FW$t+3D$;ylfC`wJwNlnS*5R_8Z)VFkF00Txw2+hC&rD2pm0N8RK AN&o-= diff --git a/WordPress/WordPressTodayWidget/hu.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/hu.lproj/Localizable.strings index 3c6e8e2b7fffdbcc59a4c83029250c265f8fcfaa..b2b74af3667aa2c465036dc328b33c6378ae0664 100644 GIT binary patch delta 85 zcmZ3$xPZ|qsURn_xWvHV3L_IU3o8>Fdqh}fab`(=QE{kGW_D_EgmZpwZfaghacEd( nYI$)cgAc<)h7yK+hIEERApMykd!oMd#8^2N1x#Ae$g6N delta 93 zcmZ3$xPZ|ssURn_xWvHV3L_IU3o9EldxUd-ZfoS&PUnpaXB8kU(_UK|yW znwMUhmsOgV9ui!doft15=$#LePb|{ShB6|(Aqo=nI0U5>H1)0QgBiepkr6^Oa6)Mq G6$=1x(<6%j literal 134 zcmYc)$jK}&F)+Bo$i&RT%ErzS;hdkFo0?Zr91)gToLQ1zR2=G)nVni38kU(_UK}qV z=$#LePAt;RhBBf8QuESF^Ri0w(nEqvvlAn|A)LfK4nZkpO?_v-U|)eUD#*z!E-^5;!pOwT!pg?Z5fPSIoLQ1zR2=G)nVni3;hdkFo0?Zr92%CH uT3$TSMoJ;Zu_U83J+U}7Hzl(u$}K0gq$D#hJ+X*GP)b2l-^_DjrXm1PX&xm2 delta 91 zcmeBT>|(S@D#*z!E-^5;!pOwT!pg?Z5#gMlo12-iko03^HQC~_p$}K0gq$D#hJ+X*GP)b=--^O`jrXm1Z2_72& diff --git a/WordPress/WordPressTodayWidget/it.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/it.lproj/Localizable.strings index 2ec7b01d80c88a4eabb2e5a8c3cc2262a0a1ec48..474e86597768a0f6512ee70025d82f980d190ade 100644 GIT binary patch literal 120 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UK|CM oO$5qkhJfT@(wSjkiBt|jDFsb^D|-(HFkoba&oS&PUnpaXB8kU(_UYy*e z73$x>nrz?#gt;jOn++Zsd^R|d+>udfm0G|dD5apOZ)WSp00xYV5SoD#O2a5$0CsO3 AA^-pY literal 118 zcmYc)$jK}&F)+Bo$i&RT%ErzS;hdkFo0?Zr91)gToLQ1zR2=G)nVni38kU(_UYugE z+2EnUXM+>TU0R|34XnuqEudfm0G|dD5b2aZ(;Ao00xYV5SoD#O2a5$0FXx= ADF6Tf diff --git a/WordPress/WordPressTodayWidget/ko.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/ko.lproj/Localizable.strings index 797229c46c808b18628031d93187d118851947a3..9d4b3b2f33a9f01c362da4b7d83ebad582869b91 100644 GIT binary patch delta 83 zcmd1H^Gzzq$t*50Fu20V#LU9V#?BEDmRX!xl3!FD>XVtBS{&h=pPQSSS5h1rmYG^! noV-VKx5e=Z$tSvxx*VI5v{`r^L*m{K9D-5`n)+t86MYo{*mEAm delta 83 zcmd1H^Gzzq$t*50Fu20V#LU9V#?BGpoS&PUnpaXB5tdn;S(0B=9O{#qomw0kmYG^! noU~bZ9YgXS&D|EqCnTTfKI(F8O5)xR9D-8Hn))Wz6MYo{%g`Rg diff --git a/WordPress/WordPressTodayWidget/nb.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/nb.lproj/Localizable.strings index 379d03a244ff99fa84401187f0001a303e31e3a5..ae8b56a44e809858a2a2e69c49c847980b4d2bec 100644 GIT binary patch literal 133 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UYx<; z#E{BR%Fnimn2nwVUYnOYnfo|;;eo>-Qe#~~=Cps8=^ IHZf5V0Atc5PXGV_ delta 85 zcmZo-Y+^J|D#*z!E-^5;!pOwT!pg?Z5#gMlo12oS&PUnpaXB8kU(_UL56} d58@>jRi$zWN-1dSGk^gjBZOvPgVHd{3IIc@6-fX9 literal 96 zcmYc)$jK}&F)+Bo$i&RT3d9l4`MJ5Nc_qaWVVT95CHY0gp+1?}sl}mTnW^Q)QQr9= c$;6_nR1QHYWlensFkoba&Clp&EJ2gG7zW+-CFClp&EJ2gG7zW+-CFtcL|=@st5qJ#~6hG delta 109 zcmZ3+xQx*)sURn_xWvHV3L_IU3o9EtM}%{JZfdXu^6y8uvoBIOw?DA&Sa4Xa_m?ffs%GWDF+sB4nZkpO?|iM HiLHtNgiIQ? diff --git a/WordPress/WordPressTodayWidget/sk.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/sk.lproj/Localizable.strings index be565d6da444a237ee85cc372b5307d97f9d5757..ceb87203873a797645dde1d52f76970c345f90b6 100644 GIT binary patch literal 140 zcmYc)$jK}&F)+Bo$i&RT%EZPV5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UYyO~ z$MBG$j4_d+gdvroj3JNVEkiOxW+sC-Lq0<;P$&;5@sOd2AvG#0KdC6ODm5=NkwZ{Q VK~vu?k^u}D86h+S2b6|UDF7DIAcz0} delta 96 zcmeBS>|u0DD#*z!E-^5;!pOwT!pg?X9^ssyo12sov5$C7aEXQl$FXMD5b2aZ|*TMRS^Im`5D*% diff --git a/WordPress/WordPressTodayWidget/sv.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/sv.lproj/Localizable.strings index e6b410e39f7783d64caac1ffc58113f63d327fe0..2de47e3c5590811163dde0ce68cf87d7811934b5 100644 GIT binary patch delta 89 zcmbQlIEhg|sURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE{kGW_D_EgmZpwZfaghacEd( nYI*TQYZbX@Z-`K0QEE{nP<38rUV35?hoF>#roKb)#6m>?8CD&h delta 89 zcmbQlIEm3ZsURn_xWvHV3L_IU3o9EtM}%{JZf?A>SQ| diff --git a/WordPress/WordPressTodayWidget/th.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/th.lproj/Localizable.strings index 3463073d4d8a12d186a77a3f0c71d50b1cfdca81..421f78f5118ca47451daabd5971b3f86e2d64b96 100644 GIT binary patch delta 95 zcmbQmIEzs~sURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE{kGW_D_EgmZpwZfaghacEd( xYI*TQ2Q`%pJ{CT8J|jLwJ_kN+K6gIJR6a%^SD8NMF1LI7(M_1 diff --git a/WordPress/WordPressTodayWidget/tr.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/tr.lproj/Localizable.strings index a4132157b027b48042369e50522444a73493f64b..e8645db94d514b8e1c46ec502f6b6c2a04cc4b8f 100644 GIT binary patch delta 76 zcmZ3*xQbCfsURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE{kGW_D_EgmZpwZfaghacEd( fYI*TQ3nPw*$o!(x+?>RTnbNEZn))7z6FU_Fv4t5g delta 76 zcmZ3*xQfvtsURn_xWvHV3L_IU3o9EtM}%{JZfXVtBS{&h=pPQSSS5h1rmYG^! noZP)XdQoaYVsBhh_mS>h$>~qaxl;=`1f>)-_023N`YHkd%J?1m delta 83 zcmd1H^Gzzq$t*50Fu20V#LU9V#?BGpoS&PUnpaXB5tdn;S(0B=9O{#qomw0kmYG^! noYZ}!dslMz{^&)i1&O_J$>~qaxl;=`1f`TU^-ZiN`YHkd(5)T( diff --git a/WordPress/WordPressTodayWidget/zh-Hant.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/zh-Hant.lproj/Localizable.strings index ea493c3074944d33146bb0e50154e11bb4cdf8c1..9b41f3f4d564a25f0683797c0ffe1584c8e0b19f 100644 GIT binary patch delta 85 zcmXRY@J}kp$t*50Fu20V#LU9V#?BEDmRX!xl3!FD>XVtBS{&h=pPQSSS5h1rmYG^! poYbWiy(l@EvwK!*MN(;G7en&Ads8>2R&WSPDQN1OSWom<1OV#F9ohf@ delta 85 zcmXRY@J}kp$t*50Fu20V#LU9V#?BGpoS&PUnpaXB5tdn;S(0B=9O{#qomw0kmYG^! poKzaw#gNpc6}>1qnX`LVYDMzAds8>2R&WSPDQoJRSWfg;1OVq49oql^ From f0bffaaf1d10b6983a5bf8a5cfbe3318d294efa5 Mon Sep 17 00:00:00 2001 From: Jeremy Massel Date: Fri, 2 Apr 2021 20:50:30 -0600 Subject: [PATCH 11/17] Update Localizations --- .../ar.lproj/Localizable.strings | Bin 4067 -> 4067 bytes .../bg.lproj/Localizable.strings | Bin 3189 -> 3189 bytes .../cs.lproj/Localizable.strings | Bin 4264 -> 4264 bytes .../cy.lproj/Localizable.strings | Bin 2837 -> 2837 bytes .../da.lproj/Localizable.strings | Bin 2830 -> 2830 bytes .../de.lproj/Localizable.strings | Bin 4485 -> 4485 bytes .../en-AU.lproj/Localizable.strings | Bin 2674 -> 2674 bytes .../en-CA.lproj/Localizable.strings | Bin 2740 -> 2740 bytes .../en-GB.lproj/Localizable.strings | Bin 2682 -> 2682 bytes .../es.lproj/Localizable.strings | Bin 3507 -> 3507 bytes .../fr.lproj/Localizable.strings | Bin 4687 -> 4687 bytes .../he.lproj/Localizable.strings | Bin 3994 -> 3994 bytes .../hr.lproj/Localizable.strings | Bin 2845 -> 2845 bytes .../hu.lproj/Localizable.strings | Bin 2914 -> 2914 bytes .../id.lproj/Localizable.strings | Bin 3018 -> 3018 bytes .../is.lproj/Localizable.strings | Bin 3005 -> 3005 bytes .../it.lproj/Localizable.strings | Bin 3444 -> 3444 bytes .../ja.lproj/Localizable.strings | Bin 3204 -> 3204 bytes .../ko.lproj/Localizable.strings | Bin 3056 -> 3056 bytes .../nb.lproj/Localizable.strings | Bin 3442 -> 3442 bytes .../nl.lproj/Localizable.strings | Bin 3350 -> 3350 bytes .../pl.lproj/Localizable.strings | Bin 2795 -> 2795 bytes .../pt-BR.lproj/Localizable.strings | Bin 3960 -> 3960 bytes .../pt.lproj/Localizable.strings | Bin 3314 -> 3314 bytes .../ro.lproj/Localizable.strings | Bin 4337 -> 4337 bytes .../ru.lproj/Localizable.strings | Bin 4532 -> 4532 bytes .../sk.lproj/Localizable.strings | Bin 4484 -> 4484 bytes .../sq.lproj/Localizable.strings | Bin 4377 -> 4377 bytes .../sv.lproj/Localizable.strings | Bin 4501 -> 4501 bytes .../th.lproj/Localizable.strings | Bin 2918 -> 2918 bytes .../tr.lproj/Localizable.strings | Bin 4260 -> 4260 bytes .../zh-Hans.lproj/Localizable.strings | Bin 2712 -> 2712 bytes .../zh-Hant.lproj/Localizable.strings | Bin 2694 -> 2694 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 130 -> 130 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 4ecf410d450a897387bad5a833024956cee9a609..8db0d98b98019966e2411ef783c515093618b2ef 100644 GIT binary patch delta 1343 zcmZ8hT}&KR6rSI^yED7P2(*^smZ4CVrTn-+DPR*_*hPv+ad%;X1=e9_SO$if&CURB zG}5MtNn^03Co$R>eZpuT8Z8=MOf-#8CibO7W2~m84_2d3iaz;scXlz+o6MZK=brC7 z-}!Db_v`N0U76V&emwX6NS9&&mrKMP1A;Y0E46s!qfSnOG+@!XUDQ zMC1sQun1dfN{fd=l9HDfZ7FA3wzQVhO<7Tu*+JRJsJdok+uPd{2{~)c#h2tf-b-pe zZ|0{4Wn0af`9fOsPvmr_2!b4W80N|5?ZO(G2a1a@d0QIQjFrTIoLQNTX_+Ny&@^n-u&2U`BH38>bX3u7X&keGO+DY27*n6K;}fyb zR7_np*Hs6O`N!85bj?~S&R6V=hfYo86g*?Oz>h`wg?~MW7CnG&ssZb*E9!+KjJI;S zs6`r+SJh-pl@-Y}V2*CAN{eEdzT~lK^h1Q1seEWiwKGmjXCT}Y-lI>D#~r>0WCgS^ zM~!3|Ix~tbE?viTB43c?tgIRHCG#Y!bTw(QBJ|&DoQ$iwnz84eRuxT_&gE>)G^|8i zURUR1s=bysB-?ZllO;Rg0v~`^TwQRRtM4C1U1%6ZO|b&CqtmE?kWd(n;CBE;P!x6J z7(#<6m~|2@=oA`4BPeW&4RG1@D17Q=t1%qchB0Os7qy`dQ*46od}qY}=OM-J^D1h= zeVQ@J0DR&)3qPXAoLno$K8YgmjW2by)T|G;Dl!hK=mc)ik3Z{S!`BAALOpGY)o{;u z2n@ceO2a1+{Dd)e2*(~Y0y`*pY#HM^oJ=bgS3GG(rxpCsih29s66c58s0Kn@ExhR2 z?OJqbTAcStX;a4Nn5fgq2g}Zs4`3VxVN0mNa%%C&Jvasre1R5^AI^CncP(RN7mC7b z!b$j@OTsAbyXW13&)flcn~#!>2ZLZY8TiR{jC=&<_(r^|c4e>!-6#ae-2m@%wJxJ% z1(3eOFvABN=dk10%?>CaKdx`XHuS;;cVM$<+kt8~Q6R1o*NKmakBQHTJH)SKEqR4} zmE0x2Ccme=R3%kIbxt zyW4%){igd}_n!L?&vDNw&%DR-yx@7=bJOz$cb?ngu5r8EU2dOm=P&ZN_^@~ delta 1403 zcmYjPT}&fY6lQ*UJDq8}vyc^+S{VMe77Eyfg@x!tw=K&*Y-uT_Kpi?m8Fo6;bf&DR zS%QfsChlhOBpQuRCJ>{EaUnkWV4@GcsM(;=2lc`1!)nZG;@`%^O}x`qV3L`0?>*;! z=li}hcbo1u-CAgxoVgO4jVI=k^QndO;?i>FX>lbh$*Z|FW&Ns}2M~% z))Xx#6m-Mv?(SZilqE$JrVFN`YsP$7H07LL+{Cq0x*%?diYl(CvS28tY|MuwNifA6 z>=QmJ!?(k2x(*yf?L;~z=k*O)m{7E<8U9RAkc#4}S#BYe3aTzjvXtQ)64j*;ET;lO zyDAB*iYglm6SxMm!i3;`y8Ws6l>Cgj9FxsbQ4>tPT%L@`t71ttlT{HJ{`9bHX3JvA z^zh~Qthgb=4%OOdFJ zFd9Q4xZv=gQBgbU$LAsBuMyB7&ihalezJ#P4o$KgxdbQUPUp)v{P2UV8Sgt#0PioO z2z=o<@Z|Bn3k5N=AZB7=M$x5e{kYRBtmFGVIPXINoVViRXutyL!pCE%2cCC$&sj|( zXb2~p^Elx{BPfEaqqyGE*NVFFY7`D^t@a@9K7t0}PcB(iQpJP}R+6^)px+fHS|P~w z!!Y6n?HKxqUmxxeL}BFD`9^rw6@dFLzSiP2fXR)aOFI7;-dN7{!J2ay-eWom52R2( zrSkzCpM)IO2;VTx4heJV#cvcIFrDx{dltUsyjzut4Pr+}aHrvQ{OLu}YWphP8m4Bm z=2wCuP7@784{?!LCSD?5CEg`IBMylN#J?m*){!2vhwLMh>o3T@iQi~&Ah{W#C*d1!u;;I?1(uG$8|QyPOu7loqd_zV{fyc zv-jD*xk+w;+vfJTpPlEO)6SdDH=JL)uDRZJedq3Xr`#*<8}2>#r!DTon({*ul~|)y JV>P(%{Rh=4e-;1$ diff --git a/WordPress/WordPressShareExtension/bg.lproj/Localizable.strings b/WordPress/WordPressShareExtension/bg.lproj/Localizable.strings index a9a966c3f87cc213f62fa86515187b0027d11ed4..789099c0e04ae37bba5a5c4b135f6f032e60014a 100644 GIT binary patch delta 1408 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 V{Ca#v@;{0k{D&_w&wSz^{S6)4n%w{Z diff --git a/WordPress/WordPressShareExtension/cs.lproj/Localizable.strings b/WordPress/WordPressShareExtension/cs.lproj/Localizable.strings index b5a6049273b9a5723a151659ab2542e14ebdf2e7..db788ab7b9002ff0e7566008ab7aa377491ecad9 100644 GIT binary patch delta 1308 zcmY*YTWB0r7(R2`OLlg4k~A@CjhWP@Es-Roibidrxm8-yH10L`?b)5P*~v_1)|oR~ zH=;rMQc+9OBR&bfD8ynztp#6So8^DCBvb)wIWV7o{x!(Qy`>r1EcqBox^V;9aEab3rq8o`t-I&Lkm zc4R7+7!SqiZ!klo_g2tQxzd)oGhOSN&sHq*nn zXwD^#Vp$t;Y)Wi8HKgkr1=`bNxUvg}mJZaMUy^b3~Z zl>>bNGKikdRCLg|m(T&EI+TAs7z;dL&+$(K-_C$9YZK+B>41wiftN`xNwBUtHk%g? zHRn}zuYKKP$9{>8iZe}(rwA?XLhcFzOm;))<__-myU!(9kGOv|w^uqd4i?wPF`ag6 z8eYVPy-+t#^Xj9?tBHaCk1?Af7AeyCvqU$rcCJDV$M(`GTqO%hLVefPsIyy#)Ad)S&X#x~>xo0a~Em(V2aqR+h*G-6z2i2WWa#t7`IiCpv- z++9}Y+X$KfHY?DtT0%1r2&fnkRFxBKM|pt_B%W<7Lu7lGJO+56$vzMDcUdS4L>vHs ze4yq)%mk7vI;2;)1Bh|4{p?<-gT2?#%{HSy0Qe}xEkM{|H^Tc^I@I3=D>7tKA6v$X zQ^izsbQ7;Qss>t4vcYHybRC56PWDLd?y(-T{VyQ$%bW}{;m3pPz+Q_bV&Iw_4wX=zrvB$02WyV9>AKGYD(g*L*UhHr)+ zM6wYa`6lvRWGmVjJrjL1dO5lo-HQGk{j;IDVK5esHN_6aGO?xDbs5R8$miwPWa$C8l{H8ogv?qoWrxQzw3yDwIB~|+ejNglv delta 1389 zcmYk5U1%It6vywK+1>2y?8hXrw#^c9m!wJ4kE8*yu~kZ%LwR{QSaV;T&Bms;snJ)}E{AJdWLog3>naF6o+G z){JFRHEm~LU|``iQ#DG?R2|JU?AcN3uw~P#gLcX!v_>_ZF6oTen#1hb5mhA)UFJ7% zpIA`#@y~tjT*7UW`6OF0Ym7{4Mx~(a8X~GiOHSho;#PH&s!S~?9ht2o8ET{sk$t*K zN}A5>xk=E#R4@>~?%VfFdWya1EGC)bS_W~>Op58O=*%azVwsGZhQkbJW|SI5rsvXDozP{f8S~9R(^2{)EdrLrsOjpe z(dQ5k2;u*T?T@E2$;pBeYx3Aeb*UcbZ~MBBbUp%Xhv*@|=RsR+-a+i9!-CQU``F9B z6$2zQQmyK+!`+WG@b>+GDev;l?QZv2J-R6{T2MN@rG|EH;~V%O9~9!jbeb;P&=T^y zd-9p83NNJrB%5Sl$22l&&CyxTdjn*Ot}uQ*a9=c`;HPjupO*c6B9;hdlkSqGRVcqG z4f4OGPX1>L1=$Uz&(K%1nOKOH?SGc<-M(lJGw{Ds)z{be)<`3lk@s(QK#nno^Kf`A5L6V)2! zCjT>#7+D%IF-|+TO zAOA5t#BWJ^12Z%AC5!UAQpeE}jA9`dMuYAPa~0S2UiPYC)?5uG8;M3cG~j(IsH->* zEuRlpcs$m}^Zr5pbEL?>kcasPff#=P#DwrTOg#-gT$mbQ@He8zc_i{N|2}velP#*< zyco>$R_Q6FgwFvm4_XD)O=S-Vj;z7IK2mX9s%xuejcySy<1pxKP!jOEfpiAMH_$3r zuIW2R$eNI^0F_nX8U#YWVG+0D4m^m5@gja5U&f!{ukmesA3qRepR$LHY5nmJE71zb@#6Nt3ug7=5H|Bfacf)tv_t3w` z-|0W4l51IS`6`HmCxe;bhrw&XJHdOBARUy3r8lK3 z(zlA~F!sqDu5s^kVd0tS2@U PQ)Bhmh1eB-ULpSh@$joC diff --git a/WordPress/WordPressShareExtension/cy.lproj/Localizable.strings b/WordPress/WordPressShareExtension/cy.lproj/Localizable.strings index 7728724a83fdba34bc431e905470a7ef2b00edb3..502dd584f652a7765716428c0b0cca4eb9fafdde 100644 GIT binary patch literal 2837 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 diff --git a/WordPress/WordPressShareExtension/de.lproj/Localizable.strings b/WordPress/WordPressShareExtension/de.lproj/Localizable.strings index 5bf66e046190d06a9ec60fcacc198d5bf0c10185..7a8a327d2b7eb686c6fb773caff69c075983f0ef 100644 GIT binary patch delta 1360 zcmY*YTWB0r7(R2`%C9Lg7TTr8E1Qx($$F@V4tFn|S00D>B@ zfeQ#6%4wYwP^QcwG>r%@ z+0J@S3nyx(=q1q_cYv;P!&~chUm{Ygnd|f_7p9MKLxI$c;Z_aT&1u6FaeZ`wS3-%n zK}?)%7NW0-UG$FFE#$O&Swu(FW0RV}MN~IQPHSJVAzDL*iSj0fu0gPyJ#M+!A#mQX zD)D2eP+5)|g)*GBErKnw6w!4^813||ZV0Jsw}c&y!dpI-iZ=s=bCA=?s6d zo;MA*?DgkWW=&@kHJ$ai9}s4w!mW2TnDsQEkMIMGZ=c7Pc8S6Ew8sT5pejy9G18%J z(G_8^Bd2Nm@J)?vYl_Z@nfA6hObU&XjfPlF`mXQ**WbXq#i?{e?Ab`|r)K7v#LaP} zcPvQkMnRVR}eD8moc`$g}0J(*h{7y9KU*F>iV1@;;ef0yqQyWYrXXT!1#UpqOkPFIjWF4V%A~>7-PR`a3gdybdbKF zjMA4wM>?0hD2rJp+e9_7%i_KZyh?imN9jMI-{@hbhkhAM(>LTP`c3GdKihD`Sq4bA zJ3Prx;B1N_1Dau>PF+zz+P{lEwLcD|b*=bz?v-sCs=SNLuIb^a~> zJz-Rs6pjeTgp^PaUKF;3_l2*8?}b}pQ0x=Wh%brnh&ROF#lIvV`K4~@A!$;2N}848 zQdZiQHm*y*`UGE>uitmtcU$h1N93gZf&7JXQb{RDIj_8_e5Ksp?jf4xSI*47G)NLPMd?LVK-0shpZoFR34^pR2p-ZS{`Ur%h@z+Jd$T8W+zs OcTnBm*+w_oeE$NE7^Nlv delta 1407 zcmYk6U1%It6vyXlH#3=Ccaqq|WR1CPzI08KMupgjO57w6vyJI~eVppoq9B?g`r?a%f)BQh58?+D5foJPK|zF6y)&Dnc^PKroO{my z{LX*oV*kbd7xR5*7SF~L$y7R%%?;!WOUo_*8()^h6y#KsY*|3{}zmUp%E}>XrQbc z$j--T4pl`3k#~i`hm#BFX=f#loQ8#gV|wYCX;g*{!^!Lqp(<^&$SHZlc=G7sWCE@u za*6NnO*bViC#ukL$3>Q9TA69xuIaW-cDM_hhoKoal$+6X2P{%3s-o<7XbxcF$-*4A zk>z;vr4z_NC1)wFm#QFYVh3R-9fi1rj9k*%0I&jeywrTroGAGiEKw}Sqh`a<@UR11 zAb|YCcXTFF@tCTFnmi6sUD^nf7li&(y+?rEB056xxzJXcJ%HVuP*wWqKDx;@-Vah! z^}0cK*mb0UyYGXeq)*6qb-1jKZi)`7D!uMfTW@tEKd|?bF)l17ldxjbk~H2mP)OA^ z>J$%1CXVPhCQc=F$3QvP17HEx(3Ri(_ps!u{7_HG^%%k@nvb?1X*ky zCuvb7YyJ!EE8cO6w2Ul_uu1h?7yHRazAh3GN7^Z?jBaV5f(+^@?Aj$CnrumD5cQ`; z7L@xR$tE0#HE3xCZ;R)3WFf37-3d1ZgQt*14;~Z%v_dXXM|798pQ%J>w@1lmfnyW7 znF9^l4^mTa|lkxzrCdumL~ zi>xw$#@w7Tv*+cJyOhpT9kZrYgAP?l#e+Fqg@%)xDi$q76nVDGBtW7By=~~3;s$<(s5ejJ`Z{{5GB{dEwU}0Aiwy+m(+wAA;F8epT$H`m=7v{#e z2e=Hk!Wo>y{lVSjTlgM+h(F0s@>BdgpXHbNE&d|^3cvXt{}unIzzG9FM3@#{6Ly4M z;im5nU$1Y%7xm5i&iV@eZU4vqtNw3Vl$NQM*Tt|H5i24Q-xP0%KS|xv329V%TuMss zNFPXFNI%McIV`8;HF;aUEWaUtDDTQQ0_Ovl1J{F*;70KI;3vVaga6+4bEq}67Wylo SbSh&?L8&XxD9;kq2L1;s*~fkW diff --git a/WordPress/WordPressShareExtension/en-AU.lproj/Localizable.strings b/WordPress/WordPressShareExtension/en-AU.lproj/Localizable.strings index bd6348078a6cd0d6cbb850bfedf7652dc883d3de..cc2ed09fd3640094df0aafb07206ac7bfdc98e5c 100644 GIT binary patch delta 1048 zcmbV}O>7KN9KheaH*Y?w+ErZ?)u&2?*wXq42h~s1TD3dd?RKs8>^$3v>C9&4ZD}ML z91-*-4k9=<4h~3MT%3rLq=`i0z^x=ih$FGxsRnW3UH*Ar|Bv7AbN%P~tNpFJt2*{9 z?5quSb@$Zw_ATApuzcUj##Q_K4@3{f)~-7=a5$bYl9ATUgQ@nRZRs82o4TSSyoHz^ zJ;6!Q^*JdOZI_zNJkm{_JhLsQ5Q#(#gBJX3VuX6-Jz<{bdPCimvx4i5i=7$~5oLqO zVqZyi7K`?{aFiyoOKMq=>aqM$%lC7k^@2)GA_nz^NyFkc8w}EmoANS|)7xXI9(ID3 zY@Q3%#au$isAbdRHY2{pnV;G3_{`%ZYB?v3E}B1iByQzLNVn^7=J26T(z$oWY=vu3 zF4R=MS}e|L)phCF+9XCtSt`z`NnA%{QOn|7C^S$yZd?9HK+kn{i5_`aJW;~p0cw_- z=MpI5qoj)s^74t)-235Z8FN54ZFu8^7O3SM4X6-5Ae{@g|aP+3q4A{d^FK|nyi F^#hFnK9c|d literal 2674 zcmd^B&u<$=6yD!!)6#Ad(u9AuFn;8)ho~+@ZtIA317ubauVaeXOVV#lGV&^}jp-P7IzL8Xh@y z`jsGiHnyewKt46-%7vz&f#~DOj#Y5yRzNWJu_GO-h03Q>Hzp) zaCT_!+Whr}8)tL*LUFM)zEtMN94lG~5TpnMu#PJpU>*V`61fWzq7=X|%z%JYfsX+r zdmDCz)BwaTsKMI^(0YVGgVccsHxPgfh>Q#n%(r}oG9oEIA2k51LLb|X)wxh#4u%)E+8#~Lo;_%z2*4+8>SaK0rb!=Kju04?WGjqq%9KECZ(-K`M6rbu0NJVWDstRydU>vZNlk_!L*B;9e+)7Y;)KEkazFcD|UKbF8BYqq}4W zQeJ}6hU80Fs!Bi#B_dIYff3&OSa&>LsII-}`kz2gBDU3}PCyfG9Bbf-dPxoxr@}Dc z^U%|hHqleE?^wl>M@UFBfRY;G6miBkd5geiM8r>zOLXTt8*uJpl6J>3!-u)Ch5+Yc zGajO9;B(z^C3nSG_Y{`QRDYX#_hKCD^gr&msMN7~g+OBqi2&v5X#fvJNC>?U4|z|U zR08^PF?6|4#NsIB5T};lV!>wtDvKEg^RULp}MsJ;$X-0pYAjV+-3e>{vy!+{mo#%wMZ$cA^j?=a);a}kIEP2 zRrwS7j{J>$Uw$C}AwO0QDP78OWmLJKl$2E^P?++YvaOnGpE{zRQzz9abyi(cSJaQx zkJY>CJ@ujbNK>>S?Tj|9eW87)JCW_cdL_M;z9YpSMNU@f LW^-*W=`a5T2O?-G diff --git a/WordPress/WordPressShareExtension/en-CA.lproj/Localizable.strings b/WordPress/WordPressShareExtension/en-CA.lproj/Localizable.strings index 4e846dc11141eb6bc381be9e8adc6404f6072641..6a64fb8da11e6adca0ce97e3cbcecf0ee8206547 100644 GIT binary patch delta 1087 zcmbV~TSyd99LCRF&RiDDO*7kS^PnbP(9-Bil(*HiO>KA9RX5$Ho#Q$*&MY%$Evb;| zDJn8g^bkSyCOwpt&`S^X77-)}K?G56^$-NnYc}gFkx>La4xImd-}n2z`I7mP>F%xj zeFvIXwG{eW+uGNLI!ZeO8xC#?Ztm(n6h7RurK-2@NF=Jn8v3`z2euFH7}`Z^q>WuA zjYzZAQGzm-Lr^wjSgMA#qiw30!iH|98yXrEMNK=y(J|F_zY(@=%N}S`2~Jz~WYQmu zc{en}tfM1LHBG>*5NpX~j7fS%2-4k5l@xE+opIf9=!jgmDyHbf!2O;Ay~VGmOMHM! z`b(+G6w{{y?>@()YSti>5lR{pU8aL=g2K9aLTOb~Cyqw+)EH{BOoB}^(4uLGxc&x1 znodxk8-i{VPw!EB@F^0FMZ$>)9=9g&@_Eu<)R#SO=+0O!NG`COE)mOUZkYUoplc$y z`e)csE-YOVDqMeMd4B?(lZ2wdoFCMqj^lU)s~WOQI?PoTC;k4sga_0z_tFJvsAx?G zCaGmvM<>{Eb?F?pg(=Vfvyj&E8>Zs<)1k0ig2#SPu_uw5R&{g41BM*0horx-ab;)y zQEcE889t0PT}8baqFbh;MAZpA62T;En}}G;7yTX*14MxeCV&o1kOl~3=w8XU@6US} z_Qdmp_=#tE3xA$KzWZu=Os-j%^cUxR{JOLpn2T~(u44L94CG3q3$UW_zv_@^k}LlU z`vLk+sH7pO{5RNRAPg)QfaU=}RsRIMlI(9#fdnSO47dj#gD2nxSOj00jm$K2gL%Zf zVLq@0Y!Mq^x3b-=#v1H7_R17H!`^0R*@s*`*Tn7QTDdrv;x2I4xOwh1_n!O67w~2L zN&XUlpI_uZ^WPwVJ{W*?un9K95L93S5_lQjgtPED{32lCyf7;)3ZKOFVw2b@M#W>| oTk*T(lWL{iQbIZ_-IeC$0=Zu9le6+wS-c}Zke|t~=yf0Z0pS%@*#H0l literal 2740 zcmds&&u`pB6vxN*{-n@24f#Pz$TUsTwB2sfQb-Al=Y`&*FZR9EkBG! zF>>CBnz=-AnFFQ0$q)$t3jO~hVLTzn&a>CLw$4^QdsxsK`1neN%Qd*8X-_ijI) z8<-!wvT!wjt#GLL6MWSZHgow>jtE*~{xt6p$}XnkE*c#tr>=QNDA? zF|lVc!60S$V$&xZB8&`KOc?r5*$q!a4T0w{V&bzcdou8A!*=LOfz}yBo44JYhThq_ zrE!d!hTdBaBTyMb=AH@PF3`cL zQE9Zu(A#IJsD`bQ-Q*CwB#Sn5+>%MN;+A|Cqk>k87V%}PsqZttGHvs^&7pUKNIgmKr>JEmk?-BAuu&qUTVjgK@=>3o6B|1=^^gIXV zp}Qq)#8b3x=;eyVn8!1ivpNNdK=CbT5#I8dytM$)z1L+iXdjBSKb9F7=IwQgL5r<$ zh-!`v+yTiQVXaNVqM7PDAm8R5Lm&Cu^%hDEy+;BXT8NK1(6fy#>Qf1NDID_d147Bt zSIV9VJ`uuEDNvA>x#f~A9J(xL7%z}IjLCoCa7@=x9tCI}IRFnw)?X2N(C-ekxqsK) z{*j|uXdaj+$cze*!o=Uc~e+@O%r1_W@0ewt@Zt?y>ZJxcA`+hIJ~}CAd#w zO(+GYeo-`~UFlUul?%$6@`3V^a!2`A*-?H|epe5v9qLhaR6Va&)HT&nh5D;{UrTDe z+OT#;o6sh;Ic-T>)!x@`YoBOeXg_GXF*PM&m zC4M))n@|#6iHiv{@m}K7#GSZ{b<^ho+rdM*87`s?%#3O}k6UC~P8+PI|e{RtdGYx4jA diff --git a/WordPress/WordPressShareExtension/en-GB.lproj/Localizable.strings b/WordPress/WordPressShareExtension/en-GB.lproj/Localizable.strings index d6bbc45122c7359065df3fa386eda9e26fbf64ea..2714296bf33e1a9ae894a25fdd40aee5a409a522 100644 GIT binary patch delta 1073 zcmb7>%TE(Q0LEt@vyX~W2#7_I2}(5>tKu`nh)_^LthL=zo;E{wXg4gob$1F94`|eb zQ6oBu8e{ZII2fZQUi<@$#%N+9@rE}KVn~P=F1k=Pq6hUjlYBGZ_xmlBEtE~Pk00~9XYl(inJI2@=vvaV`+DW0Bh6@#u+ITuX$uZSPF(?AqPE*938Z!3Z#b z1u_7E9I$~4C<>;6aLVwo6eyXWCdNdS4h@X<`~yCKL*38qT==@ho<{Ga`;- z`<$*YrX*uKW2{j@EF{&je&|Yxrd-Y(V^dre+s6f0BwGx3*l^vHe>1~eHH+}-%7kW6 zlXMo|XLrRl?5h}HXVuC`vV{!dyh&63(uj@l2sTVSU=rjSl(@ZZmP;IpIt*(_YsTrJ zzL=5DqOfgIV$rT9T}RYw+1;ue6h*x$%qO2I*COOJjVEFqy)iOukC3G}djrdhdlNa` zTd;JI@>hBFs#g7+*y>Gm*e-qpvy__B?!`Y*1P_yBj9?wv7JDTJOZ?INfN8kd0yx`h zU{gv@X~`i%)7eE%OSL_E?4eN0)v!}afPLmvHlb9GC%;E~Iy~3~#@(7ThHwTO*2w}I zza*D%1;mgk~Wrq=oasb>WHdPM8rsibVrrwKytX79WUj#aZzS z1keWqa0{%52VpDJU@xTb3cLd+;d3}A5$S?7B~44SvLe^Wd*!ekm0!v;@+YN8sZ<&j atXx!XD|4!-Zc-y^RvlF@skc~<4}Ajw5>!3_ delta 1079 zcma))OK1~89LBpl`>dkdrZy!tIyQ;;OsH=>s4=aNHpVpByc*MG%udtA?QYneR)Yr> zsW(BLgCL$gkAbRj7c<`!~9t2S^FN;c{-iH78XXg99-+b@;-gj>-BA+<9 z@zkcM(sSAq+cM%EJ>xrj&VPP892*)B#xEo;CMWi$(rPA~JCH9NK5~>U^H_?h5b$T) z9!lvMTO=DpRvDWG)u};LL56jyJ!nTzPowe`ilktFI+KcP%I0?7)hcL_ zAEbA=0Il=e=#1P$qY@M{(Q4JK(S+=y+qp@vry1~QDdrCIfT=UDn77O~<_Eih^{|6%ggwOO*eTXz z3Hycp2}IxnJHdW%97Mr5$b%BN1s1?V@C>{ID;&!Oxjozn_n2Ga-f}2} diff --git a/WordPress/WordPressShareExtension/es.lproj/Localizable.strings b/WordPress/WordPressShareExtension/es.lproj/Localizable.strings index 59b33ede23521f657c2ec7c426540e183a45dd25..7b25b014506cefe50bd2f4b0fefe0699edd02aa4 100644 GIT binary patch delta 1424 zcmY*YTWl0n7(R2`*_j>ebfMS^m6LLjKm|$+smg<;t+$l6?zP*c9ZqLXx5u8HSer#79Xq7~|!Q#PDQHd@#|ovjucs{+T)RfB*M? z-#6>q*0-ITU7da@m+vnWOXZ_8mD%cvxq0s-TJQtBSX&}5FH;Kg0D%@DAOtl4K?6h} z1|073+@2vAFto^FBZ@g}HfV$b9GnwLVqV$1w$e-$M;Z;fBCaU?Vp!ReDUXr3PU6^e_X?!!5RVvy%}-Ekr0^TpgmHHYg_3n%Rof4aFq zNxanFuRU2VT`e{Ox#PwM{gPDwL-#cpZ)+f)P86!vXGo9u4=oLfduc4(k1rkkF1tAT4yJu#2q^- z1-1fF4UurZBOZ)9)_88$(En{Lc36Qvv*_vAhqcTY$@Bs!ixeGu9_f*C?In~4*NsF_I zIuKFlNA(6`oG_AfaoJOo$z$LyK%V>916WZpGh)yjUauP6idi0MP~szT&KwYbrw(nZ zjN#aqIEZ=fusCQA4(z4@L`;g;isD63ka!$4C7(#2q{M-zDRBFm1=b&gqU2FA|IDZ5p7{HW%Y^MshwT(?dT+joFTdXh4ks(N}kl3 zL@I;ljzx^!ZxuAPzo&b|=S@V(nftFjcc0|D&yw}QvJVZy|MC}S?L*r=w|g?GFEA`A z(hWN035?s+#3k!_F<|wGAM8)ETc#Fdz9j=`kcI!UOG>aV0~E#OPB`S@ z=0qw65v1rIz|1%$brK>5(qILg2Uoyn;B)XTxCQ=Dwyi4Xl=qc&<+k#h>Zn<@Pd%u< zs0J!k&#LdL=hchqW%Zi&xOP}Oq8-!9ny38)% z4Pe+tpRwOKY&>I(8wI0kFk{WQY+N(GF@8+xsiWp`vuL)=56!FQ@8(}=C0*N{KAC$>`Xeo Z({f&O&N~;Jt01{lrBgwDqiz)E`oF$ez-9md delta 1464 zcmYjQU2GIZ9N&+-+mE}*UTdvzR0e6m6lful@S!}EYt@EQO7E-Jqg|%E)9b+8&M`Y% zt(Y{Jh)){oglLG-Ct|{bk@CcYzWQqLftaAgXQRgWV2EIx-7AHCna%$H^Z)&SAA7rS zyKr@O$Em3^)1`8yTAQi&&o<7^&AaE|g6E^f<`O=Cfrx?{jk`|QRJ1^FxP*fyXw#4n z4GqnmLOzDzbem%ugfm6RQIoP2**i%AT!xsy1%g0`ISOY+d>?Sw6zl39-E{`UtyH(L z)UJufG-}ah1SW8B!F75L0-wP}ogHm8?WGCQrZUwhz}MqLE-F#?2%i^ zg~ZpXf#c;#^bVh&Mm%Bx;52EkjiN;u5nkIM;X3&@5cd)?$$Ii~xdfMySkrg)RXZ!q zm6jlj=_1A`tBvBYg~L#+YnN6xOJi}VKIUT%rlcsY<7^;w2+-hIV>}2E;|afN2@&M+ zv(wmH0!12d6!2;h1|A~yGFt(#32|_?^P$72d;)q>mYqc!5kJ_&K`aOm5B2UBN|ose z*V)q1V^gZNm4f&vwd+9NGlD%;bf1(j7Hz(R0m2SL*V!Tc*eZU|GoUikZWHNY?=u5p zzn@$cJ5sZ~-LY2BIwgs^PG4-Q{S;07s_qrTTEQ%rVKbB?Wxcn*QEB@!DTyGpX(Z{; zpi;)1pn9AEFbP}e_UoCvD!#P#?(RC>_GG$H2z&%uGH*1*N>PCdSCG=|pOiR&|V^CYBIAolIe$$_or%jF2ba<&POBEZ(7eJjonngvNRX5n84f z5;+6K6W7zv8PyJD@xJ|5-Z{958%7J*hoX_*D!$6@7x&YHVk*}oj@U!_+DMyV$-;FC zrB2rwyGJ~*ZwcLeS=_gV#kz4+44ALk^)Vjr#9=7TnFFixCmiv31POk3lS*v@Nxf09 zsFbCzT!|E-P}w+1TMJAk4iQ<5tyD~9MfpS3)x5e*9afL1^Xe7#6ZNM0y?R&uM}4Ga zwQjAT4QsDzHEmua8rS~R9_xm_P2a8W*N^EVtNKZOMxWC!>mTT!>fh);>VK!SRDWtP zHJbW7wVt}0dYpbS-IqR`E~ZbW&!ig}lDU?-nfW&JQ|6Je&+rXqtQqUZcgA1Fzh>U- zGk2TE%`uaim&~i?bt`WH>##L$O<7CUMe9TB3+smUoAsaFW1p~zec3*G%f4gZ%U;Re h%-+j&D0Hb?%*vryCe2)v z&esQt57iFwOid_7+zu7Hl0KX4ak{E|rd!0Vvo_H;b!O@-CM6DYsgplxIh4C(npqp^ zV|r<0DalG}WYV@=YPky&hCy7QotrY4OXdJgxbnM))3fv)H#@ zw}@WWnYCOuk2v+!6mfj)|7)C2QInS3!VEQ-PEJ)_W?N1=rEk*ZBy~M*5!bGD%-8L( z@m@3q8R3XRP8f2;a=b}wNBgCH;!Lz%oWjqE@nB1&FkxAqsrzu^I_}tC#4TV6^*Avo zsp=e@rwmO(=3KM`NH!ocM8%7-ykg@c;zsawL4uH$SVH8rzhXH*F6=FjavS%+q(Q-h zd!h1>n2RSwUsE=cJz2JF?tg#nKivVraC@_#Bu=w6PLzw8cuu^BpNIBdC_N#@Lv7;w zK&M!UbSFTkYkM4=st3g*)Z&mEChiAD+aL%tw!u~z<;2_%GFZu^A`#vh%BDQFsatM- z!r;_#D9O?l5S{X>Rn97YIVC2emW}s_&d8WHg5VL)@G!6#t`Ytt-X@JUOdJyrLc7Iw zOz+Fj+7)7Wwcd4f8?L4aM)~#=xS$?t=zSdvFbTOR(+b=N2-iAF!Y(MlIh5 zd89_wZuM>TqIyfctNy0`sUa<_CA1;!fOb@y($ZR9yQ=-D(TCdKfoPyRa5nI`>DQ(w z!6U(2!LLFGLx)2Xp=+UU!fH4X9t$VKx$s8#TKLn*2a)Z_Cz0Ecr_q7vh3GG_so3e* nYV2WiPkc{&F8&?v!5i4Y=kZniF}{a?Z)t7W*Yc(qZ6*HzBM7lr delta 1440 zcmYk5OKcle6o%(z$K$c%ag3W+)7&%(5j2Tgg_jy4WSlgL@*wdej^j9H;<<4y8PAw` z1fniN7gUuhP}_@ygt`D0EV?K(3wDSikXS)cVZ#p8RW~41P*p($XT~PYcrl(icg{Wk z_y70Kz@33BtG)A!OX*BDx13)otQOZw>*ZIKjf#plt6Su?ZLLPTS!bp!w=Fsw8nL#B zUPX1ovPVZpOY>MI3VNk(6GOLFQi_eMhPexC7YwBAC`3~>G>j}_V{0X;s>oKVbe|pK z%km(-CB&%6w#^mOxMu8NG)MI9vK&8yR8!fsy)BSa*9=9)YFX~eHUFYBUTGK&YAV_! z8n#yFU=2(K1JRqp;6!!-ziF?hvF(^TvJG!}eiCmgj%MeZBFb{~9JVW-7;ilIIGa&+ zFult6_bfL?DrL45)0K-&(=hXs#Hta?qWj$Wy~EO!TPjSc#72t%r7X+M9U1}*{cLeY zx3Fn@`j#_T!xeiiO)6U`W#~56?d6oBSFl#dn!8A;Dnwsvyl5!OzN}OLOJB-xG*ut6 zkqZRTM||v9CYPQo%aI0;LsVCHyXiYZ|LLA1z#bDF27E5G^~N5^YA7trz2HYD{ekzR zT(Vx*z{B<<4P3wf|CII$tL-tD)lsKFXj$%YO$|QYjsD7>q6w}$kj*Mp3tB?GeV~}D ztB@2ANIs20j-ltW#MW@Z%>Y_ZYM4IoKcu&%ar%eccZx76MqzB`K2v23#$*VCAt*_w z;^q&p%cg&-3}(`c);Qfd7R#kOkWd^(_j3tPVhV9)axdxVG}_lHG*|RKEdSZ zE&o&W8(-9C$S1w0IBgA#w3bo;riyFej~lBmA~=xGIAllBZF(X)LWN*F(8v-tX?Nt= zXmLt6ag|uMiA_UJc&!rjxY$m=4;>o-nKpq6i~)hcj)_!^>WT^H0q19`x&bx%Y4Cm= zj?TQHl1<`{IRpzx1w`EoC+S$QcT8h406}9gQvnLP584`QLsEY0|1k%Ai?^19<9=x;W85$Y#f|E4K152lQ`rqFsQ&bpg}J!A9( zv5(&K#i7^_ug=j&(g}vp^5^ou(cx$^I?Z?&$2RVaPG4%1{{z%W$Rq#& diff --git a/WordPress/WordPressShareExtension/he.lproj/Localizable.strings b/WordPress/WordPressShareExtension/he.lproj/Localizable.strings index 796b86a08c70352e3a3f15b80f1829544c1d4fbc..d979a2b36e62537a63550ae0327838e5b80da3fe 100644 GIT binary patch delta 1383 zcmY*XTWlLe6y4X@UccfxnAQg4h0wILBB2#RDHPF10&Pjt)Q>ohleio2#MxxMYrN|e z(@GHnzEIVsBO$0jmH0v}Din|q0)7w@f*+E`X^BYE7^R9E@rcy&gM{Gj+A2c(Gjr$M zbI&<P2q2bI4aU?6@(cG9kKA|X7 zj1s9yN~TmQM+sDc(kPuWgw~8NuuG7N;;11MG~EzN1w|7jEDatM)ht$IHP_bG7LSWL zeJD027U3@7Vo@vh9~2Fo^Jv9##urZ1n@EAapA6I6r^_WBFjyi-yoGs}u19Vs>IMDrd)pgPLk!)#%?ZNrC~gQ(cm52))2Y4Cd6H zcn^Nrh$W)k=_t-?lh|qp{@&7vBI{$OKXWpePA3Wycx(W|AS&#=mqC}A0eO;X0lg7Z zFWJJm{V7w6&?Dw?GKxh>&{Q(SKH8k|`5N@~j5YOX(#Z|@H$9JytToay1T)FU>{j{_ zi?2pEksVxUD%ofq=!U)2*O7`B%Yv8_Wp%h7o}kxPlkqj}`u`gHVpzdhW9TTBWKlR) zFl0^D<1uj(4@a?4Dyo8^Ssi`#I23dn&7);hqXe`Hrz#1%ob-KU!?~HPI5vfH@HUHn zLW@+J`C+tJt-GPKbyorwN5tN&yw#w&jCXS7}`TK&^I>@U~>)tK<=_x zLW|@*+cSIDplTYaNl?5FfQk%6^FVkLkiWnibWOl?a0oul_Wz7j`2cx>zZ%NI`z)G~ zq08)@wO})*ATn(akX~C$XaczAESVa>A69lBmcMEzf zBQgkDf=h)Yy*o+SnI(7mtt9I{6Uf83Sr9v8LCq`{&=QHbGW50vTg1v_!}%cj-R>aG zZvSJefU2UU9Bg79^xdqlN`{lVK7-rlsBSDosC|ZT*8UU=l z0(cob!Zsx+FGIOTG)G`6YX!bWIjAyqp1MSRPJKoFK+REi=m+R?^jq|&^a5RF+>DwF$P9_Hnyz|ImRPZU=T09G4xx@-2J^ zkNMO58~oe+NBlR=lJm6ltn+>6cg|(k!>$q6RoAz!Tkb>dy!$Utz@vD+_T2US?R9%2 U-VSfVd%}Cl`?~iX@=BBNF9j0RTmS$7 delta 1367 zcmYjPT}&KR7-eSm?#|5qFzlADu;NYw6e9?2V$z0&L|m%!x4^Q?0t;-1oy#&X%xrdM zQPiZVQQxT6`(SL;hsGys)Z&|_iSfZEzR0hIh}yLnC=b@8CPrfuznP^inU{ON@7!~~ zbH2G8z8rpM;K>(W?Ck39>5caF_7B7c9rX`woC za1>A4ttPQvmBlGV#l~n4U|=d3hjO=3!=GXYl8j-nqicz{Vybw=`Uk|QG>6Gc&U@qvUr)~YLgiVs zi#E|J+CY0~3$2sW+!<~k?psjVC!e}Ti0Dj`xA{uy2>HevBo|QyqYEK8*O9AUzdsAF zH_&hB*Rp2o(}f07M;L(5?zaYq({bZUt^zXdghgGeEeBw#m2Lm*jJ< zl5}}$pO}RKEVUh5WEY@!EItg-n`nz%;DU_`jC2biU>4@E+ACR5vbjo*`Te0!WaNg4(i^oX{g-FnwB)3r;3Hz!bqvHobc*%~}?^*|%ZOHe!_Y|4)ERr1C zMsD#D*kO@>mh`bl$yK)9hk@`QdtIou2>i=dHnWiM8c1(I&La8B-RQ>l4dh`<*W7{g zWo+3(*&h@`RZ!Jb3w4^Bpx&b1r9Po~qkIcP_n<0(gn;{(T%W7TmVJ%(z~DHK87XaJ?0 zQK#X&=={+6y|d^_wYo03K6d@UvTTr@W_9)r_I>sWd!7A`b8$YdfotZ9++TbZe}X^5 zM|p|Q@eBMmf7k7C*SlYHf9+oP)Owmc8PA{IMz7|*;bVOPUzbnvz3y8iuat}b0|zF` AsQ>@~ diff --git a/WordPress/WordPressShareExtension/hr.lproj/Localizable.strings b/WordPress/WordPressShareExtension/hr.lproj/Localizable.strings index eec62e62ace461ef3729efd12193ec0b3124c4e7..3750bc10d76b0e79ce9ac49aef26aecea482d6e0 100644 GIT binary patch literal 2845 zcmeHJO>7%Q6dvz-{YOhTZ9|)eG}D%(rE%OQg%-+Bo1`hUO`Q;X?W9S&9q*346R&qx zyJM$8s1o7=0wm}Gi3=ccK|S=qkGODwBL^-ONSr7a;KB)t#ErLW*Kts)2vG@;@LJlx znK$o!-}kH$=Fj*pGch?8=p8edHR`Wx1TwCZmQ>e zcDir(%yYB3yf!dcD9+7aSXjJxNxw{vlnj&FD2E7YAch=NK^VD+BOeJosH@#0*z`zQ zV3+#>*Ik$>&MMznHU#2ltqI9{1)Zh@chjt>|i>)|!JmBc&2Aws{3JCkWJjkui7; z6UW3gQl;3hdlawmI<`oIVj^%5QDE-CD<)_<2nzGP6-+9GIT>xtb!{kNS4Rl}3~4-I zn_>FCuI|eP!GZ^_#RZ34;NOWEca9fNF~7!q7=2)aYTJReJQFr8G;!9|ZQ&{%Oh8m! z-5G!$mgHey0NmK39tBEtb;mjj1-Tbb(K4yqLRYtDIVKIl>=6C{0Ds|(<5N%IDdtr3 zg&N9Gyf;)mbVs6Ydu>h{;Cru{s3`En_EAzbWVPY7(?g(sh>SKqCCc-ZDf~px0 zNoi^a*Qm)zK$5VSAL5?Dc_1?f3E(la#vJGYk3copAPzPx;#5E#76tBC1NxbKmR=D# zZFXv5mex2>5F`y%&D2ZKMOGlipk4rDL32%zV{1U)I>4;r+LrNTAY)y{9n`OmS|fn| zbpke3(v?yZB^3jypV6L zXmRfPY3%bF1^l4KWgrGGdpx+bprNqe?86KOVnPJldQL+ZtduAQ?v_K5R%|8=3zq6S zP2nO47s?DcdfiF<3Nb3{oe^ou~puMDL??0hDGP|cUtdKQ}=g@ z(bX-G2(Z~UphAw?)DRcXhiaO31&GYg2Pt2grK0YIiVJ2Gn(Fv_4p#t&;| z;QMQ%B}9>lXe5r{v-t1xvHx8Q?6ojmS|SZrMOtJtY?nm1Z6c_KGQq*sE;Ivsrz)yP z2)tT?0kpNBa^QIb_E&sEZ(D0>TFzlL_Geeqsy25RN}v^V4P8f{qR-Hm=qCCl(i?dr z@>b-d$hVR2rA^XSsYf~_os~?S2JAHN(g$Nl)#`0t5SqCYW|IG31DypVV&@kQe6Q42h4x;cUMVe<+Zk=1F)W{#P{F;IQ literal 2845 zcmd^AO>7%Q6rSC+z3Y^cO@By8Njv>Xe_bajEosYN)1)mWX_CfXJ87CMWADV?cs;Y) z9j7%1q$0tkH!eNEi6bY(g&PMhy;kLdgai^2;zT+0fP|>Tn_V|?E0)rP= z@4fGP-$dGL_4d8ozvGpGoxAYvJ$v^J z?muww(BUJQquHV1kz=nOKk?e=$y28juczL4GyT@vXU5Ksn-k~GUwG%@yOUFwre_9b zFVE%j*1ke$t6-mpBAd-FU80Ul@Qg29&cgX|B4~vNP4J!On5+@kBPB0R7|xG54i=;m+UDMz zJaf=kDFzVQ5zZGSmGKZ`^6P+&O!z)ve8hV0uY;#YCGavKMPt)sSd5(%k5Y1PbixYH( zG(1skjmS28&Qnp2MkS{iLh`(9+BR`pB^w>L)l-NYTFO;PAV*DufCt41H>|rM%c>%e=t^b~p_&<03}Ur-5_=EF|!)q17XZ;9gYSFv2#A^FWv!)P={Ky32sY0TDdF zWx{Z|N?3(T^nqU+3B&AqLFZ&a3+EhH;92P1HqBPo>)0(`WFZYigh?SsJz5r5=UgD_ zIA?+~Q5YwzOudEtLv~$_AH*o+&yq4gxqF;9Jck_sW=iZObD(hI%hm!4#LVWbxhdQ1 zjuBl4+e0}-&>C_PLluOPk2ngE!24nL5%0iXvaU1f2A%*{;PP)3DEjcYEC%c&kk;2S1Iyej zQ4CmIicBBmfB{YBxocd0S{@*U8Lh#bW^3ea+9to%Nco>gIAJhX}^au8K?L?6?(!c1wEtht>e&B`&i4wk2DnpN{SbJry#(zL>i zQzB&ue@-OriWPuVK8vP3B4#US2IgKvMEL-@-0VTKAUHMDPzZpr3MSeTAqLOaK$Q3+ zYG+N8_X)hAo-TLKxzzo?M6LiL$K_T$i_8_KN$Bx4WS}Oxr)Wx#(yt6DCzWO8W91X& z3+1+QSNTKvOWmYyRd=XE>T$KGE~}m@)Zf(yny&S0`?aImX>ClK)aJD%?S}S|c1!zG z`%b%`P!szShZ7Tt&k|oH?j{~2`;r66(d2k?GI=?^h91kE+C1w9>k^E?pyk12QL(^b diff --git a/WordPress/WordPressShareExtension/hu.lproj/Localizable.strings b/WordPress/WordPressShareExtension/hu.lproj/Localizable.strings index b5b675e9d9c6ff636ca1fd78e80f83944ae0235f..89fd48df92390d3d338779081ef3a9c73399eb6d 100644 GIT binary patch literal 2914 zcmeHITWl0n7(P3*vp1^@cM6vNfGr5i(iR298@(Zy-stXjDFw#UnbVzVXXi|2&bG8M zCd4<-|GisiW=7v$y7S?Sj*#2tkPGnS-WoihK-wAH*a~eZEHJh+rHze zj?SICp5DDDyEnJ5tGj3aGtVA4_}ue{;x8m#eCg%PD~Egg`UeJ&yt?k_vEwINhlWSm zwvLXS9M2azI*SvfQt6H4ZZLp)L@KzzbUNCb2m`uc9L0y-nW z=b?bA?{aD}>r6lOOy)XXIhV^73bY)a&D%7cUjxmNvUoS+ zxXjQyiXNSI83FN5RBK#dnUlUIOx z7F6gQgRmMfSmaf(={y4}Kt>e6J$&T|mX$$qeXt0$OdT&*?Dc&YOW530f`lOp9j+Cn z9~%0OybLBE_%;_DbHQ&jX52ee8gRmj6XNV$52>~hxL9z6%O+|#8~WO4mnJ4Ks-bU^ zphqPI5DJ7FY!)!2#Lzdcu#wEYG{9zP)fI-mW`qNsr;Z!JF98Urj(H&q1PnReT%nJe zb7#gK#JZn*f_dUpuVsNit|tdAN5B|HGxYP5ycz&CO%55XV#(&* z53>;R3Pb#`#swq>76LB++SpJK*7`69NKAxaL(f_4g2ibD$lXFD(z5Fa)5fhq6J%kA0*0||p;cn}ltLgr3F^0Yh z6G1i`1~idpE;Gg1;YdxRzCe+M1)1`>aVDxkq&T@^qNa|&=Wq>GMCSIN_OwUfX0v3F zxTH!1o*5yzjpI%7SFFt>{kW>a$S}Eu$4yA^6nJF*wxX|beIq%Fr`tScEXW+5Zc8#} zJn5zh!{;tu4DXll?Jb$m#02`*61~U%xW0k(;j~%&mB}JbmQx{G#z=r+?+Nh_TBAcw zkl(Rb78T3LQtafv(HQ@?LGtt&D|@Or2#-e-rycsAT; zhjUTy%8s4KE^zO5FG-=GFO#d}OLC2TO>U51Vq0SG#@>s47W+1KQ)yAwD6Psq<+x%g zu5v+nN4czgqL)B|dtT2f8*P4$xcx%!RzgZfjvCEgxih+m9<62B3@9sf-u zT1IQt_GmrYVQo+=Xj7Wd-qzmNu4rFrcM?|OLgGr|TH?pV&xt>htCG8u1IfwcTggkw z50lqZM^jTNKlOU*gVfd3_0*m8+H`07jr8U87wPZPzh=@I$n4AXW=1oGj7g%86042G Ks*m*{v-Bs)^Qj>K literal 2914 zcmd^B&2Jk;6rbJo$J&Ku#pd}?xO5&un6p29uTS!^iT;d1o39qO`J4E72;3{+w!hGZ+`RM z`~BX}Uh-Xsi_@onH2M`)i^UU3J(b?|-1EEl7;WtxFYMjdx&Otk121*Id=MWxe59wh z@942tj-SY!G*6vAbN1D9=U?l;@cKaPjl`Q5Q*T{*dvGXg43AuX=gQT0N5{q|u60jN z;ptqyr%)`-%w9h+H@~oGy?2%@oiF!WMlk78!YOu1-78nIs8U>Ffjt>e&N1=*40c%s zJ02EnbHOaL8YZ5NYh;;XUJod4usW`i6^e<#5>a60!IC3rMuNirpn*w+IG$-4?UVH- zsJQBQ73?!EOw(K#r?x}zHD5T)<1<+zXoUq0h@D`VtPsZ~OKt?nX9jH>3sT{haU>_t z>~(GISD9dtGQ6-IkQ*XIhAajwqqpFNyP<}D)A}F+dx0yk*PS z+Zxi`Ms3UJDuf7BV#wSx;puWezdi=gP!p768HaZ`b6b3Vg5DO3(^S-hu)lJ-G)!-h zx+_Y}7FkByWh%;Ht7JDhfahh=mVsL`*{rxFpJG(dLas^z*=iaDEGP{-yykG|-R)Uc z4=^d0S=|%ZW|U)(iHJp?1~Le^ki<8eRtqVD&!Xz^kXsYyK`=SU3lG{g#{(4yM6dvt ziHFNo;#H_*AM~{e$jyy}Mr1;>Beo;(B-CyhMziV-?&hv~oCYG~q?n^FEsObS2ZWks zo}iv6W{Fp(?ri>%y5^%VA{O#PqzqIZ%Cfp^dq+W;l6$EfNSyexw19#z&0Jx6%rf>w zjBb$aq8uV<1v$t=6@-zG7~)9aKIna@JBXL6+gWtoPoO6f+hUX_<`FlRaqx+Hi8d4l zecy$7=xl+F^c1aIMxj(?%;y=*S&afk!1yg_5xx~Ld0PdEK040CzWwJ z0~fc#A*#3z=nj|c4&}ceJ>1Q0`M$+%g&o6TJt= zGPwH{Anzf*;V_})-3){3utcDqX2>(+f6Uky_WUOFqJkP>Z#cLOhdYV_Bs(eZBQ`+L zkC`MhI?)wysTHVCKs#*Vxbg`0}~a9r(4XkScD&dRq{0U`HWlV z|I0LGwU7VZ+3uHRl!ZyCAsrO=o1!UgN|$mu4T2kxM`m~eUfHtU&YBSn`_JQ`H_PO?z_PzEnrp9_=$792>JF%~0 zYq9nC{&;u1Kc0<`#;4+Q@o(cl#UCd0gqbKNyu>GoFA{eXKP2ua{z|qdJCg&+sic(@ z$p^`GJ)>XJef@p?WBoJzj{c3lrvH-KoibAwQ&y^x`Y!czI+;G39#2=&9EA^6iLS_Q JUYnQn>fdw1r3L^1 diff --git a/WordPress/WordPressShareExtension/id.lproj/Localizable.strings b/WordPress/WordPressShareExtension/id.lproj/Localizable.strings index 2541e401f486cff502f87c61b0047fc6e6513f62..17614b4c07bc79d149f7036bdcb824cefcbdc4a0 100644 GIT binary patch delta 1373 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%0AL-uoXwPGt@s_RIw(r=v zYxkbL`wIJu2M!*3{E5RyjvhPy*Ab4+Fl^T>>s0ET0|j)Ns>g|@Y=te&~U zb8z5t$suKUV@HstjFBOW6SlRZ>c_jGhA8kjaqyufF$K74GLKG-(hdi-A?CMjYs1oz z`EAs(t?p`!Koy3{y%0ZL?GG;u0W{PE<=EENWuAFgd}WwklGCG9Mk4O7TCVrgCW$;* zpKp~I=lpUZ^BfC?1^Tqxq_o7Rabf@|rrFy^+1D`YKcqs&oYczHqYXJZ%0Q?k?n~;+ zT8a1#>Wx=!t7|g3k+4wdBMqQ(ONmFG6aTFqncS7%D-9fxk-SVRAxd%Oo*rt;_ahPypTbu8xmt;e=HwZkK zhpr{CiJp>m+p5-G&V#UkL*Ai45ioucT7)kOu1;N$=oJ~v@n(h80NVdih+xZ z@es8<2D$?!uZwG4R9G@oJ880*9cUIqXtFmC!5kkasNu zrAnWu1`hZ{EROmp1!}optuX1)aW%tum~>!F9u$Y;)@oD(J$a~|=m>NrKvf}J3-lc# z^+Auf+mTq-^Zr|_`0bA%4;8An~71is$T#%w+ z$N=UFk-NOG+Q)<>Y6`DIj~L`P3)oFKi_xn!up4q8KFI!B>w*Qvo>&>;Z2)>e46%dy zfEJ48R7;@fCX_FrK^}^haY!Gcug^y+tGWR@5)#^|-A27Af?F*BQVXhkK4J_a)Sd)C z-gSp>j#Ze4XNc;_KYOPG{CMaly77P;=>O06X}{|$^mY0s{eXU0uj|vgr%U~3{g#n6x{aO2 ze&dAEYn(C0j49()~6gm-FxDKhA%O;zQSxZ|LV8NB+w{ E0SB_LS^xk5 diff --git a/WordPress/WordPressShareExtension/it.lproj/Localizable.strings b/WordPress/WordPressShareExtension/it.lproj/Localizable.strings index c0b524a2d6327b170760594c69ce05b6d540ad61..c0ea2dc384fc5ac4a6c0cb94feed5cdf3cd267dd 100644 GIT binary patch delta 1451 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 delta 1390 zcmYjPe{2&~9N*ow_oL@xVX~j8+}sADZ2Q7A$cRJSW`b;m{#v(nYj@XsZI9mWN_(9f z1{V@g!$LOt981&~qyB*sWP<)BW-*dMOf&`}@gEYAn5aY{!H6VaeAmLZyu9S)eZTMf z`SlLf9IBZaT-&?H=MMx!ec}Fr#=*$Ya5Od|D{&Pik|}L(TE}%%erL?RdQV=_wOmRw zl2XRZSuHIs!@Wq=WNCNC(o7@Q-zi%tX=W!#uh*31FmNrUF zx+*0!9pwglNDpB}2;om1P0t6tXxxhWk(JLHl4Ta#!(AvL=XERmKt#;F>Lp~wi(-oO z$m3u@9z*yT)8OeVQ5p`UuxnA`mT zp(MaG+9NxS9LicneSHC>qqsHX*WxLu(=;q(Sbd$c5l8w!Fgqd1Nm(<7N*5(X!58H? zv8BG#%i7tY}2A83@KMq z7;~>BdDP$^7*-1H$YgYqVbzKOcHR%4; z8^K9fgwNp*xQB0Y9udI;%tK-NzW@CKw*i0UY{XHnsysm&Zo_FP_+LJ*;=Rr${2klo zP8>M}lhfy5(%USpGu=cgy8-K*(4nO3VH_#5`?tfmvJIvX0sIj@h8u8E@#(WuI(z{i z!9^$puEgdb3<>Ch*I+BsfLc8_8sA>Y2F04LygxR;oVzL}b6hcpbp6z=9< z=`GDS4*Yg}QS<)l6~QP1rfq<-_9e#g?LMT;j4SV@h=y-4qw8J zG@fTGE4AedZ*y6Ty%c2|J}GR)9b!{?vN*qBQ}j0DQCBNoaBf|dDsn6=KgA=$vrc73 z%Rfm@kK;dGRrroDQtcHJ|3YtRM3HXV9#qzj|KS6+$4?j#AS;dD*#9#We8~S!(U{#Z z0wL&9>|F2y*EG2#Eb%v*M|J`;o8cf#sied9^v1&mBUtY5E#u23%KoAlY86#WwNlSf zQR;Q7Kz%}8pe|8&sC%?XSI~8IEBy=|rlYh@Tl7u(KEpA!%sQr-X=ipYyO@4vm^sKC zX6BfAX7Vy~+d(@T9ZxyB9Pc{LI4(KvJFA@@=N4zDbC=WSj5u$xB3sQiurIK?Sc^T) zo@1|Zk8$-}9~a>g+&*rMo95o)E^|L|*STAKlF#yo`2s)3pWx5(-||=aUxXT=L+BO8 lg|otW;jZwXtIbt#opfCh*NB^4;udj8)I>`>fYnE&{{fC9;64BV diff --git a/WordPress/WordPressShareExtension/ko.lproj/Localizable.strings b/WordPress/WordPressShareExtension/ko.lproj/Localizable.strings index e9aee68a730e8f23d5e71437e6b138e749ea19ea..d7a612f2fd3fb03d1ff5920b2dcf6f36476b7fad 100644 GIT binary patch delta 1291 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 delta 1457 zcmYjQOKclO7~Yq?*|jB{M-yhUnzqc}YerY+GN@udUd|_mzxVlypo$4{R}y>= zN5uiL&y>*@(~IaLEhQ0cIu@X|zdbjHs<26Du1%sG>pX{O#V6y#NnAT!fw5bj~$ zp#wa>AGNYUWu>p%)9SEOoM<^V;F+o)Ok;P&2{tYDccjzMbor6I-ZxUrGz^{;Uyxi9 zaXPk@Nn=V-!OH+xgqw)%h3-!9Gz4NI2RQ&+7D1-xa>0uoYC&S=7lO!P_CP(_!%a=_ z9e`p2T#D;;+cB7;zQp4;%xWJB)AzmD0zeIZ3e_>58B%n)? z<0WY)GWl|55%JG*tS1N)2jLyv29i%vXc^Ek@{d4rGhX3_@@+0Q{8KUsXgY}9)IdCw zB8bxB93tFUw~8>y&6}3ZnSD{}=oY(pbCT0C516v+`owZ6#k;(b0pfHP5tGNK?*FUV z#K_LH)}1Z7AuI`w@IYt@K)`}2YzRoOib2hXl1pQ<4mszi^w-#lXm6*dmWOU%Sw6%jz@Y(YCfBF6CJJU1dbohPmUM zFW{FG)UZo!2P07P(QxtF{@hZBwo4Zpek7cLWK~FT^e$)85Pr?_WKe!R5}sieY*|8w zuqE6RWwBF?i__xsVo7{kd|&)j{8qdp{w?lF5vg11m!_p>rJPifh(x77q=&L9$K@yG zr{z=fjJzP{M zgwx?t*bH9|Ukm>j-cvi&UZjI>OJ+}4oN$rjcG{@YE{kE z-q7CFKF~had-QSrwEnuz^c(t3{g(cFUw8tFYN# I+e`G~{}RsB8UO$Q diff --git a/WordPress/WordPressShareExtension/nl.lproj/Localizable.strings b/WordPress/WordPressShareExtension/nl.lproj/Localizable.strings index 95aed6d8ede927974fbf2558c91037fce3868198..cbeaf8a209f613a8af5876d563f9e3b454ea8c8d 100644 GIT binary patch delta 1362 zcmY+DOKclO7{_N{_S&10t)o5?6f%TTT3SL=pdu|TjT5J@Gzoq?j%~)?FZR}(S+hG% zhJP*o5;fT)l-ao|!3sUT4hmr6V?RgpkKWxP%+arF9o{J-D- zKN|xZ0~Zr(>XBED9((opczj|qF?HhPsnchs&(6%wy_OtIr8C(hxqM;1xKJurUMJO> z1&j5DeXi-C6e4ID*@&V#!l;E@6w;w@=AFH3tat+qp%@m9-O!$Ws=jyBrLhh5VVW=bM2~Q`weklz(E{c%(N_V;%3315HpAve9 zI(qp|wI^2SXu&gN335pw7IrBwDZBbArnx!3%h;ud`J_4@+d2iT7OV^o5T@Hs+ikP08m^7UtnuiiMJVrQo!A&%Wg+s zCJkP@E}&;cP(}8Ihc<1vZL5@Zp&o=nTn*(otbo@P(>#$I#^2W2cs}bob)XiMMej=I zI1h_A&=jvE-YvtePEcx_97?&)giZyn+UF|fusCO!KM1GzQgnZ;Fhj^v@NaG!z{hTj zzY!Vb5A>b1Y*QMpw}d^d>FJF)^ z%OA;CVHKawger=z2 zP&=+Aw6s>#-qmhs-)OhBUqd6Ia`Dvk zfq<TYX5icarhPjDAT*oz4d1?e`7F;DR1ZdO^6KY6P zm9BK_6O6c{bD-bQz^ZN_dpXYTFjkBZz3uHEPtBuiq?ACUVPQZ__j+~`t-^*uvMmv+ z(msty#TDbyW6P-|+(dLw=#6BWl#0nUXgP9`WtmoXQnxpB+ot>c>pO>|DQA?Q(sTkA znJKEGv=EvCOgvVY!8Wppt1pv82C9&igkD(#F%uJnNhSty1sVC2wGChu>UgDj&{UL~ zfE8xT(=oGQXn24C#}GjO5yHol=|o&r+M0eGTD7;`P2cnOo{thvjjSekX_^9j(_5mSN|S2b{bgtS$6-sH#MqPy>(A=ug~PI?Q+b zQz=-r*^_ME*;h!{HP#f@kZb}mIVMi0bYh^q(*ZCKHxMm}_voB_;?hd9VkWB?vh%Hm z=}1+MUqJ|iGO}5SwKB9?H7jOJRCRi0v*;1ME}f-A;`z2x23cGBx`r%ZFbw*p??pN- zO@(rCRxixLSCv6}AOm_K_{35!V;WV2HHOlWLRO;+FoYJvvRG^+pCk}#>_A&~qplze zVU~N+X*n?KYtV3C%r4Yz143*n&(d9AnBJDh&lC=6I4d2~W`h9Y(84y*ST%4ix>~kS z4Pp9~pIk0Ype8qlL(1wAe7fv7&36jyFw*O1{}KgehP4ueC8ZaZBZXfXgPuYV!wugA22YWPX1!|F#OpW7X#bkZ2lOqCD zQQG6bxKqqJs-2)fSzph_k!!5e5%!gJ{{s;Dn-?#t( diff --git a/WordPress/WordPressShareExtension/pl.lproj/Localizable.strings b/WordPress/WordPressShareExtension/pl.lproj/Localizable.strings index 9e5c70f6eec8163b58714078bcb488881badea7b..29d16d11e6a1b43c892519afde931d7b1e6ee197 100644 GIT binary patch delta 1169 zcmbV}PiPcZ9LL}MdGjZ=y4@OajWLf}MU+O3BG}s2-DLd}<0kIT?q+wBtS>vy%}XXT z!_1qcYY(>cX#Z$lDF~v+ibyfFpa;($^kPv&Z;Bv-=tVq;g3j!Um{Jhro!$?Af4-m3 zqxMJb$I@HnuXcR>&9`kkld0amRC?F$rF-`F?@J8qU)i}TGdOf0n_IKi$QO#krE+Ct z)9Bci>OnltOIimXSC(xV>BV-9Sk$g}cXt~GuKT083G9V`L_E*&hI=t1b;oN|W1V@| zaQ7VO=fCP3KF%AIS)|a~z)#A{`71fW zZ|W;D#XfQf2NtWw;u#0w8B8raZV}{DM*PZN+b14F1Js@}Qn)rXlBKl?)a%%c*lajy znuvvWmeM9=Xvpyy-=lutZe+-JESJv?RI+5+nIX+~ejTmS7V(HXoHf|Fjy54F%&C^(T-U?hVUd>d& zC%Xu%O+?6=_lF?)d1(zludL?lyy00lOv0|Z%Hdru;W?kw>RzJ+2#;ek2A1JFd=thR8f=NqAh9J%6r8tC10Ri37d#|#E zt_o!wraAl{TPDZ@KSb9Dv=HJPI14U<%i!t}a05IQI)r1wAHoIUj&M(0B*w*rxKZpE zP0q`T5Xd6C>D&&o&TzvLV8WBC~b zuni{Q2G|34!Zb8s1v2uK{fsbm{;A literal 2795 zcmd^BOK%%h6rP92Gj5@sB(w=Bp|{PWC3T(jMM8KwkG_&7X>7-FoMd|Axv{4i&mGO& zNn&;^V95fh>V{vy0wE+8tU+Q6En9?y1S?dKvOq$O#JMwW;)aw~h(#o9OLy#h?z!hX z-*-NF*|ja7_4og%4~UW+Q{t+YIB@W}=MNp$o0?l*IC8YL?Zx(EFLk_p9Gy7X+11^1 z>hvqUXOd@Aef{UoU$}Vb)q%m+hF*Uo{^nbWx8F$*9~#j|$1Y#FdhPo7#Er?Rj_K>@ z=1it5o14wg70%2T7Z#U{^SAJ&YtCx!D~4dF7joRpzAPY26@ zxMDeFoY=+pR#1>{O5b6kZ z7;)I_2zE-uE@U66Ya#j}Vj(+>OF-p`5gOR0a|)Enx#!A(!m-Ptc?5)+%H(Dy4E=D# z=r-B5kP)!3CRlaN!w$Ygki2N z69inWheK4hEzlh(xh2H9qp)bEI`*h{C&tiE|KomxN)5e@3pBJ45BZ>;8mbVFaG__z zA#dFy6^CBTxhD8TD31IL0cxp}%UaAP1wO-Q5?5hN_NT)Y#v_Nb@SYa;-#XjBax+^@ zgZfR-{5q@-OaT#6{QXScw#(KEQ!cms)!_DChBiBoUCV#>87$2daxj8{IJ)g2p{dQL zoxtX~_lc(!$IKcFZliU8^%Pfo%+4NjuN7fBY`!OK3gC@Tcd>o$VE-@g;%NW=uVc4u z5g{wo1O|#87BqNzAj)Es*e>>ogW{6-f%uX5iTI6pPy9oCC>@kqq+?Q_bWzGnOOh=y z={IRhR^@iNM?NbL$!U39o|6~l_vH8GyYgr9eR(q`#kyj>vC-JavCm`oVp~d^(xD6} zBg(jPQzQ(hC^*i+k^>_85 yme7uBo!S+xpn2LI?F;Q|?U#g*m`gZ`4-;P|zE3c9aWAn;&C-FXxmE?Ok8?sxXw5HY|M=!TgR4Z zSNr?>H4Rn0`Ro#M*?T9%uIsonqln)b9{<_>MFG$Ofly>6}0Yg`vS z&K;BsW2RR#J+Go3qKNCElYCssX(q97J{&~f7CY#FVy941ce5Mq8GoC?7+ypTi&WIM zNe7}PGA*=VVd$9zd!@6shg||EOnX@yLHhDs#?+VKsACgslbN((K*H88jvFR{)2tgM z{KX+{5?>(MTxOz_!8NCegL2k?y0KuH-V)On_`pP$a&?1A+`7=kmg-7vdjQ9M3+PjP zAKSOb-xNH4F?7XBJtOHFUqusv-~6f)9u*4_!a^t zqG#m8f};*@DjK~Q?YL2r_Hwa8x^9^|a_Lvm{q(QM5v9l=sAJnhuA>h5SFbDGyB2{4 z?gIiEzyc0~%BPOi{G9Bi-zt}sMKI04HGm850*Bs=44j+`ayMPb;9Sn<9g86Mk?6~5 z!_=8hyJ%ENx!B*DHG94vW_ zQIDbRG#P&EiM}lF+f&}c0ozRz8P04#LtqWP9NE8`53+Wd=+H*Ubf7SI!U*>N4;RG1 z3fKhKz-Qn~@C~>F9&mfPb?ypxgZq*Dl~3|*d?!D^pW_YQ;@{xc_)Y#@{saDF;Ys0` zFer=&1wj|y6gGrUgztr4gnMFA>=9oPFN+_Ft9Qiv;@=XG5>lu1gmg?Amc}JbDoJ%| zO}Z-Glx|7CMT$`peJ%P<^mg=z*hH)tTZmnXeI1X)+v6kgsdzrF$KCkriALhB#75%% y#HVsn?vtnG>+<>8XdiqQ5sl!3AoNAV2T|&?f{0MXs#viV40vWHZR6YF{Qvp??{;qQ zyS?wt*~5=Le&UHIpGr=rW@b;GdV21e`Sil#>7_H7teVRgilybTa-~|+&ccPXj=f!y{HO!=h)VBFL}!!VJvoTfb#6$L~-5XMiai|D*t%OJOHTfoJBdtnAOVB2&H z+axrl=Ol9LJ{cb#eXM3-2ayeabSNJ{s%BTA?a@WHjqSpW;j9^sLpHe=F5E56dZp5= zZn$8HilQmX_J)7}wvLzQEC<=H&o7@vCaSxYj8R_&DQvmOa`P!@)sb0J?R5Z~(6B1O zMZid%hIJ~-ND8-2-P-R0PY^)<;d}4P<}ztb=??U`E7ivOAh{%r9va#q*gZuLQ29L3 zYQYZR1PnE0nEJ7Ye8Y!8F4=0C)WiNA13bU)JSD@za(}O<)lR1sVZzbbR@0!kCk&RohHQ>q>w?B4z_Zt;hL!AWdJO~HS}>QG{}+-xsM!+kI1F% zWEqh3b|vDqq;Aw{;-KvZ>PmQu{37C5C2-9KCY?fB;t+W;JknE5LEA=6Xz7@GjFky; zLp(w*$A-I`%o1ZWH<|N{!K^Wuz<6JxLGK`=)B7J8T=cE1Lz|{$y6x1x89|uoqEZU71V4j396Lm=iW7S^WzU@jJHdMMFV;a;Z9~&|p0f1p$fuDF&{~60nH!ADv>B7ZRh9lz45+4F z2O}}-%x^5u_OJtNf<4OC*w@*&*!S2k*lX-9_Fpc-^>Tw;f;-F=xEg12F84dP#fSL; z{sI0Vf1FS9^L&x7@)!Bn__r_cAM)SwHw8`@6DEWi;fk;+Tobm$`^6#gQ86XXi)X}g zs1tf4^nU1*&`+Vi!ee0)emDGC`1|m$QcB85P05vBk~XAwq|c?Vr0de3T|di=9F>85 zP(CWp%8T+@*^=Ax-w`n~5IGfjE^;YyJ@Q9XiGCN|ipA8}m+@$PAzq2s<1JF`2LA!Q C3C%nJ diff --git a/WordPress/WordPressShareExtension/pt.lproj/Localizable.strings b/WordPress/WordPressShareExtension/pt.lproj/Localizable.strings index ea0ca678d13e47987ad142bab2fdb22488b4a36b..d7abf5800a929071eeb944cf91572fb0d6ea424c 100644 GIT binary patch delta 1337 zcmb7@?`s@I7{_OKZ*PBH$tIz(*Ag1NYw^NZ3j|0bTYipNRVAYoXw4{#)n@IKwxk_1RX!~$=Rawq!rn+^kC)8EKq;~UPof4cW-xMK;PZ+yI#{*sUi5Bb1OF(0!(15X ze+si&Cu2w$4n<0SN!c&$>%_Y)_3?(ed%f6`F3gHybZ1b?(KbXbBK}ghS1|0(qiXj} zY@b~ri#=Rpm1nR+5IognB=Eyr7Oml>3}!9rLl$%tg>E+9*_)UH96NN(HF+{gAw;Mh72)3;)=9Ot|?EobYSbUVhZr=zk~{{dO7#%M4Ta?^LAb zJ5-3)RnkyADRvPR{4C`J`NFn?p&zUTeB2y*00~}?A6zd!-9pqs^gap%w$VR9fezYW z6I=wJgRj8X;3~K)?UBw%?@3prYtr{}LLQKl^0<6Lc4SX}Reo3Als}X&$d{Ev%3ig

Zj_L>h-u1|6Pk~k7_g8v)U`#hPJ6)(0*RKBZ_H-* z+?@*^BB2ldLxk#pzW5-5P%4NG_#%k-Sn zJ&a9);3I8HT*ohG5XF}3b@|?97otr>Y_w)$=o5q$O~*^&vU)fJn=V(@3ZHXr?v*Ag`iYfFbRccxGY20`#1CqxXxU4(ebfILx05_ zwsC{5W=W$3Gp<9iLyH;YG_YOCdtHbuM4Z*$hn}PSDb(O&naH>u+jM3q3_a^aH(l3`WJO(J}UtG|4`Q9zIy_9R>ZK5ko)1$3Mb82eDWo-EP}m_K-Hpjz}xX zL}32!qvy&EeS9}9_MLD$ONnDjK94Nl(38B7oU9hwCeJ>!R?1>7%ykNRLTy|L(uB)s zgNd>0?6{g_+uE%sD}7Q3x*;lto=BUd!I?rH#FRYI!4&Hk4WEe#vU z^RR`yJ}ilH4qF|FJL7#D21%l0#>*`^PCsnYhviQo9-S^ zibdDvHMXO^@NZ1O;i28rU^~!Yw|E!>ER<5ZZ4++$KY?*xPVcKM^aI9eL=Q#B zqjyI$(bLgKqt#e3wjO&m_D1Zz*e9{>Px6R7Cue0>ep-H0ep`ND{zCprz9L^!4k=KX zRqj$QDjzDJDc`Dsx?fGIN7XyjIrSs;vig1eKs*)C#BqEh{#^W<_%&@7n-EFUbT8R#lFjyH=45k{*_p}A znbpKgkUmPa$$`8mC@5G0iX=jX2t^H;7SR{&iw{KvUqsJtQl$(GbD01CzVHA3 z?>s#E@aWCy^@*#gbTX5j%=Jy>r)OphbH!_D-Z1e(X^|`~TNX$I1S)_48)GN|Mi(u>IBXNWz|@ur3l#U;mE zE$YdvYsu9n<_gVhPB^u(8icX~u4}EbZ6V2?6;4ER!^AHW-!JN?7!umqxTwan8A2^Q zc|gS8lUvw7a;sF-pWqdZsj8aXFkV1`MT>gFxC2oI5ev;*82W@_e`eJ7u}9$;v6nN0 z$XK3D5n~Y!IX1;Mofdj}I`SEB z6`~R%_S}Ja&_7sBQP<8tzQ)Nkwy;49m$69@yy8;g*nTFBDtIo1Y2ewAI<=0;13QX( zV;Wf%yatg+iQ!mEU{!VPhA;Nz2kgMYYy3Dh!v8H|ih22n=O7P56GNA`pe26DA7+DK zNAKdn>jsDkkw*4Lte-sHCiY#ZpiZT*@A6?W z`yzo7wV(vKDm_PMy@`I-rajM)_Ov=RT6QgB5X#;S9bx-*9q|S54bM2LC7iHmG|6^D z9c;bsd$H5&{4QqgN5(^B&;VIv4bdg82Xm`1@1XpRz?vYH!4=?& zZQQ?r&rA57F7sa||3bOy3ON_ol)@EaJJ3RpV67Uz$xB`Cf%iWih^&KEunD%oZSWiOWcvVr3=zC(x8-+4C%VG zA$=}=Fa0b%kYjSY{IdL({HeSz|1STj0Hsc8Rl1Z5$_vVfl2K-q73G$)qwFd7lpjOA zq5MX8EBs;j*T_(0Eb>WYH?kM`OTDOCYM|awcho!Tef96U&gjYLrD!o4L_diB78{Pe q6Wfm6iJyxX63vM-iR+1PwR){h>(Q=iYucvvvG%ogSNnSC delta 1402 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 delta 1348 zcmYk4OKcle6o!3gt{>w^Jc%3fa7-q3ObBTbr%jZ|B@f4WG{kw-k2r~wxD)%vo@O#* z>~TaCL{tgbRkS@Igj9(Q2!s%iv@2Q!T>xSQDy#qr*dZa&MHdxnD{(zGX*9ah)j8*$ z^Z(zOo8Ft=D>MGlvEX=UVsdKw+{_EJ;ko&RxyAF5Xe_>zSYBC8uC0%5q%Me?=?vM* z=A?_;GPqG`CdJn+mNsRnn3I&OkXMUZPfySK9LY$cu#ndzRVglqM2%$C!XB-iR|Rob zlw@&JCPGotNO3us$q1U5g+tWArg$HGj$Oc^x^OZ=cGO)Wge7G=#n<-8VqKPtFKil1z%LVOm2~Q9@8GuV<+uX+4?~3uU{cP*4kr38}av6^n4l>>nJZ zCd;Xn$&924ixf(V=c^Mc22>@GoKcFTpy~dWqC_TXZ7m|Db3#Z}G@@urAyG*ac_miZ z6U3}2DQlHL#ZhcrOj9gvA+;oDlnzZO0}@DEor`?JsHnu=%1nkNkj;>qbl*3q{(EZ{0|88;tsi?nFbL2 zV(W$}zRQ`#0uJFmJcfsG0Q=!*uFIp~6L^Hi{P;ADj^nUFz|Z3WdJEtocxWc9%J;%0 zE&z+BcKFiPidx_+vk%_2yWqBY6h3t}p-w$N?QFCW+Rcy8()R=KD&GOOxF#gS9Y-U) zT+<0J^7ZK1>g%!^FYec?^||o7(FYeSZur=G9}cYD@U^24khP7g!?RT12p)qj>tJmT zKTWlj6%JSQ!naN@+%eX39@=Y=o_+{9_Fa-8ZipDdhVF8NIv&75sH2LK#%}nahQQy> zPUO>dn;pDM!mT=$<9$=kLAd9511ww+byNwQpft`@?@jQ7#Rb#cAa&hxMC=uA7>xF| zgKfRz2%auau5um5ehD{FL1(C)v-F&%CvXurQa=lndysy!G(pK5EQUS9KZr%Os2TO5 zA+&*BN7v9t=sR>5JwT5b8{=Z!OfS>VB$y3GW;Es=^O!ZW&FnL5Hyb!$gX}E3%&xPS z*w@&%+0WRY*!!5l?f5x7fv@93d>219HX1#~L1V}`YdmjEny#2`nf@|8FrPG!n%}b+ zEhjDOmg|-qoP~370WQkP+*{m-+(WC?+G{;$8@A*kbU0%z5O=_ n>*#TS!+pDkt7)l;*8JgYa~7Px@^!q2U*-4tYyA80X07lar4fD% diff --git a/WordPress/WordPressShareExtension/sk.lproj/Localizable.strings b/WordPress/WordPressShareExtension/sk.lproj/Localizable.strings index c7d769b69edfdcba57a9132712597276ba185833..92cbe2a21f6187924d1d09e977f319c1029f7b3a 100644 GIT binary patch delta 1289 zcmY*XT}&KR7`=CXc6XQ=W`LkjLzsfJ#o9HXZMDQ$C{&?z3;PQ!uwHg9?7-~Ix-(0= zH7Tj(&6pIv#KxqiKH4TWT1lSyX2-*e7) zRy$WaFORPbzWLVh$f?oOkuziC(Y9DTkxWfYPNk=3W;1V-xvWX&7jo9(l5L|HB4`;| z$UzIpKn3I?5BbKvjNaU1m_;)08wJ<%jZ(pOiAl}r6U50<+j17d;cz@o7QC5QjuhFy zL5oGVIB|mbbU}5C<&55zs5Lw4fh9Ou*ONbp>n=&nG6UU-PHdmf2Tj&&X zm5(U%)D9{#cM;fDPU9Zf*23_0@W{rDs9}8`jWN5G@C9UH>gsK9N9}@4s2O^KX_lN~ zoh3|a$-}#?`{B0K985-tS+G2~Reuz&Ye!*Ad%by)O)IjMCbP4PZ1&}#-{3*u4RGbw zK9d=}fPTf)MguIJtK$2cIo?Hc%<%-}^3{He^%G24;{3l1p-bMoA=Y6mQ(Vs~ZH8$J zo&-C=3A_wpy_0vDduz-(ARzCB3sQ{5_OaM8xTZG3J9;aOv-f8?4=3er*irAmpmYd6 zQYK+7lz>h3@NtXrU1p#w6c*WPCP^MeD!^FiAxja4sRA@yd6?#7?o!D!&btM&R9f^Y z^r_u&O6gMPQ4*CIsbYl(d>q)%A_=C4Thkeygu3Aesc8j;SlK$dfxbew(Rb(`+QHA^ z%lJdQfq%pgIfZNFTDh0F5zgdn?jrXAx6WPTKILxlhxlIp2tUB5_$+^kU*o^z@AJR# zj|D|&7tRXr3pa&(!j|xdh{QUvRXiy6ipRwvF)pUXRq?vGDSj{hByI=NeSuGcUj#RU ze}$5vZ0K(2fuu-7(tFYs>Av*4^k-c|-HUa@@~E7W&&k*2yGo}rs9aGVDNofF^^$tC hK3{*een%V8RxpSh)c9uffmr%z(nweASCy=$V{3kb_E1$+5ZUCqF2ut4ioF!UcByD6w&}JfMsXIEbUSfqA|=;7hwY4O z#+65hV^Oq*$t^b6HdB$b7|o-iV;2{TW-&3US*x05kuB!sjcVzlQ<}S|YPK>(LrKZ< zAw$K0X$&UE3=0=+*WXMO>o{XCM6^s^88HnT8}`fyGBQ}7ixtZX$|22Is9aPW#fDLa z#?mojmUPt!*@_d0LjGhMPDJC8iIg0uF}7^(gV7LP4iHY&r(u?EAk_($38{H8@!v-xM{PlG~i6)*P{sU3iA{F|EE> z4CO2eN$X9W$#_Afe~KGOB7&(M(}>43TgP+GKcIxsD!%)Hrw)=U;sAL}4mN0D93Wr= z402!}6oCd1xh*_P>S|iaU*05d%Kacr`lUva5}Jtad6LYD9pnZdB=@`*lvNO>(|J0# z3)bjK0T%uCIW@C5fk~iJc-tj&JL!hzRSoON(6Expm(%4eg)4#*rJz7}$7)zeg8mND zQ`1haOQ$z}~%OK*i?HzZnf+#3}2N0X`IjYB?m=dKa19D1QBtHeZNRmH8-mguN-}rH|9SE@} z|Cba`?)xP<3#O=wQY8UXZYJB_E~h{?rEPNGH$Zm8C_7LcbaoRWpZXe!UwFFS$)U|q6_Q9v%61)N5f*-># z;12u){>_L?1Jla%G3S^Bv&86(&HTa~uwJ%>J;^@K4zfe+I6KQOvahh$+1uP2;at^=STQ)ewt5ubkBR9&pqFIPk8&iuX`W*>V4;Zw(q9z z2j4@XMd%ZTh0DTK;Va>R@Oup_dc=@8Dw^VJ;@je;_?h^P_?>^uU+}-<|5bWMN=tX7 hd(wXGR_%|0!N7-s?*n^sw>&K`%a;LtNWSjTe*sFxty=&9 diff --git a/WordPress/WordPressShareExtension/sq.lproj/Localizable.strings b/WordPress/WordPressShareExtension/sq.lproj/Localizable.strings index ed801a46253c802956a0468ded7a8b76729bf272..ea9b7ff7093e8fd1be10930c3dbe6b913dd94ced 100644 GIT binary patch delta 1257 zcmY*YTWB0r7(R2``|fNLb2E(@k{Hw6BvqufC{5DT*4(yx-|S}BvpXj{XLojHJ9Bn5 z6^WM@p;+1+Pzr)CK1h+Kw2BJ8i4=;0H7FH96bcrLPoi(7p4nXl2j<~izVHA3?>qnH zk;@|&^E*TFL^74mY-Dqr`NB)ESW?keS;Lj8UeiGgK+psj7@!OkPzNTk0a3;a;hs4~ zwcr*}>ZVPUMqM|diqza9G)hRvMtOF2HXes%do!j%i>(!8S*Dd-sjm!VS?Q+_*n=0^2og+lBB1h1@V*>|W-71=u?~wmQfy3+ojq;X$Rf%LHmdOjSgPitxTGnI zra_QF((|gS5T-h_q++5(7#k)0t4HH&=oJ!6L|3v=R5P2X1!w$`Mp4JM=CtQjW<6&U zb(OW)xiG{;4Tb)*V9Bw7KFyCZy~B=P+AjvWGL9By4c1U9ilC~P2Hh0Kx(nfOhrVsG zX*^3$h#Or8P9jojm25S{YSL@MMN6S| zdfGS7jdyfEMn$=go1|yu=jnQ|cd!PQKn>gn7MqI|HX$m|Km{P@r+4I0dd6R+d%hWp zf;Z_^&nW%Jzs^l}&=S==J#-@Y+;nomWDcMjh_KO8T4M$oWtFWoM#e@h6UBAQY_bOE zg}||C_UaOfQHEBv0hM-cxK?FwN69%hrIn5r17LdIHMo|zq z?z9a&U>od$E8sKmCAbCl!C%}UcaeLSyTSd${l*9QE`ET2l7Ep`d7XcQe}~`YKj1&& zuM0E6Vc{8JK}ZQD;Vt2k@QLuF@T+i742Z+x%i?+Qs<A18c z#igwDy7Z~^opi_5?K2o@Bl2?#@O8 zgbGMSNQjCu2dKo2#{pF&gd<#0RS6_okXngeIBR9xqP8mdKs42HMCKw;>|6+M#H>wrlcNOcFH=otJtW3x@nV%iHSlC zX&8dDb%IU9&O{+W71P>by-Oy5+YsxptRrA!g6zzUrU3#gbe|s#UbsV}vPbhJ+L zalBpyQPUvEAgL%c){&k~SUUh#AU5)?A1y_RlW?8c(ib%yT{DIWXcz+MJ+b}q)nt6J zq=s64JhbZ4PME&u8aUc>$goF_jxqZhrWIQlz-}olsl6x%6p?8Brlj&t>JIKZ?&jnINRR=J_4Hs}NzYHz-YGo5OZc3driMfgB>EMtz8F%0& zGSvv}bx+e1{thY8z@)dN7kt@y28`GxoAj9PCjCx{(sti4O$SB;`BM&Iv|G&R523EJ zi%e=uFkn&vqX?OFhqKZ%hNCmMY#i4ubDODc@@FlO4LF?6nOv2P5DtJyCRVm!-L4Y) zhkvVsy~!jnD$v?;;K38ZHJX!#sS%9PC*2G5eCT;**vNqeDm@WuQ_^c?$n;^8MceD{ zqDMo0^sT^E`m;REM_A_~U6V2OdSgm@u4y|o*(SA2RA@{YrPus@o)in$(RF&oA3o2? z+z$6AFY;}CH$TZA;Bxm>%Q&2<0-u4`NXs5`Azo7{qpPb1^FZSGx>^qUB2m!ct^b(-n#F!?;YQ+@3!xE zg;T=HfHJPkD=W&k%5~*$f7E}`e=Pt4PX$nLBnX3hp{~$I$O!F*ZiW6;1$s{f{{cAK BuHpay diff --git a/WordPress/WordPressShareExtension/sv.lproj/Localizable.strings b/WordPress/WordPressShareExtension/sv.lproj/Localizable.strings index bcbdae193a809aa58d544a9a5038a10ca4932328..99687d7e2e4a17f61133c69d7d5b42899d77bd5d 100644 GIT binary patch delta 1302 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 diff --git a/WordPress/WordPressShareExtension/tr.lproj/Localizable.strings b/WordPress/WordPressShareExtension/tr.lproj/Localizable.strings index e18783c30db5b491288719f7582bc5de7ff36f72..a2083ec5f74878d4b1adaa8db7ce3af1cd1ec893 100644 GIT binary patch delta 1311 zcmY*YOKcle6n*ovJ@#Z~a7dewTAtK2N~w}I6@nI8sm+HF976Cn&d2VH=f#V6)poH-%!N_x6p3v)rJl+@-Yof`3| zF=aXB)Cew?7ZO%+#Ta!RN*p?S(liaqXy?XFiyAWw4Jd#5Xlk0gLX+vl)O>w9&T!=7I5%oV0#+x3%<9v+qjW+p0x2S}3O)kbXu8?ek zVAF6NSQH-ZEa>_UeA{E!c?!nFx$r~J5L#@dYzbmH;S*sWx3`6NkJI2W@saiHPUzee zv$$Q3T*_-0xP&by-!{*vwM$dbwc-DlF_R=VDbmH~iD_Zug(|gNr#BG6667 z;~R@o7w6BU8>PC9K@CiR>c?_Aj;oludOw^{VlX2c;HYwB8I2&!6_Cvml?iuav zLM_j-t%mEdI{z3t1zsQye<`C!OD)HnvMNm(6?Xi)t$+=yg&GXkLqp9cpCV-sdxl9I z(y$zOL)i}(Ls5T`O*cWm!e!q+eG+()_ygwsc+kUb^d(e5x<$ z`@nzQe={Hi%)n~kMqo4WwXDdK@)`L(c~jn&e+hEI&fuZo&%yhlaOikwIdmy>R~b~E xRTh;k<bL4|8mA3tliG|{*Iv^uqt@cN_Ref(-7jLk}2vnqOhfB%BfkV-OrG3 z2;z6-w)RveIae_BrXPD&U8#5S7X$H;u6>5xbM&~d&o?dKoPoS1VZrDY`#8kEl|v{q zQLS2HhaLMG`1}69ly?VKI@)}%_HRmn7K|=`soK41{3rMTAC@|mbQ+gD(Ne@adUKho zDK4d9NH$3Xj$>!ilv!lizX3FlE9ApBLmiMGhz#AX z&!MBGUgzH_V6^i*P{dk(hcax1hv6`M80O*g@MZWO{0iQHx8aTyk=mqAX;^wl z%1U|3l9=>|bXN|`hvlR4pgbl|$O(B#UX!1dFUhaT*W~ZzzXMXBH!u*G4!j=N3fu_X z4c-^*3Z4i~1rx#3!Cc4bUm~aj)ikh_@nTTN=(TpRpk@q3*}ekA5~N1>VWF0 z7u2`Zx3yKRuDzpuu6?8ZqW!7;8|jT4i@Xxqj@*onM=wU-js6wA)AC3x9Gi?i8T(R~ R^%i|vujm)`m-urA`VZbZr`P}h diff --git a/WordPress/WordPressShareExtension/zh-Hans.lproj/Localizable.strings b/WordPress/WordPressShareExtension/zh-Hans.lproj/Localizable.strings index 6ecf78f2e7489cc2b055f6a351bb6b387c385ad0..1ac3769292ba0b15eece8c6fb232fb0c9c67e1db 100644 GIT binary patch delta 1281 zcmY+CTTC2P7{|}tXMox%2(svgsR~)!NJG<5TaC&!sp7)kSlDHEJD0=m!0gPrGmBji zHWf`xHkE}_2qvbQsEMhG618dCn7(RE`%tSy9yAzZ#D`6dml#8Ao!LcWGf(Gy-~ao5 z|Noh_#Muc*sVQ}tv=M@KLyCe2tNC1&lj0JB*mJK8H+ zFll7-3EmybXrv=T8LSD#G0##yM~AvI87+@4U~cpn)?OR#Q_Zw$nhD;6M64Bgac)m2 zs9G8vsV+iqkj>~0=^_&ReRfBK-=PWj!3i;^SqZ-0YY5`BsA{65LBUilXhu)yCd^vG zpsG&=dqjC^+^@~jE;-1ki|K8b=6{+mEBT#O#Sv6p+=vrZ zv&zKpaNW5_7}sLMw-W}>qm$gdXpXIWprQ!w$^WAMpK+Bc?$~VC7M2*I!rxH^;1DAN=;IysS>q9ou}TWKBvlbgig>e(--M0^bhnl zU1nHjKhwoL&I~X^Opu8(3X?v@l{74Y67F411Nm!QSTDxB>22 WF2af2Bsa&s#1**`_c}UNBm4u@mA&!+ delta 1392 zcmYjPTTC2P7~Z+hKure-(1OTmfU>;^Y+`KF#2BPCA*Bm@fn8X3w=+A3Wye;%J7br=nsV zx=xoMfhcYZd11mBgrH5;2clxB3n(e6&&pANbW$@U1u9XoqI2UFxN@VtpiWajpQ=H# zr_J86RoQ~jRl4pqzZ)L6B3@{vQ#!DW+GC(l0Y_ep~g zO;R;gU3p1iU%!;Xc3~=Iqyh(3GohL$njweBo{bLSQTHK5wLpg*N>mg#81e=T{XnQy zH(|=k`RnpQ4aTfquNvzIErxDE-Rf$Q^cd8-{izI);*zTO=6~cJ`QMOYb}TzujI^fc z^%lT^0Q8V5Df4xD+oIyud>+rDn#@$9GjvT;)uzCnC%V^;4~G`Xa{x2%Fe+BteQZZR zQY`3fP9`~uJDpuiA3!bx~--tb^k*wtXekpF+koLU1 zHq@C^?3 z(YZo)aHV5P-#_pgwyWmD81oF>br)Pmu}VB53&|3)l58YjAp>ND)JTh5CLdEARYC2fUZxIE&D3EkNQJ3) zs8iHM>KgSE^*236(zWz%`XGIYo}uUI$ILdSirL4sFozir6Jow)eqk1vMP`M0$nIv_ z*&u7M=h%@%iQPOb?z%}j=RC#=N|Ee l{C+;n_wgU_AM#)De+Y!IO=uQ+gs5P#!iX>-oJYqC!2ji8?8X29 diff --git a/WordPress/WordPressShareExtension/zh-Hant.lproj/Localizable.strings b/WordPress/WordPressShareExtension/zh-Hant.lproj/Localizable.strings index 9d8bd97039add6678032663e6317a381fe00f2a0..0f61d196429ca43d4bbf37dfc540d45124548770 100644 GIT binary patch delta 1285 zcmY*YYiJZ#6u$GGNn)~z#<-D?v8m~%VqTQAO)FOOXf1K}o!w-UU1xUgZYDdK+3e1) z**qG=qA_Z-=Awim7C~rHDyd2z;J?xeMf#&kKq$pfT0)By`k>I#rZcmlAoFMD%=ymu zIQO2aJylyAp7(ft{)RwsF!XA8XgD%58jT$jrML_e$uVU-rK-RWM34sx&_ELKAPsbo z1qR<7bJTY5az;!Td|J;Md@il(q73Dc9#M-!Rnd~It*wE8n9Pp)$Ha{J&BIJa&xCtK z119xMA?9cZrd84cp)|G=MKRZfLXHj|N~hHVx{fuVm$2sYP_L4mP_o&W!-Yhw5eYcA zEf`P?6%Lk&&}DKL+9aJs%u#1{Z1-7eLcK5{=2Ro*s1bBt%!`UDN-E^DiUG5cBU%<_ z41Pe-Qh~!_JT>A|;$wV|t{G4>!iQv;H%!?>eX?Tk9&;Kp@R^qb0-Q4ZLEk{c2PgDA zwBhD_Pfk*m?3m@xVm3`jf@#_GxYf{LifX9*KZ8Ci1M~vkWa@3S^rBs4Ma__9$P{=nDJojD6ds=~ttRHE>UesMgMO&OxG{PZ%8JOl(}tpJ*??cn!>A7$ zxs1jex{Vkt#gR_C)2KTZ2+pteK3tFvb+ycKMtvD9HYl{2m zyk^$kXAjh+tT5$2{cDy?OHs)NDrcWVF51q9&>dAMZN6V&xp^r+>wd$Qv&4B}saf`( zUrY!fwMVvcvQk$@e-+9+x6Mo30r;7F7OzyC@~_Fm%kMrcPOVUq6{EcLaPT|(pXC#< zpa7P^b?^ze3%&vmz;D=YtcYF0Zex$Ib-V(v!JYVg8~!FP<0^gvKaVft@8KWdw}|~j zC(%V5CPGAAREc!N0he`jUD=N9j1dKz~GkOs~^F(m&IGG1W{nvybUw4l@0Wn+bO@B6E$o!Q5d! wXYMmUu$62F+s(etO6(+ill_AIiL2&1xfi*9&dr6n6qn`-+*{mflqlo>1F96Q761SM delta 1368 zcmY+CYfKzf7>0Ldb}kF89at!`NH~P6O1T(K4M}4VFp|Q+-q?j@cRRClc6YkN%(6SX za+Neyq}Yaq6O&iH;|Up6V40pUTRe~vWGNk& zlo&{=X|1`rIoJn9i3j~jO;VM#zmwNsOifMbdpQ;GSzeNPL53hLX)x{Y5JjNzF|>g- z5Mj0sowwSN4J+;qxZtRog`ihb5@EKq4Tvc|s+kfXlay6ngkqR=cy~WRn^|fCb+QPe zk_^+sz4{*Am2L=~v(_E)aBy4;xuBLwDL_-r?Y=G;4~n%2raz#bB9((xJ4LU|34&L<4BRr);2 z(boh8ydBA;tk1A)PXlA#{~bkD*5NX{!D{cM^q^t3(im#NLp5{_dlI$a6^zHj$I^OB zy}7 z%8jp*f{R)W!Le%h%}nFW#^etoT=%aXFP|3CJoPyGgDFE-NOqq%@y{D#u4ZN+5xj-I zp%0?7q#cb@Y_ZvP(dLAfX5&%WVpOD`nWFYPB3vP7nc5T=FAZKbM1@s$;gFD>?tc-T zW6BBy=TiZ{%G%9_CFnlQ+66;JbWz*~sAb_@VdbZlQ;4TKXT_P{7h8-LG2>-~= zt@zs2+&K5!(#3^nD=r0ZaRmb(TY#m_0;V<%!2@PU!>;iM>e1&+gASm^CK^Jf-A9-j zQW)}O8c~t08jUeW*w_etvS;!+^VDZM4q3-iVy>uciSdmtQYDWie2ob+Z~w9EE3lh; zJx@_E`4`cpvtslPTsIO%U9GwD`D-tIbn4d~hhAUpHOJxEKiOtsEEAT$Faj&W99RqX zEEdA%ux0FhY!lnU{>JX%g}5EBz+3RAaUUMSWn9B=;@bpGIEZ@U5YbL_5Jw3=5hP9! zuM%$(>%_OjZ7XiAwLW2;?XtdY-LP(1x5-DzO7bw-NggGgWPrRt{zzUYZ;*G$ZK|H? zqXwx_YMFY6`hxn3`kuN%{X*TP?$Zr)6a5U`PS4PD^a{O3pQS&f&(ojMoAj6T4f-Ba m$h0zECd8az=9u@G>&$K2KHFg%XLH-)wlUkwwv#AY0R9CnfYc)Z diff --git a/WordPress/WordPressTodayWidget/ar.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/ar.lproj/Localizable.strings index a111698232fd226e32f08c1bfd829becba04751d..6c9421b1ec59b0af6c0029849022b314e2328cd4 100644 GIT binary patch literal 146 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zRGiM{ z%4Wi*&gRah4oS&PUnpaXB8kU(_UYy3J z&gQ~q#O48{4b$0F*(}*~fJ_Y_)=Fp70&-p0yx5!|Tvs*|Aj6$aAH?Mllv2>txABf* Q00Txw2+hC=rD0Si0Nd^ve*gdg diff --git a/WordPress/WordPressTodayWidget/bg.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/bg.lproj/Localizable.strings index 641bcffa38d582cb7fdef407296b073cddbfe75d..bc559250bbe235cec476374c9dbc9726aba9b47a 100644 GIT binary patch delta 96 zcmZ3-xQtZW^rao yeo^tn9Lb51!lGF$sw@U94lJfDjx0t%mMx0~i~mG@QBDp)aRoJfkLZGleF^|=T^c)-^<5%!CiW=+0HzrkAOHXW diff --git a/WordPress/WordPressTodayWidget/cs.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/cs.lproj/Localizable.strings index c20af7a779b7d12bad6096faa57812e7fd2031f1..88e68efb8923bff22c6027cb7d9e0dee8cfbc054 100644 GIT binary patch delta 116 zcmdnMxPj3jsURn_xWvHV3L_IU3o9EtM`&1PYI$*lbAE1aYFtZW^rao zeo=8ILli?kLlQ#~Ln1>JLn=ew#CTEZT!s*!paMfNP(Xnpmmw2K<}kbkDtkLoU!0Re PP+UPx-zl_U;sgZ%)_fot delta 116 zcmdnMxPehWsURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE{kGW_D_EgmZpwZfaghacEd( zYI*U*0&&S)h7g8)1_g#mC0m?0!k(^6fq<+Q~?#_F}&pv Plv2>tcS|gpI6(mb)aM{o diff --git a/WordPress/WordPressTodayWidget/cy.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/cy.lproj/Localizable.strings index ae33bd139ba60febc9a85a9c6b72cdaddea8bb28..8cc53e1e30d46ac2b6827b01510e9a895ec63f6f 100644 GIT binary patch literal 118 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2=G_ zpHrS5;g_G1nV6DT8tRdsmX;Y2nOmNkQ(jrbAtoS&PUnpaXB8kU(_UK|mb zTb`OzURf0Ck)M{98R3_ol9`y2SQ_e{pHrUBAt>2%#A`pfrq% F0084%9^3!` literal 128 zcmYc)$jK}&F)+Bo$i&RT%EZPV5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UYyC` z#E{BR%>2%#A`p)`z20sx&hA_M>c literal 139 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UL4_+ zT3ni(ky@0^;LecBkjC(YAqNOc7!(+C88R7)qP!u>6N^&A9ZS=SO4Cv~1f>)-^)39P R7{Gv$5kfO?LTMP41ORwMA{hVx diff --git a/WordPress/WordPressTodayWidget/en-AU.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/en-AU.lproj/Localizable.strings index e92df4e501e4e65343f11e69caf45b5ce7a54645..930d90f1f3ce39c8fc30e99e35c25ed835e40c7b 100644 GIT binary patch literal 84 zcmYc)$jK}&F)+Bo$i&P7!l7ZAspZ8H&iT2ysd**Ep+1?}sl^dtnZ=nU`9;MXg5nBl R3}C>>2%#BRp)`!r2LQIC5R3o- literal 84 zcmYc)$jK}&F)+Bo$i&P7!VzJa#hE4fMa7{$nc1nu5zhI!xv6<2#i3!DspZ8Sf>H{a R3}C>>2%#BRp)`!r2LQRg5Rw1@ diff --git a/WordPress/WordPressTodayWidget/en-CA.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/en-CA.lproj/Localizable.strings index e92df4e501e4e65343f11e69caf45b5ce7a54645..930d90f1f3ce39c8fc30e99e35c25ed835e40c7b 100644 GIT binary patch literal 84 zcmYc)$jK}&F)+Bo$i&P7!l7ZAspZ8H&iT2ysd**Ep+1?}sl^dtnZ=nU`9;MXg5nBl R3}C>>2%#BRp)`!r2LQIC5R3o- literal 84 zcmYc)$jK}&F)+Bo$i&P7!VzJa#hE4fMa7{$nc1nu5zhI!xv6<2#i3!DspZ8Sf>H{a R3}C>>2%#BRp)`!r2LQRg5Rw1@ diff --git a/WordPress/WordPressTodayWidget/en-GB.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/en-GB.lproj/Localizable.strings index e92df4e501e4e65343f11e69caf45b5ce7a54645..930d90f1f3ce39c8fc30e99e35c25ed835e40c7b 100644 GIT binary patch literal 84 zcmYc)$jK}&F)+Bo$i&P7!l7ZAspZ8H&iT2ysd**Ep+1?}sl^dtnZ=nU`9;MXg5nBl R3}C>>2%#BRp)`!r2LQIC5R3o- literal 84 zcmYc)$jK}&F)+Bo$i&P7!VzJa#hE4fMa7{$nc1nu5zhI!xv6<2#i3!DspZ8Sf>H{a R3}C>>2%#BRp)`!r2LQRg5Rw1@ diff --git a/WordPress/WordPressTodayWidget/es.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/es.lproj/Localizable.strings index daef8b6ef76ede286416dd624a744f624d945459..b2d7bde8997a6431e5bb33228e569d757a4e0087 100644 GIT binary patch literal 128 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2&Xw zBo;>l<$=7~UbiBS;Aypq&n4nc7RHGOku9|kaBWQ5QRoKPA@g#!R< Cmm#PC literal 128 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UK|CM zP0T9+%J`-#q?Z<#Bt`?3097OwW#$)$L*$D&1f>)-^{t%!8Nh&%5kfO?LTMNk4ghYH BA+!Jh diff --git a/WordPress/WordPressTodayWidget/fr.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/fr.lproj/Localizable.strings index 3bd523fe8bd1c0f8337efdd7af1b5099aef05cda..8907edb7a4e08534610fd4ffc66541eab4eff222 100644 GIT binary patch literal 129 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2&jk znpzwKl}yYmN-a)f@KTUuNMy)l$Yn^41glFeEh^>^6jxBwH*xf100Txw2+hC=rD0SA E01g@-p#T5? literal 129 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UK|OQ zO)V`dPGj&=kYq??$YjW6NR5H2O3W-uEe;7QO)cgSlv2>tw{#0;00Txw2+hC=rD0SA E00O!nwg3PC diff --git a/WordPress/WordPressTodayWidget/he.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/he.lproj/Localizable.strings index 53ebdb678c65e82cde621429a6b502e0e45ecfb7..3cbc9cead4b63562d9e6b47d7dd5dc20f7d5ee5d 100644 GIT binary patch literal 150 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zRGh_n zne_?lP1d^%3ak%UpF!AZtgl!vv0i1p2*j__fiic1DsHkq2dPVAy$2M3&iVqx;Sdy8 WP}6q_Oke;5Mn(wDzzL;cR4xE78Y{B^ literal 150 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UYy2y zkM$z!bJiEEH(BqdGbpg$0Wxj^1%TW%)>o{TSg!)*ud=?%V!h1z1SASn^MLgkgv}u+ XrJ$*A;~l{O28@glnt>Ba!>C*UJpwDE diff --git a/WordPress/WordPressTodayWidget/hr.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/hr.lproj/Localizable.strings index c1327865eb3bbaee2689f52f3c25e374332ad9e0..4bfea9a0f5b5f05155dbf5b964065e03d76b2847 100644 GIT binary patch literal 119 zcmYc)$jK}&F)+Bo$i&RT%Ertd8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2&gd zl$xHCnvxmmoez>vEXs@t$S=-HEy*lN&B@B-5ENHX)3oS&PUnpaXB8kU(_UK|sU zU!0X%l39|Pla(3ioez>qEXs@sC`wJwNlnS*5R_8T)VFbC00Txw2+hC&rD2pm0ND^8 ANdN!< diff --git a/WordPress/WordPressTodayWidget/hu.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/hu.lproj/Localizable.strings index b2b74af3667aa2c465036dc328b33c6378ae0664..d42dfd4c68d2a3013d1ccea84b3956ce87690642 100644 GIT binary patch delta 89 zcmZ3$xPVbVsURn_xWvHV3L_IU3o9ElduUi@YI$*lbAE1aYFtZW^rao reo^tnSm}vQ($bj>J`4{TN*MAP(iswg^k;@_4nc7RHGQwti46(>;;|bB delta 87 zcmZ3$xPZ|isURn_xWvHV3L_IU3o8>Fdqh}fab`(=QE{kGW_D_EgmZpwZfaghacEd( pYI$)cgAc<)h7yK+hIEERApLowhwMasX$}rSDFsb^r`U-N3IMMs8fX9j diff --git a/WordPress/WordPressTodayWidget/id.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/id.lproj/Localizable.strings index b38b3ac036267f6d4663f5bdfcaee2b6466a46a5..ba399c842d5ed22732f93d46d71207055c5ef4ee 100644 GIT binary patch literal 134 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2=DD znwM3Ym!6mxFCgfh4^om?q?-+8gansnCq@ON=A}baaR`blsOek!1~GsEBO`=n;DpjJ GDi#21aU+oc literal 134 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UK|yW znwMUhmsOgV9ui!doft15=$#LePb|{ShB6|(Aqo=nI0U5>H1)0QgBiepkr6^Oa6)Mq G6$=1x(<6%j diff --git a/WordPress/WordPressTodayWidget/is.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/is.lproj/Localizable.strings index b529ecb89f85e99a64b12061853281fe4a6f98aa..6518cf4b8dcb018ab08c66b115dd34b8e114bb33 100644 GIT binary patch literal 138 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2=1& zlUh=enU|he6ysQuQJS7uoSK`GS(M4(!|;|Nn<0^*h(Up&j3JZZLzsJNaY<$ohoHEE Vn!c5L6ayGAGD2tuPACnd5&_D*BNG4s literal 138 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UL5A0 zT3nJ@l*!=3@RlK)A(5eoL4l!+A(P=ljAKbgX?kLDYHmtqQIuOwYDr0EUV35?hoF># VroNeH7y}qEGD2tuPACnd5&@e+BNG4s diff --git a/WordPress/WordPressTodayWidget/it.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/it.lproj/Localizable.strings index 474e86597768a0f6512ee70025d82f980d190ade..d867ffbd4051364631ddccaad34bd4a39b4d1601 100644 GIT binary patch literal 120 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2&9o nq{5^#LqO6|V8KM7d?tsWxPqF#nY{}G7%(zIXa-Iw4Ws-4^Uoe< literal 120 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UK|CM oO$5qkhJfT@(wSjkiBt|jDFsb^D|-(HFkoba&UHEoS&PUnpaXB8kU(_UYy*e z73$x>nrz?#gt;jOn++Zsd^R|d+>udfm0G|dD5apOZ)WSp00xYV5SoD#O2a5$0CsO3 AA^-pY diff --git a/WordPress/WordPressTodayWidget/ko.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/ko.lproj/Localizable.strings index 9d4b3b2f33a9f01c362da4b7d83ebad582869b91..969d98030d9382789073d88b049a2513fd3cf7aa 100644 GIT binary patch delta 84 zcmd1H^Ghno$t*50Fu20V#LU9V#?BEMmYG^!9O0awo12XVtBS{&h=pPQSSS5h1rmYG^! ooV-VKx5e=Z$tSvxx*VI5v{`r^L*m{K9D-5`n)+t8P80nU0QZz12mk;8 diff --git a/WordPress/WordPressTodayWidget/nb.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/nb.lproj/Localizable.strings index ae8b56a44e809858a2a2e69c49c847980b4d2bec..a34d5b9a4827119d6e4e7c30b3963a1533099ddb 100644 GIT binary patch literal 133 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2&Ip zoS&PUnpaXB8kU(_UYx<; z#E{BR%XVtBS{xCUS)5st zUsN0!o|;;eo>-Qe7ZH@2m|T*XS{xIem{^pOT9lcWo|+fwlv IG%-;T0AHXaMF0Q* delta 105 zcmZo-Y+_7ID#*z!E-^5;!pOwT!pg?Z5fPSIoLQ1zR2=G)nVni3;hdkFo0?Zr92%CH zT3#IKlvFnimn2nwVUYnOYnfo|;;eo>-Qe#~~=Cps8=^ IHZf5V0Atc5PXGV_ diff --git a/WordPress/WordPressTodayWidget/pl.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/pl.lproj/Localizable.strings index 0a5329c1fb5b3c01f10e21fc01af423be1e03169..4b77920a644e0210e12296a76f7c7ff421acd510 100644 GIT binary patch literal 96 zcmYc)$jK}&F)+Bo$i&RT$jZzT8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2=1< d4-!r+s!HV$6jxBwX8;36MhMNo2Bl$?6#zip6+{34 literal 96 zcmYc)$jK}&F)+Bo$i&RT$i&JL5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UL56} d58@>jRi$zWN-1dSGk^gjBZOvPgVHd{3IIc@6-fX9 diff --git a/WordPress/WordPressTodayWidget/pt-BR.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/pt-BR.lproj/Localizable.strings index 792166961fe81fccd5e48105d433d87e48327f9a..526513124f944fe6885f97a99b27234f4adc0302 100644 GIT binary patch delta 110 zcmbQoIFC^;sURn_xWvHV3L_IU3o9EtM`&1PYI$*lbAE1aYFtZW^rao ze$m888Ix=VXNG)+T!vJJJcbg6hYUpwnLs{JM`=+>W=djl6j*IyUP)>(hoHEEn!ZD$56uXkfDen6Ud*aC&S4hD5apOZ{-{{ Hu}%R1(&8dB diff --git a/WordPress/WordPressTodayWidget/pt.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/pt.lproj/Localizable.strings index 5ee377434e18b2c0ca820e2ab2f1cde9b899e0ad..444dbf8337ed1eb8d57a7d7b2ed9371481447966 100644 GIT binary patch delta 112 zcmbQkIET?QsURn_xWvHV3L_IU3o9EtM`&1PYI$*lbAE1aYFtZW^rao zeo=8QLl{FQLoq`sLn1>CkW~ewpEG=ANM)GlAR!&*o?l#&UmOKiotRgWTFfCRuArvx Km6$QHMgah|h$9;S delta 108 zcmbQkIEOJjsURn_xWvHV3L_IU3o9EtM?_d=ab`(=QE{kGW_D_EgmZpwZfaghacEd( zYI$)KST-@QB(*rqJ-@glzc`!0nIWGcmm!rQkD-L&Awv;ECXhc-Pll62P)b2l-^wv! HVvPa-fW9GR diff --git a/WordPress/WordPressTodayWidget/ro.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/ro.lproj/Localizable.strings index 6203fd243f51fe240fdc1248aa685ec9642a5e9d..450cfdac5ac32c73bd5a4f82b51e6d3e189216ec 100644 GIT binary patch literal 148 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zRGiHa z#*oQS#ZbzS$dChKF)}k0F=R#ol>=2L7G-9pGXyZ?07a95YDySVqrx()GD{MHdNVl$ Y#TC@_-2xLBz<`kvLNjneX&99a07WDsb^rhX literal 148 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UK|yc zS(RCm2$auEX9!@(VPs}VW+-JSVMvVvDg>%aEXvHxW(Z@*WT*m)Co<%KSU^=p44E8) YQVN>-R-PdYV8F--p&2-#G>pmy0IO#rTmS$7 diff --git a/WordPress/WordPressTodayWidget/ru.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/ru.lproj/Localizable.strings index 89e1dc07131b8363d9016d4dfe377df771cf7ad3..274ceca905a56dc2f719db1fde43bc19963e64c6 100644 GIT binary patch literal 166 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zRGi5o z&*H#h$KuFh10oS&PUnpaXB8kU(_UYx}u z&tk{o$YRRk#9{%&rYzPh7U?X~EPgD8Kmi+|q-i#b6p*q3LQ@u7pc(@f2cVQiCQz#b hSTjhK6OirAAt|yjxD#*z!E-^5;!pOwT!pg?X9vYUJT3#ICoS&PUnpaXB>XVtBS{xCUS)5st zUsN0wm7i3USe2TWnV8Ao&5+NK%aF>D$56uXkfDenb)vpF2Zx}zf||aS@5CGh0OWZc AcmMzZ delta 97 zcmeBS>|xYTD#*z!E-^5;!pOwT!pg+P9ubyVoLQ1zR2=G)nVni3;hdkFo0?Zr92%CH zT3$TSS6nTV!J8qUA(tVQA&;Si;UPm2Luyo1eo|3lRcc;lB8Q-qf~LM(8h Avj6}9 diff --git a/WordPress/WordPressTodayWidget/sq.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/sq.lproj/Localizable.strings index 2e6c1468cee602beb0b7688a39e7308dc6c779d3..85153f8130c4eddda0f15149ef0fb493c1306563 100644 GIT binary patch literal 134 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2&+R zSd^6-?wt>kOigD9V0g`t!%)bO$&kyCn!ykTWK;oh2}3?Z5yNW^L2(5&eN$T>1~6b` NgwPC}P#Q+X0swcWA20v_ literal 134 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UYx-Y z#*oQS1;ix``3yx2uhSU<7+y2vFcboXav4&?z4Jk;Q$qt1i?UKV1f>)-^&R}f8Nh&% N5kfO?LTMNk3jjm`A6@_e diff --git a/WordPress/WordPressTodayWidget/sv.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/sv.lproj/Localizable.strings index 2de47e3c5590811163dde0ce68cf87d7811934b5..2bd17743754a8c06a31fcb0bdc80f02f2d71b597 100644 GIT binary patch literal 146 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zR2&Ip z07!+Fn|FgBZOw)gwil76990kCEox5 literal 146 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UYx<; z#E{BR%tZW^rao zeo=8MA0wX;pE92apJfIg3!gfWqsZsLr_JZiCz;O2#b?gv!6yl%b@`+w>Wg!72#PDH M>05b6O{`J?0G9n4IsgCw literal 154 zcmYc)$jK}&F)+Bo$i&RT%ErzS5tdn;S(0B=9O{#qomw2>oS&PUnpaXB8kU(_UYyM* z!)M9o$>+eQ#AnLq0VEaqxcC&)frL4bD+#1^`J^)VSoqZWjDT_ueA;~Oe3Gerj6kk3 dp9r5NhoF>#roLNf8Uq+GGD2tuPACnd3IVK)8Z!U@ diff --git a/WordPress/WordPressTodayWidget/tr.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/tr.lproj/Localizable.strings index e8645db94d514b8e1c46ec502f6b6c2a04cc4b8f..04ad691c7f0edb52a5fae8c1b09d56227baa752e 100644 GIT binary patch literal 170 zcmYc)$jK}&F)+Bo$i&RT%ErzS8kU(_UL4_^pPQSSS5h46lbM}b91)gToLQ1zRGiJ= z&hU+)n4yFrm7$0slOdNO2gHhq%r7d<%}FfEVQ^wdWt0bsCR84;OZRGOQUSTs>zoRdRPNXVtBS{&h=pPQSSS5h1rmYG^! noZP)XdQoaYVsBhh_mS>h$>~qaxl;=`1f>)-_023N`YHkd%J?1m diff --git a/WordPress/WordPressTodayWidget/zh-Hant.lproj/Localizable.strings b/WordPress/WordPressTodayWidget/zh-Hant.lproj/Localizable.strings index 9b41f3f4d564a25f0683797c0ffe1584c8e0b19f..8b65bf722b27aea6d4a2a7718d44c78c16fadfe9 100644 GIT binary patch delta 86 zcmXRY2uLc($t*50Fu20V#LU9V#?BEMmYG^!9O0awo12XVtBS{&h=pPQSSS5h1rmYG^! qoYbWiy(l@EvwK!*MN(;G7en&Ads8>2R&WSPDQN1OSUXG%Pyhf42Ob*$ From 052387fccb83bb10e0c872868ff64ddaaa97059c Mon Sep 17 00:00:00 2001 From: Jeremy Massel Date: Fri, 2 Apr 2021 20:53:33 -0600 Subject: [PATCH 12/17] 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 5d36117637af..c20d7c9d802d 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,4 +1,4 @@ VERSION_SHORT=17.0 // Public long version example: VERSION_LONG=9.9.0.0 -VERSION_LONG=17.0.0.5 +VERSION_LONG=17.0.0.6 From 525fcfb51974d729c02e5c8d7140e9c9be79df48 Mon Sep 17 00:00:00 2001 From: James Frost Date: Thu, 8 Apr 2021 14:22:11 +0100 Subject: [PATCH 13/17] Update navigation bar styles when using new nav bar appearance --- WordPress/Classes/Utility/WebKitViewController.swift | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/WordPress/Classes/Utility/WebKitViewController.swift b/WordPress/Classes/Utility/WebKitViewController.swift index 444f70161a43..2acf42417655 100644 --- a/WordPress/Classes/Utility/WebKitViewController.swift +++ b/WordPress/Classes/Utility/WebKitViewController.swift @@ -89,7 +89,7 @@ class WebKitViewController: UIViewController, WebKitAuthenticatable { private var onClose: (() -> Void)? private var useLightStyle: Bool { - navigationController is LightNavigationController + navigationController is LightNavigationController || FeatureFlag.newNavBarAppearance.enabled } private var barButtonTintColor: UIColor { @@ -279,6 +279,9 @@ class WebKitViewController: UIViewController, WebKitAuthenticatable { if !useLightStyle { navigationBar.titleTextAttributes = [.foregroundColor: UIColor.neutral(.shade70)] + } else { + // Remove serif title bar formatting + navigationBar.standardAppearance.titleTextAttributes = [:] } navigationBar.shadowImage = UIImage(color: WPStyleGuide.webViewModalNavigationBarShadow()) From 6971fc7d649f6175a288e543c7db696cebc6252e Mon Sep 17 00:00:00 2001 From: James Frost Date: Thu, 8 Apr 2021 14:40:10 +0100 Subject: [PATCH 14/17] WebKitViewController: Improve subtitle visibility for darker nav bars --- WordPress/Classes/Utility/WebKitViewController.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/Classes/Utility/WebKitViewController.swift b/WordPress/Classes/Utility/WebKitViewController.swift index 2acf42417655..7c43b98be439 100644 --- a/WordPress/Classes/Utility/WebKitViewController.swift +++ b/WordPress/Classes/Utility/WebKitViewController.swift @@ -262,7 +262,7 @@ class WebKitViewController: UIViewController, WebKitAuthenticatable { titleView.titleLabel.text = NSLocalizedString("Loading...", comment: "Loading. Verb") titleView.titleLabel.textColor = navBarTitleColor - titleView.subtitleLabel.textColor = .neutral(.shade30) + titleView.subtitleLabel.textColor = useLightStyle ? .neutral(.shade30) : .neutral(.shade5) if let title = customTitle { self.title = title From ea8e389c1e69f6fdb4d707331a4cb1a87065b694 Mon Sep 17 00:00:00 2001 From: James Frost Date: Sat, 10 Apr 2021 13:59:28 +0100 Subject: [PATCH 15/17] Fix right-to-left layout issues in NewBlogDetailHeaderView --- .../Detail Header/NewBlogDetailHeaderView.swift | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/WordPress/Classes/ViewRelated/Blog/Blog Details/Detail Header/NewBlogDetailHeaderView.swift b/WordPress/Classes/ViewRelated/Blog/Blog Details/Detail Header/NewBlogDetailHeaderView.swift index f53987b59900..2138603ec2b2 100644 --- a/WordPress/Classes/ViewRelated/Blog/Blog Details/Detail Header/NewBlogDetailHeaderView.swift +++ b/WordPress/Classes/ViewRelated/Blog/Blog Details/Detail Header/NewBlogDetailHeaderView.swift @@ -202,7 +202,8 @@ fileprivate extension NewBlogDetailHeaderView { static let betweenSiteIconAndTitle: CGFloat = 16 static let betweenTitleAndSiteSwitcher: CGFloat = 16 static let betweenSiteSwitcherAndRightPadding: CGFloat = 4 - static let subtitleButtonImageInsets: UIEdgeInsets = UIEdgeInsets(top: 1, left: 4, bottom: 0, right: 0) + static let subtitleButtonImageInsets = UIEdgeInsets(top: 1, left: 4, bottom: 0, right: 0) + static let rtlSubtitleButtonImageInsets = UIEdgeInsets(top: 1, left: -4, bottom: 0, right: 4) } // MARK: - Child Views @@ -228,8 +229,13 @@ fileprivate extension NewBlogDetailHeaderView { } // Align the image to the right - button.semanticContentAttribute = (UIApplication.shared.userInterfaceLayoutDirection == .leftToRight) ? .forceRightToLeft : .forceLeftToRight - button.imageEdgeInsets = LayoutSpacing.subtitleButtonImageInsets + if UIApplication.shared.userInterfaceLayoutDirection == .rightToLeft { + button.semanticContentAttribute = .forceLeftToRight + button.imageEdgeInsets = LayoutSpacing.rtlSubtitleButtonImageInsets + } else { + button.semanticContentAttribute = .forceRightToLeft + button.imageEdgeInsets = LayoutSpacing.subtitleButtonImageInsets + } button.translatesAutoresizingMaskIntoConstraints = false button.addTarget(self, action: #selector(subtitleButtonTapped), for: .touchUpInside) @@ -332,7 +338,7 @@ fileprivate extension NewBlogDetailHeaderView { [ siteIconView.topAnchor.constraint(greaterThanOrEqualTo: topAnchor), siteIconView.bottomAnchor.constraint(lessThanOrEqualTo: bottomAnchor), - siteIconView.leftAnchor.constraint(equalTo: leftAnchor), + siteIconView.leadingAnchor.constraint(equalTo: leadingAnchor), siteIconView.heightAnchor.constraint(equalToConstant: Dimensions.siteIconHeight), siteIconView.widthAnchor.constraint(equalToConstant: Dimensions.siteIconWidth), ] From 8ee3d15a4de989c9bbce950bd95bd718b0ce40bb Mon Sep 17 00:00:00 2001 From: Jeremy Massel Date: Mon, 12 Apr 2021 20:23:24 -0600 Subject: [PATCH 16/17] Cut 17.0.1 --- config/Version.internal.xcconfig | 4 ++-- config/Version.public.xcconfig | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/config/Version.internal.xcconfig b/config/Version.internal.xcconfig index 29a2c9a1ea6e..9312f2a15394 100644 --- a/config/Version.internal.xcconfig +++ b/config/Version.internal.xcconfig @@ -1,4 +1,4 @@ -VERSION_SHORT=17.0 +VERSION_SHORT=17.0.1 // Internal long version example: VERSION_LONG=9.9.0.20180423 -VERSION_LONG=17.0.0.20210402 +VERSION_LONG=17.0.1.0 diff --git a/config/Version.public.xcconfig b/config/Version.public.xcconfig index c20d7c9d802d..ab7beda28a41 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,4 +1,4 @@ -VERSION_SHORT=17.0 +VERSION_SHORT=17.0.1 // Public long version example: VERSION_LONG=9.9.0.0 -VERSION_LONG=17.0.0.6 +VERSION_LONG=17.0.1.0 From e23094c500e525b4ed5031469f5c5f43336b71a3 Mon Sep 17 00:00:00 2001 From: Jeremy Massel Date: Mon, 19 Apr 2021 11:07:39 -0600 Subject: [PATCH 17/17] Fix UUID back --- .circleci/cache-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/cache-version b/.circleci/cache-version index bba7020c871d..fc29f773fa1d 100644 --- a/.circleci/cache-version +++ b/.circleci/cache-version @@ -1,2 +1,2 @@ # To invalidate the cache, generate a new UUID using `uuidgen` on the command line then paste it here -145D9A02-BF63-4470-BC7E-8D3E249935F1 +BA7CD240-05A5-4C42-AFD5-4C66D94F520C