From 5d0d509ca4cfa9b19be8c7d3cd6bb44c36cd999f Mon Sep 17 00:00:00 2001 From: sla8c Date: Tue, 8 Mar 2022 17:18:42 +0100 Subject: [PATCH 1/8] when loadFromCache() update the appropriate state status based on if the CoreData fetch returned valid data --- WordPress/Classes/Stores/StatsInsightsStore.swift | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/WordPress/Classes/Stores/StatsInsightsStore.swift b/WordPress/Classes/Stores/StatsInsightsStore.swift index 844500d4f4d7..674cfac111d7 100644 --- a/WordPress/Classes/Stores/StatsInsightsStore.swift +++ b/WordPress/Classes/Stores/StatsInsightsStore.swift @@ -463,18 +463,28 @@ private extension StatsInsightsStore { transaction { state in state.lastPostInsight = StatsRecord.insight(for: blog, type: .lastPostInsight).flatMap { StatsLastPostInsight(statsRecordValues: $0.recordValues) } + state.lastPostSummaryStatus = state.lastPostInsight != nil ? .error : .success state.allTimeStats = StatsRecord.insight(for: blog, type: .allTimeStatsInsight).flatMap { StatsAllTimesInsight(statsRecordValues: $0.recordValues) } + state.allTimeStatus = state.allTimeStats != nil ? .error : .success state.annualAndMostPopularTime = StatsRecord.insight(for: blog, type: .annualAndMostPopularTimes).flatMap { StatsAnnualAndMostPopularTimeInsight(statsRecordValues: $0.recordValues) } + state.annualAndMostPopularTimeStatus = state.annualAndMostPopularTime != nil ? .error : .success state.publicizeFollowers = StatsRecord.insight(for: blog, type: .publicizeConnection).flatMap { StatsPublicizeInsight(statsRecordValues: $0.recordValues) } + state.publicizeFollowersStatus = state.publicizeFollowers != nil ? .error : .success state.todaysStats = StatsRecord.insight(for: blog, type: .today).flatMap { StatsTodayInsight(statsRecordValues: $0.recordValues) } + state.todaysStatsStatus = state.todaysStats != nil ? .error : .success state.postingActivity = StatsRecord.insight(for: blog, type: .streakInsight).flatMap { StatsPostingStreakInsight(statsRecordValues: $0.recordValues) } + state.postingActivityStatus = state.postingActivity != nil ? .error : .success state.topTagsAndCategories = StatsRecord.insight(for: blog, type: .tagsAndCategories).flatMap { StatsTagsAndCategoriesInsight(statsRecordValues: $0.recordValues) } + state.tagsAndCategoriesStatus = state.topTagsAndCategories != nil ? .error : .success state.topCommentsInsight = StatsRecord.insight(for: blog, type: .commentInsight).flatMap { StatsCommentsInsight(statsRecordValues: $0.recordValues) } + state.commentsInsightStatus = state.topCommentsInsight != nil ? .error : .success let followersInsight = StatsRecord.insight(for: blog, type: .followers) state.dotComFollowers = followersInsight.flatMap { StatsDotComFollowersInsight(statsRecordValues: $0.recordValues) } + state.dotComFollowersStatus = state.dotComFollowers != nil ? .error : .success state.emailFollowers = followersInsight.flatMap { StatsEmailFollowersInsight(statsRecordValues: $0.recordValues) } + state.emailFollowersStatus = state.emailFollowers != nil ? .error : .success } DDLogInfo("Insights load from cache") From 610c9ae8470e42119860e7177592d51bd8158231 Mon Sep 17 00:00:00 2001 From: Giorgio Ruscigno Date: Thu, 10 Mar 2022 11:37:34 -0600 Subject: [PATCH 2/8] Update StatsInsightsStore, fix wrong comparisons in loadFromCache() method --- .../Classes/Stores/StatsInsightsStore.swift | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/WordPress/Classes/Stores/StatsInsightsStore.swift b/WordPress/Classes/Stores/StatsInsightsStore.swift index 674cfac111d7..204bd4182ed7 100644 --- a/WordPress/Classes/Stores/StatsInsightsStore.swift +++ b/WordPress/Classes/Stores/StatsInsightsStore.swift @@ -463,28 +463,28 @@ private extension StatsInsightsStore { transaction { state in state.lastPostInsight = StatsRecord.insight(for: blog, type: .lastPostInsight).flatMap { StatsLastPostInsight(statsRecordValues: $0.recordValues) } - state.lastPostSummaryStatus = state.lastPostInsight != nil ? .error : .success + state.lastPostSummaryStatus = state.lastPostInsight == nil ? .error : .success state.allTimeStats = StatsRecord.insight(for: blog, type: .allTimeStatsInsight).flatMap { StatsAllTimesInsight(statsRecordValues: $0.recordValues) } - state.allTimeStatus = state.allTimeStats != nil ? .error : .success + state.allTimeStatus = state.allTimeStats == nil ? .error : .success state.annualAndMostPopularTime = StatsRecord.insight(for: blog, type: .annualAndMostPopularTimes).flatMap { StatsAnnualAndMostPopularTimeInsight(statsRecordValues: $0.recordValues) } state.annualAndMostPopularTimeStatus = state.annualAndMostPopularTime != nil ? .error : .success state.publicizeFollowers = StatsRecord.insight(for: blog, type: .publicizeConnection).flatMap { StatsPublicizeInsight(statsRecordValues: $0.recordValues) } - state.publicizeFollowersStatus = state.publicizeFollowers != nil ? .error : .success + state.publicizeFollowersStatus = state.publicizeFollowers == nil ? .error : .success state.todaysStats = StatsRecord.insight(for: blog, type: .today).flatMap { StatsTodayInsight(statsRecordValues: $0.recordValues) } - state.todaysStatsStatus = state.todaysStats != nil ? .error : .success + state.todaysStatsStatus = state.todaysStats == nil ? .error : .success state.postingActivity = StatsRecord.insight(for: blog, type: .streakInsight).flatMap { StatsPostingStreakInsight(statsRecordValues: $0.recordValues) } - state.postingActivityStatus = state.postingActivity != nil ? .error : .success + state.postingActivityStatus = state.postingActivity == nil ? .error : .success state.topTagsAndCategories = StatsRecord.insight(for: blog, type: .tagsAndCategories).flatMap { StatsTagsAndCategoriesInsight(statsRecordValues: $0.recordValues) } - state.tagsAndCategoriesStatus = state.topTagsAndCategories != nil ? .error : .success + state.tagsAndCategoriesStatus = state.topTagsAndCategories == nil ? .error : .success state.topCommentsInsight = StatsRecord.insight(for: blog, type: .commentInsight).flatMap { StatsCommentsInsight(statsRecordValues: $0.recordValues) } - state.commentsInsightStatus = state.topCommentsInsight != nil ? .error : .success + state.commentsInsightStatus = state.topCommentsInsight == nil ? .error : .success let followersInsight = StatsRecord.insight(for: blog, type: .followers) state.dotComFollowers = followersInsight.flatMap { StatsDotComFollowersInsight(statsRecordValues: $0.recordValues) } - state.dotComFollowersStatus = state.dotComFollowers != nil ? .error : .success + state.dotComFollowersStatus = state.dotComFollowers == nil ? .error : .success state.emailFollowers = followersInsight.flatMap { StatsEmailFollowersInsight(statsRecordValues: $0.recordValues) } - state.emailFollowersStatus = state.emailFollowers != nil ? .error : .success + state.emailFollowersStatus = state.emailFollowers == nil ? .error : .success } DDLogInfo("Insights load from cache") From 052534230555879bca68d608407b3bf4efae4954 Mon Sep 17 00:00:00 2001 From: Paul Von Schrottky Date: Mon, 14 Mar 2022 16:13:21 -0300 Subject: [PATCH 3/8] Allow users to change profile picture This bug fix works around a Photo Library permissions by opening the album selector instead of the "self-portraits" album. --- .../Gravatar/GravatarPickerViewController.swift | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/WordPress/Classes/ViewRelated/Me/My Profile/Gravatar/GravatarPickerViewController.swift b/WordPress/Classes/ViewRelated/Me/My Profile/Gravatar/GravatarPickerViewController.swift index 69858c1cb752..0cdd8432c7a9 100644 --- a/WordPress/Classes/ViewRelated/Me/My Profile/Gravatar/GravatarPickerViewController.swift +++ b/WordPress/Classes/ViewRelated/Me/My Profile/Gravatar/GravatarPickerViewController.swift @@ -15,16 +15,7 @@ class GravatarPickerViewController: UIViewController, WPMediaPickerViewControlle fileprivate var mediaPickerViewController: WPNavigationMediaPickerViewController! - fileprivate lazy var mediaPickerAssetDataSource: WPPHAssetDataSource? = { - let collectionsFetchResult = PHAssetCollection.fetchAssetCollections(with: .smartAlbum, subtype: .smartAlbumSelfPortraits, options: nil) - guard let assetCollection = collectionsFetchResult.firstObject else { - return nil - } - - let dataSource = WPPHAssetDataSource() - dataSource.setSelectedGroup(PHAssetCollectionForWPMediaGroup(collection: assetCollection, mediaType: .image)) - return dataSource - }() + fileprivate lazy var mediaPickerAssetDataSource = WPPHAssetDataSource() // MARK: - View Lifecycle Methods From 8f2d076e85db6a29ec3d1b0d3451e347bb675da5 Mon Sep 17 00:00:00 2001 From: Paul Von Schrottky Date: Mon, 14 Mar 2022 19:24:13 -0300 Subject: [PATCH 4/8] Add release notes for profile picture bug fix --- RELEASE-NOTES.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 935f249b4914..d39110e69236 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -12,6 +12,7 @@ * [*] Weekly Roundup: We made some further changes to try and ensure that Weekly Roundup notifications are showing up for everybody who's enabled them [#18029] * [*] Block editor: Autocorrected Headings no longer apply bold formatting if they weren't already bold. [#17844] * [***] Block editor: Support for multiple color palettes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4588] +* [**] User profiles: Fixed issue where the app wasn't displaying any of the device photos which the user had granted the app access to. 19.3 ----- From 4ae87ace805a28384ec53a2f6f2963d7bd1246c7 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 15 Mar 2022 14:39:06 +1100 Subject: [PATCH 5/8] Update translations --- .../Resources/ar.lproj/Localizable.strings | 14 +++++------ .../Resources/en-CA.lproj/Localizable.strings | 2 +- .../Resources/es.lproj/Localizable.strings | 14 +++++------ .../Resources/he.lproj/Localizable.strings | 14 +++++------ .../Resources/it.lproj/Localizable.strings | 14 +++++------ .../Resources/ja.lproj/Localizable.strings | 14 +++++------ .../Resources/ko.lproj/Localizable.strings | 14 +++++------ .../Resources/nl.lproj/Localizable.strings | 24 +++++++++---------- .../Resources/pl.lproj/Localizable.strings | 6 ++--- .../Resources/tr.lproj/Localizable.strings | 14 +++++------ .../zh-Hans.lproj/Localizable.strings | 14 +++++------ .../zh-Hant.lproj/Localizable.strings | 18 +++++++------- 12 files changed, 81 insertions(+), 81 deletions(-) diff --git a/WordPress/Resources/ar.lproj/Localizable.strings b/WordPress/Resources/ar.lproj/Localizable.strings index df433607e9c1..e400c1afb88c 100644 --- a/WordPress/Resources/ar.lproj/Localizable.strings +++ b/WordPress/Resources/ar.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-02-24 11:54:08+0000 */ +/* Translation-Revision-Date: 2022-03-11 18:54:08+0000 */ /* Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ((n == 1) ? 1 : ((n == 2) ? 2 : ((n % 100 >= 3 && n % 100 <= 10) ? 3 : ((n % 100 >= 11 && n % 100 <= 99) ? 4 : 5)))); */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ar */ @@ -7,7 +7,7 @@ "\nPlease send us an email to have your content cleared out." = "\nيرجى إرسال بريد إلكتروني إلينا لإزالة المحتوى الخاص بك."; /* Notice shown on the Edit Comment view when the author is a registered user. */ -"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nThis user is registered. Their name, web address, and email address cannot be edited."; +"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nتم تسجيل هذا المستخدم. يتعذر تحرير اسمه وعنوان الويب الخاص به وعنوان بريده الإلكتروني."; /* Message of Delete Site confirmation alert; substitution is site's host. */ "\nTo confirm, please re-enter your site's address before deleting.\n\n" = "\nللتأكيد، يرجى إعادة إدخال عنوان موقعك قبل عملية حذفه.\n"; @@ -4068,7 +4068,7 @@ translators: Block name. %s: The localized block name */ "Loading Scan..." = "جاري تحميل الفحص..."; /* Displayed while a comment is being loaded. */ -"Loading comment..." = "Loading comment..."; +"Loading comment..." = "جارٍ تحميل التعليق..."; /* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ "Loading domains" = "تحميل النطاقات"; @@ -5492,7 +5492,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "يمكن أن يساعد النشر بشكل منتظم على الحفاظ على انشغال القراء وجذب زائرين جدد إلى موقعك."; /* Description for the card prompting the user to create a new post. */ -"Posting regularly helps build your audience!" = "Posting regularly helps build your audience!"; +"Posting regularly helps build your audience!" = "النشر بانتظام يساعد في بناء جمهورك!"; /* All Time Stats 'Posts' label Noun. Title for posts button. @@ -5511,7 +5511,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posts and Pages" = "المقالات والصفحات"; /* Description for the card prompting the user to create their first post. */ -"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!"; +"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "تظهر التدوينات على صفحة مدونتك بترتيب زمني عكسي. حان الوقت لمشاركة أفكارك مع العالم!"; /* Title of the Posts Page Badge */ "Posts page" = "صفحة المقالات"; @@ -7462,7 +7462,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There was an error loading plugins" = "حدث خطأ عند تحميل الإضافات"; /* Text displayed when there is a failure loading a comment. */ -"There was an error loading the comment." = "There was an error loading the comment."; +"There was an error loading the comment." = "حدث خطأ في أثناء تحميل التعليق."; /* Text displayed when there is a failure loading the history. */ "There was an error loading the history" = "حدث خطأ أثناء تحميل السجلّ"; @@ -8695,7 +8695,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Weeks" = "أسابيع"; /* Post Signup Interstitial Title Text for Jetpack iOS */ -"Welcome to Jetpack" = "Welcome to Jetpack"; +"Welcome to Jetpack" = "مرحبًا بك في Jetpack"; /* Welcome message shown under Discover in the Reader just the 1st time the user sees it */ "Welcome to Reader. Discover millions of blogs at your fingertips." = "مرحبًا بك في القارئ. اكتشف ملايين المدونات في متناول يديك."; diff --git a/WordPress/Resources/en-CA.lproj/Localizable.strings b/WordPress/Resources/en-CA.lproj/Localizable.strings index 683606f5a284..a94c9e3f84f3 100644 --- a/WordPress/Resources/en-CA.lproj/Localizable.strings +++ b/WordPress/Resources/en-CA.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-02-28 02:34:49+0000 */ +/* Translation-Revision-Date: 2022-03-14 23:56:27+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: en_CA */ diff --git a/WordPress/Resources/es.lproj/Localizable.strings b/WordPress/Resources/es.lproj/Localizable.strings index e72063936827..27db3221716e 100644 --- a/WordPress/Resources/es.lproj/Localizable.strings +++ b/WordPress/Resources/es.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-02-22 07:15:57+0000 */ +/* Translation-Revision-Date: 2022-03-10 13:54:08+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: es */ @@ -7,7 +7,7 @@ "\nPlease send us an email to have your content cleared out." = "\nPor favor, envíanos un correo electrónico para borrar tu contenido."; /* Notice shown on the Edit Comment view when the author is a registered user. */ -"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nThis user is registered. Their name, web address, and email address cannot be edited."; +"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nEste usuario está registrado. No se puede editar su nombre, ni la dirección de su sitio web o correo electrónico."; /* Message of Delete Site confirmation alert; substitution is site's host. */ "\nTo confirm, please re-enter your site's address before deleting.\n\n" = "\nPara confirmar, por favor, vuelve a introducir la dirección del sitio antes de borrarlo.\n"; @@ -4068,7 +4068,7 @@ translators: Block name. %s: The localized block name */ "Loading Scan..." = "Cargando exploración..."; /* Displayed while a comment is being loaded. */ -"Loading comment..." = "Loading comment..."; +"Loading comment..." = "Cargando comentario..."; /* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ "Loading domains" = "Cargando dominios"; @@ -5492,7 +5492,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "Publicar regularmente puede ayudar a que tus lectores permanezcan implicados, y a atraer nuevos visitantes a tu sitio."; /* Description for the card prompting the user to create a new post. */ -"Posting regularly helps build your audience!" = "Posting regularly helps build your audience!"; +"Posting regularly helps build your audience!" = "¡Publicar regularmente ayuda a crear tu audiencia!"; /* All Time Stats 'Posts' label Noun. Title for posts button. @@ -5511,7 +5511,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posts and Pages" = "Entradas y páginas"; /* Description for the card prompting the user to create their first post. */ -"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!"; +"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Las entradas aparecen en la página de tu blog en orden cronológicamente inverso. ¡Es el momento de compartir tus ideas con el mundo!"; /* Title of the Posts Page Badge */ "Posts page" = "Página de entradas"; @@ -7462,7 +7462,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There was an error loading plugins" = "Hubo un error al cargar los plugins"; /* Text displayed when there is a failure loading a comment. */ -"There was an error loading the comment." = "There was an error loading the comment."; +"There was an error loading the comment." = "Se ha producido un error al cargar el comentario."; /* Text displayed when there is a failure loading the history. */ "There was an error loading the history" = "Hubo un error al cargar el historial"; @@ -8695,7 +8695,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Weeks" = "Semanas"; /* Post Signup Interstitial Title Text for Jetpack iOS */ -"Welcome to Jetpack" = "Welcome to Jetpack"; +"Welcome to Jetpack" = "Te damos la bienvenida a Jetpack"; /* Welcome message shown under Discover in the Reader just the 1st time the user sees it */ "Welcome to Reader. Discover millions of blogs at your fingertips." = "Bienvenido al Lector. Descubre millones de blogs a tu alcance."; diff --git a/WordPress/Resources/he.lproj/Localizable.strings b/WordPress/Resources/he.lproj/Localizable.strings index 6d924469d636..06a1ae97e71f 100644 --- a/WordPress/Resources/he.lproj/Localizable.strings +++ b/WordPress/Resources/he.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-03-03 22:50:44+0000 */ +/* Translation-Revision-Date: 2022-03-10 09:54:17+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: he_IL */ @@ -7,7 +7,7 @@ "\nPlease send us an email to have your content cleared out." = "\nלמחיקת התוכן שלך יש לשלוח לנו אימייל."; /* Notice shown on the Edit Comment view when the author is a registered user. */ -"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nThis user is registered. Their name, web address, and email address cannot be edited."; +"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nהמשתמש הזה רשום. לא ניתן לערוך את השם, כתובת האינטרנט וכתובת האימייל של המשתמש."; /* Message of Delete Site confirmation alert; substitution is site's host. */ "\nTo confirm, please re-enter your site's address before deleting.\n\n" = "\nלאישור, עליך להזין את כתובת האתר שלך לפני המחיקה.\n\n"; @@ -4068,7 +4068,7 @@ translators: Block name. %s: The localized block name */ "Loading Scan..." = "טוען את הסריקה..."; /* Displayed while a comment is being loaded. */ -"Loading comment..." = "Loading comment..."; +"Loading comment..." = "טוען תגובה..."; /* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ "Loading domains" = "טוען דומיינים"; @@ -5492,7 +5492,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "פרסום באופן שגרתי יכול לעזור בשילוב הקוראים שלך, ולמשוך מבקרים חדשים לאתר שלך."; /* Description for the card prompting the user to create a new post. */ -"Posting regularly helps build your audience!" = "Posting regularly helps build your audience!"; +"Posting regularly helps build your audience!" = "פרסום פוסטים באופן קבוע יעזור לך לבנות את הקהל!"; /* All Time Stats 'Posts' label Noun. Title for posts button. @@ -5511,7 +5511,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posts and Pages" = "פוסטים ועמודים"; /* Description for the card prompting the user to create their first post. */ -"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!"; +"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "פוסטים מופיעים בעמוד הבלוג שלך בסדר כרונולוגי הפוך. זה הזמן לשתף את הרעיונות שלך עם העולם!"; /* Title of the Posts Page Badge */ "Posts page" = "עמוד הפוסטים"; @@ -7462,7 +7462,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There was an error loading plugins" = "אירעה שגיאה בעת העלאת התוספים"; /* Text displayed when there is a failure loading a comment. */ -"There was an error loading the comment." = "There was an error loading the comment."; +"There was an error loading the comment." = "אירעה שגיאה בטעינת התגובה."; /* Text displayed when there is a failure loading the history. */ "There was an error loading the history" = "אירעה שגיאה בעת טעינת ההיסטוריה"; @@ -8695,7 +8695,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Weeks" = "שבועות"; /* Post Signup Interstitial Title Text for Jetpack iOS */ -"Welcome to Jetpack" = "Welcome to Jetpack"; +"Welcome to Jetpack" = "ברוך בואך אל Jetpack"; /* Welcome message shown under Discover in the Reader just the 1st time the user sees it */ "Welcome to Reader. Discover millions of blogs at your fingertips." = "ברוך הבא ל Reader. גלה מיליוני בלוגים בקצות אצבעותייך."; diff --git a/WordPress/Resources/it.lproj/Localizable.strings b/WordPress/Resources/it.lproj/Localizable.strings index a984ac0e3f13..345caf0be099 100644 --- a/WordPress/Resources/it.lproj/Localizable.strings +++ b/WordPress/Resources/it.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-02-22 19:11:41+0000 */ +/* Translation-Revision-Date: 2022-03-11 15:54:08+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: it */ @@ -7,7 +7,7 @@ "\nPlease send us an email to have your content cleared out." = "\nVi preghiamo di inviarci una email per ottenere la cancellazione dei vostri contenuti."; /* Notice shown on the Edit Comment view when the author is a registered user. */ -"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nThis user is registered. Their name, web address, and email address cannot be edited."; +"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nQuesto utente è registrato. Il nome, l'indirizzo web e l'indirizzo e-mail non possono essere modificati."; /* Message of Delete Site confirmation alert; substitution is site's host. */ "\nTo confirm, please re-enter your site's address before deleting.\n\n" = "\nPer confermare, si prega di reinserire l'indirizzo del sito da rimuovere.\n"; @@ -4068,7 +4068,7 @@ translators: Block name. %s: The localized block name */ "Loading Scan..." = "Caricamento della scansione in corso..."; /* Displayed while a comment is being loaded. */ -"Loading comment..." = "Loading comment..."; +"Loading comment..." = "Caricamento del commento..."; /* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ "Loading domains" = "Caricamento domini"; @@ -5492,7 +5492,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "Pubblicare articoli regolarmente può contribuire a mantenere l'attenzione dei lettori e attrarre nuovi visitatori sul tuo sito."; /* Description for the card prompting the user to create a new post. */ -"Posting regularly helps build your audience!" = "Posting regularly helps build your audience!"; +"Posting regularly helps build your audience!" = "Pubblicare con regolarità aiuta a creare il tuo pubblico."; /* All Time Stats 'Posts' label Noun. Title for posts button. @@ -5511,7 +5511,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posts and Pages" = "Articoli e Pagine"; /* Description for the card prompting the user to create their first post. */ -"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!"; +"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Gli articoli vengono visualizzati sulla pagina del tuo blog in ordine cronologico inverso. È tempo di condividere le tue idee con il mondo."; /* Title of the Posts Page Badge */ "Posts page" = "Pagina degli articoli"; @@ -7462,7 +7462,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There was an error loading plugins" = "C'è stato un errore caricando i plugin"; /* Text displayed when there is a failure loading a comment. */ -"There was an error loading the comment." = "There was an error loading the comment."; +"There was an error loading the comment." = "Si è verificato un errore durante il caricamento del commento."; /* Text displayed when there is a failure loading the history. */ "There was an error loading the history" = "Si è verificato un errore durante il caricamento della cronologia"; @@ -8695,7 +8695,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Weeks" = "Settimane"; /* Post Signup Interstitial Title Text for Jetpack iOS */ -"Welcome to Jetpack" = "Welcome to Jetpack"; +"Welcome to Jetpack" = "Sei su Jetpack"; /* Welcome message shown under Discover in the Reader just the 1st time the user sees it */ "Welcome to Reader. Discover millions of blogs at your fingertips." = "Benvenuto nel Reader. Scopri millioni di blog alla portata delle tue dita."; diff --git a/WordPress/Resources/ja.lproj/Localizable.strings b/WordPress/Resources/ja.lproj/Localizable.strings index 4936a86bff8b..adb0deeb72fa 100644 --- a/WordPress/Resources/ja.lproj/Localizable.strings +++ b/WordPress/Resources/ja.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-03-03 22:49:46+0000 */ +/* Translation-Revision-Date: 2022-03-10 09:54:18+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ja_JP */ @@ -7,7 +7,7 @@ "\nPlease send us an email to have your content cleared out." = "\nコンテンツを全て消去するには、メールを送信してください。"; /* Notice shown on the Edit Comment view when the author is a registered user. */ -"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nThis user is registered. Their name, web address, and email address cannot be edited."; +"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nこのユーザーは登録されています。 このユーザーの名前、ウェブアドレス、メールアドレスは編集できません。"; /* Message of Delete Site confirmation alert; substitution is site's host. */ "\nTo confirm, please re-enter your site's address before deleting.\n\n" = "\n確認のため、消去の前にサイトのアドレス (URL) を再入力してください。\n\n"; @@ -4068,7 +4068,7 @@ translators: Block name. %s: The localized block name */ "Loading Scan..." = "スキャンを読み込んでいます..."; /* Displayed while a comment is being loaded. */ -"Loading comment..." = "Loading comment..."; +"Loading comment..." = "コメントを読み込み中…"; /* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ "Loading domains" = "ドメインを読み込み中"; @@ -5492,7 +5492,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "定期的に投稿することで読者の興味を引きつけ、新たなサイト訪問者を獲得できます。"; /* Description for the card prompting the user to create a new post. */ -"Posting regularly helps build your audience!" = "Posting regularly helps build your audience!"; +"Posting regularly helps build your audience!" = "定期的に投稿することで、読者を増やすことができます。"; /* All Time Stats 'Posts' label Noun. Title for posts button. @@ -5511,7 +5511,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posts and Pages" = "投稿とページ"; /* Description for the card prompting the user to create their first post. */ -"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!"; +"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "投稿はブログページに新しいものから順に表示されます。 あなたのアイデアを世界中のユーザーとシェアしましょう !"; /* Title of the Posts Page Badge */ "Posts page" = "投稿ページ"; @@ -7462,7 +7462,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There was an error loading plugins" = "プラグインの読み込みでエラーが発生しました"; /* Text displayed when there is a failure loading a comment. */ -"There was an error loading the comment." = "There was an error loading the comment."; +"There was an error loading the comment." = "コメントの読み込み時にエラーが発生しました。"; /* Text displayed when there is a failure loading the history. */ "There was an error loading the history" = "履歴の読み込み中にエラーが発生しました"; @@ -8695,7 +8695,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Weeks" = "週"; /* Post Signup Interstitial Title Text for Jetpack iOS */ -"Welcome to Jetpack" = "Welcome to Jetpack"; +"Welcome to Jetpack" = "Jetpack へようこそ"; /* Welcome message shown under Discover in the Reader just the 1st time the user sees it */ "Welcome to Reader. Discover millions of blogs at your fingertips." = "Reader へようこそ。何百万ものブログの中から、お気に入りを発見しましょう。"; diff --git a/WordPress/Resources/ko.lproj/Localizable.strings b/WordPress/Resources/ko.lproj/Localizable.strings index 842a4e640604..b7c5b02a6715 100644 --- a/WordPress/Resources/ko.lproj/Localizable.strings +++ b/WordPress/Resources/ko.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-03-03 22:51:04+0000 */ +/* Translation-Revision-Date: 2022-03-10 17:54:08+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ko_KR */ @@ -7,7 +7,7 @@ "\nPlease send us an email to have your content cleared out." = "\n콘텐츠를 삭제하기 위해 이메일을 보내주세요."; /* Notice shown on the Edit Comment view when the author is a registered user. */ -"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nThis user is registered. Their name, web address, and email address cannot be edited."; +"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\n이 사용자는 등록되었습니다. 해당 이름, 웹 주소, 이메일 주소를 편집할 수 없습니다."; /* Message of Delete Site confirmation alert; substitution is site's host. */ "\nTo confirm, please re-enter your site's address before deleting.\n\n" = "\n삭제 전 확인을 위해, 사이트 주소를 입력해주세요.\n\n"; @@ -4068,7 +4068,7 @@ translators: Block name. %s: The localized block name */ "Loading Scan..." = "스캔 로드 중..."; /* Displayed while a comment is being loaded. */ -"Loading comment..." = "Loading comment..."; +"Loading comment..." = "댓글 로드 중..."; /* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ "Loading domains" = "도메인 로딩 중"; @@ -5492,7 +5492,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "정기적으로 게시하면 독자의 참여도를 높이고 새 방문자를 사이트로 유도하는 데 도움이 됩니다."; /* Description for the card prompting the user to create a new post. */ -"Posting regularly helps build your audience!" = "Posting regularly helps build your audience!"; +"Posting regularly helps build your audience!" = "정기적으로 글을 작성하면 잠재 고객 유치에 도움이 됩니다!"; /* All Time Stats 'Posts' label Noun. Title for posts button. @@ -5511,7 +5511,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posts and Pages" = "게시물과 페이지"; /* Description for the card prompting the user to create their first post. */ -"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!"; +"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "글은 시간 역순으로 블로그 페이지에 표시됩니다. 전 세계와 아이디어를 공유할 때가 되었습니다!"; /* Title of the Posts Page Badge */ "Posts page" = "글 페이지"; @@ -7462,7 +7462,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There was an error loading plugins" = "플러그인을 로드하는 중 오류가 발생했습니다."; /* Text displayed when there is a failure loading a comment. */ -"There was an error loading the comment." = "There was an error loading the comment."; +"There was an error loading the comment." = "댓글 로드 중 오류가 발생했습니다."; /* Text displayed when there is a failure loading the history. */ "There was an error loading the history" = "기록을 읽어오는 과정에서 오류가 발생했습니다."; @@ -8695,7 +8695,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Weeks" = "주"; /* Post Signup Interstitial Title Text for Jetpack iOS */ -"Welcome to Jetpack" = "Welcome to Jetpack"; +"Welcome to Jetpack" = "젯팩 시작"; /* Welcome message shown under Discover in the Reader just the 1st time the user sees it */ "Welcome to Reader. Discover millions of blogs at your fingertips." = "리더에 오신 것을 환영합니다. 손끝에서 백만의 블로그를 발견하세요."; diff --git a/WordPress/Resources/nl.lproj/Localizable.strings b/WordPress/Resources/nl.lproj/Localizable.strings index 635043aa9f94..2236e8111641 100644 --- a/WordPress/Resources/nl.lproj/Localizable.strings +++ b/WordPress/Resources/nl.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-02-21 13:18:29+0000 */ +/* Translation-Revision-Date: 2022-03-11 09:05:09+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: nl */ @@ -7,7 +7,7 @@ "\nPlease send us an email to have your content cleared out." = "\nStuur ons een e-mail om je inhoud te laten wissen."; /* Notice shown on the Edit Comment view when the author is a registered user. */ -"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nThis user is registered. Their name, web address, and email address cannot be edited."; +"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nDeze gebruiker is geregistreerd. De naam, webadres en e-mailadres kunnen niet bewerkt worden."; /* Message of Delete Site confirmation alert; substitution is site's host. */ "\nTo confirm, please re-enter your site's address before deleting.\n\n" = "\nOm te bevestigen, vul je site-adres opnieuw in alvorens te verwijderen.\n"; @@ -2040,10 +2040,10 @@ translators: Block name. %s: The localized block name */ "Create link" = "Maak link"; /* Title for the card prompting the user to create their first post. */ -"Create your first post" = "Create your first post"; +"Create your first post" = "Maak je eerste bericht"; /* Title for the card prompting the user to create a new post. */ -"Create your next post" = "Create your next post"; +"Create your next post" = "Maak je volgende bericht"; /* Customize Insights description */ "Create your own customized dashboard and choose what reports to see. Focus on the data you care most about." = "Maak je eigen aangepaste dashboard en kies welke rapporten moeten worden weergegeven. Richt je op de gegevens die het meest van belang zijn."; @@ -4068,7 +4068,7 @@ translators: Block name. %s: The localized block name */ "Loading Scan..." = "Scan laden..."; /* Displayed while a comment is being loaded. */ -"Loading comment..." = "Loading comment..."; +"Loading comment..." = "Reactie laden..."; /* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ "Loading domains" = "Domeinen laden"; @@ -5492,7 +5492,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "Regelmatig publiceren kan je lezers betrokken houden en nieuwe bezoekers naar je site aantrekken."; /* Description for the card prompting the user to create a new post. */ -"Posting regularly helps build your audience!" = "Posting regularly helps build your audience!"; +"Posting regularly helps build your audience!" = "Regelmatig publiceren helpt je publiek opbouwen!"; /* All Time Stats 'Posts' label Noun. Title for posts button. @@ -5511,7 +5511,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posts and Pages" = "Berichten en pagina's"; /* Description for the card prompting the user to create their first post. */ -"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!"; +"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Berichten verschijnen op je blogpagina in omgekeerde chronologische volgorde. Het is tijd om je ideeën met de wereld te delen."; /* Title of the Posts Page Badge */ "Posts page" = "Berichtenpagina"; @@ -7462,7 +7462,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There was an error loading plugins" = "Er is een fout opgetreden bij het laden van plugins"; /* Text displayed when there is a failure loading a comment. */ -"There was an error loading the comment." = "There was an error loading the comment."; +"There was an error loading the comment." = "Er is een fout opgetreden bij het laden van de reactie."; /* Text displayed when there is a failure loading the history. */ "There was an error loading the history" = "Er is een fout opgetreden bij het laden van de geschiedenis"; @@ -8113,7 +8113,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Up to seven days worth of logs are saved." = "Logs worden zeven dagen lang opgeslagen."; /* Title for the card displaying upcoming scheduled posts. */ -"Upcoming scheduled posts" = "Upcoming scheduled posts"; +"Upcoming scheduled posts" = "Komende geplande berichten"; /* (Verb) Title of button confirming updating settings for blogging reminders. Button label to update a plugin @@ -8695,7 +8695,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Weeks" = "Weken"; /* Post Signup Interstitial Title Text for Jetpack iOS */ -"Welcome to Jetpack" = "Welcome to Jetpack"; +"Welcome to Jetpack" = "Welkom bij Jetpack"; /* Welcome message shown under Discover in the Reader just the 1st time the user sees it */ "Welcome to Reader. Discover millions of blogs at your fingertips." = "Welkom bij Reader. Ontdek miljoenen van blogs aan je vingertoppen."; @@ -8903,7 +8903,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Work With Us" = "Werk met ons samen"; /* Title for the card displaying draft posts. */ -"Work on a draft post" = "Work on a draft post"; +"Work on a draft post" = "Werk aan een conceptbericht"; /* Accessibility label for the Stats' world map. */ "World map showing views by country." = "Wereldkaart die het aantal weergaven per land toont."; @@ -8959,7 +8959,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Yesterday" = "Gisteren"; /* Main message on dialog that prompts user to confirm or cancel the replacement of a featured image. */ -"You already have a featured image set. Do you want to replace it with the new image?" = "Je hebt al een uitgelichte afbeelding ingesteld. Wil je die met de nieuwe afbeelding vervangen?"; +"You already have a featured image set. Do you want to replace it with the new image?" = "Je hebt al een uitgelichte afbeelding ingesteld. Wil je het vervangen met de nieuwe afbeelding?"; /* Paragraph displayed in the tableview header. The placholders are for the current username, highlight text and the current display name. */ "You are about to change your username, which is currently %@. %@" = "Je staat op het punt je gebruikersnaam te wijzigen, wat op dit moment %1$@. %2$@ is"; diff --git a/WordPress/Resources/pl.lproj/Localizable.strings b/WordPress/Resources/pl.lproj/Localizable.strings index fa584343c2eb..cc9c8fc07829 100644 --- a/WordPress/Resources/pl.lproj/Localizable.strings +++ b/WordPress/Resources/pl.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-02-21 06:26:03+0000 */ +/* Translation-Revision-Date: 2022-03-11 08:03:38+0000 */ /* Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2); */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: pl */ @@ -2999,7 +2999,7 @@ translators: Block name. %s: The localized block name */ "Export Your Content" = "Wyeksportuj swoją zawartość"; /* Overlay message displayed while starting content export */ -"Exporting content…" = "Eksportowanie zawartości..."; +"Exporting content…" = "Eksportowanie zawartości…"; /* Section title for the external table section in the blog details screen */ "External" = "External"; @@ -5037,7 +5037,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Opportunities to participate in WordPress.com research & surveys." = "Opportunities to participate in WordPress.com research & surveys."; /* Placeholder to indicate that filling out the field is optional. */ -"Optional" = "Opcjonalne"; +"Optional" = "Opcjonalnie"; /* Invite: Message Hint. %1$d is the maximum number of characters allowed. */ "Optional message up to %1$d characters to be included in the invitation." = "Optional message up to %1$d characters to be included in the invitation."; diff --git a/WordPress/Resources/tr.lproj/Localizable.strings b/WordPress/Resources/tr.lproj/Localizable.strings index dac82223960f..fcf76e1a333e 100644 --- a/WordPress/Resources/tr.lproj/Localizable.strings +++ b/WordPress/Resources/tr.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-02-24 10:54:07+0000 */ +/* Translation-Revision-Date: 2022-03-11 11:54:08+0000 */ /* Plural-Forms: nplurals=2; plural=n > 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: tr */ @@ -7,7 +7,7 @@ "\nPlease send us an email to have your content cleared out." = "\nLütfen içeriğinizin temizlenmesi için bize bir e-posta gönderin."; /* Notice shown on the Edit Comment view when the author is a registered user. */ -"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nThis user is registered. Their name, web address, and email address cannot be edited."; +"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nBu kullanıcı kayıtlı. Adı, web adresi ve e-posta adresi düzenlenemez."; /* Message of Delete Site confirmation alert; substitution is site's host. */ "\nTo confirm, please re-enter your site's address before deleting.\n\n" = "\nOnaylamak için lütfen silmeden önce sitenizin adresini tekrar girin.\n"; @@ -4068,7 +4068,7 @@ translators: Block name. %s: The localized block name */ "Loading Scan..." = "Tarama Yükleniyor...."; /* Displayed while a comment is being loaded. */ -"Loading comment..." = "Loading comment..."; +"Loading comment..." = "Yorum yükleniyor..."; /* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ "Loading domains" = "Eklentiler yükleniyor"; @@ -5492,7 +5492,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "Düzenli olarak paylaşım yapmak, okuyucularınızın ilgisini ve sitenize de yeni ziyaretçileri çekmenize yardımcı olabilir."; /* Description for the card prompting the user to create a new post. */ -"Posting regularly helps build your audience!" = "Posting regularly helps build your audience!"; +"Posting regularly helps build your audience!" = "Düzenli olarak paylaşım yapmak, hedef kitlenizi oluşturmanıza yardımcı olur!"; /* All Time Stats 'Posts' label Noun. Title for posts button. @@ -5511,7 +5511,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posts and Pages" = "Yazılar ve sayfalar"; /* Description for the card prompting the user to create their first post. */ -"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!"; +"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Gönderiler blog sayfanızda ters kronolojik sırada görünür. Fikirlerinizi dünyayla paylaşmanın zamanı geldi!"; /* Title of the Posts Page Badge */ "Posts page" = "Yazılar sayfası"; @@ -7462,7 +7462,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There was an error loading plugins" = "Eklentiler yüklenirken bir hata oluştu"; /* Text displayed when there is a failure loading a comment. */ -"There was an error loading the comment." = "There was an error loading the comment."; +"There was an error loading the comment." = "Yorum yüklenirken bir hata oluştu."; /* Text displayed when there is a failure loading the history. */ "There was an error loading the history" = "Geçmiş yüklenirken bir hata oluştu"; @@ -8695,7 +8695,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Weeks" = "Haftalar"; /* Post Signup Interstitial Title Text for Jetpack iOS */ -"Welcome to Jetpack" = "Welcome to Jetpack"; +"Welcome to Jetpack" = "Jetpack'e Hoş Geldiniz"; /* Welcome message shown under Discover in the Reader just the 1st time the user sees it */ "Welcome to Reader. Discover millions of blogs at your fingertips." = "Okuyucuya hoş geldiniz. Parmaklarınızın ucunda milyonlarca blogu keşfedin."; diff --git a/WordPress/Resources/zh-Hans.lproj/Localizable.strings b/WordPress/Resources/zh-Hans.lproj/Localizable.strings index 6730a1e3e4f2..6291342c75c8 100644 --- a/WordPress/Resources/zh-Hans.lproj/Localizable.strings +++ b/WordPress/Resources/zh-Hans.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-03-03 23:28:04+0000 */ +/* Translation-Revision-Date: 2022-03-11 09:54:08+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: zh_CN */ @@ -7,7 +7,7 @@ "\nPlease send us an email to have your content cleared out." = "\n要清除你的内容,请发送一封电子邮件给我们。"; /* Notice shown on the Edit Comment view when the author is a registered user. */ -"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nThis user is registered. Their name, web address, and email address cannot be edited."; +"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\n此用户已注册。 无法编辑他们的姓名、网址和电子邮箱地址。"; /* Message of Delete Site confirmation alert; substitution is site's host. */ "\nTo confirm, please re-enter your site's address before deleting.\n\n" = "\n如果您确认关闭站点,请在删除之前重新输入您的站点地址。\n"; @@ -4068,7 +4068,7 @@ translators: Block name. %s: The localized block name */ "Loading Scan..." = "正在加载扫描..."; /* Displayed while a comment is being loaded. */ -"Loading comment..." = "Loading comment..."; +"Loading comment..." = "正在加载评论..."; /* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ "Loading domains" = "正在加载域"; @@ -5492,7 +5492,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "定期发布文章有助于留住读者以及吸引新访客访问您的站点。"; /* Description for the card prompting the user to create a new post. */ -"Posting regularly helps build your audience!" = "Posting regularly helps build your audience!"; +"Posting regularly helps build your audience!" = "定期发表有助于吸引受众!"; /* All Time Stats 'Posts' label Noun. Title for posts button. @@ -5511,7 +5511,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posts and Pages" = "文章和页面"; /* Description for the card prompting the user to create their first post. */ -"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!"; +"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "文章在您的博客页面上按时间顺序倒序显示。 立即与全世界分享您的观点!"; /* Title of the Posts Page Badge */ "Posts page" = "文章页面"; @@ -7462,7 +7462,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There was an error loading plugins" = "加载插件时出错"; /* Text displayed when there is a failure loading a comment. */ -"There was an error loading the comment." = "There was an error loading the comment."; +"There was an error loading the comment." = "加载评论时出错。"; /* Text displayed when there is a failure loading the history. */ "There was an error loading the history" = "加载历史记录时出错"; @@ -8695,7 +8695,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Weeks" = "周"; /* Post Signup Interstitial Title Text for Jetpack iOS */ -"Welcome to Jetpack" = "Welcome to Jetpack"; +"Welcome to Jetpack" = "欢迎使用 Jetpack"; /* Welcome message shown under Discover in the Reader just the 1st time the user sees it */ "Welcome to Reader. Discover millions of blogs at your fingertips." = "欢迎使用阅读器。 动动手指即可发现数百万个博客。"; diff --git a/WordPress/Resources/zh-Hant.lproj/Localizable.strings b/WordPress/Resources/zh-Hant.lproj/Localizable.strings index 7db53313ded5..a8f83a9ac8a1 100644 --- a/WordPress/Resources/zh-Hant.lproj/Localizable.strings +++ b/WordPress/Resources/zh-Hant.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2022-03-03 23:26:33+0000 */ +/* Translation-Revision-Date: 2022-03-10 22:21:56+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: zh_TW */ @@ -7,7 +7,7 @@ "\nPlease send us an email to have your content cleared out." = "\n要清除內容,請傳送電子郵件給我們。"; /* Notice shown on the Edit Comment view when the author is a registered user. */ -"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\nThis user is registered. Their name, web address, and email address cannot be edited."; +"\nThis user is registered. Their name, web address, and email address cannot be edited." = "\n這位使用者已註冊。 無法編輯他們的姓名、網址和電子郵件地址。"; /* Message of Delete Site confirmation alert; substitution is site's host. */ "\nTo confirm, please re-enter your site's address before deleting.\n\n" = "\nTo confirm, please re-enter your site's address before deleting.\n\n"; @@ -1077,7 +1077,7 @@ translators: Block name. %s: The localized block name */ "Block settings" = "區塊設定"; /* The title of a button that triggers blocking a site from the user's reader. */ -"Block this site" = "Block this site"; +"Block this site" = "封鎖此網站"; /* Notice title when blocking a site succeeds. */ "Blocked site" = "封鎖的網站"; @@ -1829,7 +1829,7 @@ translators: Block name. %s: The localized block name */ "Continuing with Apple" = "繼續使用 Apple"; /* No comment provided by engineer. */ -"Convert to link" = "轉換為連結"; +"Convert to link" = "轉換成連結"; /* An example tag used in the login prologue screens. */ "Cooking" = "烹飪"; @@ -4068,7 +4068,7 @@ translators: Block name. %s: The localized block name */ "Loading Scan..." = "正在載入掃瞄…"; /* Displayed while a comment is being loaded. */ -"Loading comment..." = "Loading comment..."; +"Loading comment..." = "載入留言中…"; /* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ "Loading domains" = "正在載入網域"; @@ -5492,7 +5492,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posting regularly can help keep your readers engaged, and attract new visitors to your site." = "定期張貼文章有助於持續與讀者互動,並吸引更多訪客造訪網站。"; /* Description for the card prompting the user to create a new post. */ -"Posting regularly helps build your audience!" = "Posting regularly helps build your audience!"; +"Posting regularly helps build your audience!" = "定期發文有助於建立讀者群!"; /* All Time Stats 'Posts' label Noun. Title for posts button. @@ -5511,7 +5511,7 @@ translators: %s: Select control button label e.g. \"Button width\" */ "Posts and Pages" = "文章與頁面"; /* Description for the card prompting the user to create their first post. */ -"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!"; +"Posts appear on your blog page in reverse chronological order. It's time to share your ideas with the world!" = "文章會在你的網誌頁面上按時間倒序顯示。 是時候和全世界分享你的想法了!"; /* Title of the Posts Page Badge */ "Posts page" = "文章列表頁面"; @@ -7462,7 +7462,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There was an error loading plugins" = "載入外掛程式時發生錯誤"; /* Text displayed when there is a failure loading a comment. */ -"There was an error loading the comment." = "There was an error loading the comment."; +"There was an error loading the comment." = "載入留言時發生錯誤。"; /* Text displayed when there is a failure loading the history. */ "There was an error loading the history" = "載入記錄時發生錯誤"; @@ -8695,7 +8695,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Weeks" = "週"; /* Post Signup Interstitial Title Text for Jetpack iOS */ -"Welcome to Jetpack" = "Welcome to Jetpack"; +"Welcome to Jetpack" = "歡迎使用 Jetpack"; /* Welcome message shown under Discover in the Reader just the 1st time the user sees it */ "Welcome to Reader. Discover millions of blogs at your fingertips." = "歡迎使用閱讀器。 動動指尖即可探索數百萬個網誌。"; From 51154c0fad99aa0589f27bb1d9e9076e93e7e6d1 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 15 Mar 2022 14:39:17 +1100 Subject: [PATCH 6/8] Update metadata translations --- fastlane/metadata/ar-SA/keywords.txt | 2 +- fastlane/metadata/ar-SA/name.txt | 2 +- fastlane/metadata/ar-SA/release_notes.txt | 9 +++++++++ fastlane/metadata/ar-SA/subtitle.txt | 2 +- fastlane/metadata/default/keywords.txt | 2 +- fastlane/metadata/default/name.txt | 2 +- fastlane/metadata/default/release_notes.txt | 9 +++++++++ fastlane/metadata/default/subtitle.txt | 2 +- fastlane/metadata/en-CA/keywords.txt | 2 +- fastlane/metadata/en-CA/name.txt | 2 +- fastlane/metadata/en-CA/release_notes.txt | 9 +++++++++ fastlane/metadata/en-CA/subtitle.txt | 2 +- fastlane/metadata/en-GB/keywords.txt | 2 +- fastlane/metadata/en-GB/name.txt | 2 +- fastlane/metadata/en-GB/release_notes.txt | 9 +++++++++ fastlane/metadata/en-GB/subtitle.txt | 2 +- fastlane/metadata/en-US/keywords.txt | 2 +- fastlane/metadata/en-US/name.txt | 2 +- fastlane/metadata/en-US/release_notes.txt | 9 +++++++++ fastlane/metadata/en-US/subtitle.txt | 2 +- fastlane/metadata/es-ES/keywords.txt | 2 +- fastlane/metadata/es-ES/name.txt | 2 +- fastlane/metadata/es-ES/release_notes.txt | 9 +++++++++ fastlane/metadata/es-ES/subtitle.txt | 2 +- fastlane/metadata/es-MX/keywords.txt | 2 +- fastlane/metadata/es-MX/name.txt | 2 +- fastlane/metadata/es-MX/release_notes.txt | 9 +++++++++ fastlane/metadata/es-MX/subtitle.txt | 2 +- fastlane/metadata/fr-FR/keywords.txt | 2 +- fastlane/metadata/fr-FR/name.txt | 2 +- fastlane/metadata/fr-FR/release_notes.txt | 9 +++++++++ fastlane/metadata/fr-FR/subtitle.txt | 2 +- fastlane/metadata/id/keywords.txt | 2 +- fastlane/metadata/id/name.txt | 2 +- fastlane/metadata/id/release_notes.txt | 9 +++++++++ fastlane/metadata/id/subtitle.txt | 2 +- fastlane/metadata/ko/keywords.txt | 2 +- fastlane/metadata/ko/name.txt | 2 +- fastlane/metadata/ko/release_notes.txt | 9 +++++++++ fastlane/metadata/ko/subtitle.txt | 2 +- fastlane/metadata/nl-NL/keywords.txt | 2 +- fastlane/metadata/nl-NL/name.txt | 2 +- fastlane/metadata/nl-NL/subtitle.txt | 2 +- fastlane/metadata/sv/keywords.txt | 2 +- fastlane/metadata/sv/name.txt | 2 +- fastlane/metadata/sv/subtitle.txt | 2 +- fastlane/metadata/tr/keywords.txt | 2 +- fastlane/metadata/tr/name.txt | 2 +- fastlane/metadata/tr/release_notes.txt | 9 +++++++++ fastlane/metadata/tr/subtitle.txt | 2 +- 50 files changed, 138 insertions(+), 39 deletions(-) create mode 100644 fastlane/metadata/ar-SA/release_notes.txt create mode 100644 fastlane/metadata/default/release_notes.txt create mode 100644 fastlane/metadata/en-CA/release_notes.txt create mode 100644 fastlane/metadata/en-GB/release_notes.txt create mode 100644 fastlane/metadata/en-US/release_notes.txt create mode 100644 fastlane/metadata/es-ES/release_notes.txt create mode 100644 fastlane/metadata/es-MX/release_notes.txt create mode 100644 fastlane/metadata/fr-FR/release_notes.txt create mode 100644 fastlane/metadata/id/release_notes.txt create mode 100644 fastlane/metadata/ko/release_notes.txt create mode 100644 fastlane/metadata/tr/release_notes.txt diff --git a/fastlane/metadata/ar-SA/keywords.txt b/fastlane/metadata/ar-SA/keywords.txt index abe7a9f3c77d..2281121c83df 100644 --- a/fastlane/metadata/ar-SA/keywords.txt +++ b/fastlane/metadata/ar-SA/keywords.txt @@ -1 +1 @@ -اجتماعي,ملاحظات,jetpack,كتابة,وسم جغرافي,وسائط,موقع ويب,موقع إلكتروني,تدوين,مجلة \ No newline at end of file +مدون، كتابة، تدوين، ويب، صانع، عبر الإنترنت، متجر، أعمال، إعداد، إنشاء، كتابة، مدونات \ No newline at end of file diff --git a/fastlane/metadata/ar-SA/name.txt b/fastlane/metadata/ar-SA/name.txt index bacf8ed91ea2..591d95996f72 100644 --- a/fastlane/metadata/ar-SA/name.txt +++ b/fastlane/metadata/ar-SA/name.txt @@ -1 +1 @@ -WordPress +ووردبريس – مُنشئ مواقع الويب \ No newline at end of file diff --git a/fastlane/metadata/ar-SA/release_notes.txt b/fastlane/metadata/ar-SA/release_notes.txt new file mode 100644 index 000000000000..076b6ba53b73 --- /dev/null +++ b/fastlane/metadata/ar-SA/release_notes.txt @@ -0,0 +1,9 @@ +استخدم الألوان بشكل مثير—يتوافر دعم لوحات الألوان المتعددة هنا. أضف لوحات ألوان القالب ولوحات الألوان الافتراضية ولوحات الألوان التدريجية أو قم بإنشاء لوحة ألوانك الخاصة باستخدام ألوانك المفضلة. أصلحنا كذلك مشكلة تسببت في عدم ظهور ألوان القوالب وعدم تحديث بيانات القالب الحالي. + +بالنسبة إلى الأجهزة التي تستخدم اللغات من اليمين إلى اليسار، قمنا بتحديث موضع الأيقونة والزر والنص لشاشة "اختيار النطاق" في عملية إنشاء الموقع. حسنًا، حسنًا. + +هل ترغب في الاطلاع على وسائط غنية، مثل الصور وصور gif في التنبيهات المنبثقة لجهازك؟ ما عليك سوى الضغط مع الاستمرار على التنبيه لفتح معاينة. + +أجرينا بعض التعديلات على تنبيهات الموجز الأسبوعي لنتأكَّد من ظهورها بمجرد أن تقوم بتمكينها. انطلق! + +أضفنا أخيرًا إصلاحات قليلة على شاشة الرؤية التي ستساعد على تسريع الأمور. قضينا كذلك على خطأ كان يقوم بعرض الكلمات المُصححة تلقائيًا بشكل غامق في عناوين مكوِّن المحتوى. diff --git a/fastlane/metadata/ar-SA/subtitle.txt b/fastlane/metadata/ar-SA/subtitle.txt index 451de587c3cb..51f5b9ed5182 100644 --- a/fastlane/metadata/ar-SA/subtitle.txt +++ b/fastlane/metadata/ar-SA/subtitle.txt @@ -1 +1 @@ -بناء موقع ويب أو مدونة \ No newline at end of file +تصميم موقع، إنشاء مدونة \ No newline at end of file diff --git a/fastlane/metadata/default/keywords.txt b/fastlane/metadata/default/keywords.txt index 695226967330..46d9ead15c94 100644 --- a/fastlane/metadata/default/keywords.txt +++ b/fastlane/metadata/default/keywords.txt @@ -1 +1 @@ -social,notes,jetpack,writing,geotagging,media,blog,website,blogging,journal \ No newline at end of file +blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs \ No newline at end of file diff --git a/fastlane/metadata/default/name.txt b/fastlane/metadata/default/name.txt index f1c6744c4874..028d836eea1f 100644 --- a/fastlane/metadata/default/name.txt +++ b/fastlane/metadata/default/name.txt @@ -1 +1 @@ -WordPress – Website Builder +WordPress – Website Builder \ No newline at end of file diff --git a/fastlane/metadata/default/release_notes.txt b/fastlane/metadata/default/release_notes.txt new file mode 100644 index 000000000000..c2f17d6e073c --- /dev/null +++ b/fastlane/metadata/default/release_notes.txt @@ -0,0 +1,9 @@ +Color us excited—support for multiple color palettes is here! Add Theme and Default color and gradient palettes, or create your own Custom palette with your favorite shades. We also fixed an issue that caused theme colors not to appear and current theme data not to refresh. + +For devices using right-to-left languages, we updated icon, button, and text positioning for the “Choose a Domain” screen in the site creation process. Alright, alright. + +Want to see rich media like images and .gifs in your device’s push notifications? Just press and hold the notification to open a preview. + +We made some tweaks to Weekly Roundup notifications to make sure they’re showing up once you’ve enabled them. Giddyup! + +Finally, we added a few fixes on the Insight screen that’ll help speed things up. We also squashed a bug that bolded auto-corrected words in content block headings. diff --git a/fastlane/metadata/default/subtitle.txt b/fastlane/metadata/default/subtitle.txt index efc7a2ba3311..b082dcb78bf7 100644 --- a/fastlane/metadata/default/subtitle.txt +++ b/fastlane/metadata/default/subtitle.txt @@ -1 +1 @@ -Build a website or blog \ No newline at end of file +Design a site, build a blog \ No newline at end of file diff --git a/fastlane/metadata/en-CA/keywords.txt b/fastlane/metadata/en-CA/keywords.txt index 7ab147e34e06..46d9ead15c94 100644 --- a/fastlane/metadata/en-CA/keywords.txt +++ b/fastlane/metadata/en-CA/keywords.txt @@ -1 +1 @@ -blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs +blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs \ No newline at end of file diff --git a/fastlane/metadata/en-CA/name.txt b/fastlane/metadata/en-CA/name.txt index f1c6744c4874..028d836eea1f 100644 --- a/fastlane/metadata/en-CA/name.txt +++ b/fastlane/metadata/en-CA/name.txt @@ -1 +1 @@ -WordPress – Website Builder +WordPress – Website Builder \ No newline at end of file diff --git a/fastlane/metadata/en-CA/release_notes.txt b/fastlane/metadata/en-CA/release_notes.txt new file mode 100644 index 000000000000..f3c880c48da9 --- /dev/null +++ b/fastlane/metadata/en-CA/release_notes.txt @@ -0,0 +1,9 @@ +Color us excited—support for multiple colour palettes is here! Add Theme and Default colour and gradient palettes, or create your own Custom palette with your favourite shades. We also fixed an issue that caused theme colours not to appear and current theme data not to refresh. + +For devices using right-to-left languages, we updated icon, button, and text positioning for the “Choose a Domain” screen in the site creation process. Alright, alright. + +Want to see rich media like images and .gifs in your device’s push notifications? Just press and hold the notification to open a preview. + +We made some tweaks to Weekly Roundup notifications to make sure they’re showing up once you’ve enabled them. Giddyup! + +Finally, we added a few fixes on the Insight screen that’ll help speed things up. We also squashed a bug that bolded auto-corrected words in content block headings. diff --git a/fastlane/metadata/en-CA/subtitle.txt b/fastlane/metadata/en-CA/subtitle.txt index 08d11992ce2f..b082dcb78bf7 100644 --- a/fastlane/metadata/en-CA/subtitle.txt +++ b/fastlane/metadata/en-CA/subtitle.txt @@ -1 +1 @@ -Design a site, build a blog +Design a site, build a blog \ No newline at end of file diff --git a/fastlane/metadata/en-GB/keywords.txt b/fastlane/metadata/en-GB/keywords.txt index 7ab147e34e06..46d9ead15c94 100644 --- a/fastlane/metadata/en-GB/keywords.txt +++ b/fastlane/metadata/en-GB/keywords.txt @@ -1 +1 @@ -blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs +blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs \ No newline at end of file diff --git a/fastlane/metadata/en-GB/name.txt b/fastlane/metadata/en-GB/name.txt index f1c6744c4874..028d836eea1f 100644 --- a/fastlane/metadata/en-GB/name.txt +++ b/fastlane/metadata/en-GB/name.txt @@ -1 +1 @@ -WordPress – Website Builder +WordPress – Website Builder \ No newline at end of file diff --git a/fastlane/metadata/en-GB/release_notes.txt b/fastlane/metadata/en-GB/release_notes.txt new file mode 100644 index 000000000000..4aae8f374478 --- /dev/null +++ b/fastlane/metadata/en-GB/release_notes.txt @@ -0,0 +1,9 @@ +Colour us excited – support for multiple colour palettes is here! Add Theme and Default colour and gradient palettes, or create your own Custom palette with your favourite shades. We also fixed an issue that caused theme colours not to appear and current theme data not to refresh. + +For devices using right-to-left languages, we updated icon, button, and text positioning for the “Choose a Domain” screen in the site creation process. Alright, alright. + +Want to see rich media like images and .gifs in your device’s push notifications? Just press and hold the notification to open a preview. + +We made some tweaks to Weekly Roundup notifications to make sure they’re showing up once you’ve enabled them. Hurry up! + +Finally, we added a few fixes on the Insight screen that’ll help speed things up. We also squashed a bug that bolded auto-corrected words in content block headings. diff --git a/fastlane/metadata/en-GB/subtitle.txt b/fastlane/metadata/en-GB/subtitle.txt index 08d11992ce2f..b082dcb78bf7 100644 --- a/fastlane/metadata/en-GB/subtitle.txt +++ b/fastlane/metadata/en-GB/subtitle.txt @@ -1 +1 @@ -Design a site, build a blog +Design a site, build a blog \ No newline at end of file diff --git a/fastlane/metadata/en-US/keywords.txt b/fastlane/metadata/en-US/keywords.txt index 7ab147e34e06..46d9ead15c94 100644 --- a/fastlane/metadata/en-US/keywords.txt +++ b/fastlane/metadata/en-US/keywords.txt @@ -1 +1 @@ -blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs +blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs \ No newline at end of file diff --git a/fastlane/metadata/en-US/name.txt b/fastlane/metadata/en-US/name.txt index f1c6744c4874..028d836eea1f 100644 --- a/fastlane/metadata/en-US/name.txt +++ b/fastlane/metadata/en-US/name.txt @@ -1 +1 @@ -WordPress – Website Builder +WordPress – Website Builder \ No newline at end of file diff --git a/fastlane/metadata/en-US/release_notes.txt b/fastlane/metadata/en-US/release_notes.txt new file mode 100644 index 000000000000..c2f17d6e073c --- /dev/null +++ b/fastlane/metadata/en-US/release_notes.txt @@ -0,0 +1,9 @@ +Color us excited—support for multiple color palettes is here! Add Theme and Default color and gradient palettes, or create your own Custom palette with your favorite shades. We also fixed an issue that caused theme colors not to appear and current theme data not to refresh. + +For devices using right-to-left languages, we updated icon, button, and text positioning for the “Choose a Domain” screen in the site creation process. Alright, alright. + +Want to see rich media like images and .gifs in your device’s push notifications? Just press and hold the notification to open a preview. + +We made some tweaks to Weekly Roundup notifications to make sure they’re showing up once you’ve enabled them. Giddyup! + +Finally, we added a few fixes on the Insight screen that’ll help speed things up. We also squashed a bug that bolded auto-corrected words in content block headings. diff --git a/fastlane/metadata/en-US/subtitle.txt b/fastlane/metadata/en-US/subtitle.txt index 08d11992ce2f..b082dcb78bf7 100644 --- a/fastlane/metadata/en-US/subtitle.txt +++ b/fastlane/metadata/en-US/subtitle.txt @@ -1 +1 @@ -Design a site, build a blog +Design a site, build a blog \ No newline at end of file diff --git a/fastlane/metadata/es-ES/keywords.txt b/fastlane/metadata/es-ES/keywords.txt index 2a7d98301043..9fa7ea3941f7 100644 --- a/fastlane/metadata/es-ES/keywords.txt +++ b/fastlane/metadata/es-ES/keywords.txt @@ -1 +1 @@ -social,notas,jetpack,escritura,geoetiquetado,medios,blog,web,bloguear,diario \ No newline at end of file +bloguero,escritura,bloguear,web,creador,online,tienda,negocio,construir,crear,escribir,blogs \ No newline at end of file diff --git a/fastlane/metadata/es-ES/name.txt b/fastlane/metadata/es-ES/name.txt index bacf8ed91ea2..fbca32a5e561 100644 --- a/fastlane/metadata/es-ES/name.txt +++ b/fastlane/metadata/es-ES/name.txt @@ -1 +1 @@ -WordPress +WordPress - Constructor web \ No newline at end of file diff --git a/fastlane/metadata/es-ES/release_notes.txt b/fastlane/metadata/es-ES/release_notes.txt new file mode 100644 index 000000000000..89cbde43fc80 --- /dev/null +++ b/fastlane/metadata/es-ES/release_notes.txt @@ -0,0 +1,9 @@ +Nos entusiasma el color: ¡Aquí está la compatibilidad para múltiples paletas de color! Añade paletas de color y degradados del tema y por defecto o crea tu propia paleta personalizada con tus tonos favoritos. También hemos corregido un problema que hacía que los colores del tema no aparecieran y que los datos del tema actual no se actualizaran. + +Para los dispositivos que usan idiomas de derecha a izquierda, hemos actualizado la posición de los iconos, los botones y el texto de la pantalla «Elegir un dominio» en el proceso de creación del sitio. ¡Muy bien! + +¿Quieres ver medios enriquecidos como imágenes y «.gifs» en los avisos emergentes de tu dispositivo? Solo tienes que mantener pulsado el aviso para abrir una vista previa. + +Hemos hecho algunos retoques a los avisos del resumen semanal para asegurarnos de que se muestren una vez que los hayas activado. ¡Corregido! + +Por último, hemos añadido algunas correcciones en la pantalla de información que ayudarán a acelerar las cosas. También hemos eliminado un fallo que ponía en negrita las palabras autocorregidas en los encabezados de los bloques de contenido. diff --git a/fastlane/metadata/es-ES/subtitle.txt b/fastlane/metadata/es-ES/subtitle.txt index c5abc09155a4..695eb975fd7a 100644 --- a/fastlane/metadata/es-ES/subtitle.txt +++ b/fastlane/metadata/es-ES/subtitle.txt @@ -1 +1 @@ -Crear una web o un blog \ No newline at end of file +Diseña un sitio, crea un blog \ No newline at end of file diff --git a/fastlane/metadata/es-MX/keywords.txt b/fastlane/metadata/es-MX/keywords.txt index 2a7d98301043..9fa7ea3941f7 100644 --- a/fastlane/metadata/es-MX/keywords.txt +++ b/fastlane/metadata/es-MX/keywords.txt @@ -1 +1 @@ -social,notas,jetpack,escritura,geoetiquetado,medios,blog,web,bloguear,diario \ No newline at end of file +bloguero,escritura,bloguear,web,creador,online,tienda,negocio,construir,crear,escribir,blogs \ No newline at end of file diff --git a/fastlane/metadata/es-MX/name.txt b/fastlane/metadata/es-MX/name.txt index bacf8ed91ea2..fbca32a5e561 100644 --- a/fastlane/metadata/es-MX/name.txt +++ b/fastlane/metadata/es-MX/name.txt @@ -1 +1 @@ -WordPress +WordPress - Constructor web \ No newline at end of file diff --git a/fastlane/metadata/es-MX/release_notes.txt b/fastlane/metadata/es-MX/release_notes.txt new file mode 100644 index 000000000000..1765a2af594b --- /dev/null +++ b/fastlane/metadata/es-MX/release_notes.txt @@ -0,0 +1,9 @@ +Nos entusiasma el color: ¡Aquí está la compatibilidad para múltiples paletas de color! Añade paletas de color y degradados del tema y predeterminadas o crea tu propia paleta personalizada con tus tonos favoritos. También hemos corregido un problema que hacía que los colores del tema no aparecieran y que los datos del tema actual no se actualizaran. + +Para los dispositivos que usan idiomas de derecha a izquierda, hemos actualizado la posición de los iconos, los botones y el texto de la pantalla "Elegir un dominio" en el proceso de creación del sitio. ¡Muy bien! + +¿Quieres ver medios enriquecidos como imágenes y ".gifs" en los avisos emergentes de tu dispositivo? Solo tienes que mantener pulsado el aviso para abrir una vista previa. + +Hemos hecho algunos retoques a los avisos del resumen semanal para asegurarnos de que se muestren una vez que los hayas activado. ¡Corregido! + +Por último, hemos añadido algunas correcciones en la pantalla de información que ayudarán a acelerar las cosas. También hemos eliminado un fallo que ponía en negrita las palabras autocorregidas en los encabezados de los bloques de contenido. diff --git a/fastlane/metadata/es-MX/subtitle.txt b/fastlane/metadata/es-MX/subtitle.txt index c5abc09155a4..695eb975fd7a 100644 --- a/fastlane/metadata/es-MX/subtitle.txt +++ b/fastlane/metadata/es-MX/subtitle.txt @@ -1 +1 @@ -Crear una web o un blog \ No newline at end of file +Diseña un sitio, crea un blog \ No newline at end of file diff --git a/fastlane/metadata/fr-FR/keywords.txt b/fastlane/metadata/fr-FR/keywords.txt index 8908b715157c..46d9ead15c94 100644 --- a/fastlane/metadata/fr-FR/keywords.txt +++ b/fastlane/metadata/fr-FR/keywords.txt @@ -1 +1 @@ -social,notes,jetpack,rédaction,géolocalisation,média,blog,site web,blogging,journal \ No newline at end of file +blogger,writing,blogging,web,maker,online,store,business,make,create,write,blogs \ No newline at end of file diff --git a/fastlane/metadata/fr-FR/name.txt b/fastlane/metadata/fr-FR/name.txt index bacf8ed91ea2..9610a3500dfe 100644 --- a/fastlane/metadata/fr-FR/name.txt +++ b/fastlane/metadata/fr-FR/name.txt @@ -1 +1 @@ -WordPress +WordPress - Création de sites \ No newline at end of file diff --git a/fastlane/metadata/fr-FR/release_notes.txt b/fastlane/metadata/fr-FR/release_notes.txt new file mode 100644 index 000000000000..da97c8739f85 --- /dev/null +++ b/fastlane/metadata/fr-FR/release_notes.txt @@ -0,0 +1,9 @@ +La prise en charge de palettes de couleurs multiples est arrivée ! Ajoutez les palettes de couleurs et de dégradés du thème et par défaut, ou créez votre propre palette personnalisée avec vos teintes préférées. Nous avons également corrigé un problème qui empêchait les couleurs de thème d’apparaître et les données de thème actuelles de se mettre à jour. + +Pour les appareils utilisant des langues allant de droite à gauche, nous avons mis à jour le positionnement de l’icône, du bouton et du texte pour l’écran "Choisir un domaine" dans le processus de création de site. C’est chouette ! + +Vous voulez voir des médias riches comme des images et des .gifs dans les notifications push de votre appareil ? Il suffit d’appuyer sur la notification et de maintenir la pression pour ouvrir un aperçu. + +Nous avons apporté quelques modifications aux notifications du Weekly Roundup pour nous assurer qu’elles s’affichent bien une fois que vous les avez activées. Hourra ! + +Enfin, nous avons ajouté quelques corrections sur l’écran Insight qui permettront d’accélérer les choses. Nous avons également corrigé un bug qui mettait en gras les mots corrigés automatiquement dans les titres des blocs de contenu. diff --git a/fastlane/metadata/fr-FR/subtitle.txt b/fastlane/metadata/fr-FR/subtitle.txt index 917528696b66..1ecf6a8d2a6b 100644 --- a/fastlane/metadata/fr-FR/subtitle.txt +++ b/fastlane/metadata/fr-FR/subtitle.txt @@ -1 +1 @@ -Construisez un site web \ No newline at end of file +Concevez un site, créez un blog \ No newline at end of file diff --git a/fastlane/metadata/id/keywords.txt b/fastlane/metadata/id/keywords.txt index c99a0f7359d1..082f945adfc8 100644 --- a/fastlane/metadata/id/keywords.txt +++ b/fastlane/metadata/id/keywords.txt @@ -1 +1 @@ -sosial,catatan,jetpack,tulisan,geotagging,media,blog,situsweb,blog,jurnal \ No newline at end of file +blogger,tulisan,blogging,web,kreator,online,toko,bisnis,buat,ciptakan,tulis,blog \ No newline at end of file diff --git a/fastlane/metadata/id/name.txt b/fastlane/metadata/id/name.txt index bacf8ed91ea2..838f34ae88e7 100644 --- a/fastlane/metadata/id/name.txt +++ b/fastlane/metadata/id/name.txt @@ -1 +1 @@ -WordPress +WordPress – Pembuat Situs Web \ No newline at end of file diff --git a/fastlane/metadata/id/release_notes.txt b/fastlane/metadata/id/release_notes.txt new file mode 100644 index 000000000000..95f414cc8de1 --- /dev/null +++ b/fastlane/metadata/id/release_notes.txt @@ -0,0 +1,9 @@ +Kami suka dengan warna—kini tersedia dukungan untuk beberapa palet warna! Tambahkan warna Tema, warna Standar dan palet warna, atau buat palet Khusus Anda sendiri dengan nuansa favorit Anda. Kami juga memperbaiki masalah yang menyebabkan warna tema tidak muncul dan data tema tidak disegarkan. + +Untuk perangkat yang menggunakan bahasa kanan-ke-kiri, kami memperbarui ikon, tombol, dan pemosisian teks untuk layar “Pilih Domain” dalam proses pembuatan situs. + +Ingin melihat ragam media seperti gambar dan .gif di pemberitahuan push perangkat Anda? Cukup tekan dan tahan notifikasi untuk membuka pratinjau. + +Kami membuat beberapa penyesuaian pada pemberitahuan Ringkasan Mingguan untuk memastikannya muncul setelah Anda mengaktifkannya. + +Terakhir, kami menambahkan beberapa perbaikan pada layar Data yang akan membantu mempersingkat waktu. Kami juga memperbaiki bug yang menebalkan kata yang dikoreksi otomatis di judul blok konten. diff --git a/fastlane/metadata/id/subtitle.txt b/fastlane/metadata/id/subtitle.txt index fec131d0f840..b699dc2c20e9 100644 --- a/fastlane/metadata/id/subtitle.txt +++ b/fastlane/metadata/id/subtitle.txt @@ -1 +1 @@ -Buat situs web atau blog \ No newline at end of file +Desain situs, buat blog \ No newline at end of file diff --git a/fastlane/metadata/ko/keywords.txt b/fastlane/metadata/ko/keywords.txt index df5678052d25..82379101486a 100644 --- a/fastlane/metadata/ko/keywords.txt +++ b/fastlane/metadata/ko/keywords.txt @@ -1 +1 @@ -소셜,노트,젯팩,쓰기,위치 태그,미디어,블로그,웹사이트,블로깅,저널 \ No newline at end of file +블로거,글쓰기,블로깅,웹,제작자,온라인,스토어,비즈니스,만들기,생성,쓰기,블로그 \ No newline at end of file diff --git a/fastlane/metadata/ko/name.txt b/fastlane/metadata/ko/name.txt index bacf8ed91ea2..8c935b5d153a 100644 --- a/fastlane/metadata/ko/name.txt +++ b/fastlane/metadata/ko/name.txt @@ -1 +1 @@ -WordPress +워드프레스 – 웹사이트 제작 도구 \ No newline at end of file diff --git a/fastlane/metadata/ko/release_notes.txt b/fastlane/metadata/ko/release_notes.txt new file mode 100644 index 000000000000..a140a41e5d6b --- /dev/null +++ b/fastlane/metadata/ko/release_notes.txt @@ -0,0 +1,9 @@ +황홀한 색상 - 여러 가지 색상 팔레트가 지원됩니다! 테마와 기본 색상과 그레이디언트 팔레트를 추가하거나 좋아하는 음영으로 나만의 사용자 정의 팔레트를 만드세요. 테마 색상이 표시되지 않고 현재 테마 데이터가 새고 고쳐지지 않는 원인이 되는 문제도 해결했습니다. + +오른쪽에서 왼쪽으로 쓰는 언어를 사용하는 언어를 위해 사이트 생성 프로세스에서 "도메인 선택"의 아이콘, 버튼 및 텍스트 배치를 업데이트했습니다. 아무런 문제가 없습니다. + +기기의 푸시 알림에 이미지와 .gif 파일을 비롯한 풍부한 미디어가 표시되기를 원하시나요? 알림을 길게 누르기만 하면 미리보기가 열립니다. + +주간 총정리를 활성화하기만 하면 주간 총정리가 표시되도록 주간 총정리 알림을 약간 조정했습니다. 편안하게 이용하세요! + +마지막으로, 인사이트 화면에 내용이 빨리 표시되도록 몇 가지 수정 사항을 추가했습니다. 자동 수정한 단어가 콘텐츠 블록 헤딩요소에서 굵게 표시되는 버그도 수정했습니다. diff --git a/fastlane/metadata/ko/subtitle.txt b/fastlane/metadata/ko/subtitle.txt index c2cac6ba736c..83cfcab15b51 100644 --- a/fastlane/metadata/ko/subtitle.txt +++ b/fastlane/metadata/ko/subtitle.txt @@ -1 +1 @@ -웹사이트 또는 블로그 제작 \ No newline at end of file +사이트 디자인, 블로그 제작 \ No newline at end of file diff --git a/fastlane/metadata/nl-NL/keywords.txt b/fastlane/metadata/nl-NL/keywords.txt index 095835fc2a38..c6146c7062f8 100644 --- a/fastlane/metadata/nl-NL/keywords.txt +++ b/fastlane/metadata/nl-NL/keywords.txt @@ -1 +1 @@ -social, notities, jetpack, schrijven, geotagging, media, blog, site, bloggen, dagboek \ No newline at end of file +blogger,schrijven,blogging,web,maker,online,winkel,bedrijf,maak,creëer,schrijf,blogs \ No newline at end of file diff --git a/fastlane/metadata/nl-NL/name.txt b/fastlane/metadata/nl-NL/name.txt index bacf8ed91ea2..11448f85e18c 100644 --- a/fastlane/metadata/nl-NL/name.txt +++ b/fastlane/metadata/nl-NL/name.txt @@ -1 +1 @@ -WordPress +WordPress – Website bouwer \ No newline at end of file diff --git a/fastlane/metadata/nl-NL/subtitle.txt b/fastlane/metadata/nl-NL/subtitle.txt index ff778f27a35f..680c1d8abba0 100644 --- a/fastlane/metadata/nl-NL/subtitle.txt +++ b/fastlane/metadata/nl-NL/subtitle.txt @@ -1 +1 @@ -Bouw een site of blog \ No newline at end of file +Ontwerp een site, bouw een blog \ No newline at end of file diff --git a/fastlane/metadata/sv/keywords.txt b/fastlane/metadata/sv/keywords.txt index ac5dbc76f513..faf412f6b335 100644 --- a/fastlane/metadata/sv/keywords.txt +++ b/fastlane/metadata/sv/keywords.txt @@ -1 +1 @@ -socialt, anteckningar, jetpack, skrivande, geotaggning, media, blogg, webbplats, bloggande, dagbok \ No newline at end of file +bloggare,skriva,bloggande,webb,ebutik,handel,system,bygga,skapa,bloggar \ No newline at end of file diff --git a/fastlane/metadata/sv/name.txt b/fastlane/metadata/sv/name.txt index bacf8ed91ea2..d944d4d838d2 100644 --- a/fastlane/metadata/sv/name.txt +++ b/fastlane/metadata/sv/name.txt @@ -1 +1 @@ -WordPress +WordPress – webbplatsbyggare \ No newline at end of file diff --git a/fastlane/metadata/sv/subtitle.txt b/fastlane/metadata/sv/subtitle.txt index 194fdafb4d2b..cb74d258c5d5 100644 --- a/fastlane/metadata/sv/subtitle.txt +++ b/fastlane/metadata/sv/subtitle.txt @@ -1 +1 @@ -Bygg en webbplats eller blogg \ No newline at end of file +Designa en webbplats, bygg en blogg \ No newline at end of file diff --git a/fastlane/metadata/tr/keywords.txt b/fastlane/metadata/tr/keywords.txt index 6fca98604a58..066982aa1d36 100644 --- a/fastlane/metadata/tr/keywords.txt +++ b/fastlane/metadata/tr/keywords.txt @@ -1 +1 @@ -sosyal,notlar,jetpack,yazma,coğrafi etiketleme,medya,blog,web sitesi,blog oluşturma,günlük \ No newline at end of file +blogger,yazı,bloglama,web,maker,çevrimiçi,mağaza,iş,yap,oluştur,yaz,bloglar \ No newline at end of file diff --git a/fastlane/metadata/tr/name.txt b/fastlane/metadata/tr/name.txt index bacf8ed91ea2..a65786c45edf 100644 --- a/fastlane/metadata/tr/name.txt +++ b/fastlane/metadata/tr/name.txt @@ -1 +1 @@ -WordPress +WordPress – Web Sitesi Oluşturucu \ No newline at end of file diff --git a/fastlane/metadata/tr/release_notes.txt b/fastlane/metadata/tr/release_notes.txt new file mode 100644 index 000000000000..c20470bcb829 --- /dev/null +++ b/fastlane/metadata/tr/release_notes.txt @@ -0,0 +1,9 @@ +Renkler bizi heyecanlanrır—birden çok renk paleti desteği burada! Tema ve Varsayılan renk ve degrade paletleri ekleyin veya en sevdiğiniz gölgelerle kendi özel paletinizi oluşturun. Ayrıca tema renklerinin görünmemesine ve mevcut tema verilerinin yenilenmemesine neden olan bir sorunu da düzelttik. + +Sağdan sola dilleri kullanan cihazlar için site oluşturma sürecinde “Bir Alan Seçin” ekranı için simge, düğme ve metin konumlandırmasını güncelledik. Tamam tamam. + +Cihazınızın push bildirimlerinde görseller ve .gif'ler gibi zengin medyaları görmek ister misiniz? Bir önizlemeyi açmak için bildirimi basılı tutmanız yeterlidir. + +Etkinleştirdikten sonra göründüklerinden emin olmak için Haftalık Özet bildirimlerinde bazı değişiklikler yaptık. Kahretsin! + +Son olarak, Bir bakışta ekranına işleri hızlandırmaya yardımcı olacak birkaç düzeltme ekledik. Ayrıca, içerik bloğu başlıklarında otomatik olarak düzeltilen sözcükleri kalınlaştıran bir hatayı da ortadan kaldırdık. diff --git a/fastlane/metadata/tr/subtitle.txt b/fastlane/metadata/tr/subtitle.txt index e3ad7ab512fd..e45b7c4ac52d 100644 --- a/fastlane/metadata/tr/subtitle.txt +++ b/fastlane/metadata/tr/subtitle.txt @@ -1 +1 @@ -Bir web sitesi/blog oluşturun \ No newline at end of file +Bir site tasarla, bir blog oluştur \ No newline at end of file From dd3a071477609f6abc497f0f5bc35f3bf46cc9fe Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 15 Mar 2022 14:39:33 +1100 Subject: [PATCH 7/8] Update Jetpack metadata translations --- fastlane/jetpack_metadata/ar-SA/release_notes.txt | 9 +++++++++ fastlane/jetpack_metadata/en-US/release_notes.txt | 15 +++++++++------ fastlane/jetpack_metadata/ko/release_notes.txt | 9 +++++++++ fastlane/jetpack_metadata/pt-BR/release_notes.txt | 9 +++++++++ 4 files changed, 36 insertions(+), 6 deletions(-) create mode 100644 fastlane/jetpack_metadata/ar-SA/release_notes.txt create mode 100644 fastlane/jetpack_metadata/ko/release_notes.txt create mode 100644 fastlane/jetpack_metadata/pt-BR/release_notes.txt diff --git a/fastlane/jetpack_metadata/ar-SA/release_notes.txt b/fastlane/jetpack_metadata/ar-SA/release_notes.txt new file mode 100644 index 000000000000..076b6ba53b73 --- /dev/null +++ b/fastlane/jetpack_metadata/ar-SA/release_notes.txt @@ -0,0 +1,9 @@ +استخدم الألوان بشكل مثير—يتوافر دعم لوحات الألوان المتعددة هنا. أضف لوحات ألوان القالب ولوحات الألوان الافتراضية ولوحات الألوان التدريجية أو قم بإنشاء لوحة ألوانك الخاصة باستخدام ألوانك المفضلة. أصلحنا كذلك مشكلة تسببت في عدم ظهور ألوان القوالب وعدم تحديث بيانات القالب الحالي. + +بالنسبة إلى الأجهزة التي تستخدم اللغات من اليمين إلى اليسار، قمنا بتحديث موضع الأيقونة والزر والنص لشاشة "اختيار النطاق" في عملية إنشاء الموقع. حسنًا، حسنًا. + +هل ترغب في الاطلاع على وسائط غنية، مثل الصور وصور gif في التنبيهات المنبثقة لجهازك؟ ما عليك سوى الضغط مع الاستمرار على التنبيه لفتح معاينة. + +أجرينا بعض التعديلات على تنبيهات الموجز الأسبوعي لنتأكَّد من ظهورها بمجرد أن تقوم بتمكينها. انطلق! + +أضفنا أخيرًا إصلاحات قليلة على شاشة الرؤية التي ستساعد على تسريع الأمور. قضينا كذلك على خطأ كان يقوم بعرض الكلمات المُصححة تلقائيًا بشكل غامق في عناوين مكوِّن المحتوى. diff --git a/fastlane/jetpack_metadata/en-US/release_notes.txt b/fastlane/jetpack_metadata/en-US/release_notes.txt index ffbdd61ee20a..c2f17d6e073c 100644 --- a/fastlane/jetpack_metadata/en-US/release_notes.txt +++ b/fastlane/jetpack_metadata/en-US/release_notes.txt @@ -1,6 +1,9 @@ -* [*] Site Creation: Fixed layout of domain input field for RTL languages. [#18006] -* [*] Push notifications will now display rich media when long pressed. [#18048] -* [*] Stats: we fixed a variety of performance issues in the Insight screen. [#17926, #17936, #18017] -* [*] Weekly Roundup: We made some further changes to try and ensure that Weekly Roundup notifications are showing up for everybody who's enabled them [#18029] -* [*] Block editor: Autocorrected Headings no longer apply bold formatting if they weren't already bold. [#17844] -* [***] Block editor: Support for multiple color palettes [https://github.com/wordpress-mobile/gutenberg-mobile/pull/4588] +Color us excited—support for multiple color palettes is here! Add Theme and Default color and gradient palettes, or create your own Custom palette with your favorite shades. We also fixed an issue that caused theme colors not to appear and current theme data not to refresh. + +For devices using right-to-left languages, we updated icon, button, and text positioning for the “Choose a Domain” screen in the site creation process. Alright, alright. + +Want to see rich media like images and .gifs in your device’s push notifications? Just press and hold the notification to open a preview. + +We made some tweaks to Weekly Roundup notifications to make sure they’re showing up once you’ve enabled them. Giddyup! + +Finally, we added a few fixes on the Insight screen that’ll help speed things up. We also squashed a bug that bolded auto-corrected words in content block headings. diff --git a/fastlane/jetpack_metadata/ko/release_notes.txt b/fastlane/jetpack_metadata/ko/release_notes.txt new file mode 100644 index 000000000000..a140a41e5d6b --- /dev/null +++ b/fastlane/jetpack_metadata/ko/release_notes.txt @@ -0,0 +1,9 @@ +황홀한 색상 - 여러 가지 색상 팔레트가 지원됩니다! 테마와 기본 색상과 그레이디언트 팔레트를 추가하거나 좋아하는 음영으로 나만의 사용자 정의 팔레트를 만드세요. 테마 색상이 표시되지 않고 현재 테마 데이터가 새고 고쳐지지 않는 원인이 되는 문제도 해결했습니다. + +오른쪽에서 왼쪽으로 쓰는 언어를 사용하는 언어를 위해 사이트 생성 프로세스에서 "도메인 선택"의 아이콘, 버튼 및 텍스트 배치를 업데이트했습니다. 아무런 문제가 없습니다. + +기기의 푸시 알림에 이미지와 .gif 파일을 비롯한 풍부한 미디어가 표시되기를 원하시나요? 알림을 길게 누르기만 하면 미리보기가 열립니다. + +주간 총정리를 활성화하기만 하면 주간 총정리가 표시되도록 주간 총정리 알림을 약간 조정했습니다. 편안하게 이용하세요! + +마지막으로, 인사이트 화면에 내용이 빨리 표시되도록 몇 가지 수정 사항을 추가했습니다. 자동 수정한 단어가 콘텐츠 블록 헤딩요소에서 굵게 표시되는 버그도 수정했습니다. diff --git a/fastlane/jetpack_metadata/pt-BR/release_notes.txt b/fastlane/jetpack_metadata/pt-BR/release_notes.txt new file mode 100644 index 000000000000..8cc28da373fd --- /dev/null +++ b/fastlane/jetpack_metadata/pt-BR/release_notes.txt @@ -0,0 +1,9 @@ +Explosão de cores: chegou a compatibilidade com várias paletas! Adicione paletas gradientes e cores de tema e padrão ou crie uma paleta personalizada com seus tons favoritos. Além disso, corrigimos um problema que não permitia que as cores de tema aparecessem e os dados do tema atual fossem atualizados. + +Para dispositivos que utilizam idiomas RTL, atualizamos o posicionamento de texto, botão e ícone da tela "Escolha um domínio" no processo de criação do site. Muito bem. + +Quer ver conteúdo rich media, como imagens e GIFs, nas notificações por push do seu dispositivo? Basta manter a notificação pressionada para abrir uma prévia. + +Fizemos alguns ajustes nas notificações do resumo semanal para garantir que sejam exibidas assim que você as ativar. Opa! + +E, por fim, fizemos algumas correções na tela Informação para agilizar as coisas. Também eliminamos um bug que deixava em negrito palavras corrigidas automaticamente nos títulos de blocos de conteúdo. From 94fa3388e4fb093fc96b606f00bd5da4da30fcb1 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 15 Mar 2022 14:39:33 +1100 Subject: [PATCH 8/8] Bump version number --- config/Version.internal.xcconfig | 2 +- config/Version.public.xcconfig | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/Version.internal.xcconfig b/config/Version.internal.xcconfig index 6fec94790307..d4b3d6cf4468 100644 --- a/config/Version.internal.xcconfig +++ b/config/Version.internal.xcconfig @@ -1,4 +1,4 @@ VERSION_SHORT=19.4 // Internal long version example: VERSION_LONG=9.9.0.20180423 -VERSION_LONG=19.4.0.20220310 +VERSION_LONG=19.4.0.20220315 diff --git a/config/Version.public.xcconfig b/config/Version.public.xcconfig index 6bbccbb67746..f6f32753a2ff 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,4 +1,4 @@ VERSION_SHORT=19.4 // Public long version example: VERSION_LONG=9.9.0.0 -VERSION_LONG=19.4.0.1 +VERSION_LONG=19.4.0.2