From b3890119d9198af58a7791ecbbb7d4879ea7d52d Mon Sep 17 00:00:00 2001 From: David Christiandy <1299411+dvdchr@users.noreply.github.com> Date: Thu, 16 Dec 2021 15:56:55 +0700 Subject: [PATCH 01/16] Skip configuring cell when the app is backgrounded --- .../Reader/ReaderCommentsViewController.m | 28 ++++++++++--------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/WordPress/Classes/ViewRelated/Reader/ReaderCommentsViewController.m b/WordPress/Classes/ViewRelated/Reader/ReaderCommentsViewController.m index 3d0c77b6a376..9338b8386117 100644 --- a/WordPress/Classes/ViewRelated/Reader/ReaderCommentsViewController.m +++ b/WordPress/Classes/ViewRelated/Reader/ReaderCommentsViewController.m @@ -1245,6 +1245,20 @@ - (NSFetchRequest *)fetchRequest - (void)configureCell:(UITableViewCell *)aCell atIndexPath:(NSIndexPath *)indexPath { + // When backgrounding, the app takes a snapshot, which triggers a layout pass, + // which refreshes the cells, and for some reason triggers an assertion failure + // in NSMutableAttributedString(data:,options:,documentAttributes:) when + // the NSDocumentTypeDocumentAttribute option is NSHTMLTextDocumentType. + // *** Assertion failure in void _prepareForCAFlush(UIApplication *__strong)(), + // /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3600.6.21/UIApplication.m:2377 + // *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', + // reason: 'unexpected start state' + // This seems like a framework bug, so to avoid it skip configuring cells + // while the app is backgrounded. + if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) { + return; + } + Comment *comment = [self.tableViewHandler.resultsController objectAtIndexPath:indexPath]; if ([self newCommentThreadEnabled]) { @@ -1306,19 +1320,7 @@ - (void)configureCell:(UITableViewCell *)aCell atIndexPath:(NSIndexPath *)indexP }; } - // When backgrounding, the app takes a snapshot, which triggers a layout pass, - // which refreshes the cells, and for some reason triggers an assertion failure - // in NSMutableAttributedString(data:,options:,documentAttributes:) when - // the NSDocumentTypeDocumentAttribute option is NSHTMLTextDocumentType. - // *** Assertion failure in void _prepareForCAFlush(UIApplication *__strong)(), - // /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3600.6.21/UIApplication.m:2377 - // *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', - // reason: 'unexpected start state' - // This seems like a framework bug, so to avoid it skip configuring cells - // while the app is backgrounded. - if ([[UIApplication sharedApplication] applicationState] == UIApplicationStateBackground) { - return; - } + NSAttributedString *attrStr = [self cacheContentForComment:comment]; [cell configureCellWithComment:comment attributedString:attrStr]; From 8b63f8988fbc3be5a7364fb94821ae80075d636a Mon Sep 17 00:00:00 2001 From: David Christiandy <1299411+dvdchr@users.noreply.github.com> Date: Thu, 16 Dec 2021 16:08:36 +0700 Subject: [PATCH 02/16] Refresh follow button after post is fetched --- .../Classes/ViewRelated/Reader/ReaderCommentsViewController.m | 1 + 1 file changed, 1 insertion(+) diff --git a/WordPress/Classes/ViewRelated/Reader/ReaderCommentsViewController.m b/WordPress/Classes/ViewRelated/Reader/ReaderCommentsViewController.m index 3d0c77b6a376..770dfbb9bfdd 100644 --- a/WordPress/Classes/ViewRelated/Reader/ReaderCommentsViewController.m +++ b/WordPress/Classes/ViewRelated/Reader/ReaderCommentsViewController.m @@ -789,6 +789,7 @@ - (BOOL)shouldDisplaySuggestionsTableView - (void)refreshAndSync { + [self refreshFollowButton]; [self refreshPostHeaderView]; [self refreshSubscriptionStatusIfNeeded]; [self refreshReplyTextView]; From 40f6676fe9e245b0519ac0d650e9e60864251861 Mon Sep 17 00:00:00 2001 From: Olivier Halligon Date: Fri, 17 Dec 2021 17:59:06 +0100 Subject: [PATCH 03/16] Remove call to extract-framework-translation while work on L10n tooling is still WIP MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We are currently working on removing `update-translations.rb` + `fix-translations` + `extract-framework-translations.swift` scripts from the repo and migrating their logic into the release-toolkit, but that work is still in progress. The role of the (misleadingly named) `extract-frameworks-translations.swift` script was to redistribute the keys from the `*.lproj/Localizable.strings` downloaded from GlotPress into the `.strings` files of the Widgets and ShareExtension targets, back when those targets used their own `.strings` file. This is no longer the case since #17630 and #17636 landed – as Widgets and ShareExtension's code now reference the app's `.strings` file directly – which means we don't need to run the logic from `extract-frameworks-translations.swift` anymore, and in fact if we did, it would probably crash now that the `Base.lproj/Localizable.strings` files in the Widgets and ShareExtension subfolders (which that script references) don't exist anymore. --- Scripts/update-translations.rb | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Scripts/update-translations.rb b/Scripts/update-translations.rb index 2902790e3292..df826f4720fc 100755 --- a/Scripts/update-translations.rb +++ b/Scripts/update-translations.rb @@ -162,7 +162,3 @@ # Clean up after ourselves FileUtils.rm_f backup_destination end - -extract_framework_translations_script_path = File.join(script_root, 'extract-framework-translations.swift') - -system extract_framework_translations_script_path if strings_filter.empty? From 60fa845fa7deed0987baf3f32817c7ad61f914f4 Mon Sep 17 00:00:00 2001 From: Stephenie Harris Date: Fri, 17 Dec 2021 11:29:36 -0700 Subject: [PATCH 04/16] Track comment editor opened. --- .../ViewRelated/Comments/CommentDetailViewController.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/WordPress/Classes/ViewRelated/Comments/CommentDetailViewController.swift b/WordPress/Classes/ViewRelated/Comments/CommentDetailViewController.swift index fa838544ed92..e6cde16fdc20 100644 --- a/WordPress/Classes/ViewRelated/Comments/CommentDetailViewController.swift +++ b/WordPress/Classes/ViewRelated/Comments/CommentDetailViewController.swift @@ -530,6 +530,7 @@ private extension CommentDetailViewController { self?.updateComment() }) + CommentAnalytics.trackCommentEditorOpened(comment: comment) let navigationControllerToPresent = UINavigationController(rootViewController: editCommentTableViewController) navigationControllerToPresent.modalPresentationStyle = .fullScreen present(navigationControllerToPresent, animated: true) From 791c7bebcf17a3bc6a0581246557b26a1138aaf7 Mon Sep 17 00:00:00 2001 From: Jeremy Massel <1123407+jkmassel@users.noreply.github.com> Date: Fri, 17 Dec 2021 15:07:59 -0700 Subject: [PATCH 05/16] Update translations --- .../Resources/ar.lproj/Localizable.strings | 97 +++++++++------ .../Resources/bg.lproj/Localizable.strings | 93 ++++++++------ .../Resources/cs.lproj/Localizable.strings | 95 +++++++++------ .../Resources/cy.lproj/Localizable.strings | 93 ++++++++------ .../Resources/da.lproj/Localizable.strings | 93 ++++++++------ .../Resources/de.lproj/Localizable.strings | 93 ++++++++------ .../Resources/en-AU.lproj/Localizable.strings | 93 ++++++++------ .../Resources/en-CA.lproj/Localizable.strings | 93 ++++++++------ .../Resources/en-GB.lproj/Localizable.strings | 95 +++++++++------ .../Resources/es.lproj/Localizable.strings | 95 +++++++++------ .../Resources/fr.lproj/Localizable.strings | 113 +++++++++++------- .../Resources/he.lproj/Localizable.strings | 93 ++++++++------ .../Resources/hr.lproj/Localizable.strings | 93 ++++++++------ .../Resources/hu.lproj/Localizable.strings | 93 ++++++++------ .../Resources/id.lproj/Localizable.strings | 93 ++++++++------ .../Resources/is.lproj/Localizable.strings | 93 ++++++++------ .../Resources/it.lproj/Localizable.strings | 93 ++++++++------ .../Resources/ja.lproj/Localizable.strings | 97 +++++++++------ .../Resources/ko.lproj/Localizable.strings | 93 ++++++++------ .../Resources/nb.lproj/Localizable.strings | 93 ++++++++------ .../Resources/nl.lproj/Localizable.strings | 93 ++++++++------ .../Resources/pl.lproj/Localizable.strings | 97 +++++++++------ .../Resources/pt-BR.lproj/Localizable.strings | 93 ++++++++------ .../Resources/pt.lproj/Localizable.strings | 93 ++++++++------ .../Resources/ro.lproj/Localizable.strings | 97 +++++++++------ .../Resources/ru.lproj/Localizable.strings | 95 +++++++++------ .../Resources/sk.lproj/Localizable.strings | 93 ++++++++------ .../Resources/sq.lproj/Localizable.strings | 93 ++++++++------ .../Resources/sv.lproj/Localizable.strings | 95 +++++++++------ .../Resources/th.lproj/Localizable.strings | 93 ++++++++------ .../Resources/tr.lproj/Localizable.strings | 93 ++++++++------ .../zh-Hans.lproj/Localizable.strings | 93 ++++++++------ .../zh-Hant.lproj/Localizable.strings | 93 ++++++++------ 33 files changed, 1904 insertions(+), 1211 deletions(-) diff --git a/WordPress/Resources/ar.lproj/Localizable.strings b/WordPress/Resources/ar.lproj/Localizable.strings index f85c72384c08..17ae92aba26f 100644 --- a/WordPress/Resources/ar.lproj/Localizable.strings +++ b/WordPress/Resources/ar.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-12-05 04:15:05+0000 */ +/* Translation-Revision-Date: 2021-12-17 11:23:58+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 */ @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "⁦%1$d⁩ من المقالات التي لم يتم الاطلاع عليها"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "تم تحويل %1$s إلى %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "أضف صورة أو أفاتار لتمثيل هذا الحساب الجديد."; -/* No comment provided by engineer. */ -"Add link" = "إضافة رابط"; - /* No comment provided by engineer. */ "Add link text" = "إضافة نصّ للرابط"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "المؤلف"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "مخطط شريطي يصف للزائرين أحدث مقالة لك"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "كن أول من يضع تعليقًا."; @@ -1521,7 +1525,7 @@ translators: Block name. %s: The localized block name */ "Closing account…" = "جارٍ إغلاق الحساب…"; /* Accessibility label for selecting code style button on the formatting toolbar. */ -"Code" = "رمز"; +"Code" = "كود Code"; /* Accessibility description for the list of completed tasks presented during Quick Start. Parameter is a number representing the count of completed tasks. */ "Collapsed, %i completed tasks, toggling expands the list of these tasks" = "تم طي %i من المهام المكتملة، ويؤدي التبديل إلى توسيع قائمة هذه المهام"; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "قم بإبداء تعليق لبدء إجراء اتصالات."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "تعليقات"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "تعليقات على"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "اسم العرض"; -/* No comment provided by engineer. */ -"Display post date" = "عرض تاريخ النشر"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "اعرض إحصاءات موقعك طوال الوقت هنا. يمكنك التكوين في تطبيق ووردبريس في إحصاءات موقعك."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "القيام بذلك مرة أخرى"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "المستند: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "الضغط المزدوج لتحديد صورة"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "الضغط ضغطًا مزدوجًا لتحديد الخيار"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "تكرار المكوِّن"; -/* No comment provided by engineer. */ -"EDIT LINK" = "تحرير رابط"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "لكل مكوِّن الإعدادات الخاصة به. للعثور عليها، أنقر على مكوِّن. ستظهر إعداداته على شريط الأدوات في الجزء السفلي من الشاشة."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "قم بتضمين تسمية توضيحية. فارغ"; -/* No comment provided by engineer. */ -"Embed link" = "تضمين رابط"; - /* No comment provided by engineer. */ "Embed media" = "تضمين وسائط"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "يتابع الوسم."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "كرة القدم"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "ابدأ بالاختيار من بين مجموعة متنوعة من تخطيطات صفحة معدة مسبقًا. أو ما عليك سوى البدء بصفحة فارغة."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "ابدأ العمل وقم بزيادة مشاهدات مقالتك عن طريق مشاركة مقالتك."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "تسمية توضيحية للصورة. %s"; -/* No comment provided by engineer. */ -"Image settings" = "إعدادات الصورة"; - /* Hint for image title on image settings. */ "Image title" = "عنوان الصورة"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "وسم كغير مقروء"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "وضع علامة كمُثبَّت"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "أدنى ارتفاع"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "ثغرات أمنية متنوعة"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "المزيد على WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "الوقت الأكثر شعبية"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "نقل إلى سلة المهملات"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "التنقل لتخصيص التدرج"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "ينتقل لتحديد %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "لا توجد تعليقات"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "لا توجد تعليقات حتى الآن"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "مقالة باسم %1$@، من %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "إعدادات محتوى المقالة"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "تمّ إنشاء المقالة على %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "فشل رفع المقالة"; -/* No comment provided by engineer. */ -"Post meta settings" = "إعدادات بيانات تعريف المقالة"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "تم نقل المقالة إلى سلة المهملات."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "الوسائط المحددة غير متوفرة."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "مُحدَّد: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "إن تحديد موقع قائمة مختلف سيتجاهل التغييرات التي قمت بإجرائها على القائمة الحالية. هل أنت متأكد من رغبتك في المتابعة؟"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "مشاركة"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "فرز حسب"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "الفرز والتصفية"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "التعليمات البرمجية المصدر"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "لا يمكن للتطبيق التعرف على استجابة الخادم. يُرجى التحقق من تكوين موقعك."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "شهادة هذا الخادم غير صالحة. قد تكون مرتبطًا بخادم يبدو "%@" والذي قد يجعل معلوماتك السرية في خطر.\n\nهل تريد أن تثق في الشهادة على أية حال؟"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "ظهرت مشكلة أثناء تحميل إعدادات التنبيهات"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "حدث خطأ غير متوقع أثناء تحرير التعليق"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "حدث خطأ غير متوقع أثناء تحرير تعليقك"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "تتعذر إضافة صورة إلى الملف"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "رفض"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "عرض الكل"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "عرض كل التعليقات"; - /* Button label for viewing a post */ "View Post" = "مشاهدة المقالة"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "مشاهدة الموقع"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "عرض كل التعليقات"; + /* Displays More Rows */ "View all…" = "عرض الكل…"; diff --git a/WordPress/Resources/bg.lproj/Localizable.strings b/WordPress/Resources/bg.lproj/Localizable.strings index 69629274d288..da88b8cf299f 100644 --- a/WordPress/Resources/bg.lproj/Localizable.strings +++ b/WordPress/Resources/bg.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Автор"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Коментирайте първи."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Коментари"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Коментари на"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Публично име"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Документ: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Заглавие на изображението"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Преместване в кошчето"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Няма коментари"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Няма коментари"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %@, from %@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Публикацията е изтрита."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Избирането на друга позиция за това меню ще отхвърли промените, които сте направили към текущото меню. Сигурни ли сте, че искате да продължите?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Споделяне"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Сортиране по"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Изходен код"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Приложението не разпознава отговора на сървъра. Проверете конфигурацията на сайта си."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Сертификатът на този сървър е невалиден. Възможно е да се свързвате със сървър който се преструва че е \"%@\", което да изложи ваша конфиденциална информация на риск.\n\nСигурни ли сте, че искате да се доверите на този сертификат?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Възникна проблем при зареждането на вашите настроики за известяванията"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Възникна неизвестна грешка при редактиране на коментара"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Неуспешно записване на изображението във файл"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Неодобрение"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Покажи всички"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "View Post"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Към сайта"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Всички..."; diff --git a/WordPress/Resources/cs.lproj/Localizable.strings b/WordPress/Resources/cs.lproj/Localizable.strings index eefc46ac3666..11577dbede4f 100644 --- a/WordPress/Resources/cs.lproj/Localizable.strings +++ b/WordPress/Resources/cs.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-11-30 13:47:14+0000 */ +/* Translation-Revision-Date: 2021-12-16 21:27:09+0000 */ /* Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n >= 2 && n <= 4) ? 1 : 2); */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: cs_CZ */ @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d neviditelných příspěvků"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s změnit na %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Přidejte obrázek nebo avatar, který představuje tento nový účet."; -/* No comment provided by engineer. */ -"Add link" = "Přidat odkaz"; - /* No comment provided by engineer. */ "Add link text" = "Přidat text odkazu"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Autor"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Sloupcový graf zobrazující návštěvníky vašeho posledního příspěvku"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Buďte první! Přidejte komentář"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Buďte první, kdo napíše komentář."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Komentáře začněte vytvářet spojení."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Komentáře"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Komentáře jsou uzavřené"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Komentáře k"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Zobrazované jméno"; -/* No comment provided by engineer. */ -"Display post date" = "Zobrazit datum příspěvku"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Zde zobrazte své statistiky všech dob. Nakonfigurujte v aplikaci WordPress ve statistikách svého webu."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Udělej to znova"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Dokument, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Dokument: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Dvojitým klepnutím vyberte obrázek"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Dvojitým klepnutím vyberte výchozí velikost písma"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Dvojitým klepnutím vyberte velikost písma"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Dvojitým klepnutím vyberte možnost"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicitní blok"; -/* No comment provided by engineer. */ -"EDIT LINK" = "Upravit odkaz"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Každý blok má své vlastní nastavení. Chcete-li je najít, klepněte na blok. Jeho nastavení se zobrazí na panelu nástrojů ve spodní části obrazovky."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Vložit titulek. Prázdný"; -/* No comment provided by engineer. */ -"Embed link" = "Vložit odkaz"; - /* No comment provided by engineer. */ "Embed media" = "Vložit médiální soubory"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Sleduje značku."; +/* No comment provided by engineer. */ +"Font Size" = "Velikost písma"; + /* An example tag used in the login prologue screens. */ "Football" = "Fotbal"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Začněte výběrem z široké škály předem připravených rozvržení stránky. Nebo jen začněte s prázdnou stránkou."; +/* No comment provided by engineer. */ +"Get support" = "Získejte podporu"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Rozviňte míč a sdílejte svůj příspěvek a zvyšte zobrazení příspěvku."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Titulek obrázku. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Nastavení obrázku"; - /* Hint for image title on image settings. */ "Image title" = "Nadpis obrázku"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Označit nepřečtené"; +/* Marks comment as spam */ +"Mark as Spam" = "Označit jako spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Označit jako připnutý"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimální výška"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Různé zranitelnosti"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Více informací o WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "Více možností podpory"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Nejoblíbenější čas"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Přesunout do koše"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Přejde k přizpůsobení přechodu"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Přejde k výběru %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Žádný komentář"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Zatím nemáte žádné komentáře"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Příspěvek od %1$@, z %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Nastavení obsahu příspěvku"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Příspěvek vytvořen dne %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Nahrávání příspěvku se nezdařilo"; -/* No comment provided by engineer. */ -"Post meta settings" = "Nastavení dalších informací příspěvku"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Příspěvek byl přesunut do koše."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Vybrané médium není k dispozici."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Vybráno: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Vybrat: výchozí"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Vybrání jiného umístění menu zahodí změny, které jste provedli v aktuálním menu. Jste si jisti, že chcete pokračovat?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Sdílet"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Seřadit podle"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Filtry a řazení"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Zdrojový kód"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Aplikace nemůže rozpoznat odpověď serveru. Zkontrolujte prosím konfiguraci svého webu."; +/* No comment provided by engineer. */ +"The basics" = "Základy"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Certifikát pro tento server je neplatný. Ty by mohly být připojení k serveru, který předstírá, že je \"%@\", což by mohlo ohrozit vaše důvěrné informace.\n\nBudete přesto důvěřovat certifikátu?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Došlo k potížím při načítání nastavení oznámení"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "Došlo k neočekávané chybě při úpravě komentáře"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Došlo k neočekávané chybě při úpravě vašeho komentáře"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Nejde zapisovat do souboru na disku"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Zrušit schválení"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Zobrazit vše"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Zobrazit všechny komentáře"; - /* Button label for viewing a post */ "View Post" = "Zobrazit příspěvek"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Zobrazit web"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "Zobrazit všechny komentáře"; + /* Displays More Rows */ "View all…" = "Zobrazit vše.."; diff --git a/WordPress/Resources/cy.lproj/Localizable.strings b/WordPress/Resources/cy.lproj/Localizable.strings index ec9e35053013..c718be913ca8 100644 --- a/WordPress/Resources/cy.lproj/Localizable.strings +++ b/WordPress/Resources/cy.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Awdur"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Byddwch y cyntaf i adael sylwadau."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Nodiadau"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Sylwadau ar"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Enw Dangos"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Dogfen: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Teitl delwedd"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Symud i'r Sbwriel"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Dim sylwadau"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Dim sylwadau eto"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %@, from %@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Mae'r cofnod wedi ei symud i'r sbwriel."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Bydd dewis dewislen gwahanol yn dileu'r newidiadau rydych wedi eu gwneud i'r ddewislen cyfredol. A ydych yn siŵr eich bod am barhau?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Rhannu"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Trefnu yn ôl"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Cod Ffynhonnell"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Nid yw'r ap yn gallu a adnabod ymateb y gweinydd. Gwiriwch ffurfweddiad eich gwefan."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Mae'r dystysgrif ar gyfer y gweinydd hwn yn annilys. Gall eich bod yn cysylltu â gweinydd sy'n esgus bod yn “%@” sy'n gallu peryglu eich gwybodaeth gyfrinachol.\n\nHoffech chi ymddiried yn y dystysgrif beth bynnag?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Bu anhawster wrth lwytho eich Gosodiadau Hysbysiadau"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Bu gwall annisgwyl tra'n golygu eich sylw"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Methu ysgrifennu'r ddelwedd i ffeil"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Anghymeradwyo"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Gweld y Cyfan"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "View Post"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Gweld y Wefan"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Gweld y cyfan…"; diff --git a/WordPress/Resources/da.lproj/Localizable.strings b/WordPress/Resources/da.lproj/Localizable.strings index c7bb2733dcf8..30a9a23fdd3f 100644 --- a/WordPress/Resources/da.lproj/Localizable.strings +++ b/WordPress/Resources/da.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Forfatter"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Be the first to leave a comment."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Kommentarer"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Kommentarer til"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Display Name"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Image title"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Move to Trash"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "No comments"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Ingen kommentarer endnu"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %@, from %@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Indlæg flyttet til papirkurv."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Del"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sort By"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sortering og filtrering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Source Code"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "The app can't recognize the server response. Please, check the configuration of your site."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "There has been a problem while loading your Notification Settings"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "There has been an unexpected error while editing your comment"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Unable to write image to file"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Unapprove"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Vis alle"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "Se indlæg"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Vis websted"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Vis alle..."; diff --git a/WordPress/Resources/de.lproj/Localizable.strings b/WordPress/Resources/de.lproj/Localizable.strings index 8a44ac84f83f..a92217265025 100644 --- a/WordPress/Resources/de.lproj/Localizable.strings +++ b/WordPress/Resources/de.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d ungesehene Beiträge"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s umgewandelt in %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* 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."; -/* No comment provided by engineer. */ -"Add link" = "Link hinzufügen"; - /* No comment provided by engineer. */ "Add link text" = "Linktext hinzufügen"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Autor"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Balkendiagramm, das die Besucher deines letzten Beitrags anzeigt"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Schreibe den ersten Kommentar."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Kommentiere, um mit anderen in Kontakt zu treten."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Kommentare"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Kommentare zu"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Anzeigename"; -/* No comment provided by engineer. */ -"Display post date" = "Beitragsdatum anzeigen"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Zeige hier deine Website-Statistiken der gesamten Zeit an. Konfiguriere sie in der WordPress-App in deinen Website-Statistiken."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Wiederholen"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Dokument: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Zum Auswählen eines Bilds zweimal tippen"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Zum Auswählen der Option zweimal tippen"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Block duplizieren"; -/* No comment provided by engineer. */ -"EDIT LINK" = "Link bearbeiten"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Jeder Block hat eigene Einstellungen. Tippe auf den jeweiligen Block, um sie zu finden. Die Einstellungen werden in der Werkzeugleiste unten auf dem Bildschirm angezeigt."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Beschriftung einbetten Leer"; -/* No comment provided by engineer. */ -"Embed link" = "Link einbetten"; - /* No comment provided by engineer. */ "Embed media" = "Medien einbetten"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Folgt dem Schlagwort."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "American Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Beginne mit der Auswahl eines der vielen vorgefertigten Seitenlayouts. Oder beginne einfach mit einer leeren Seite."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Erhalte mehr Aufrufe deines Beitrags, indem du ihn teilst."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Bildunterschrift. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Bild-Einstellungen"; - /* Hint for image title on image settings. */ "Image title" = "Bildtitel"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Als ungelesen markieren"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Als oben gehalten markieren"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Mindesthöhe"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Verschiedene Schwachstellen"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Mehr auf WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Beliebteste Zeit"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "In Papierkorb verschieben"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigiert zum Anpassen des Verlaufs"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigiert zur Auswahl von %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Keine Kommentare"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Keine Kommentare bisher"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Veröffentlicht durch %1$@, von %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Einstellungen für Beitragsinhalte"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Beitrag erstellt am %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Beitrag konnte nicht hochgeladen werden"; -/* No comment provided by engineer. */ -"Post meta settings" = "Einstellungen für Beitragsmetadaten"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Beitrag in den Papierkorb verschoben."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Ausgewähltes Medium ist nicht verfügbar."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Ausgewählt: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Durch Auswahl einer anderen Menüposition werden Änderungen, die du am aktuellen Menü vorgenommen hast, verworfen. Bist du sicher, dass du weitermachen möchtest?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Teilen"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sortieren nach"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sortierung und Filter"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Quelltext"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Die App konnte die Rückmeldung vom Server nicht verarbeiten. Bitte überprüfe die Konfiguration deiner Website."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Das Zertifikat für diesen Server ist ungültig. Du könntest zu einem Server verbinden, der nur vorgibt \"%@\" zu sein, was ein Sicherheitsrisiko darstellt.\n\nMöchtest Du dem Zertifikat trotzdem vertrauen?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Problem beim Laden deiner Benachrichtigungseinstellungen"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Beim Bearbeiten deines Kommentars ist ein unerwarteter Fehler aufgetreten"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Konnte keine Bilder speichern"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Zurückweisen"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Alles anzeigen"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Alle Kommentare anzeigen"; - /* Button label for viewing a post */ "View Post" = "Beitrag anzeigen"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Seite ansehen"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Alle anzeigen…"; diff --git a/WordPress/Resources/en-AU.lproj/Localizable.strings b/WordPress/Resources/en-AU.lproj/Localizable.strings index f836babfba39..24062f56b6ce 100644 --- a/WordPress/Resources/en-AU.lproj/Localizable.strings +++ b/WordPress/Resources/en-AU.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Author"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Be the first to leave a comment."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Comments"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Comments on"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Display Name"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Image title"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Move to Trash"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "No comments"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "No comments yet"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %1$@, from %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Post moved to trash."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Share"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sort By"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Source Code"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "The app can't recognise the server response. Please, check the configuration of your site."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "There has been a problem while loading your Notification Settings"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "There has been an unexpected error while editing your comment"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Unable to write image to file"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Unapprove"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "View All"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "View Post"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "View Site"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "View all…"; diff --git a/WordPress/Resources/en-CA.lproj/Localizable.strings b/WordPress/Resources/en-CA.lproj/Localizable.strings index 1986dada3bf5..5454a650d72b 100644 --- a/WordPress/Resources/en-CA.lproj/Localizable.strings +++ b/WordPress/Resources/en-CA.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Author"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Be the first to leave a comment."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Comments"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Comments on"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Display Name"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Image title"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Move to Trash"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customise the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "No comments"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "No comments yet"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %1$@, from %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Post moved to trash."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Share"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sort By"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Source Code"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "The app can't recognise the server response. Please, check the configuration of your site."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "There has been a problem while loading your Notification Settings"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "There has been an unexpected error while editing your comment"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Unable to write image to file"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Unapprove"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "View All"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "View Post"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "View Site"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "View all…"; diff --git a/WordPress/Resources/en-GB.lproj/Localizable.strings b/WordPress/Resources/en-GB.lproj/Localizable.strings index bf58d73693e6..e5d1ae6f7354 100644 --- a/WordPress/Resources/en-GB.lproj/Localizable.strings +++ b/WordPress/Resources/en-GB.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-11-30 13:43:48+0000 */ +/* Translation-Revision-Date: 2021-12-16 20:04:06+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: en_GB */ @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Author"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Be the first to leave a comment."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Comments"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Comments on"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Display Name"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Image title"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Move to Bin"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customise the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "No comments"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "No comments yet"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %1$@, from %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Post moved to bin."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Share"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sort By"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Source Code"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "The app can't recognise the server response. Please, check the configuration of your site."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "There has been a problem while loading your Notification Settings"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "There has been an unexpected error while editing your comment"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Unable to write image to file"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Unapprove"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "View All"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View all comments"; - /* Button label for viewing a post */ "View Post" = "View Post"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "View Site"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "View all…"; diff --git a/WordPress/Resources/es.lproj/Localizable.strings b/WordPress/Resources/es.lproj/Localizable.strings index d3350af8e688..e779b686caee 100644 --- a/WordPress/Resources/es.lproj/Localizable.strings +++ b/WordPress/Resources/es.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-12-07 07:34:59+0000 */ +/* Translation-Revision-Date: 2021-12-17 08:35:27+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: es */ @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d entradas no vistas"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformado a %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* 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."; -/* No comment provided by engineer. */ -"Add link" = "Añadir enlace"; - /* No comment provided by engineer. */ "Add link text" = "Añadir texto del enlace"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Autor"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Gráfico de barras que representa los visitantes de tu última entrada"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Sé el primero en comentar"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Sé el primero en escribir un comentario."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comenta para empezar a hacer conexiones."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Comentarios"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Los comentarios están cerrados"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Comentarios en"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Nombre público"; -/* No comment provided by engineer. */ -"Display post date" = "Mostrar fecha de la entrada"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Muestra aquí todas las estadísticas de tu sitio. Configúralo en la aplicación WordPress en las estadísticas de tu sitio."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Volver a hacerlo"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Documento, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Documento: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Toca dos veces para seleccionar una imagen"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Toca dos veces para seleccionar el tamaño de fuente por defecto"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Toca dos veces para seleccionar el tamaño de fuente"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Toca dos veces para seleccionar la opción"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicar bloque"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDITAR ENLACE"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Cada bloque tiene sus propios ajustes. Para encontrarlos, toca en un bloque. Sus ajustes aparecerán en la barra de herramientas de la parte inferior de la pantalla."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Leyenda incrustada. Vacía"; -/* No comment provided by engineer. */ -"Embed link" = "Enlace incrustado"; - /* No comment provided by engineer. */ "Embed media" = "Medio incrustado"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Sigue la etiqueta."; +/* No comment provided by engineer. */ +"Font Size" = "Tamaño de la fuente"; + /* An example tag used in the login prologue screens. */ "Football" = "Fútbol"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Empieza eligiendo entre una amplia variedad de diseños de página prefabricados. O simplemente empieza con una página en blanco."; +/* No comment provided by engineer. */ +"Get support" = "Obtener soporte"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Pon la bola a rodar y aumenta las visitas compartiendo tu entrada."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Leyenda de la imagen. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Ajustes de imagen"; - /* Hint for image title on image settings. */ "Image title" = "Título de la imagen"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Marcar como no leído"; +/* Marks comment as spam */ +"Mark as Spam" = "Marcar como spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Marcar como fija"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Altura mínima"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Vulnerabilidad diversa"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Más en WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "Más opciones de soporte"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Lo más popular"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Mover a la papelera"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navega para personalizar el degradado"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navega para seleccionar %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Sin comentarios"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "No hay comentarios"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Entrada de %1$@, desde %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Ajustes de contenido de la entrada"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Entrada creada el %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Entrada que falló al subirse"; -/* No comment provided by engineer. */ -"Post meta settings" = "Ajustes de metadatos de entradas"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Se ha enviado la entrada a la papelera."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "El elemento multimedia seleccionado no está disponible."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selecionado: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Seleccionado: Por defecto"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Seleccionando una ubicación diferente para el menú perderás los cambios que has hecho al menú actual. ¿Estás seguro de que quieres continuar?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Compartir"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Ordenar por"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Orden y filtros"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Código fuente"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "La aplicación no reconoce la respuesta del servidor. Comprueba la configuración de tu sitio."; +/* No comment provided by engineer. */ +"The basics" = "Lo básico"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "El certificado para este servidor no es válido. Puede que estés conectando con un servidor que aparenta ser «%@», lo que podría poner en peligro tu información confidencial.\n\n¿Deseas confiar en el certificado de todos modos?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Ha ocurrido un problema al cargar tus ajustes de avisos"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "Ha habido un error inesperado al editar el comentario"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Se ha producido un error inesperado al editar tu comentario"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "No se ha podido poner la imagen en el archivo"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Rechazar"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Ver todo"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Ver todos los comentarios"; - /* Button label for viewing a post */ "View Post" = "Ver entrada"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Ver sitio"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "Ver todos los comentarios"; + /* Displays More Rows */ "View all…" = "Ver todo…"; diff --git a/WordPress/Resources/fr.lproj/Localizable.strings b/WordPress/Resources/fr.lproj/Localizable.strings index f75ef2e32ed3..42a3fc7a40ef 100644 --- a/WordPress/Resources/fr.lproj/Localizable.strings +++ b/WordPress/Resources/fr.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-12-08 16:54:08+0000 */ +/* Translation-Revision-Date: 2021-12-17 16:27:02+0000 */ /* Plural-Forms: nplurals=2; plural=n > 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: fr */ @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d articles non lus"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s a été transformé en %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* 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."; -/* No comment provided by engineer. */ -"Add link" = "Ajouter le lien"; - /* No comment provided by engineer. */ "Add link text" = "Ajouter un texte de lien"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Auteur"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Graphique à barres représentant les visiteurs pour votre dernier article"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Poster un commentaire"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Soyez le premier à laisser un commentaire."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Ajoutez un commentaire pour commencer à nouer des liens."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Commentaires"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Les commentaires sont fermés"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Commentaires sur"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Nom affiché"; -/* No comment provided by engineer. */ -"Display post date" = "Affiche la date du contenu"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Affichez ici les statistiques de votre site. Configurez dans l’application WordPress dans la rubrique les statistiques de votre site."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Recommencer"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document : %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document : %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Toucher deux fois pour sélectionner une image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Appuyer deux fois pour sélectionner la taille de caractères par défaut"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Appuyer deux fois pour sélectionner une taille de caractères"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Toucher deux fois pour sélectionner l’option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Dupliquer le bloc"; -/* No comment provided by engineer. */ -"EDIT LINK" = "MODIFIER LE LIEN"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Chaque bloc possède ses propres réglages. Pour les trouver, appuyez sur un bloc. Ses réglages apparaissent sur la barre d’outils en bas de l’écran."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Légende intégrée. Vide"; -/* No comment provided by engineer. */ -"Embed link" = "Lien intégré"; - /* No comment provided by engineer. */ "Embed media" = "Média embarqué"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Suivre l’étiquette."; +/* No comment provided by engineer. */ +"Font Size" = "Taille des caractères"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3212,7 +3224,7 @@ translators: Block name. %s: The localized block name */ "From another device" = "Depuis une autre appareil"; /* No comment provided by engineer. */ -"From clipboard" = "From clipboard"; +"From clipboard" = "Depuis le presse-papier"; /* Button title displayed in popup indicating date of change on device */ "From this device" = "Depuis cet appareil"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Commencez en choisissant parmi une large variété de mises en page prédéfinies. Ou commencez simplement avec une page vide."; +/* No comment provided by engineer. */ +"Get support" = "Obtenir de l’aide"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Lancez-vous et augmentez le nombre de vues de votre article en le partageant."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Légende de l’image. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Paramètres d'image"; - /* Hint for image title on image settings. */ "Image title" = "Titre de l’image"; @@ -3868,7 +3880,7 @@ translators: Block name. %s: The localized block name */ "Learn more..." = "En savoir plus…"; /* Description for a prompt asking if users want to try out the quick start checklist. */ -"Learn the basics with a quick walk through." = "Learn the basics with a quick walk through."; +"Learn the basics with a quick walk through." = "Apprenez les bases avec des instructions pas à pas rapides."; /* Left alignment for an image. Should be the same as in core WP. */ "Left" = "Gauche"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Marqué comme non lu"; +/* Marks comment as spam */ +"Mark as Spam" = "Marquer comme indésirable"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Marquer comme épinglé"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Hauteur minimale"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Vulnérabilité diverse"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Articles connexes sur WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "Plus d‘options d‘aide"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Heure la plus populaire"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Mettre dans la Corbeille"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Naviguer pour personnaliser le dégradé"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigue pour sélectionner %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Aucun commentaire"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Pas de commentaire pour l'instant"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Publié par %1$@ depuis %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Paramètres du contenu de l’article"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Article créé le %@."; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Le téléversement de l’article a échoué"; -/* No comment provided by engineer. */ -"Post meta settings" = "Paramètres des métadonnées de l’article"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Article déplacé dans la Corbeille."; @@ -5620,7 +5632,7 @@ translators: Block name. %s: The localized block name */ "Quick Start" = "Démarrage rapide"; /* Title for button allowing users to rate the app in the App Store */ -"Rate Us" = "Rate Us"; +"Rate Us" = "Évaluez-nous"; /* Prompts the user to rate us on the store */ "Rate us on the App Store" = "Évaluez-nous sur l'App Store"; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Le média sélectionné n’est pas disponible."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Sélectionné : %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Sélectionné : par défaut"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "La sélection d'un autre emplacement de menu annulera les modifications apportées dans le menu actuel. Voulez-vous vraiment continuer ?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Partager"; @@ -6412,7 +6429,7 @@ translators: Block name. %s: The localized block name */ "Share link" = "Lien de partage"; /* Title for button allowing users to share information about the app with friends, such as via Messages */ -"Share with Friends" = "Share with Friends"; +"Share with Friends" = "Partager avec des amis"; /* Aztec's Text Placeholder Share Extension Content Body Text Placeholder */ @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Trier par"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Tri et filtrage"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Code source"; @@ -6879,10 +6893,10 @@ translators: Block name. %s: The localized block name */ "Switch to block editor" = "Passer à l’éditeur de blocs"; /* Message of the notice shown when toggling the HTML editor mode */ -"Switched to HTML mode" = "Switched to HTML mode"; +"Switched to HTML mode" = "Basculé en mode HTML"; /* Message of the notice shown when toggling the Visual editor mode */ -"Switched to Visual mode" = "Switched to Visual mode"; +"Switched to Visual mode" = "Basculé en mode visuel"; /* Accessibility Identifier for the H1 Aztec Style */ "Switches to the Heading 1 font size" = "Basculez sur la taille de police du Titre niveau 1"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "L'application ne comprend la réponse du serveur. Veuillez vérifier la configuration de votre site."; +/* No comment provided by engineer. */ +"The basics" = "Les bases"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Le certificat de ce serveur n’est pas valide. Le serveur auquel vous vous connectez prétend être « %@ », ce qui peut constituer un risque de sécurité pour vos données confidentielles.\n\nSouhaitez-vous faire confiance au certificat malgré tout ?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Un problème est survenu pendant le chargement de vos paramètres de notification"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "Une erreur inattendue est survenue lors de la modification du commentaire"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Une erreur inattendue est survenue lors de la modification de votre commentaire"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Impossible d'écrire le fichier de l'image"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Désapprouver"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Afficher tout"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "Voir l’article"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Voir le site"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "Voir tous les commentaires"; + /* Displays More Rows */ "View all…" = "Afficher tout…"; @@ -8238,7 +8259,7 @@ translators: Block name. %s: The localized block name */ "Waiting..." = "En attente…"; /* Title for a prompt asking if users want to try out the quick start checklist. */ -"Want a little help managing this site with the app?" = "Want a little help managing this site with the app?"; +"Want a little help managing this site with the app?" = "Besoin d’un peu d’aide sur la gestion de ce site avec l’application ?"; /* Editing GIF alert title. Noun. Title for Jetpack Restore warning. @@ -8699,7 +8720,7 @@ translators: Block name. %s: The localized block name */ "WordPress.org Plugin Page" = "Page de l’extension WordPress.org"; /* Title of button that displays the Automattic Work With Us web page */ -"Work With Us" = "Work With Us"; +"Work With Us" = "Rejoignez-nous"; /* Accessibility label for the Stats' world map. */ "World map showing views by country." = "La carte du monde affiche les vues par pays."; @@ -8791,7 +8812,7 @@ translators: Block name. %s: The localized block name */ "You can rearrange blocks by tapping a block and then tapping the up and down arrows that appear on the bottom left side of the block to move it above or below other blocks." = "Vous pouvez réorganiser les blocs en touchant un bloc, puis en touchant les flèches haut et bas qui apparaissent en bas à gauche du bloc pour le déplacer au-dessus ou au-dessous d’autres blocs."; /* A text for subtitle label on Login epilogue screen */ -"You can switch sites at any time." = "You can switch sites at any time."; +"You can switch sites at any time." = "Vous pouvez changer de site à tout moment."; /* Prompt shown on the completion screen of the Blogging Reminders Settings screen. */ "You can update this any time via My Site > Site Settings" = "Vous pouvez le mettre à jour à tout moment via Mon site > Réglages du site"; diff --git a/WordPress/Resources/he.lproj/Localizable.strings b/WordPress/Resources/he.lproj/Localizable.strings index 3a7615698dd4..4091a1569b14 100644 --- a/WordPress/Resources/he.lproj/Localizable.strings +++ b/WordPress/Resources/he.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "⁦%1$d⁩ פוסטים מוסתרים"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "⁦%1$s⁩ שונה אל ⁦%2$s⁩"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "להוסיף תמונה או תמונת פרופיל שתייצג את החשבון חדש."; -/* No comment provided by engineer. */ -"Add link" = "להוסיף קישור"; - /* No comment provided by engineer. */ "Add link text" = "להוסיף טקסט לקישור"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "מחבר"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "תרשים עמודות שמשקף את המבקרים בפוסטים האחרונים שלך"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "נשמח לקבל תגובה ראשונה ממך."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "אפשר להגיב כדי להתחבר לאנשים חדשים."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "תגובות"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "תגובות לרשומה"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "שם תצוגה"; -/* No comment provided by engineer. */ -"Display post date" = "להציג את תאריך הפוסט"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "להציג כאן את הנתונים הסטטיסטיים שלך מכל הזמנים. יש להגדיר את האפשרות באפליקציה של WordPress בנתונים הסטטיסטיים של האתר שלך."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "לחזור על הפעולה"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "מסמכים: ‎%@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "יש להקיש פעמיים כדי לבחור תמונה"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "יש להקיש פעמיים כדי לבחור את האפשרות"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "לשכפל בלוק"; -/* No comment provided by engineer. */ -"EDIT LINK" = "ערוך קישור"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "לכל בלוק יש הגדרות משלו. כדי למצוא אותן, יש להקיש על הבלוק. ההגדרות שלו יופיעו בסרגל הכלים שנמצא בתחתית המסך."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "כיתוב התמונה מוטמע. ריק"; -/* No comment provided by engineer. */ -"Embed link" = "קישור מוטמע"; - /* No comment provided by engineer. */ "Embed media" = "להטמיע מדיה"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "עוקב אחר התגית."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "פוטבול"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "ניתן להתחיל באמצעות בחירה ממגוון רחב של פריסות עמוד שהוכנו מראש. או פשוט להתחיל מעמוד ריק."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "אפשר חשיפה רבה יותר לפוסט שלך על ידי שיתוף."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "כיתוב התמונה. %s"; -/* No comment provided by engineer. */ -"Image settings" = "הגדרות תמונה"; - /* Hint for image title on image settings. */ "Image title" = "כותרת התמונה"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "סימון כלא נקרא"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "סימון כ'דביק'"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "גובה מינימלי"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "מאפיינים פגיעים שונים"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "עוד מ-WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "המועד הפופולרי ביותר"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "העברה לפח"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "הפעולה מנווטת אל האפשרות להתאים את מעבר הצבע"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "העברה לבחירת %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "אין תגובות"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "עדיין אין תגובות"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "פוסט מאת %1$@, מ-%2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "הגדרות תוכן הפוסט"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "הפוסט נוצר ב %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "העלאת הפוסט נכשלה"; -/* No comment provided by engineer. */ -"Post meta settings" = "הגדרות תיאור הפוסט"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "פוסט הועבר לפח."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "פריטי המדיה שנבחרו אינם זמינים."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "נבחר %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "בחירת מיקום תפריט אחר תבטל את השינויים שביצעת בתפריט הנוכחי. בחרת להמשיך - האם ההחלטה סופית?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "שיתוף"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "מיון לפי"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "מיון וסימון"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "קוד מקור"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "היישום אינו מזהה את תגובת השרת. אנא בדוק את תצורת האתר שלך."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "האישור עבור שרת זה אינו חוקי. ייתכן שאתה מתחבר לשרת שמתחזה ל-"%@", מה שעלול לסכן את המידע הסודי שלך.\n\nלבטוח באישור בכל מקרה?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "אירעה בעיה בעת טעינת ההגדרות של הודעות שלך"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "חלה שגיאה בלתי צפויה בעת עריכת התגובה"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "לא ניתן לכתוב תמונה לקובץ"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "שלול אישור"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "להציג הכול"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "להציג את כל התגובות"; - /* Button label for viewing a post */ "View Post" = "הצג פוסט"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "הצג אתר"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "הצג הכל..."; diff --git a/WordPress/Resources/hr.lproj/Localizable.strings b/WordPress/Resources/hr.lproj/Localizable.strings index 49923cbb6b87..cb05f0ce9f2f 100644 --- a/WordPress/Resources/hr.lproj/Localizable.strings +++ b/WordPress/Resources/hr.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Autor"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Be the first to leave a comment."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Komentari"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Comments on"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Display Name"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Postavke za slike"; - /* Hint for image title on image settings. */ "Image title" = "Image title"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Najmanja visina"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Move to Trash"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "No comments"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "No comments yet"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %@, from %@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Post moved to trash."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Podijeli "; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sort By"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Source Code"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "The app can't recognize the server response. Please, check the configuration of your site."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "There has been a problem while loading your Notification Settings"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "There has been an unexpected error while editing your comment"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Unable to write image to file"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Odbaci"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "View All"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "View Post"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Pogledaj Web stranicu"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "View all…"; diff --git a/WordPress/Resources/hu.lproj/Localizable.strings b/WordPress/Resources/hu.lproj/Localizable.strings index 813e76e3b40d..b8a891e7b6d8 100644 --- a/WordPress/Resources/hu.lproj/Localizable.strings +++ b/WordPress/Resources/hu.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Author"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Be the first to leave a comment."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Hozzászólások"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Comments on"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Display Name"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Image title"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Move to Trash"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "No comments"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Nincsenek hozzászólások"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %@, from %@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Post moved to trash."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Megosztás"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sort By"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Source Code"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "The app can't recognize the server response. Please, check the configuration of your site."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "There has been a problem while loading your Notification Settings"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "There has been an unexpected error while editing your comment"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Unable to write image to file"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Elutasítás"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "View All"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "View Post"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Honlap megtekintése"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "View all…"; diff --git a/WordPress/Resources/id.lproj/Localizable.strings b/WordPress/Resources/id.lproj/Localizable.strings index dbb03c6a84e6..a4c69d7cfc0e 100644 --- a/WordPress/Resources/id.lproj/Localizable.strings +++ b/WordPress/Resources/id.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d pos yang belum dilihat"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s diubah menjadi %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* 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."; -/* No comment provided by engineer. */ -"Add link" = "Tambahkan tautan"; - /* No comment provided by engineer. */ "Add link text" = "Tambahkan teks tautan"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Penulis"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Diagram Batang yang menunjukkan pengunjung pos terbaru Anda"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Jadilah yang pertama berkomentar."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Buat komentar untuk mulai membuat koneksi."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Komentar-komentar"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Komentar pada"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Nama Tampilan"; -/* No comment provided by engineer. */ -"Display post date" = "Tampilkan tanggal pos"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Menampilkan statistik situs semua waktu di sini. Konfigurasikan di aplikasi WordPress di bagian statistik situs Anda."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Lakukan lagi"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Dokumen: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Ketuk dua kali untuk memilih gambar"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Ketuk dua kali untuk memilih pilihan"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplikasi blok"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT TAUTAN"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Setiap blok memiliki pengaturannya sendiri. Untuk menemukannya, ketuk pada blok. Pengaturannya akan muncul di toolbar di bagian bawah layar."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Sematkan keterangan. Kosong"; -/* No comment provided by engineer. */ -"Embed link" = "Sematkan tautan"; - /* No comment provided by engineer. */ "Embed media" = "Sematkan media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Ikuti tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Sepakbola"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Mulai dengan memilih satu tata letak halaman yang siap digunakan. Atau mulai dengan halaman kosong."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Mulai pos dan tingkatkan tampilan pos Anda dengan membagikannya."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Keterangan gambar. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Pengaturan gambar"; - /* Hint for image title on image settings. */ "Image title" = "Judul gambar"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Tandai Belum Dibaca"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Tandai sebagai Lekat"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Tinggi minimum"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Kerentanan lain-lain"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Lainnya di WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Waktu yang Paling Disukai"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Pindahkan ke Sampah"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigasikan untuk menyesuaikan gradasi"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigasikan untuk memilih %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Tak ada komentar"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Belum ada komentar"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Diposting oleh %1$@, dari %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Pengaturan konten pos"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Pos dibuat pada %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Pos gagal diunggah"; -/* No comment provided by engineer. */ -"Post meta settings" = "Pengaturan meta pos"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Pos dipindahkan ke sampah."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Media yang dipilih tidak tersedia."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Terpilih: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Memilih lokasi menu lain akan membuang perubahan yang telah Anda lakukan terhadap menu saat ini. Anda yakin ingin melanjutkan?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Sebarkan"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Urutkan Berdasarkan"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Pengurutan dan penyaringan"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Kode Sumber"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Aplikasi tidak dapat mengenali respon server. Silakan periksa konfigurasi pada situs Anda."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Sertifikat untuk server ini tidak sah. Anda mungkin tersambung dengan server yang menyamar sebagai “%@” yang bisa membuat informasi rahasia Anda beresiko,\n\nApakah Anda ingin mempercayai sertifikat itu?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Ada masalah saat memuat pengaturan Pemberitahuan Anda"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Telah terjadi kesalahan yang tidak terduga saat menyunting komentar Anda"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Tidak dapat menulis gambar ke file"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Tolak"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Lihat Semua"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Lihat Semua Komentar"; - /* Button label for viewing a post */ "View Post" = "Lihat Pos"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Lihat Situs"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Tampilkan semua…"; diff --git a/WordPress/Resources/is.lproj/Localizable.strings b/WordPress/Resources/is.lproj/Localizable.strings index 3a9c0ea8ddc4..aa72b27c1547 100644 --- a/WordPress/Resources/is.lproj/Localizable.strings +++ b/WordPress/Resources/is.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Höfundur"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Vertu fyrst(ur) til þess að rita athugasemd."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Athugasemdir"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Athugasemdir við"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Nafn til að sýna"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Titill myndar"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Flytja í rusl"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Engar athugasemdir"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Engar athugasemdir enn"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %@, from %@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Færslu hent í ruslið."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Valin skrá er ekki tiltæk."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Með því að velja aðra staðsetningu fyrir valmynd, tapar þú breytingum sem þú hefur gert á núverandi valmynd. Ertu viss um að þú viljir halda áfram?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Deila"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Raða eftir"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Kóði"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Forritið gat ekki skilið svarið frá netþjóninum. Vinsamlegast yfirfarið stillingar á vefnum þínum."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Skírteinið fyrir þennan netþjón er ógilt. Þú gætir verið að tengjast við netþjón sem er að þykjast vera “%@” og gæti það ógnað upplýsingaöryggi þínu.\n\nViltu treysta skírteininu engu að síður?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Það kom upp vandamál með að hlaða inn tilkynninga-stillingarnar þínar"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Það kom upp óvænt villa við að breyta athugasemdinni þinni"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Gat ekki vistað mynd í skrá"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Hafna"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Skoða allt"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "Skoða færslu"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Skoða vef"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Skoða allar…"; diff --git a/WordPress/Resources/it.lproj/Localizable.strings b/WordPress/Resources/it.lproj/Localizable.strings index 019ad3455f05..74c8ac0de08d 100644 --- a/WordPress/Resources/it.lproj/Localizable.strings +++ b/WordPress/Resources/it.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d articoli non letti"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s trasformato in %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* 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."; -/* No comment provided by engineer. */ -"Add link" = "Aggiungi link"; - /* No comment provided by engineer. */ "Add link text" = "Aggiungi testo del link"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Autore"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Barra del grafico che indica i visitatori per l'ultimo articolo"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Sii il primo a lasciare un commento."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Scrivi un commento per iniziare ad avere delle connessioni."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Commenti"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Commenti a"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Nome da visualizare"; -/* No comment provided by engineer. */ -"Display post date" = "Mostra la data dell'articolo"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Visualizza tutte le tue statistiche del sito qui. Effettua la configurazione nell'app WordPress nelle statistiche del sito."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Riprova"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Documento: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Tocca due volte per selezionare un'immagine"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Tocca due volte per selezionare l'opzione"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplica il blocco"; -/* No comment provided by engineer. */ -"EDIT LINK" = "MODIFICA LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Ogni blocco ha le proprie impostazioni. Per trovarle tocca il blocco. Verranno visualizzate le impostazioni nella barra degli strumenti nella parte inferiore dello schermo."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Incorpora la didascalia. Vuota"; -/* No comment provided by engineer. */ -"Embed link" = "Incorpora link"; - /* No comment provided by engineer. */ "Embed media" = "Incorpora elemento multimediale"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Segui il tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Calcio"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Inizia scegliendo tra un'ampia varietà di layout di pagina già pronti. Altrimenti, inizia semplicemente con una pagina bianca."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Inizia subito e aumenta le visualizzazioni sui tuoi articoli tramite la condivisione."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Didascalia immagine. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Impostazioni immagini"; - /* Hint for image title on image settings. */ "Image title" = "Titolo immagine"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Segna come Non letto"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Contrassegna come In evidenza"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Altezza minima"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Varie vulnerabilità"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Ulteriori informazioni su WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Orari più popolari"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Sposta nel cestino"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Naviga alla personalizzazione del gradiente"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Sfoglia fino a selezionare %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Nessun commento"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Nessun commento"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Articolo di %1$@, da %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Impostazioni contenuti articolo"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Articolo creato su %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Il post non è stato caricato"; -/* No comment provided by engineer. */ -"Post meta settings" = "Impostazioni metadati di articolo"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Articolo spostato nel cestino."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Il file multimediale selezionato non è disponibile."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selezionato: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selezionando una differente posizione di menu si perderanno le modifiche fatta al menu corrente. Desideri proseguire??"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Condividi"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Ordina per"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Ordinamento e filtro"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Codice sorgente"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "L'applicazione non è in grado di riconoscere la risposta del server. Si prega di controllare la configurazione del sito."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Il certificato per questo server non è valido. Continuando, corri il rischio di connetterti ad un server che finge di essere “%@”, il che potrebbe compromettere la sicurezza di informazioni riservate che ti appartengono.\n\nVuoi accettare comunque il certificato?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Si è verificato un problema caricando le Impostazioni notifiche"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Si è verificato un errore inaspettato durante la modifica del tuo commento"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Impossibile scrivere l'immagine in un file"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Non approvare"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Visualizza tutto"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Visualizza tutti i commenti"; - /* Button label for viewing a post */ "View Post" = "Visualizza articolo"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Visualizza sito"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Visualizza tutto..."; diff --git a/WordPress/Resources/ja.lproj/Localizable.strings b/WordPress/Resources/ja.lproj/Localizable.strings index a34c8b6fa192..b70d17c24047 100644 --- a/WordPress/Resources/ja.lproj/Localizable.strings +++ b/WordPress/Resources/ja.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-12-08 11:54:09+0000 */ +/* Translation-Revision-Date: 2021-12-17 12:54:08+0000 */ /* Plural-Forms: nplurals=1; plural=0; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ja_JP */ @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d件の未読の投稿"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$sを%2$sに変換しました"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "この新規アカウントを表す画像またはアバターを追加します。"; -/* No comment provided by engineer. */ -"Add link" = "リンクを追加"; - /* No comment provided by engineer. */ "Add link text" = "リンク文字列を追加"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "投稿者"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "最近の投稿への訪問者を表す棒グラフ"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "最初のコメントを投稿してみましょう。"; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "コメントしてつながりを作りましょう。"; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "コメント"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "次の投稿へのコメント:"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "表示名"; -/* No comment provided by engineer. */ -"Display post date" = "投稿日を表示"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "サイトの全期間の統計をここに表示します。サイト統計情報から WordPress アプリへの設定を行います。"; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "再実行"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "文書: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "ダブルタップして画像を選択"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "ダブルタップしてオプションを選択"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "ブロックを複製"; -/* No comment provided by engineer. */ -"EDIT LINK" = "リンクを編集"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "各ブロックには独自の設定があります。 確認するには、ブロックをタップします。 画面下部にあるツールバーに設定が表示されます。"; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2644,7 +2656,7 @@ translators: Block name. %s: The localized block name */ "Email sent!" = "メールを送信しました。"; /* No comment provided by engineer. */ -"Embed block previews are coming soon" = "Embed block previews are coming soon"; +"Embed block previews are coming soon" = "埋め込みブロックのプレビューはまもなく公開予定です"; /* translators: accessibility text. %s: Embed caption. */ "Embed caption. %s" = "画像キャプション。%s"; @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "動画キャプション。空"; -/* No comment provided by engineer. */ -"Embed link" = "埋め込みリンク"; - /* No comment provided by engineer. */ "Embed media" = "メディアを埋め込み"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "タグをフォローします。"; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "フットボール"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "幅広く用意されたページレイアウトの中から選択して始めてみましょう。または、空白ページから始めることもできます。"; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "投稿をシェアして閲覧数を増やしましょう。"; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "画像キャプション。%s"; -/* No comment provided by engineer. */ -"Image settings" = "画像設定"; - /* Hint for image title on image settings. */ "Image title" = "画像タイトル"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "未読にする"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "先頭固定表示にする"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "最小高さ"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "様々な脆弱性"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "WordPress.com の詳細"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "最も人気のある時間"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "ゴミ箱へ移動"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "グラデーションのカスタマイズへ移動"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "移動して%sを選択"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "コメントなし"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "コメントはまだありません"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "%2$@ からの %1$@ 投稿"; -/* No comment provided by engineer. */ -"Post content settings" = "投稿コンテンツ設定"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "%@に作成された投稿"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "投稿はアップロードに失敗しました"; -/* No comment provided by engineer. */ -"Post meta settings" = "投稿メタ設定"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "投稿をゴミ箱へ移動しました。"; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "選択したメディアがありません。"; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "選択済み: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "別のメニューのロケーションを選択すると、現在のメニューで行った変更は破棄されます。本当に実行してもよいですか ?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "共有"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "並び順"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "並べ替えと絞り込み"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "ソースコード"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "アプリがサーバーの返答を認識できません。サイトの設定を確認して下さい。"; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "このサーバーの証明書が無効です。「%@」を偽装しているサーバーに接続中の可能性があるため、機密情報が危険にさらされる恐れがあります。\n\nこの証明書をそのまま信頼しますか ?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "通知設定を読み込む際に問題が発生しました"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "コメントの編集中に予期しないエラーが発生しました"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "画像をファイルに書き込めません"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "非承認"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "すべて表示"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "すべてのコメントを表示"; - /* Button label for viewing a post */ "View Post" = "投稿を表示"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "サイトを表示"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "すべて表示…"; diff --git a/WordPress/Resources/ko.lproj/Localizable.strings b/WordPress/Resources/ko.lproj/Localizable.strings index b275c25c27e7..440e2c59d786 100644 --- a/WordPress/Resources/ko.lproj/Localizable.strings +++ b/WordPress/Resources/ko.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d개의 보지 않은 글"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%2$s(으)로 변형된 %1$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "새 계정을 나타내는 이미지 또는 아바타를 추가합니다."; -/* No comment provided by engineer. */ -"Add link" = "링크 추가"; - /* No comment provided by engineer. */ "Add link text" = "링크 텍스트 추가"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "작성자"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "최신 글에 대한 방문자를 나타내는 막대형 차트"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "먼저 댓글을 남겨주세요."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "댓글을 작성하여 연락을 시작하세요."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "댓글"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "댓글:"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "대화명"; -/* No comment provided by engineer. */ -"Display post date" = "발행일 표시"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "여기에 모든 사이트 통계를 표시하세요. 워드프레스 앱의 사이트 통계에서 구성할 수 있습니다."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "다시 해보기"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "문서: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "이미지를 선택하려면 두 번 탭하세요."; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "두 번 눌러 옵션 고르기"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "블록 복제하기"; -/* No comment provided by engineer. */ -"EDIT LINK" = "링크 편집"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "각 블록에는 자체 설정이 있습니다. 설정을 찾으려면 블록을 누르세요. 화면 하단의 도구 모음에 해당 설정이 표시됩니다."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "캡션을 임베드합니다. 비어 있음"; -/* No comment provided by engineer. */ -"Embed link" = "링크 임베드"; - /* No comment provided by engineer. */ "Embed media" = "미디어 임베드"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "태그를 팔로우합니다."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "축구"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "넓고 다양한 이전에 만들어진 페이지 레이아웃에서 선택하여 시작하세요. 또는 빈 페이지로 시작하세요."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "시작한 후에는 글을 공유하여 조회수를 높이세요."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "이미지 캡션. %s"; -/* No comment provided by engineer. */ -"Image settings" = "이미지 설정"; - /* Hint for image title on image settings. */ "Image title" = "이미지 제목"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "읽지 않은 상태로 표시"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "붙박이로 표시"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "마이크로소프트 아웃룩"; -/* No comment provided by engineer. */ -"Minimum height" = "최소 높이"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "기타 취약성"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "워드프레스닷컴 상세 정보"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "가장 인기 있는 시간"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "휴지통으로 이동"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "사용자 정의 그라디언트로 가기"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "%s 선택으로 이동"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "댓글 없음"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "아직 댓글이 없습니다"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "%1$@님이 %2$@에 게시함"; -/* No comment provided by engineer. */ -"Post content settings" = "글 콘텐츠 설정"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "%@에 작성된 글"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "글 업로드 실패"; -/* No comment provided by engineer. */ -"Post meta settings" = "글 메타 설정"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "글을 휴지통으로 이동했습니다."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "선택한 미디어를 사용할 수 없습니다."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "선택됨: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "다른 메뉴 위치를 선택하면 현재 메뉴에 대한 변경 사항이 취소됩니다. 계속하시겠어요?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "공유"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "정렬 기준"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "정렬 및 필터링"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "소스 코드"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "앱에서 서버 반응을 인식할 수 없습니다. 사이트의 구성을 확인하세요."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "이 서버의 인증서가 올바르지 않습니다. “%@”(으)로 사칭한 서버에 연결 중일 수 있습니다. 기밀 정보가 노출될 수 있습니다.\n\n그래도 인증서를 신뢰하시겠어요?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "알림 설정을 로드하는 중에 오류가 발생했습니다."; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "댓글 편집 중에 예기치 않은 오류가 발생했습니다."; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "파일에 이미지를 쓸 수 없습니다."; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "비승인"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "모두 보기"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "모든 댓글 보기"; - /* Button label for viewing a post */ "View Post" = "글 보기"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "사이트 보기"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "모두 보기"; diff --git a/WordPress/Resources/nb.lproj/Localizable.strings b/WordPress/Resources/nb.lproj/Localizable.strings index c8ecb38509dd..4fc988efd987 100644 --- a/WordPress/Resources/nb.lproj/Localizable.strings +++ b/WordPress/Resources/nb.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Legger til bilde, eller avatar, for å representere den nye kontoen."; -/* No comment provided by engineer. */ -"Add link" = "Legg til lenke"; - /* No comment provided by engineer. */ "Add link text" = "Legg til lenketekst"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Forfatter"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Søyeldiagram som viser antall besøkende for det nyeste innlegget"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Vær den første til å legge igjen en kommentar."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Kommentarer"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Kommentarer til"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Visningsnavn"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Vis all nettstedsstatistikk her. Konfigurer i WordPress-appen under nettsidestatistikk."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Dokument: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Dobbelttrykk for å velge et bilde"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Dupliser blokk"; -/* No comment provided by engineer. */ -"EDIT LINK" = "REDIGER LENKE"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Innbyggingsundertekst. Tom."; -/* No comment provided by engineer. */ -"Embed link" = "Bygg inn lenke"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Fotball"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Få fart på spredningen og øk dine innleggsvisninger ved å dele ditt innlegg."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Bildetekst. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Bildeinnstillinger"; - /* Hint for image title on image settings. */ "Image title" = "Bildetittel"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Merk som ulest"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Merk som klebrig"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Mest populære tidspunkt"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Flytt til papirkurv"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Ingen kommentarer"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Ingen kommentarer ennå"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Innlegg av %1$@, fra %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Innlegg opprettet den %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Innlegg kunne ikke lastes opp"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Innlegg flyttet til papirkurven."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Valgte medie er utilgjengelig."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Valg av en annen menyplassering vil forkaste endringene du har gjort på den gjeldende menyen. Er du sikker på at du vil fortsette?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Del"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sorter etter"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Kildekode"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Appen kjenner ikke igjen svaret fra serveren. Vennligst sjekk oppsettet på ditt nettsted."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Sertifikatet for denne serveren er ikke gyldig. Du kan potensielt koble til en server som later som den er «%@», som kan eksponere informasjon om deg.\n\nVil du stole på sertifikatet uansett?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Det har oppstått et problem under lasting av dine varslingsinnstillinger"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Det skjedde en uventet feil mens du redigerte din kommentar"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Kunne ikke lagre bilde til fil"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Merk som ikke godkjent"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Vis alle"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "Vis innlegg"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Vis nettsted"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Vis alle…"; diff --git a/WordPress/Resources/nl.lproj/Localizable.strings b/WordPress/Resources/nl.lproj/Localizable.strings index cee2c454f3fd..e146c0da32ac 100644 --- a/WordPress/Resources/nl.lproj/Localizable.strings +++ b/WordPress/Resources/nl.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d ongeziene berichten"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s getransformeerd naar %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Voeg een afbeelding of avatar toe, die bij dit nieuwe account hoort."; -/* No comment provided by engineer. */ -"Add link" = "Link toevoegen"; - /* No comment provided by engineer. */ "Add link text" = "Linktekst toevoegen"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Auteur"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Staafgrafiek waarin bezoekers voor je nieuwste berichten staan weergegeven"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Laat als eerste een reactie achter."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Reageer om verbindingen te maken."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Reacties"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Reacties op"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Weergavenaam"; -/* No comment provided by engineer. */ -"Display post date" = "Toon berichtdatum"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Toon je site-statistieken voor allertijden hier. Configureer in de WordPress-app in je site-statistieken."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Opnieuw doen"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Tik tweemaal om een afbeelding te selecteren"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Tik tweemaal om de optie te selecteren"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Dupliceer blok"; -/* No comment provided by engineer. */ -"EDIT LINK" = "LINK BEWERKEN"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Elk blok heeft zijn eigen instellingen. Om ze te vinden, tik op een blok. Zijn instellingen zullen verschijnen in de gereedschapsbalk onderaan het scherm."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Bijschrift ingesloten inhoud. Leeg"; -/* No comment provided by engineer. */ -"Embed link" = "Sluit link in"; - /* No comment provided by engineer. */ "Embed media" = "Sluit media in"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Volgt de tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Voetbal"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Ga aan de slag door te kiezen uit een breed scala aan vooraf gemaakte pagina lay-outs. Of begin gewoon met een lege pagina."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Breng de bal aan het rollen en vergroot je bericht weergaven door dit bericht te delen."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Bijschrift afbeelding. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Afbeelding-instellingen"; - /* Hint for image title on image settings. */ "Image title" = "Titel voor afbeelding"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Markeer ongelezen"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Markeer als sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimale hoogte"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Verschillende kwetsbaarheden"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Meer op WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Populairste tijd"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Verplaatsen naar prullenbak"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigeert naar aanpassen van het verloop"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigeert om %s te selecteren"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Geen reacties"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Nog geen reacties"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Bericht door %1$@ van %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Bericht inhoud-instellingen"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Bericht gemaakt op %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Uploaden van bericht mislukt"; -/* No comment provided by engineer. */ -"Post meta settings" = "Bericht meta-instellingen"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Bericht verplaatst naar prullenbak."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Geselecteerde media is niet beschikbaar."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Geselecteerd: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Door een andere menu-locatie te selecteren, gaan wijzigingen aan het huidige menu verloren. Weet je zeker dat je wilt doorgaan?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Delen"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sorteren op"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sortering en filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Broncode"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "De app herkent het antwoord van de server niet. Controleer de configuratie van je site."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Het certificaat voor deze server is ongeldig. Je maakt mogelijk verbinding met een server die zich voordoet als “%@”, wat je vertrouwelijke informatie in gevaar kan brengen.\n\nWil je het certificaat toch vertrouwen?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Er is een fout opgetreden bij het laden van je meldingsinstellingen"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Er is een onverwachte fout opgetreden bij het bewerken van je reactie"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Niet mogelijk afbeelding naar bestand te schrijven"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Afkeuren"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Alles weergeven"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Bekijk alle reacties"; - /* Button label for viewing a post */ "View Post" = "Bekijk bericht"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Site bekijken"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Toon alles…"; diff --git a/WordPress/Resources/pl.lproj/Localizable.strings b/WordPress/Resources/pl.lproj/Localizable.strings index 5de7957e5bcc..e05d15949c36 100644 --- a/WordPress/Resources/pl.lproj/Localizable.strings +++ b/WordPress/Resources/pl.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-11-26 17:34:51+0000 */ +/* Translation-Revision-Date: 2021-12-17 15:26:39+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 */ @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Author"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Be the first to leave a comment."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Komentarze"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Comments on"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Display Name"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Image title"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Move to Trash"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "No comments"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "No comments yet"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %@, from %@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Post moved to trash."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Share"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sort By"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Source Code"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "The app can't recognize the server response. Please, check the configuration of your site."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "There has been a problem while loading your Notification Settings"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "There has been an unexpected error while editing your comment"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Unable to write image to file"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Odrzuć"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "View All"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "View Post"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Zobacz stronę"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "View all…"; @@ -9181,7 +9202,7 @@ translators: Block name. %s: The localized block name */ "widget.today.comments.label" = "Komentarze"; /* Title of likes label in today widget */ -"widget.today.likes.label" = "Likes"; +"widget.today.likes.label" = "Polubienia"; /* Title of the nodata view in today widget */ "widget.today.nodata.view.title" = "widget.today.nodata.view.title"; diff --git a/WordPress/Resources/pt-BR.lproj/Localizable.strings b/WordPress/Resources/pt-BR.lproj/Localizable.strings index cf2979120242..d8ea883e6323 100644 --- a/WordPress/Resources/pt-BR.lproj/Localizable.strings +++ b/WordPress/Resources/pt-BR.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d posts não visualizados"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformado em %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Adicionar uma imagem ou avatar para representar essa nova conta."; -/* No comment provided by engineer. */ -"Add link" = "Adicionar link"; - /* No comment provided by engineer. */ "Add link text" = "Adicionar texto do link"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Autor"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Gráfico em barras exibindo os visitantes dos posts mais recentes"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Seja o primeiro a fazer um comentário."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Comentários"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Comentários sobre"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Nome de exibição"; -/* No comment provided by engineer. */ -"Display post date" = "Exibir a data do post"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Mostrar as estatísticas do seu site aqui. Configure no aplicativo do WordPress nas estatísticas do site."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Documento: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Toque duas vezes para selecionar uma imagem"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Toque duas vezes para selecionar a opção"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicar bloco"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDITAR LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Incorporar legenda. Vazia"; -/* No comment provided by engineer. */ -"Embed link" = "Incorporar link"; - /* No comment provided by engineer. */ "Embed media" = "Incorporar mídia"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Segue a tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Futebol"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Comece escolhendo entre uma grande variedade de modelos prontos ou crie uma página vazia."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Aumente as visualizações de seu post compartilhando-o."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Legenda da imagem. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Configurações da imagem"; - /* Hint for image title on image settings. */ "Image title" = "Título da imagem"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Marcar como não lido"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Marcar como fixo"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Altura mínima"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Diversas vulnerabilidades"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Mais no WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Horário mais popular"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Mover para a lixeira"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Ir para a personalização de gradiente"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Sem comentários"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Nenhum comentário"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post por %1$@, de %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Configurações do conteúdo do post"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post criado em %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Falha ao enviar post"; -/* No comment provided by engineer. */ -"Post meta settings" = "Configurações de metadados do post"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Post movido para a lixeira."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "A mídia selecionada não esta disponível."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selecionado: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Ao selecionar um local de menu diferente as alterações do menu atual serão perdidas. Tem certeza de que deseja continuar?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Compartilhar"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Ordenar por"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Ordenação e filtros"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Código-fonte"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "O aplicativo não consegue reconhecer a resposta do servidor. Verifique a configuração do seu site."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "O certificado para este servidor é inválido. Você talvez esteja conectando a um servidor que está fingindo ser \"%@\", o que poderia colocar suas informações confidenciais em risco."; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Ocorreu um problema durante a tentativa de carregar suas Configurações de notificação"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Ocorreu um erro inesperado ao editar o comentário"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Não foi possível adicionar imagem ao arquivo"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Desaprovar"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Visualizar tudo"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "Ver post"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Ver site"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Visualizar todos…"; diff --git a/WordPress/Resources/pt.lproj/Localizable.strings b/WordPress/Resources/pt.lproj/Localizable.strings index 02f105eca4a6..d723ad174cf3 100644 --- a/WordPress/Resources/pt.lproj/Localizable.strings +++ b/WordPress/Resources/pt.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Autor"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Seja o primeiro a deixar um comentário."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Comentários"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Comentários em"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Nome a mostrar"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Documento: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Título da imagem"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Mover para o lixo"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Sem comentários"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Sem comentários"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %@, from %@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Artigo criado em %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Conteúdo movido para o lixo."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Partilhar"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Ordenar por"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Código fonte"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "The app can't recognize the server response. Please, check the configuration of your site."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "There has been a problem while loading your Notification Settings"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Ocorreu um erro inesperado ao editar o seu comentário"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Não foi possível guardar o ficheiro de imagem"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Reprovar"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Ver tudo"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "Ver artigo"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Ver site"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Ver tudo..."; diff --git a/WordPress/Resources/ro.lproj/Localizable.strings b/WordPress/Resources/ro.lproj/Localizable.strings index 5d52ee6139f4..e5fc71d5a478 100644 --- a/WordPress/Resources/ro.lproj/Localizable.strings +++ b/WordPress/Resources/ro.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-11-30 16:37:39+0000 */ +/* Translation-Revision-Date: 2021-12-16 20:03:21+0000 */ /* Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2); */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ro */ @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d articole nevăzute"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s a fost transformat în %2$s"; @@ -387,7 +390,7 @@ translators: Block name. %s: The localized block name */ "ADD IMAGE OR VIDEO" = "ADAUGĂ IMAGINE SAU VIDEO"; /* No comment provided by engineer. */ -"ADD LINK" = "ADAUGĂ LEGĂTURĂ"; +"ADD LINK" = "ADAUGĂ O LEGĂTURĂ"; /* No comment provided by engineer. */ "ADD VIDEO" = "ADAUGĂ VIDEO"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Adaugă o imagine sau un avatar care să reprezinte acest cont nou."; -/* No comment provided by engineer. */ -"Add link" = "Adaugă o legătură"; - /* No comment provided by engineer. */ "Add link text" = "Adaugă text la legătură"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Autor"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Diagramă cu bare care descrie vizitatorii ultimului articol"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Fii primul care comentează"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Fii primul care lasă un comentariu."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comentează pentru a crea conexiuni."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Comentarii"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comentariile sunt închise"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Comentarii deschise"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Nume de afișat"; -/* No comment provided by engineer. */ -"Display post date" = "Afișează data articolului"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Afișează toate statisticile site-ului aici. Configurează statisticile site-ului în aplicația WordPress."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Fă-o din nou"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Atinge de două ori pentru a selecta o imagine"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Atinge de două ori pentru a selecta dimensiunea implicită pentru font"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Atinge de două ori pentru a selecta dimensiunea fontului"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Atinge de două ori pentru a selecta opțiunea"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Fă un duplicat al blocului"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDITEAZĂ LEGĂTURA"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Fiecare bloc are setări proprii. Pentru a le găsi, atinge un bloc. Setările lui vor apărea în bara de unelte din partea de jos a ecranului."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2655,9 +2667,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Înglobează subtitrarea. Nu există"; -/* No comment provided by engineer. */ -"Embed link" = "Înglobează legătura"; - /* No comment provided by engineer. */ "Embed media" = "Înglobează media"; @@ -3184,6 +3193,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Urmărește eticheta."; +/* No comment provided by engineer. */ +"Font Size" = "Dimensiune font"; + /* An example tag used in the login prologue screens. */ "Football" = "Fotbal"; @@ -3260,6 +3272,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Începe și alege dintr-o mare varietate de aranjamente gata pregătite. Sau începe cu o pagină goală."; +/* No comment provided by engineer. */ +"Get support" = "Obține suport"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Dă-i drumul la treabă și asigură-te că mărești numărul de vizualizări ale articolului tău prin partajarea lui."; @@ -3550,9 +3565,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Text asociat imagine. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Setări imagine"; - /* Hint for image title on image settings. */ "Image title" = "Titlu imagine"; @@ -4160,6 +4172,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Marchează ca necitit"; +/* Marks comment as spam */ +"Mark as Spam" = "Marchează ca spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Marchează ca reprezentativ"; @@ -4282,9 +4297,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Înălțime minimă"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Vulnerabilități diverse"; @@ -4324,6 +4336,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Mai multe pe WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "Mai multe opțiuni de suport"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Cea mai populară oră"; @@ -4373,7 +4388,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Aruncă la gunoi"; /* No comment provided by engineer. */ @@ -4432,7 +4448,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navighează pentru a personaliza gradientul"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navighează pentru a selecta %s"; /* No comment provided by engineer. */ @@ -4578,6 +4595,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Niciun comentariu"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Niciun comentariu până acum"; @@ -5327,9 +5345,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Publicat de %1$@, din %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Setări conținut articol"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Articol creat pe %@"; @@ -5339,9 +5354,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Articolul a eșuat la încărcare"; -/* No comment provided by engineer. */ -"Post meta settings" = "Setări metadate articol"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Articol mutat la gunoi."; @@ -6288,9 +6300,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Media selectată este indisponibilă."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selectat: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selectat: implicit"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selectarea unui alte locații pentru meniu va anula modificările pe care le-ai făcut în meniul actual. Sigur vrei să continui?"; @@ -6395,6 +6411,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Partajează"; @@ -6736,9 +6753,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sortare după"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sortare și filtrare"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Cod sursă"; @@ -7109,6 +7123,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Aplicația nu poate recunoaște răspunsul dat de server. Te rog verifică configurarea site-ului tău."; +/* No comment provided by engineer. */ +"The basics" = "De bază"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Certificatul pentru acest server este invalid. E posibil să te conectezi la un server care pretinde doar că e \"%@\" ceea ce poate pune informațiile tale confidențiale în pericol.vvVrei să considerăm oricum valid certificatul?"; @@ -7217,6 +7234,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "A apărut o problemă în timpul încărcării setărilor pentru notificări"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "A fost o eroare neașteptată în timpul editării comentariului tău"; @@ -7823,7 +7843,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Nu pot scrie imaginea în fișier"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Neaprobat"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8131,9 +8152,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Vezi toate"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Vezi toate comentariile"; - /* Button label for viewing a post */ "View Post" = "Vezi articolul"; @@ -8141,6 +8159,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Vezi site-ul"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "Vezi toate comentariile"; + /* Displays More Rows */ "View all…" = "Vezi tot..."; diff --git a/WordPress/Resources/ru.lproj/Localizable.strings b/WordPress/Resources/ru.lproj/Localizable.strings index 26caec7d886c..b594430eb805 100644 --- a/WordPress/Resources/ru.lproj/Localizable.strings +++ b/WordPress/Resources/ru.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-11-30 13:42:39+0000 */ +/* Translation-Revision-Date: 2021-12-16 20:21:11+0000 */ /* Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2); */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ru */ @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d непросмотренных записей"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "Блок %1$s преобразован в %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Добавьте изображение (или аватар) для представления этой новой учетной записи."; -/* No comment provided by engineer. */ -"Add link" = "Добавить ссылку"; - /* No comment provided by engineer. */ "Add link text" = "Добавить текст ссылки"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Автор"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Столбчатая диаграмма показывающая посетителей вашей последней записи"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Будьте первым, кто оставит комментарий"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Ваш комментарий будет первым."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Оставьте комментарий для начала общения."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Комментарии"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Обсуждение закрыто"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Комментарии включены"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Отображаемое имя"; -/* No comment provided by engineer. */ -"Display post date" = "Показывать дату записи"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Показ статистики сайта за всё время. Настройте в приложении WordPress в разделе статистики."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Сделайте это снова"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Документ, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Документ: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Нажмите дважды для выбора изображения"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Нажмите дважды для выбора размера шрифта по умолчанию"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Нажмите дважды для выбора размера шрифта"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Нажмите дважды для выбора"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Дублировать блок"; -/* No comment provided by engineer. */ -"EDIT LINK" = "ИЗМЕНИТЬ ССЫЛКУ"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "У каждого блока свои настройки. Чтобы найти их, нажмите на блок. Его настройки появятся на панели инструментов внизу экрана."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Подпись встроенного объекта. Пустая"; -/* No comment provided by engineer. */ -"Embed link" = "Встроить ссылку"; - /* No comment provided by engineer. */ "Embed media" = "Встроить медиасодержимое"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Подписаться на метку."; +/* No comment provided by engineer. */ +"Font Size" = "Размер шрифта"; + /* An example tag used in the login prologue screens. */ "Football" = "Футбол"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Начните с выбора заранее подготовленных вариантов макета, или начните с пустой страницы."; +/* No comment provided by engineer. */ +"Get support" = "Обратиться в поддержку"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Поехали! Увеличьте число просмотров вашей записи поделившись ей."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Подпись к изображению. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Настройки изображения"; - /* Hint for image title on image settings. */ "Image title" = "Заголовок изображения"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Отметить непрочитанным"; +/* Marks comment as spam */ +"Mark as Spam" = "Пометить как спам"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Прикрепить"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Минимальная высота"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Прочие уязвимости"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Подробнее на WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "Больше возможностей поддержки"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Самое популярное время"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Удалить"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Переход к настройкам градиента"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Навигация для выделения %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Нет комментариев"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Комментариев пока нет"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Запись автора %1$@, из %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Настройки содержимого записи"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Запись создана %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Загрузка записи не удалась"; -/* No comment provided by engineer. */ -"Post meta settings" = "Настройки метаданных записи"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Запись перемещена в корзину."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Выбранный медиафайл недоступен."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Выбрано: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Выбор: по умолчанию"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Если выбрать другую область для меню, изменения текущего меню будут потеряны. Вы уверены, что хотите продолжить?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Поделиться"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Приоритет сортировки"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Сортировка и фильтрация"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Исходный код"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Приложение не может распознать ответ сервера. Проверьте конфигурацию вашего сайта. Приложение не может распознать ответ сервера. Проверьте конфигурацию вашего сайта."; +/* No comment provided by engineer. */ +"The basics" = "Основы"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Сертификат для этого сервера недействителен. Возможно, вы пытаетесь подключиться к серверу, который имитирует «%@». Это может представлять риск для конфиденциальности вашей информации.\n\nДоверять этому сертификату?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Не удалось обновить настройки уведомлений"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "Возникла непредвиденная ошибка при редактировании комментария"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "При изменении вашего комментария произошла непредвиденная ошибка."; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Не удалось записать изображение в файл"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Отклонить"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Просмотреть все"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Посмотреть все комментарии"; - /* Button label for viewing a post */ "View Post" = "Просмотреть запись"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Посмотреть сайт"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "Посмотреть все комментарии"; + /* Displays More Rows */ "View all…" = "Больше…"; diff --git a/WordPress/Resources/sk.lproj/Localizable.strings b/WordPress/Resources/sk.lproj/Localizable.strings index b2d74817d8a2..0f490a36c097 100644 --- a/WordPress/Resources/sk.lproj/Localizable.strings +++ b/WordPress/Resources/sk.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Autor"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Buďte prvý, kto napíše komentár."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Komentáre"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Komentáre k"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Zobraziť meno"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Dokument: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Nadpis obrázka"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Označiť ako Rýchly"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Presunúť do koša"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Žiadne komentáre"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Žiadne komentáre"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Článok %1$@, z %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Zlyhalo nahranie článku"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Článok presunutý do koša."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Vybraný súbor nie je k dispozícii."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Vybraním iného umiestnenia menu sa zahodia zmeny, ktoré ste spravili v aktuálnom menu. Ste si istí, že chcete pokračovať?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Zdieľať"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Zoradiť podľa"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Zdrojový kód"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Aplikácia nemôže rozpoznať odpoveď servera. Skontrolujte konfiguráciu na vašej webovej stránke."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Certifikát pre tento server je neplatný. Môžete sa pripájať na server, ktorý sa len tvári, že je \"%@\", a to môže ohroziť vaše dôverné informácie.\n\nChcete aj tak dôverovať tomuto certifikátu?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Vyskytol sa problém počas načítavania vášho nastavenia upozornení"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Vyskytla sa neočakávaná chyba počas úpravy vášho komentáru"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Nedalo sa zapísať obrázok k súboru"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Zrušiť schválenie"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Zobraziť všetko"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "Zobraziť príspevok"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Zobraziť webovú stránku"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Zobraziť všetko..."; diff --git a/WordPress/Resources/sq.lproj/Localizable.strings b/WordPress/Resources/sq.lproj/Localizable.strings index 9a3945ae6904..f84924344621 100644 --- a/WordPress/Resources/sq.lproj/Localizable.strings +++ b/WordPress/Resources/sq.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d postime të papara"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s u shndërrua në %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* 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."; -/* No comment provided by engineer. */ -"Add link" = "Shtoni lidhje"; - /* No comment provided by engineer. */ "Add link text" = "Shtoni tekst lidhjeje"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Autor"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Grafik me Shtylla që tregon vizitorët për postimin tuaj më të ri"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Bëhuni i pari që lë një koment."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Që të filloni të krijoni lidhje, komentoni."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Komente"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Komentet hapur"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Emër Shfaqjeje"; -/* No comment provided by engineer. */ -"Display post date" = "Shfaq datë postimesh"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Shfaqni këtu statistikat e sajtit tuaj për gjithë kohën. Formësojeni te aplikacioni WordPress nën statistikat e sajtit tuaj."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Ribëje"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Dokument: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Që të përzgjidhni një figurë, prekeni dyfish"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Prekeni dy herë që të përzgjidhet mundësia"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Përsëdyte bllokun"; -/* No comment provided by engineer. */ -"EDIT LINK" = "PËRPUNONI LIDHJE"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Çdo bllok ka rregullimet e veta. Për t’i gjetur, klikoni mbi një bllok. Rregullimet e tij do të shfaqen te paneli në fund të ekranit."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Titull trupëzimi. I zbrazët"; -/* No comment provided by engineer. */ -"Embed link" = "Trupëzoni lidhje"; - /* No comment provided by engineer. */ "Embed media" = "Trupëzo media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Ndjek etiketën."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Futboll"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Nisjani duke zgjedhur nga një larmi e madhe skemash të parapërgatitura faqesh. Ose thjesht fillojani me një faqe të zbrazët."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Futjuni punës dhe shtoni parjet e postimit tuaj përmes ndarjes së tij me të tjerët."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Titull figure. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Rregullime figurash"; - /* Hint for image title on image settings. */ "Image title" = "Titull figure"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Vëri Shenjë Si të Palexuar"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "I vini shenjë si Ngjitës"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Lartësi minimum"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Cenueshmëri të ndryshme"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Më tepër në WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Koha Më Popullore"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Shpjere te Hedhurinat"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Shkon te pjesa për përshtatje gradienti"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Lëvizet për të përzgjedhur %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "S’ka komente"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Ende pa komente"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Postim nga %1$@, prej %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Rregullime lënde postimi"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Postim i krijuar më %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Ngarkimi i postimit dështoi"; -/* No comment provided by engineer. */ -"Post meta settings" = "Rregullime Meta postimi"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Postimi u shpu te hedhurinat."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Media e përzgjedhur s’gjendet."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "U përzgjodh: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Përzgjedhja e një vendi tjetër menuje do të shkaktojë hedhjen tej të ndryshimeve që bëtë te menuja e tanishme. Jeni i sigurt se doni të vazhdohet?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Ndajeni me të tjerët"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Renditi Sipas"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Renditje dhe filtrim"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Kod Burim"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Aplikacioni s’e kupton dot përgjigjen e shërbyesit. Ju lutemi, kontrolloni formësimin e sajtit tuaj."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Dëshmia për këtë shërbyes është e pavlefshme. Mund të jeni duke u lidhur te një shërbyes që pretendon të jetë “%@”, gjë që do t’i vinte në rrezik të dhënat tuaja rezervat.\n\nDo të donit të besohej kjo dëshmi, sido që të jetë?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Pati një problem teksa ngarkoheshin Rregullimet tuaja për Njoftime"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Pati një gabim të papritur teksa përpunohej komenti juaj"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "S’arrihet të shkruhet figura në kartelë"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Shmiratoje"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Shihini Krejt"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Shihini Krejt Komentet"; - /* Button label for viewing a post */ "View Post" = "Shiheni Postimin"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Shihni Sajtin"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Shihini krejt…"; diff --git a/WordPress/Resources/sv.lproj/Localizable.strings b/WordPress/Resources/sv.lproj/Localizable.strings index 40f0a79b4648..e2d493303200 100644 --- a/WordPress/Resources/sv.lproj/Localizable.strings +++ b/WordPress/Resources/sv.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-11-30 13:48:39+0000 */ +/* Translation-Revision-Date: 2021-12-16 20:09:33+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: sv_SE */ @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d ej visade inlägg"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s omvandat till %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Lägg till en bild eller profilbild för att representera detta nya konto."; -/* No comment provided by engineer. */ -"Add link" = "Lägg till länk"; - /* No comment provided by engineer. */ "Add link text" = "Lägg till länktext"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Författare"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Stapeldiagram som visar antalet besökare till ditt senaste inlägg"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Bli först att kommentera"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Bli först med att skriva en kommentar."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Börja bygga upp förbindelser genom att kommentera."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Kommentarer"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Kommentarer är stängda"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Kommentarer till"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Visningsnamn"; -/* No comment provided by engineer. */ -"Display post date" = "Visa inläggsdatum"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Visa din sammanlagda statistik här. Konfigurera i WordPress-appen under din statistik."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Gör det igen"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Dokument, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Dokument: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Dubbeltryck för att välja en bild"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Dubbeltryck för att välja standardtextstorlek"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Dubbeltryck för att välja typsnitt"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Dubbeltryck för att välja alternativet"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicera block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "REDIGERA LÄNK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Varje block har sina egna inställningar. För att se dem trycker du på blocket i fråga. Inställningarna visas i verktygsfältet längst ned på skärmen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Beskrivning för inbäddning. Tom"; -/* No comment provided by engineer. */ -"Embed link" = "Länk för inbäddning"; - /* No comment provided by engineer. */ "Embed media" = "Bädda in media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Följer denna etikett."; +/* No comment provided by engineer. */ +"Font Size" = "Typsnittsstorlek"; + /* An example tag used in the login prologue screens. */ "Football" = "Fotboll"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Kom igång genom att välja någon av alla förberedda sidlayouter. Eller börja helt enkelt med en tom sida."; +/* No comment provided by engineer. */ +"Get support" = "Skaffa support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Sätt bollen i rullning och få fler läsare av ditt inlägg genom att dela ditt inlägg."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Bildtext. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Bildinställningar"; - /* Hint for image title on image settings. */ "Image title" = "Bildrubrik"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Markera som oläst"; +/* Marks comment as spam */ +"Mark as Spam" = "Markera som skräp"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Klistra inlägg"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minsta höjd"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Övrig typ av sårbarhet"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "Mer på WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "Fler supportalternativ"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Populäraste tidpunkten"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Flytta till papperskorgen"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Går till anpassning av gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigerar för att markera %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Inga kommentarer"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Inga kommentarer än"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Inlägg av %1$@, från %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "Inställningar för inläggsinnehåll"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Inlägget skapat %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Det gick inte att ladda upp Inlägget"; -/* No comment provided by engineer. */ -"Post meta settings" = "Inställningar för metainformation om inlägg"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Inlägg flyttat till papperskorgen."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Valt medieobjekt är inte tillgängligt."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Valt: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Valt: standard"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Val av en annan menyplats kommer att kasta bort ändringar som du har gjort i den nuvarande menyn. Är du säker på att du vill fortsätta?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Dela"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sortera efter"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sortering och filtrering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Källkod"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Appen förstår inte svaret från servern. Vänligen kontrollera din webbplats inställningar."; +/* No comment provided by engineer. */ +"The basics" = "Grunderna"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Certifikatet för den här servern är inte giltigt. Det kan hända att du ansluter till en server som påstår sig vara \"%@\", vilket kan försätta din sekretessbelagda information i fara.\n\nVill du lita på certifikatet i alla fall?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Ett oväntat fel uppstod vid hämtningen av dina notisinställningar"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "Ett oväntat fel inträffade vid redigering av kommentaren"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Ett oväntat fel inträffade vid redigering av kommentaren"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Kan inte skriva bild till fil"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Förkasta"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Visa alla"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Visa alla kommentarer"; - /* Button label for viewing a post */ "View Post" = "Se inlägget"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Besök sida"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "Visa alla kommentarer"; + /* Displays More Rows */ "View all…" = "Visa alla..."; diff --git a/WordPress/Resources/th.lproj/Localizable.strings b/WordPress/Resources/th.lproj/Localizable.strings index ec71ba82075c..f65f85ed0711 100644 --- a/WordPress/Resources/th.lproj/Localizable.strings +++ b/WordPress/Resources/th.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d unseen posts"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s transformed to %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "Add image, or avatar, to represent this new account."; -/* No comment provided by engineer. */ -"Add link" = "Add link"; - /* No comment provided by engineer. */ "Add link text" = "Add link text"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "ผู้เขียน"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "Bar Chart depicting visitors for your latest post"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "Be the first to leave a comment."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Comment to start making connections."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "ความเห็น"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "ความเห็นบน"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "ชื่อที่แสดง"; -/* No comment provided by engineer. */ -"Display post date" = "Display post date"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Display your all-time site stats here. Configure in the WordPress app in your site stats."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Do it again"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Document: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Double tap to select an image"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Double tap to select the option"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Duplicate block"; -/* No comment provided by engineer. */ -"EDIT LINK" = "EDIT LINK"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Embed caption. Empty"; -/* No comment provided by engineer. */ -"Embed link" = "Embed link"; - /* No comment provided by engineer. */ "Embed media" = "Embed media"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Follows the tag."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Football"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Get the ball rolling and increase your post views by sharing your post."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Image caption. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Image settings"; - /* Hint for image title on image settings. */ "Image title" = "Image title"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Mark Unread"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Mark as Sticky"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum height"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Miscellaneous vulnerability"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "More on WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "Most Popular Time"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "ย้ายไปถังขยะ"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Navigates to customize the gradient"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "Navigates to select %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "ไม่มีความเห็น"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "ยังไม่มีความเห็น"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "Post by %@, from %@"; -/* No comment provided by engineer. */ -"Post content settings" = "Post content settings"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Post created on %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Post failed to upload"; -/* No comment provided by engineer. */ -"Post meta settings" = "Post meta settings"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "ย้ายเรื่องไปถังขยะ"; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Selected media is unavailable."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Selected: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "แบ่งปัน"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "เรียงตาม"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sorting and filtering"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "ซอร์สโค้ด"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "แอพไม่สามารถจดจำการตอบสนองของเซิร์ฟเวอร์ กรุณา ตรวจสอบการตั้งค่าเว็บของคุณ"; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "การรับรองสำหรับเซิร์ฟเวอร์นี้ใช้งานไม่ได้ คุณอาจจะเชื่อมต่อกับเซิร์ฟเวอร์ที่แกล้งทำเป็น “%@” ซึ่งสามารถทำให้ข้อความความลับของคุณอยู่ในความเสี่ยง\n\nคุณต้องการที่จะเชื่อมั่นการรับรองนี้อยู่หรือไม่?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "มีปัญหาในระหว่างการโหลดการตั้งค่าการเตือนของคุณ"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "มีความผิดพลาดที่ไม่คาดคิดระหว่างการแก้ไขความเห็นของคุณ"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "ไม่สามารถบันทึกรูปไปที่ไฟล์"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "ไม่อนุมัติ"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "ดูทั้งหมด"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "View All Comments"; - /* Button label for viewing a post */ "View Post" = "View Post"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "ดูเว็บไซต์"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "ดูทั้งหมด..."; diff --git a/WordPress/Resources/tr.lproj/Localizable.strings b/WordPress/Resources/tr.lproj/Localizable.strings index e03f6b3384ef..eeb616cd4dcc 100644 --- a/WordPress/Resources/tr.lproj/Localizable.strings +++ b/WordPress/Resources/tr.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d görülmemiş yazı"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s, %2$s olarak dönüştürüldü"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* 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."; -/* No comment provided by engineer. */ -"Add link" = "Bağlantı ekle"; - /* No comment provided by engineer. */ "Add link text" = "Bağlantı metni ekle"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "Yazar"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "En son yazınıza bakan kişileri gösteren çubuk grafik"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "İlk yorum bırakan siz olun."; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "Bağlantı kurmaya başlamak için yorum yapın."; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "Yorumlar"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "Yorum yapılan konu"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "Görünen isim"; -/* No comment provided by engineer. */ -"Display post date" = "Yazı tarihini göster"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "Sitenizin bugüne kadarki istatistiklerini burada görebilirsiniz. WordPress uygulamasındaki site istatistiklerinizden yapılandırın."; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "Tekrar yap"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "Belge: %@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "Bir görsel seçmek için çift dokunun"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "Seçeneği belirlemek için iki kez dokunun"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "Bloğu çoğalt"; -/* No comment provided by engineer. */ -"EDIT LINK" = "BAĞLANTIYI DÜZENLE"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "Her blokun kendi ayarları vardır. Onları bulmak için bir bloka dokunun. Ayarları, ekranın altındaki araç çubuğunda görünür."; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "Açıklama göm. Boş"; -/* No comment provided by engineer. */ -"Embed link" = "Bağlantı göm"; - /* No comment provided by engineer. */ "Embed media" = "Medya gömün"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "Etiketi takip eder."; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "Futbol"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "Önceden hazırlanmış çeşitli sayfa düzenleri arasından seçim yaparak başlayın. Veya boş bir sayfayla başlayın."; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "Harekete geçin ve yazınızı paylaşarak yazınızın görüntülenme sayısını artırın."; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "Görsel yazısı. %s"; -/* No comment provided by engineer. */ -"Image settings" = "Görsel ayarları"; - /* Hint for image title on image settings. */ "Image title" = "Görsel başlığı"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "Okunmadı olarak işaretle"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "Yapışkan olarak işaretle"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "Minimum yükseklik"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "Muhtelif güvenlik açığı"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "WordPress.com üzerinden daha fazlası"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "En Popüler Zaman"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "Çöpe taşı"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "Gradyanı özelleştirme bölümüne gider"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "%s öğesini seçer"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "Yorum yok"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "Henüz yorum yapılmamış"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "%1$@ tarafından %2$@ üzerinden"; -/* No comment provided by engineer. */ -"Post content settings" = "Gönderi içerik ayarları"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "Yazı oluşturma tarihi: %@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "Yazı karşıya yüklenemedi"; -/* No comment provided by engineer. */ -"Post meta settings" = "Gönderi meta ayarları"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "Yazı çöpe taşındı."; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "Seçilen ortam uygun değil."; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "Seçilen: %s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "Farklı bir menü konumu seçmeniz mevcut menüde yaptığınız değişiklikleri yok edecek. Devam etmek istediğinize emin misiniz?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "Paylaş"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "Sırala"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "Sıralama ve filtreleme"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "Kaynak kodu"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "Uygulama sunucu cevabını tanıyamadı. Lütfen sitenizin ayarlarını kontrol edin."; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "Bu sunucunun sertifikası geçersiz. “%@” taklidi yapan bir siteye bağlanıyor olabilirsiniz ki bu kişisel bilgilerinizin ele geçirilebilmesi açısından büyük bir risktir.\n\nSertifikaya güvenip devam etmek istiyor musunuz?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "Bildirim ayarlarınız yüklenirken bir hata oluştu"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "Yorumunuz düzenlenirken beklenmeyen bir hata oluştu"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "Görsel dosyaya yazılamıyor"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "Onayı kaldır"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "Tümünü görüntüle"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "Tüm Yorumları Görüntüle"; - /* Button label for viewing a post */ "View Post" = "Yazıyı göster"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "Siteyi görüntüle"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "Tamamını görüntüle…"; diff --git a/WordPress/Resources/zh-Hans.lproj/Localizable.strings b/WordPress/Resources/zh-Hans.lproj/Localizable.strings index 7d60a51664f0..2cec6be2b07b 100644 --- a/WordPress/Resources/zh-Hans.lproj/Localizable.strings +++ b/WordPress/Resources/zh-Hans.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d 篇未读文章"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s转换为%2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "添加图像或头像以代表此新账户。"; -/* No comment provided by engineer. */ -"Add link" = "添加链接"; - /* No comment provided by engineer. */ "Add link text" = "添加链接文字"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "作者"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "描述您最近文章的访客数的柱形图"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "率先发表评论。"; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "发表评论,开启与博主的联系。"; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "评论"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "评论于"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "显示名称"; -/* No comment provided by engineer. */ -"Display post date" = "显示文章日期"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "在此处显示您站点在所有时间的统计信息。在 WordPress 应用程序的站点统计信息中进行配置。"; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "再次尝试"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "文档:%@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "轻点两次以选择图片"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "轻点两下以选择选项"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "复制区块"; -/* No comment provided by engineer. */ -"EDIT LINK" = "编辑链接"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "每个区块都有各自的设置。要找到这些设置,请点击一个区块。区块的设置将出现在屏幕底部的工具栏上。"; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "嵌入说明文字。空"; -/* No comment provided by engineer. */ -"Embed link" = "嵌入链接"; - /* No comment provided by engineer. */ "Embed media" = "嵌入媒体"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "关注标签。"; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "足球"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "从种类繁多的预设页面布局中选择心仪的布局,开始打造自己的页面。 或者,您也可以从一个空白页面开始。"; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "开始吧!通过分享您的文章来增加文章浏览量。"; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "图片说明。%s"; -/* No comment provided by engineer. */ -"Image settings" = "图像设置"; - /* Hint for image title on image settings. */ "Image title" = "图像标题"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "标为未读"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "标记为置顶"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "最低高度"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "其他漏洞"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "WordPress.com 的更多内容"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "人气最高的时间"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "移动到回收站"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "导航以自定义渐变"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "导航至选择%s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "没有评论"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "暂无评论"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "作者:%1$@,来源:%2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "文章内容设置"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "文章创建日期:%@"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "文章上传失败"; -/* No comment provided by engineer. */ -"Post meta settings" = "文章元数据设置"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "已将文章移动到回收站。"; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "所选媒体不可用。"; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "已选择:%s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "选择其他菜单位置将放弃您对当前菜单所做的更改。是否确定要继续?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "分享"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "排序方式"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "排序和筛选"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "源代码"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "应用程序无法识别服务器响应,请检查您的站点配置。"; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "此服务器的证书无效。您所连接的服务器伪装成了“%@”,这可能会给您的凭证信息带来危险。\n\n仍然信任此证书吗?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "加载“通知设置”时出现问题"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "编辑您的评论时出现意外错误"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "无法将图像写入到文件"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "驳回"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "查看所有"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "查看所有评论"; - /* Button label for viewing a post */ "View Post" = "查看文章"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "查看站点"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "查看所有…"; diff --git a/WordPress/Resources/zh-Hant.lproj/Localizable.strings b/WordPress/Resources/zh-Hant.lproj/Localizable.strings index f8854a5491f1..e9a19fc0735e 100644 --- a/WordPress/Resources/zh-Hant.lproj/Localizable.strings +++ b/WordPress/Resources/zh-Hant.lproj/Localizable.strings @@ -62,6 +62,9 @@ /* Format string for plural unseen posts count. The %1$d is a placeholder for the count. */ "%1$d unseen posts" = "%1$d 篇還沒看過的文章"; +/* translators: %1$s: Select control font size name e.g. Small, %2$s: Select control font size e.g. 12px */ +"%1$s (%2$s)" = "%1$s (%2$s)"; + /* translators: 1: From block title, e.g. Paragraph. 2: To block title, e.g. Header. */ "%1$s transformed to %2$s" = "%1$s 已轉換為 %2$s"; @@ -548,9 +551,6 @@ translators: Block name. %s: The localized block name */ /* Accessibility hint text for adding an image to a new user account. */ "Add image, or avatar, to represent this new account." = "新增圖片或大頭貼來代表這個新帳號。"; -/* No comment provided by engineer. */ -"Add link" = "新增連結"; - /* No comment provided by engineer. */ "Add link text" = "新增連結文字"; @@ -910,7 +910,8 @@ translators: Block name. %s: The localized block name */ /* Author label. Label for list of stats by content author. - The author of the post or page. */ + The author of the post or page. + Title for a badge displayed beside the comment writer's name. Shown when the comment is written by the post author. */ "Author" = "作者"; /* Voiceover description of a button that allows the user to filter posts by author. */ @@ -1014,6 +1015,9 @@ translators: Block name. %s: The localized block name */ /* This description is used to set the accessibility label for the chart in the Insights view. */ "Bar Chart depicting visitors for your latest post" = "長條圖顯示你最新文章的訪客數量"; +/* Title for button on the post details page when there are no comments. */ +"Be the first to comment" = "Be the first to comment"; + /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "當第一個留言的人。"; @@ -1585,7 +1589,8 @@ translators: Block name. %s: The localized block name */ /* Hint for users to grow their audience by commenting on other blogs. */ "Comment to start making connections." = "留言以與對方開始交流。"; -/* Filters Comments Notifications +/* Comments table header label. + Filters Comments Notifications Insights 'Comments' header Label for number of comments. Label for Period Overview comments @@ -1599,6 +1604,9 @@ translators: Block name. %s: The localized block name */ Today's Stats 'Comments' label */ "Comments" = "留言"; +/* Displayed on the post details page when there are no post comments and commenting is closed. */ +"Comments are closed" = "Comments are closed"; + /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "以下內容的留言:"; @@ -2324,9 +2332,6 @@ translators: Block name. %s: The localized block name */ User's Display Name */ "Display Name" = "顯示名稱"; -/* No comment provided by engineer. */ -"Display post date" = "顯示文章日期"; - /* Unconfigured stats all-time widget helper text */ "Display your all-time site stats here. Configure in the WordPress app in your site stats." = "在此顯示你的全時段網站統計資料。前往 WordPress 應用程式,在網站的統計資料處即可設定。"; @@ -2339,6 +2344,9 @@ translators: Block name. %s: The localized block name */ /* Title for button that will open up the follow topics screen. */ "Do it again" = "重來一次"; +/* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ +"Document, %@" = "Document, %@"; + /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "文件:%@"; @@ -2464,6 +2472,12 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Double tap to select an image" = "按兩下以選擇圖片"; +/* No comment provided by engineer. */ +"Double tap to select default font size" = "Double tap to select default font size"; + +/* No comment provided by engineer. */ +"Double tap to select font size" = "Double tap to select font size"; + /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "按兩下以選擇"; @@ -2512,15 +2526,13 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Duplicate block" = "重複區塊"; -/* No comment provided by engineer. */ -"EDIT LINK" = "編輯連結"; - /* No comment provided by engineer. */ "Each block has its own settings. To find them, tap on a block. Its settings will appear on the toolbar at the bottom of the screen." = "每個區塊都有其各自的設定。 若要找到這些設定,請點選區塊。 區塊設定會顯示在畫面底部的工具列。"; /* Edit the post. Editing GIF alert default action button. Edits a Comment + Edits the comment Label for a button that opens the Edit Page view controller Label for the edit post button. Tapping displays the editor. User action to edit media details. @@ -2652,9 +2664,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. Empty Embed caption. */ "Embed caption. Empty" = "內嵌字幕。 清空"; -/* No comment provided by engineer. */ -"Embed link" = "內嵌連結"; - /* No comment provided by engineer. */ "Embed media" = "嵌入媒體"; @@ -3181,6 +3190,9 @@ translators: Block name. %s: The localized block name */ /* VoiceOver accessibility hint, informing the user the button can be used to follow a tag. */ "Follows the tag." = "關注此標籤。"; +/* No comment provided by engineer. */ +"Font Size" = "Font Size"; + /* An example tag used in the login prologue screens. */ "Football" = "橄欖球"; @@ -3257,6 +3269,9 @@ translators: Block name. %s: The localized block name */ /* Prompt for the screen to pick a template for a page */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "首先請從各種預先製作的頁面版面配置挑選。 或從空白頁面開始也可以。"; +/* No comment provided by engineer. */ +"Get support" = "Get support"; + /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "分享你的文章,讓這些文章廣為人知,並增加文章檢視次數。"; @@ -3547,9 +3562,6 @@ translators: Block name. %s: The localized block name */ /* translators: accessibility text. %s: image caption. */ "Image caption. %s" = "圖片說明。%s"; -/* No comment provided by engineer. */ -"Image settings" = "圖片設定"; - /* Hint for image title on image settings. */ "Image title" = "圖片標題"; @@ -4157,6 +4169,9 @@ translators: Block name. %s: The localized block name */ /* Marks a notification as unread */ "Mark Unread" = "標記未讀"; +/* Marks comment as spam */ +"Mark as Spam" = "Mark as Spam"; + /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "標記為置頂"; @@ -4279,9 +4294,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Microsft Outlook app when logging in with magic links */ "Microsoft Outlook" = "Microsoft Outlook"; -/* No comment provided by engineer. */ -"Minimum height" = "最小高度"; - /* Summary description for a threat */ "Miscellaneous vulnerability" = "其他安全漏洞"; @@ -4321,6 +4333,9 @@ translators: Block name. %s: The localized block name */ /* Section title for global related posts. */ "More on WordPress.com" = "如需瞭解更多資訊,請前往 WordPress.com"; +/* No comment provided by engineer. */ +"More support options" = "More support options"; + /* Insights 'Most Popular Time' header */ "Most Popular Time" = "最熱門的時間"; @@ -4370,7 +4385,8 @@ translators: Block name. %s: The localized block name */ /* Label for a button that moves a page to the trash folder Label for a option that moves a post to the trash folder Trash option in the trash confirmation alert. - Trash option in the trash page confirmation alert. */ + Trash option in the trash page confirmation alert. + Trashes the comment */ "Move to Trash" = "移至垃圾桶"; /* No comment provided by engineer. */ @@ -4429,7 +4445,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Navigates to customize the gradient" = "瀏覽至自訂漸層色彩"; -/* translators: %s: Select control button label e.g. \"Button width\" */ +/* translators: %s: Select control button label e.g. Small +translators: %s: Select control button label e.g. \"Button width\" */ "Navigates to select %s" = "前往選取 %s"; /* No comment provided by engineer. */ @@ -4575,6 +4592,7 @@ translators: Block name. %s: The localized block name */ "No comments" = "無留言"; /* Displayed in the Notifications Tab as a title, when the Comments Filter shows no notifications + Displayed on the post details page when there are no post comments. Displayed when there are no comments in the Comments views. */ "No comments yet" = "尚無回應"; @@ -5324,9 +5342,6 @@ translators: Block name. %s: The localized block name */ /* Spoken accessibility label for blog author and name in Reader cell. */ "Post by %@, from %@" = "作者 %1$@,來自 %2$@"; -/* No comment provided by engineer. */ -"Post content settings" = "文章內容設定"; - /* The footer text appears within the footer displaying when the post has been created. */ "Post created on %@" = "文章於 %@ 建立"; @@ -5336,9 +5351,6 @@ translators: Block name. %s: The localized block name */ /* Title of notification displayed when a post has failed to upload. */ "Post failed to upload" = "文章上傳失敗"; -/* No comment provided by engineer. */ -"Post meta settings" = "文章中繼資料設定"; - /* A short message explaining that a post was moved to the trash bin. */ "Post moved to trash." = "文章已移至垃圾桶。"; @@ -6285,9 +6297,13 @@ translators: Block name. %s: The localized block name */ /* Error message when user tries a no longer existent video media object. */ "Selected media is unavailable." = "無法使用已選取的媒體。"; -/* translators: %s: Select control option value e.g: \"Auto, 25%\". */ +/* translators: %s: Select font size option value e.g: \"Selected: Large\". +translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "已選取:%s"; +/* No comment provided by engineer. */ +"Selected: Default" = "Selected: Default"; + /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "若選擇其他選單位置,對目前選單所做的變更都會捨棄。確定要繼續?"; @@ -6392,6 +6408,7 @@ translators: Block name. %s: The localized block name */ Button label to share a post Button label to share a web page Share the post. + Shares the comment URL Spoken accessibility label Verb. Title of a button. Pressing lets the user share a post to others. */ "Share" = "分享"; @@ -6733,9 +6750,6 @@ translators: Block name. %s: The localized block name */ Settings: Comments Sort Order */ "Sort By" = "排序依據"; -/* No comment provided by engineer. */ -"Sorting and filtering" = "排序和篩選"; - /* Opens the Github Repository Web Title of button that displays the App's source code information */ "Source Code" = "原始碼"; @@ -7106,6 +7120,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The app can't recognize the server response. Please, check the configuration of your site." = "應用程式無法辨識伺服器回應。請檢查你網站的設定。"; +/* No comment provided by engineer. */ +"The basics" = "The basics"; + /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "此伺服器的憑證無效。你可能正連線至冒充為「%@」的伺服器,而這可能洩漏你的機密資料。\n\n是否仍然要信任憑證?"; @@ -7214,6 +7231,9 @@ translators: Block name. %s: The localized block name */ /* Displayed after Notification Settings failed to load */ "There has been a problem while loading your Notification Settings" = "載入你的通知設定時發生問題。"; +/* Error displayed if a comment fails to get updated */ +"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; + /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "編輯你的留言時發生未預期的錯誤"; @@ -7820,7 +7840,8 @@ translators: Block name. %s: The localized block name */ /* Error reason to display when the writing of a image to a file fails */ "Unable to write image to file" = "無法將圖片寫進檔案"; -/* Unapproves a Comment */ +/* Unapproves a Comment + Unapproves a comment */ "Unapprove" = "未通過審核"; /* VoiceOver accessibility hint, informing the user the button can be used to unapprove a comment */ @@ -8128,9 +8149,6 @@ translators: Block name. %s: The localized block name */ /* Button in the notification presented in Reader when a post is saved for later */ "View All" = "檢視全部"; -/* Title for button on the post details page to show all comments when tapped. */ -"View All Comments" = "檢視所有留言"; - /* Button label for viewing a post */ "View Post" = "查看文章"; @@ -8138,6 +8156,9 @@ translators: Block name. %s: The localized block name */ The menu item to select during a guided tour. */ "View Site" = "造訪網站"; +/* Title for button on the post details page to show all comments when tapped. */ +"View all comments" = "View all comments"; + /* Displays More Rows */ "View all…" = "檢視全部…"; From 8b6e1aca1696685be4fc777fbc9670310fffbcfa Mon Sep 17 00:00:00 2001 From: Jeremy Massel <1123407+jkmassel@users.noreply.github.com> Date: Fri, 17 Dec 2021 15:08:06 -0700 Subject: [PATCH 06/16] Update metadata translations --- fastlane/metadata/ar-SA/release_notes.txt | 14 -------------- fastlane/metadata/de-DE/release_notes.txt | 14 -------------- fastlane/metadata/default/release_notes.txt | 14 -------------- fastlane/metadata/en-GB/release_notes.txt | 14 -------------- fastlane/metadata/en-US/release_notes.txt | 14 -------------- fastlane/metadata/es-ES/release_notes.txt | 14 -------------- fastlane/metadata/es-MX/release_notes.txt | 14 -------------- fastlane/metadata/fr-FR/release_notes.txt | 14 -------------- fastlane/metadata/he/release_notes.txt | 14 -------------- fastlane/metadata/id/release_notes.txt | 14 -------------- fastlane/metadata/it/release_notes.txt | 14 -------------- fastlane/metadata/ja/release_notes.txt | 14 -------------- fastlane/metadata/ko/release_notes.txt | 14 -------------- fastlane/metadata/nl-NL/release_notes.txt | 14 -------------- fastlane/metadata/pt-BR/release_notes.txt | 14 -------------- fastlane/metadata/ru/release_notes.txt | 14 -------------- fastlane/metadata/sv/release_notes.txt | 14 -------------- fastlane/metadata/tr/release_notes.txt | 14 -------------- fastlane/metadata/zh-Hans/release_notes.txt | 14 -------------- fastlane/metadata/zh-Hant/release_notes.txt | 14 -------------- 20 files changed, 280 deletions(-) delete mode 100644 fastlane/metadata/ar-SA/release_notes.txt delete mode 100644 fastlane/metadata/de-DE/release_notes.txt delete mode 100644 fastlane/metadata/default/release_notes.txt delete mode 100644 fastlane/metadata/en-GB/release_notes.txt delete mode 100644 fastlane/metadata/en-US/release_notes.txt delete mode 100644 fastlane/metadata/es-ES/release_notes.txt delete mode 100644 fastlane/metadata/es-MX/release_notes.txt delete mode 100644 fastlane/metadata/fr-FR/release_notes.txt delete mode 100644 fastlane/metadata/he/release_notes.txt delete mode 100644 fastlane/metadata/id/release_notes.txt delete mode 100644 fastlane/metadata/it/release_notes.txt delete mode 100644 fastlane/metadata/ja/release_notes.txt delete mode 100644 fastlane/metadata/ko/release_notes.txt delete mode 100644 fastlane/metadata/nl-NL/release_notes.txt delete mode 100644 fastlane/metadata/pt-BR/release_notes.txt delete mode 100644 fastlane/metadata/ru/release_notes.txt delete mode 100644 fastlane/metadata/sv/release_notes.txt delete mode 100644 fastlane/metadata/tr/release_notes.txt delete mode 100644 fastlane/metadata/zh-Hans/release_notes.txt delete mode 100644 fastlane/metadata/zh-Hant/release_notes.txt diff --git a/fastlane/metadata/ar-SA/release_notes.txt b/fastlane/metadata/ar-SA/release_notes.txt deleted file mode 100644 index ec61f961f9db..000000000000 --- a/fastlane/metadata/ar-SA/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -أخبار سارة للجميع — قمنا بإصلاح أخطاء التطبيق الناتجة عن رفع الصور في أثناء عدم الاتصال بالإنترنت أو حذف الوسائط أو الاطلاع على تفاصيل خاصة بتنبيهات "الإعجاب". - -أجرينا تغييرات كبيرة على محرِّر المكوِّن بحيث يمكنك الحفاظ على هدوئك والنشر عند: - -- عندما تفتح الإعدادات الخاصة بمكوِّن الزر أو الصورة المرتبطة بعنوان URL، لن يقوم المحرِّر بملء عنوان URL تلقائيًا من حافظتك بعد الآن. سترى الآن اقتراح "رابط إلى" بحيث يمكنك استخدام عنوان URL الحافظة أو إدخال عنوان مختلف. -- قم بإنشاء مكوِّن معرض، وسيتم فتح خيارات وسائط جهازك تلقائيًا، ما يُسهِّل لك إضافة صورك. -- هل تريد إضافة مكوِّن جديد؟ إذا تم تعيين جهازك إلى لغة بخلاف اللغة الإنجليزية، فستطابق علامات التبويب الموجودة في قائمة أداة الإدراج الآن لغتك التي تم تعيينها. -- عندما تستخدم مكوِّن التضمين، لن ترى إجراء "التحرير" في شريط الأدوات. يمكنك الآن تغيير عنوان URL عن طريق الانتقال إلى إعدادات المكوِّن بدلاً من ذلك. -- في محرِّر المقالة، سيؤدي التبديل من وضع HTML إلى الوضع المرئي إلى إحضار إشعار موجز يخبرك بالتبديل. -- ربما لاحظت أنه قد تغير حجم الخط من تلقاء نفسه في مكوِّنات الوسائط والنص. لقد قضينا على الخطأ الذي كان يُسبب ذلك الأمر. - -هل أنت جديد على ووردبريس؟ لا داعي للقلق. تسهِّل عملية تسجيل الدخول الخاصة بنا إنشاء موقعك وبدء إدراته أكثر من أي وقت مضى. - -أضفنا كذلك شاشة "نبذة عن" جديدة بحيث يمكنك تقييم التطبيق ومشاركته (بعض التلميحات)، وزيارة ملفنا الشخصي على تويتر ومدونتنا، وعرض تطبيقاتنا الأخرى، وأكثر. diff --git a/fastlane/metadata/de-DE/release_notes.txt b/fastlane/metadata/de-DE/release_notes.txt deleted file mode 100644 index aa56f8512c8f..000000000000 --- a/fastlane/metadata/de-DE/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Gute Neuigkeiten: Wir haben App-Abstürze, die durch den Offline-Upload von Bildern, das Löschen von Medien oder das Anzeigen von Details für „Gefällt mir“-Benachrichtigungen verursacht wurden, behoben. - -Wir haben umfassende Änderungen am Block-Editor vorgenommen, damit du unbesorgt Beiträge veröffentlichen kannst auf: - -- Wenn du die Einstellungen für einen mit einer URL verknüpften Button oder Bildblock öffnest, wird im Editor nicht mehr automatisch eine URL aus deiner Zwischenablage eingefügt. Du erhältst jetzt einen „Link zu“-Vorschlag, d. h., du kannst entweder die URL aus der Zwischenablage verwenden oder eine andere eingeben. -- Wenn du einen Galerieblock erstellst, werden die Medienoptionen deines Geräts automatisch geöffnet. So kannst du deine Bilder einfacher hinzufügen. -- Du möchtest einen neuen Block hinzufügen? Wenn auf deinem Gerät eine andere Sprache als Englisch eingestellt ist, entsprechen die Tabs im Inserter-Menü ab sofort deiner Gerätesprache. -- Bei Verwendung des Embed-Blocks wird dir in der Toolbar nicht die Aktion „Bearbeiten“ angezeigt. Du kannst die URL ab sofort in den Blockeinstellungen ändern. -- Wenn du im Beitragseditor vom HTML-Modus zum visuellen Modus wechselst, wird dir ein kurzer Hinweis zum Wechsel angezeigt. -- Vielleicht hast du schon bemerkt, dass sich die Schriftgröße in „Medien und Text“-Blöcken automatisch ändert. Wir haben den Fehler, der dies verursacht hat, beseitigt. - -Bist du neu bei WordPress? Kein Grund zur Sorge. Mit unserem Anmeldeprozess ist es einfacher denn je, eine eigene Website zu erstellen und zu verwalten. - -Wir haben zudem eine neue Seite „Über“ hinzugefügt: Hier kannst du die App bewerten und teilen (das solltest du unbedingt tun), unser Profil und Blog auf Twitter besuchen, unsere anderen Apps ansehen und vieles mehr. diff --git a/fastlane/metadata/default/release_notes.txt b/fastlane/metadata/default/release_notes.txt deleted file mode 100644 index 5990df9c39cc..000000000000 --- a/fastlane/metadata/default/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Good news, everyone—we fixed app crashes caused by uploading images while offline, deleting media, or seeing details for "Like" notifications. - -We made some big changes to the block editor so you can keep calm and publish on: - -- When you open the settings for a Button or Image block linked to a URL, the editor won't auto-populate a URL from your clipboard anymore. You'll now see a "Link To" suggestion so you can use the clipboard URL or enter a different one. -- Create a Gallery block and your device's media options will automatically open, making it easier for you to add your images. -- Adding a new block? If your device is set to a language other than English, the tabs in the inserter menu will now match your set language. -- When you're using the Embed block, you won't see the "Edit" action in the toolbar. You can now change the URL by going into Block Settings instead. -- In the post editor, switching from HTML mode to Visual mode will bring up a compact notice telling you about the switch. -- You might have noticed your font size changing on its own in Media and Text blocks. We squashed the bug that was causing it. - -New to WordPress? Not to worry. Our login process makes it easier than ever to create and start managing your site. - -We also added a new About screen so you can rate and share the app (hint, hint), visit our Twitter profile and blog, view our other apps, and more. diff --git a/fastlane/metadata/en-GB/release_notes.txt b/fastlane/metadata/en-GB/release_notes.txt deleted file mode 100644 index 5f7189b48dad..000000000000 --- a/fastlane/metadata/en-GB/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Good news, everyone – we fixed app crashes caused by uploading images while offline, deleting media, or seeing details for "Like" notifications. - -We made some big changes to the block editor so you can keep calm and publish on: - -– When you open the settings for a Button or Image block linked to a URL, the editor won't auto-populate a URL from your clipboard anymore. You'll now see a "Link To" suggestion, so you can use the clipboard URL or enter a different one. -– Create a Gallery block and your device's media options will automatically open, making it easier for you to add your images. -– Adding a new block? If your device is set to a language other than English, the tabs in the inserter menu will now match your set language. -– When you're using the Embed block, you won't see the "Edit" action in the toolbar. You can now change the URL by going into Block Settings instead. -– In the post editor, switching from HTML mode to Visual mode will bring up a compact notice telling you about the switch. -– You might have noticed your font size changing on its own in Media and Text blocks. We squashed the bug that was causing it. - -New to WordPress? Not to worry. Our login process makes it easier than ever to create and start managing your site. - -We also added a new About screen, so you can rate and share the app (hint, hint), visit our Twitter profile and blog, view our other apps, and more. diff --git a/fastlane/metadata/en-US/release_notes.txt b/fastlane/metadata/en-US/release_notes.txt deleted file mode 100644 index 5990df9c39cc..000000000000 --- a/fastlane/metadata/en-US/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Good news, everyone—we fixed app crashes caused by uploading images while offline, deleting media, or seeing details for "Like" notifications. - -We made some big changes to the block editor so you can keep calm and publish on: - -- When you open the settings for a Button or Image block linked to a URL, the editor won't auto-populate a URL from your clipboard anymore. You'll now see a "Link To" suggestion so you can use the clipboard URL or enter a different one. -- Create a Gallery block and your device's media options will automatically open, making it easier for you to add your images. -- Adding a new block? If your device is set to a language other than English, the tabs in the inserter menu will now match your set language. -- When you're using the Embed block, you won't see the "Edit" action in the toolbar. You can now change the URL by going into Block Settings instead. -- In the post editor, switching from HTML mode to Visual mode will bring up a compact notice telling you about the switch. -- You might have noticed your font size changing on its own in Media and Text blocks. We squashed the bug that was causing it. - -New to WordPress? Not to worry. Our login process makes it easier than ever to create and start managing your site. - -We also added a new About screen so you can rate and share the app (hint, hint), visit our Twitter profile and blog, view our other apps, and more. diff --git a/fastlane/metadata/es-ES/release_notes.txt b/fastlane/metadata/es-ES/release_notes.txt deleted file mode 100644 index 0462825d61fd..000000000000 --- a/fastlane/metadata/es-ES/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Buenas noticias para todos: hemos corregido los fallos de la aplicación causados por la subida de imágenes mientras se está desconectado, el borrado de medios o la visualización de los detalles de los avisos de "Me gusta". - -Hemos hecho algunos grandes cambios en el editor de bloques, así que puedes mantener la calma y seguir publicando: - -- Cuando abres los ajustes de un bloque de botón o de imagen enlazado a una URL, el editor ya no rellena automáticamente una URL desde tu portapapeles. Ahora verás una sugerencia de "Enlazar a" para que puedas usar la URL del portapapeles o introducir una diferente. -- Crea un bloque de galería y se abrirán automáticamente las opciones de medios de tu dispositivo, haciéndote más fácil añadir tus imágenes. -- ¿Añadir un nuevo bloque? Si tu dispositivo está configurado en un idioma distinto al inglés, las pestañas del menú de inserción ahora coincidirán con el idioma configurado. -- Cuando uses el bloque de incrustación, no verás la acción "Editar" en la barra de herramientas. En su lugar, ahora puedes cambiar la URL yendo a los ajustes del bloque. -- En el editor de entradas, cambiar del modo HTML al modo visual presentará un aviso compacto informándote del cambio. -- Puede que hayas notado el cambio por si solo del tamaño de tu fuente en los bloques de medios y de texto. Hemos eliminado el fallo que lo causaba. - -¿Eres nuevo en WordPress? No te preocupes. Nuestro proceso de acceso hace que sea más fácil que nunca crear y empezar a gestionar tu sitio. - -También hemos añadido una nueva pantalla "Acerca de" para que puedas valorar y compartir la aplicación (pista, pista), visitar nuestro perfil de Twitter y nuestro blog, ver nuestras otras aplicaciones y mucho más. diff --git a/fastlane/metadata/es-MX/release_notes.txt b/fastlane/metadata/es-MX/release_notes.txt deleted file mode 100644 index 0462825d61fd..000000000000 --- a/fastlane/metadata/es-MX/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Buenas noticias para todos: hemos corregido los fallos de la aplicación causados por la subida de imágenes mientras se está desconectado, el borrado de medios o la visualización de los detalles de los avisos de "Me gusta". - -Hemos hecho algunos grandes cambios en el editor de bloques, así que puedes mantener la calma y seguir publicando: - -- Cuando abres los ajustes de un bloque de botón o de imagen enlazado a una URL, el editor ya no rellena automáticamente una URL desde tu portapapeles. Ahora verás una sugerencia de "Enlazar a" para que puedas usar la URL del portapapeles o introducir una diferente. -- Crea un bloque de galería y se abrirán automáticamente las opciones de medios de tu dispositivo, haciéndote más fácil añadir tus imágenes. -- ¿Añadir un nuevo bloque? Si tu dispositivo está configurado en un idioma distinto al inglés, las pestañas del menú de inserción ahora coincidirán con el idioma configurado. -- Cuando uses el bloque de incrustación, no verás la acción "Editar" en la barra de herramientas. En su lugar, ahora puedes cambiar la URL yendo a los ajustes del bloque. -- En el editor de entradas, cambiar del modo HTML al modo visual presentará un aviso compacto informándote del cambio. -- Puede que hayas notado el cambio por si solo del tamaño de tu fuente en los bloques de medios y de texto. Hemos eliminado el fallo que lo causaba. - -¿Eres nuevo en WordPress? No te preocupes. Nuestro proceso de acceso hace que sea más fácil que nunca crear y empezar a gestionar tu sitio. - -También hemos añadido una nueva pantalla "Acerca de" para que puedas valorar y compartir la aplicación (pista, pista), visitar nuestro perfil de Twitter y nuestro blog, ver nuestras otras aplicaciones y mucho más. diff --git a/fastlane/metadata/fr-FR/release_notes.txt b/fastlane/metadata/fr-FR/release_notes.txt deleted file mode 100644 index cf51fc695d45..000000000000 --- a/fastlane/metadata/fr-FR/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Bonne nouvelle ! Nous avons résolu les incidents liés au chargement des images en étant hors ligne, à la suppression de médias ou à l’affichage détaillé des notifications « J’aime » dans l’application. - -Nous avons apporté d’importantes modifications à l’éditeur de blocs pour que vous puissiez continuer à publier en toute tranquillité : - -- Lorsque vous ouvrez les réglages d’un bloc de bouton ou d’image associé à une URL, l’éditeur n’ajoute plus automatiquement une URL à partir de votre presse-papier. Vous verrez désormais une suggestion « Lien vers » vous laissant le choix de sélectionner l’URL de votre presse-papier ou d’en saisir une autre. -- Lorsque vous créez un bloc Galerie, les options multimédia de votre appareil s’ouvrent automatiquement pour faciliter l’ajout d’images. -- Vous souhaitez ajouter un nouveau bloc ? Si la langue de votre appareil n’est pas l’anglais, les onglets du menu d’insertion apparaîtront désormais dans la langue définie. -- Lorsque vous utilisez le bloc de contenu embarqué, l’action « Modifier » n’apparaîtra plus dans la barre d’outils. Vous pouvez désormais modifier l’URL à partir des réglages du bloc. -- Dans l’éditeur d’article, vous recevrez une notification si vous passez du mode HTML au mode visuel. -- Vous avez peut-être remarqué des changements de taille de police intempestifs dans les blocs de Média & texte. Nous avons corrigé le bug à l’origine de ce problème. - -Vous découvrez WordPress ? Pas d’inquiétude. Notre procédure de connexion vous permet de créer et de commencer à gérer votre site encore plus facilement. - -Nous avons également ajouté une nouvelle page À propos à partir de laquelle vous pouvez évaluer et partager l’application, consulter notre profil Twitter et notre blog, découvrir nos autres applications, etc. diff --git a/fastlane/metadata/he/release_notes.txt b/fastlane/metadata/he/release_notes.txt deleted file mode 100644 index a7c6d8c173e1..000000000000 --- a/fastlane/metadata/he/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -יש לנו חדשות טובות לכולם – תיקנו את הקריסות באפליקציה שנגרמו עקב העלאת תמונות במצב לא מחובר, מחיקת מדיה או צפייה בפרטים של הודעות 'לייק'. - -ביצענו כמה שינויים משמעותיים בעורך הבלוקים כדי לאפשר לכולם לפרסם בהנאה: - -- כאשר פותחים את ההגדרות של בלוק הכפתור או בלוק התמונה שאליו מצורף קישור של כתובת URL, העורך לא יזין עוד באופן אוטומטי את כתובת ה-URL מהלוח שלך. כעת תופיע הצעה 'קישור אל' כדי לאפשר לך להשתמש בכתובת ה-URL שבלוח או להזין כתובת שונה. -- אפשר ליצור בלוק גלריה ואפשרויות המדיה במכשיר שלך ייפתחו באופן אוטומטי כדי שיהיה קל יותר להוסיף תמונות. -- רוצה להוסיף בלוק חדש? אם המכשיר שלך מוגדר לשפה שאינה אנגלית, הלשוניות בתפריט המוסיף של הבלוקים כעת תואמות לשפה שהגדרת. -- כאשר משתמשים בבלוק ההטמעה, הפעולה 'לערוך' לא תופיע עוד בסרגל הכלים. במקום, אפשר כעת לשנות את כתובת ה-URL דרך הגדרות הבלוק. -- בעורך הפוסטים, ההחלפה בין עורך HTML והעורך חזותי תציג הודעה קטנה שמיידעת אותך שהשינוי בוצע. -- אולי הבחנת שגודל הגופן משתנה מעצמו בבלוק המדיה ובבלוק הטקסט. סילקנו את הבאג שגרם לתקלה הזאת. - -פעם ראשונה ב-WordPress? אל דאגה. תהליך ההתחברות שלנו היום פשוט יותר ויעזור לך ליצור אתר ולהתחיל לנהל אותו בקלות. - -הוספנו גם מסך 'אודות' חדש כדי לאפשר לך לדרג ולשתף את האפליקציה (כן, אנחנו רומזים בנימוס לעשות את זה), לבקר בפרופיל שלנו בטוויטר ובבלוג שלנו, לעיין באפליקציות הנוספות שלנו ועוד. diff --git a/fastlane/metadata/id/release_notes.txt b/fastlane/metadata/id/release_notes.txt deleted file mode 100644 index 8a3b37913cdf..000000000000 --- a/fastlane/metadata/id/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Buone notizie per tutti: abbiamo risolto gli arresti anomali dell'app causati dal caricamento di immagini offline, dall'eliminazione di elementi multimediali o dalla visualizzazione dei dettagli per le notifiche dei "Mi piace". - -Abbiamo apportato alcune grandi modifiche all'editor a blocchi in modo che tu possa mantenere la calma e pubblicare su: - -- Quando apri le impostazioni per un blocco Pulsante o Immagine collegato a un URL, l'editor non compilerà più automaticamente un URL dagli appunti. Ora visualizzerai un suggerimento "Collega a" in modo da poter usare l'URL degli appunti o inserirne uno diverso. -- Crea un blocco Galleria e le opzioni degli elementi multimediali del tuo dispositivo si apriranno automaticamente, facilitandoti l'aggiunta delle tue immagini. -- Stai aggiungendo un nuovo blocco? Se il tuo dispositivo è impostato su una lingua diversa dall'inglese, le schede nel menu dell'inseritore ora corrisponderanno alla lingua impostata. -- Quando utilizzi il blocco Incorporamenti, non visualizzerai l'azione "Modifica" nella barra degli strumenti. Ora puoi modificare l'URL andando invece in Impostazioni del blocco. -- Nell'editor degli articoli, passando dalla modalità HTML alla modalità visuale apparirà un avviso coinciso che informa del passaggio. -- Potresti aver notato che la dimensione del carattere cambia da sola nei blocchi Media e testo. Abbiamo eliminato il bug che stava causando questa modifica. - -Nuovo su WordPress? Non preoccuparti. Il nostro processo di accesso rende più facile che mai creare e iniziare a gestire il tuo sito. - -Abbiamo anche aggiunto una nuova schermata Informazioni in modo da poter valutare e condividere l'app (suggerisci, suggerisci), visitare il nostro profilo Twitter e il blog, visualizzare le nostre altre app e altro ancora. diff --git a/fastlane/metadata/it/release_notes.txt b/fastlane/metadata/it/release_notes.txt deleted file mode 100644 index 8a3b37913cdf..000000000000 --- a/fastlane/metadata/it/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Buone notizie per tutti: abbiamo risolto gli arresti anomali dell'app causati dal caricamento di immagini offline, dall'eliminazione di elementi multimediali o dalla visualizzazione dei dettagli per le notifiche dei "Mi piace". - -Abbiamo apportato alcune grandi modifiche all'editor a blocchi in modo che tu possa mantenere la calma e pubblicare su: - -- Quando apri le impostazioni per un blocco Pulsante o Immagine collegato a un URL, l'editor non compilerà più automaticamente un URL dagli appunti. Ora visualizzerai un suggerimento "Collega a" in modo da poter usare l'URL degli appunti o inserirne uno diverso. -- Crea un blocco Galleria e le opzioni degli elementi multimediali del tuo dispositivo si apriranno automaticamente, facilitandoti l'aggiunta delle tue immagini. -- Stai aggiungendo un nuovo blocco? Se il tuo dispositivo è impostato su una lingua diversa dall'inglese, le schede nel menu dell'inseritore ora corrisponderanno alla lingua impostata. -- Quando utilizzi il blocco Incorporamenti, non visualizzerai l'azione "Modifica" nella barra degli strumenti. Ora puoi modificare l'URL andando invece in Impostazioni del blocco. -- Nell'editor degli articoli, passando dalla modalità HTML alla modalità visuale apparirà un avviso coinciso che informa del passaggio. -- Potresti aver notato che la dimensione del carattere cambia da sola nei blocchi Media e testo. Abbiamo eliminato il bug che stava causando questa modifica. - -Nuovo su WordPress? Non preoccuparti. Il nostro processo di accesso rende più facile che mai creare e iniziare a gestire il tuo sito. - -Abbiamo anche aggiunto una nuova schermata Informazioni in modo da poter valutare e condividere l'app (suggerisci, suggerisci), visitare il nostro profilo Twitter e il blog, visualizzare le nostre altre app e altro ancora. diff --git a/fastlane/metadata/ja/release_notes.txt b/fastlane/metadata/ja/release_notes.txt deleted file mode 100644 index ffc1267f2b6c..000000000000 --- a/fastlane/metadata/ja/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -皆さんに朗報です。オフライン時に画像をアップロードしたり、メディアを削除したり、「いいね」の通知の詳細を表示したりすると、アプリがクラッシュする問題を修正しました。 - -また、ブロックエディターが大きく変わったため、落ち着いて公開できるようになりました。 - -- URL にリンクされたボタンブロックまたは画像ブロックの設定を開くときに、エディターがクリップボードから URL を自動入力しなくなりました。 「リンク先」の候補が表示されるため、クリップボードの URL を使用するか、別の URL を入力できます。 -- ギャラリーブロックを作成する際に、デバイスのメディア設定が自動的に開き、さらに簡単に画像を追加できるようになりました。 -- 新しいブロックを追加する際は、 お使いの端末で英語以外の言語を設定している場合、挿入メニューのタブが設定している言語と一致するようになりました。 -- 埋め込みブロックを使用しているときは、ツールバーに「編集」アクションが表示されません。 代わりに「ブロック設定」で URL を変更できるようになりました。 -- 投稿エディターで HTML モードからビジュアルモードに切り替えると、切り替わったことを知らせるコンパクトな通知が表示されるようになりました。 -- メディアブロックやテキストブロックで、フォントサイズが勝手に変更されてしまうことにお気付きかもしれません。 原因となっていたバグを修正しました。 - -WordPress を初めてお使いになる方へ 心配ご無用です。 ログインするだけで、さらに簡単にサイトを作成して、管理を開始できるようになりました。 - -また、新たに「このサイトについて」画面を追加し、アプリ (ヒント) の評価や共有、Twitter のプロフィールやブログへのアクセス、他のアプリの表示などができるようになりました。 diff --git a/fastlane/metadata/ko/release_notes.txt b/fastlane/metadata/ko/release_notes.txt deleted file mode 100644 index 014b2bbebcb5..000000000000 --- a/fastlane/metadata/ko/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -모두에게 좋은 소식 - 오프라인 중 이미지 업로드, 미디어 삭제 또는 "좋아요" 알림의 상세 정보 표시에서 발생하던 앱 충돌을 해결했습니다. - -침착하게 계속 발행할 수 있도록 블록 편집기 일부를 대폭 변경했습니다. - -- URL과 연결된 버튼 또는 이미지 블록의 설정을 열 때 더는 클립보드의 URL이 자동으로 채워지지 않습니다. 이제는 클립보드 URL을 사용하거나 다른 URL을 입력할 수 있도록 "링크 연결 대상" 제안이 표시됩니다. -- 갤러리 블록을 만들면 기기의 미디어 옵션이 자동으로 열려 이미지를 더 쉽게 추가할 수 있습니다. -- 새 블록을 추가하시나요? 기기가 영어가 아닌 언어로 설정된 경우 삽입기 메뉴의 탭이 이제는 설정한 언어와 일치합니다. -- 임베드 블록을 사용할 때 도구 모음에 "편집" 작업이 표시되지 않습니다. - 이제는 그 대신에 블록 설정으로 이동하여 URL을 변경할 수 있습니다. -- 글 편집기에서 HTML 모드를 비주얼 모드로 전환하면 전환에 대한 간단한 알림 메시지가 표시됩니다. -- 미디어 블록과 텍스트 블록에서 글꼴 크기가 자동으로 변경되는 경우가 있었습니다. - 원인이 되었던 버그를 수정했습니다. - -- 워드프레스가 생소한가요? 걱정하지 마세요. 사이트를 만들고 관리를 시작하는 로그인 프로세스가 이전보다 쉬워졌습니다. - -앱 평가 및 공유(힌트), 트위터 프로필과 블로그 방문, 다른 앱 보기 등이 가능하도록 새로운 정보 화면도 추가했습니다. diff --git a/fastlane/metadata/nl-NL/release_notes.txt b/fastlane/metadata/nl-NL/release_notes.txt deleted file mode 100644 index a5da1a960a5f..000000000000 --- a/fastlane/metadata/nl-NL/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -We hebben goed nieuws! We hebben het crashen van de app opgelost dat werd veroorzaakt door afbeeldingen offline uploaden, verwijderen van media of details te bekijken van 'Vind ik leuk'-meldingen. - -We hebben enkele grote wijzigingen doorgevoerd in de blokeditor, dus blijf kalm en blijf publiceren: - -- Als je de instellingen voor een Knop- of Afbeeldingblok opent dat is gekoppeld aan een URL, vult de editor niet meer automatisch een URL van je klembord in. Je ziet nu een suggestie 'Doorsturen naar', zodat je de klembord-URL kunt gebruiken of toch een andere kunt invoeren. -- Wanneer je een Galerijblok aanmaakt, opent je apparaat automatisch de mediaopties, zodat je gemakkelijker je afbeeldingen kunt toevoegen. -- Nieuw blok toevoegen? Als je apparaat is ingesteld op een andere taal dan het Engels, komen de tabbladen in het invoegermenu nu overeen met je gekozen taal. -- Bij gebruik van een Insluitblok zie je geen optie voor 'Bewerken' in de werkbalk. Je kunt de URl wijzigen door in plaats daarvan naar Blokinstellingen te gaan. -- Als je in de berichteneditor schakelt van HTML-modus naar Visuele modus, krijg je een beknopt bericht te zien met melding van de schakeling. -- Misschien heb je gemerkt dat de grootte van je lettertype uit zichzelf wijzigt in Media- en Tekstblokken. De bug die dat veroorzaakte, is nu weggehaald. - -Nieuw bij WordPress? Geen zorgen. Met ons aanmeldproces was nog nooit zo gemakkelijk om een site aan te maken en te beheren. - -We hebben ook een nieuw 'Over'-scherm toegevoegd, zodat je de app kunt beoordelen en delen (hint, hint), ons Twitter-profiel en blog kunt bezoeken, onze andere apps kunt bekijken en nog veel meer. diff --git a/fastlane/metadata/pt-BR/release_notes.txt b/fastlane/metadata/pt-BR/release_notes.txt deleted file mode 100644 index 6bd39e60bc0d..000000000000 --- a/fastlane/metadata/pt-BR/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Boas notícias, pessoal: corrigimos as falhas do aplicativo causadas ao carregar imagens offline, excluir mídias ou ver os detalhes de notificações de curtida. - -Fizemos algumas mudanças importantes no editor de blocos para você poder continuar publicando tranquilamente: - -- Quando você abrir as configurações de um bloco de botões ou de imagem vinculado a uma URL, o editor não preencherá mais automaticamente uma URL da sua área de transferência. Você verá uma sugestão "Vincular a", para que possa usar a URL da área de transferência ou digitar uma nova. -- Quando você criar um bloco de galeria, as opções de mídia do seu dispositivo se abrirão automaticamente, tornando a inclusão de imagens mais fácil. -- Vai adicionar um novo bloco? Se o seu dispositivo estiver configurado em um idioma diferente do inglês, as guias do menu de inserção corresponderão ao idioma definido. -- Quando utilizar o bloco de mídia incorporada, você não verá a ação "Editar" na barra de ferramentas. Agora, é possível alterar a URL acessando as Configurações do bloco. -- No editor de posts, alterar do modo HTML para o Visual fará surgir um aviso comunicando sobre a mudança. -- Você pode ter percebido uma alteração automática no tamanho da fonte nos blocos de mídia e texto. Nós eliminamos o bug que causava essa alteração. - -Novo no WordPress? Não se preocupe. Com nosso processo de login, ficou mais fácil do que nunca criar e começar a gerenciar o seu site. - -Incluímos também uma tela "Sobre", para que você possa classificar e compartilhar o aplicativo (atenção para a dica), visitar nosso perfil no Twitter e o nosso blog, visualizar os nossos outros aplicativos e muito mais. diff --git a/fastlane/metadata/ru/release_notes.txt b/fastlane/metadata/ru/release_notes.txt deleted file mode 100644 index d1dc27037207..000000000000 --- a/fastlane/metadata/ru/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Хорошие новости для всех - мы исправили сбои приложения, вызванные загрузкой изображений в автономном режиме, удалением медиафайлов или просмотром сведений для уведомлений об отметках "Нравится". - -Мы внесли большие изменения в редактор блоков, чтобы вы могли сохранять спокойствие и публиковать: - -- Когда вы открываете настройки для блока "Кнопка" или "Изображение", связанного с URL-адресом, редактор больше не будет автоматически заполнять URL-адрес из вашего буфера обмена. Теперь вы увидите предложение «Ссылка на», чтобы вы могли использовать URL-адрес из буфера обмена или ввести другой. -- Создайте блок галереи, и параметры мультимедиа вашего устройства откроются автоматически, что упростит вам добавление изображений. -- Добавляете новый блок? Если ваше устройство настроено на язык, отличный от английского, вкладки в меню средства вставки теперь будут соответствовать установленному вами языку. -- Когда вы используете блок «Вставка», вы не увидите действие «Редактировать» на панели инструментов. Теперь вы можете изменить URL-адрес, зайдя в настройки блока. -- В редакторе записей при переключении из режима HTML в визуальный режим появится компактное уведомление о переключении. -- Возможно, вы заметили, что размер шрифта менялся сам по себе в блоках «Медиа» и «Текст». Мы устранили ошибку, которая ее вызывала. - -Новичок в WordPress? Не волнуйтесь. Наш процесс входа в систему упрощает создание вашего сайта и начало управления им. - -Мы также добавили новый экран «О программе», чтобы вы могли оценивать приложение и делиться им (совет!), посещать наш Твиттер и блог, просматривать другие наши приложения и т. д. diff --git a/fastlane/metadata/sv/release_notes.txt b/fastlane/metadata/sv/release_notes.txt deleted file mode 100644 index 04db3f63bc2a..000000000000 --- a/fastlane/metadata/sv/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Glada nyheter, allihopa – vi har åtgärdat appkrascher som orsakades av bilduppladdning i offline-läge, borttagning av media eller visning av information för "Gilla"-aviseringar. - -Vi har gjort några stora ändringar av blockredigeraren, så du kan vara lugn och publicera vidare: - -- När du öppnar inställningarna för ett knapp- eller bildblock som är länkat till en URL kommer redigeraren inte längre att klistra in en URL från dina urklipp automatiskt. Du kommer nu att se förslaget "Länka till" och kunna välja att antingen använda urklipps-URL:en eller ange en annan URL. -- När du skapar ett galleriblock öppnas mediaalternativen för din enhet automatiskt, vilket gör det enklare för dig att lägga till dina bilder. -- Ska du lägga till ett nytt block? Om din enhet är inställd på ett annat språk än engelska kommer flikarna i infogarmenyn nu att matcha ditt inställda språk. -- När du använder inbäddningsblocket kommer åtgärden "Redigera" inte att visas i verktygsfältet. Du kan nu istället ändra URL:en genom att gå till blockinställningarna. -- När du växlar från HTML-läge till visuellt läge i inläggsredigeraren kommer det att visas en avisering som meddelar dig om detta. -- Du kanske har noterat att textstorleken ibland har ändrat sig av sig själv i dina media- och textblock. Vi har åtgärdat felet som orsakade detta. - -Är du ny på WordPress? Oroa dig inte. Vår inloggningsprocess gör det enklare än någonsin att skapa och börja hantera din webbplats. - -Vi har också lagt till en ny Om-skärm där du kan betygsätta och dela appen (blink, blink), besöka vår Twitter-profil och blogg, visa våra övriga appar, med mera. diff --git a/fastlane/metadata/tr/release_notes.txt b/fastlane/metadata/tr/release_notes.txt deleted file mode 100644 index bcd419e39188..000000000000 --- a/fastlane/metadata/tr/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Herkese iyi haberlerimiz var. Çevrimdışıyken resim yüklerken, medya silerken veya "Beğenme" bildirimlerinin ayrıntılarını görüntülerken oluşan uygulama kilitlenme durumlarını düzelttik. - -Gönderilerinizi huzurlu bir şekilde yayınlayabilmeniz için blok düzenleyicide bazı büyük değişiklikler yaptık: - -- Bir URL'ye bağlı bir Düğme veya Resim blokunun ayarlarını açtığınızda, düzenleyici artık bir URL'yi panonuzdan otomatik olarak doldurmaz. Artık pano URL'sini kullanabilmeniz veya farklı bir URL girebilmeniz için bir "Bağlantı" önerisi göreceksiniz. -- Bir Galeri bloku oluşturduğunuzda, cihazınızın medya seçenekleri otomatik olarak açılır ve görsel eklemenizi kolaylaştırır. -- Yeni bir blok mu ekliyorsunuz? Cihazınız İngilizce dışında bir dile ayarlanmışsa, ekleyici menüsündeki sekmeler artık ayarladığınız dille eşleşecektir. -- Gömülü bloku kullanırken, araç çubuğunda "Düzenle" eylemi görüntülenmez. Artık bunun yerine Blok Ayarlarına giderek URL'yi değiştirebilirsiniz. -- Gönderi düzenleyicide HTML modundan Görsel moda geçiş yaptığınızda geçiş hakkında size bilgi veren küçük bir uyarı görüntülenir. -- Medya ve Metin bloklarında yazı tipi boyutunun kendi kendine değiştiğini fark etmiş olabilirsiniz. Buna neden olan hatayı giderdik. - -WordPress'te yeni misiniz? Endişe etmeyin. Giriş sürecimiz, sitenizi oluşturmayı ve yönetmeye başlamayı her zamankinden daha kolay hale getiriyor. - -Ayrıca, uygulamaya puan verip paylaşabilmeniz için (ipucu, ipucu) yeni bir Hakkında ekranı ekledik, Twitter profilimizi ve blogumuzu ziyaret edebilir, diğer uygulamalarınızı görüntüleyebilir ve daha bir çok şey yapabilirsiniz. diff --git a/fastlane/metadata/zh-Hans/release_notes.txt b/fastlane/metadata/zh-Hans/release_notes.txt deleted file mode 100644 index 775eeedae327..000000000000 --- a/fastlane/metadata/zh-Hans/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -各位,好消息 — 我们修复了因离线上传图片、删除媒体或查看“赞”通知详情而导致的应用程序崩溃。 - -我们对区块编辑器做了一些重大改动,让您可以放心地发表文章: - -- 当您打开链接到 URL 的按钮或图像区块的设置时,编辑器将不再从剪贴板自动填充 URL。 现在您会看到一个“链接到”建议,以便使用剪贴板 URL,也可以输入其他 URL。 -- 创建一个图库区块,您设备的媒体选项就会自动打开,这有助于您更轻松地添加图像。 -- 添加新区块? 如果您的设备未设为英语,插入器菜单中的选项卡现在会与您设置的语言相对应。 -- 使用嵌入区块时,您在工具栏中看不到“编辑”操作。 但您现在可以转至“区块设置”以更改 URL。 -- 在文章编辑器中,如果从 HTML 模式切换到可视化模式,系统会显示一个提醒您该模式切换的小型通知。 -- 您可能已经注意到,字体大小会在媒体和文本区块中自行更改。 我们已经解决此错误。 - -刚开始使用 WordPress? 不用担心。 我们的登录流程使得创建和开始管理您的站点更加简单。 - -我们还添加了新的“关于”屏幕,以便您可以为应用程序评分并与他人分享(推荐!),访问我们的 Twitter 个人资料和博客,查看我们其他的应用程序等等。 diff --git a/fastlane/metadata/zh-Hant/release_notes.txt b/fastlane/metadata/zh-Hant/release_notes.txt deleted file mode 100644 index fd0d87d56cef..000000000000 --- a/fastlane/metadata/zh-Hant/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -在此向各位宣佈好消息:我們已修正離線上傳圖片、刪除媒體或查看「按讚」通知詳細資訊時造成的應用程式當機問題。 - -我們大幅變更了區塊編輯器,讓你能順利編輯並持續發表內容: - -- 當你開啟與 URL 連結的按鈕或圖片區塊時,編輯器不會再從剪貼簿自動填入 URL 了。 系統現在會顯示「連結到」建議,讓你選擇使用剪貼簿 URL 或輸入其他 URL。 -- 建立圖庫區塊時,系統會自動開啟裝置的媒體選項,讓你更輕鬆地新增圖片。 -- 要新增區塊嗎? 若你的裝置設定為英文以外的語言,插入工具選單中的分頁內容現在會以你設定的語言顯示。 -- 使用嵌入區塊時,你不會在工具列中看到「編輯」動作。 你現在可改為前往「區塊設定」變更 URL。 -- 在文章編輯器中,從 HTML 模式切換到視覺化模式會顯示精簡的切換通知。 -- 你可能有注意到媒體和文字區塊中的文字大小會自行變更。 我們已修正造成此問題的錯誤。 - -初次使用 WordPress 嗎? 別擔心。 我們的登入程序可讓你更輕鬆地建立並開始管理網站。 - -我們也新增了全新的「關於」畫面,讓你評分並分享應用程式 (建議)、造訪我們的 Twitter 個人檔案和網誌、檢視我們的其他應用程式等。 From 781efdd0fb434729807500d8cb3bc5b7beff79c7 Mon Sep 17 00:00:00 2001 From: Jeremy Massel <1123407+jkmassel@users.noreply.github.com> Date: Fri, 17 Dec 2021 15:08:14 -0700 Subject: [PATCH 07/16] Update Jetpack metadata translations --- fastlane/jetpack_metadata/ar-SA/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/de-DE/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/es-ES/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/fr-FR/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/he/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/id/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/it/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/ja/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/ko/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/nl-NL/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/pt-BR/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/ru/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/sv/release_notes.txt | 14 -------------- fastlane/jetpack_metadata/tr/release_notes.txt | 14 -------------- .../jetpack_metadata/zh-Hans/release_notes.txt | 14 -------------- .../jetpack_metadata/zh-Hant/release_notes.txt | 14 -------------- 16 files changed, 224 deletions(-) delete mode 100644 fastlane/jetpack_metadata/ar-SA/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/de-DE/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/es-ES/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/fr-FR/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/he/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/id/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/it/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/ja/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/ko/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/nl-NL/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/pt-BR/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/ru/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/sv/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/tr/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/zh-Hans/release_notes.txt delete mode 100644 fastlane/jetpack_metadata/zh-Hant/release_notes.txt diff --git a/fastlane/jetpack_metadata/ar-SA/release_notes.txt b/fastlane/jetpack_metadata/ar-SA/release_notes.txt deleted file mode 100644 index ec61f961f9db..000000000000 --- a/fastlane/jetpack_metadata/ar-SA/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -أخبار سارة للجميع — قمنا بإصلاح أخطاء التطبيق الناتجة عن رفع الصور في أثناء عدم الاتصال بالإنترنت أو حذف الوسائط أو الاطلاع على تفاصيل خاصة بتنبيهات "الإعجاب". - -أجرينا تغييرات كبيرة على محرِّر المكوِّن بحيث يمكنك الحفاظ على هدوئك والنشر عند: - -- عندما تفتح الإعدادات الخاصة بمكوِّن الزر أو الصورة المرتبطة بعنوان URL، لن يقوم المحرِّر بملء عنوان URL تلقائيًا من حافظتك بعد الآن. سترى الآن اقتراح "رابط إلى" بحيث يمكنك استخدام عنوان URL الحافظة أو إدخال عنوان مختلف. -- قم بإنشاء مكوِّن معرض، وسيتم فتح خيارات وسائط جهازك تلقائيًا، ما يُسهِّل لك إضافة صورك. -- هل تريد إضافة مكوِّن جديد؟ إذا تم تعيين جهازك إلى لغة بخلاف اللغة الإنجليزية، فستطابق علامات التبويب الموجودة في قائمة أداة الإدراج الآن لغتك التي تم تعيينها. -- عندما تستخدم مكوِّن التضمين، لن ترى إجراء "التحرير" في شريط الأدوات. يمكنك الآن تغيير عنوان URL عن طريق الانتقال إلى إعدادات المكوِّن بدلاً من ذلك. -- في محرِّر المقالة، سيؤدي التبديل من وضع HTML إلى الوضع المرئي إلى إحضار إشعار موجز يخبرك بالتبديل. -- ربما لاحظت أنه قد تغير حجم الخط من تلقاء نفسه في مكوِّنات الوسائط والنص. لقد قضينا على الخطأ الذي كان يُسبب ذلك الأمر. - -هل أنت جديد على ووردبريس؟ لا داعي للقلق. تسهِّل عملية تسجيل الدخول الخاصة بنا إنشاء موقعك وبدء إدراته أكثر من أي وقت مضى. - -أضفنا كذلك شاشة "نبذة عن" جديدة بحيث يمكنك تقييم التطبيق ومشاركته (بعض التلميحات)، وزيارة ملفنا الشخصي على تويتر ومدونتنا، وعرض تطبيقاتنا الأخرى، وأكثر. diff --git a/fastlane/jetpack_metadata/de-DE/release_notes.txt b/fastlane/jetpack_metadata/de-DE/release_notes.txt deleted file mode 100644 index aa56f8512c8f..000000000000 --- a/fastlane/jetpack_metadata/de-DE/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Gute Neuigkeiten: Wir haben App-Abstürze, die durch den Offline-Upload von Bildern, das Löschen von Medien oder das Anzeigen von Details für „Gefällt mir“-Benachrichtigungen verursacht wurden, behoben. - -Wir haben umfassende Änderungen am Block-Editor vorgenommen, damit du unbesorgt Beiträge veröffentlichen kannst auf: - -- Wenn du die Einstellungen für einen mit einer URL verknüpften Button oder Bildblock öffnest, wird im Editor nicht mehr automatisch eine URL aus deiner Zwischenablage eingefügt. Du erhältst jetzt einen „Link zu“-Vorschlag, d. h., du kannst entweder die URL aus der Zwischenablage verwenden oder eine andere eingeben. -- Wenn du einen Galerieblock erstellst, werden die Medienoptionen deines Geräts automatisch geöffnet. So kannst du deine Bilder einfacher hinzufügen. -- Du möchtest einen neuen Block hinzufügen? Wenn auf deinem Gerät eine andere Sprache als Englisch eingestellt ist, entsprechen die Tabs im Inserter-Menü ab sofort deiner Gerätesprache. -- Bei Verwendung des Embed-Blocks wird dir in der Toolbar nicht die Aktion „Bearbeiten“ angezeigt. Du kannst die URL ab sofort in den Blockeinstellungen ändern. -- Wenn du im Beitragseditor vom HTML-Modus zum visuellen Modus wechselst, wird dir ein kurzer Hinweis zum Wechsel angezeigt. -- Vielleicht hast du schon bemerkt, dass sich die Schriftgröße in „Medien und Text“-Blöcken automatisch ändert. Wir haben den Fehler, der dies verursacht hat, beseitigt. - -Bist du neu bei WordPress? Kein Grund zur Sorge. Mit unserem Anmeldeprozess ist es einfacher denn je, eine eigene Website zu erstellen und zu verwalten. - -Wir haben zudem eine neue Seite „Über“ hinzugefügt: Hier kannst du die App bewerten und teilen (das solltest du unbedingt tun), unser Profil und Blog auf Twitter besuchen, unsere anderen Apps ansehen und vieles mehr. diff --git a/fastlane/jetpack_metadata/es-ES/release_notes.txt b/fastlane/jetpack_metadata/es-ES/release_notes.txt deleted file mode 100644 index 55751d3c10fe..000000000000 --- a/fastlane/jetpack_metadata/es-ES/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Buenas noticias: hemos corregido los errores de la aplicación que se producían cuando se subían imágenes sin conexión, se eliminaban medios o se visualizaban los detalles de las notificaciones de "Me gusta". - -Hemos realizado algunos cambios importantes en el editor de bloques para que puedas seguir publicando con tranquilidad: - -- Al abrir los ajustes de un bloque de botón o imagen enlazado a una URL, el editor ya no completará de manera automática la URL en el portapapeles. En cambio, verás una sugerencia de "Enlace a" para que puedas utilizar la URL del portapapeles o introducir una diferente. -- Al crear un bloque de Galería, las opciones de medios de tu dispositivo se abrirán automáticamente, facilitándote la tarea de añadir las imágenes. -- ¿Quieres añadir un bloque nuevo? Si tu dispositivo está configurado en un idioma distinto al inglés, las pestañas del menú del insertador coincidirán con el idioma configurado. -- Cuando utilices el bloque de incrustar, no verás la acción "Editar" en la barra de herramientas. Ahora, puedes modificar la URL en los ajustes del bloque. -- En el editor de entradas, al cambiar del modo HTML al modo Visual, aparecerá un aviso compacto que te informará del cambio. -- Es posible que te hayas dado cuenta que el tamaño de la fuente cambia por sí solo en los bloques de Medios y Texto. Hemos eliminado el error que causaba este comportamiento. - -¿Eres nuevo en WordPress? No te preocupes. Nuestro proceso de inicio de sesión hace que sea más fácil que nunca crear y empezar a gestionar tu sitio. - -También hemos añadido una nueva pantalla "Acerca de" para que puedas valorar y compartir la aplicación (y ayudarnos), visitar nuestro perfil de Twitter y nuestro blog, ver otras de nuestras aplicaciones y mucho más. diff --git a/fastlane/jetpack_metadata/fr-FR/release_notes.txt b/fastlane/jetpack_metadata/fr-FR/release_notes.txt deleted file mode 100644 index cf51fc695d45..000000000000 --- a/fastlane/jetpack_metadata/fr-FR/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Bonne nouvelle ! Nous avons résolu les incidents liés au chargement des images en étant hors ligne, à la suppression de médias ou à l’affichage détaillé des notifications « J’aime » dans l’application. - -Nous avons apporté d’importantes modifications à l’éditeur de blocs pour que vous puissiez continuer à publier en toute tranquillité : - -- Lorsque vous ouvrez les réglages d’un bloc de bouton ou d’image associé à une URL, l’éditeur n’ajoute plus automatiquement une URL à partir de votre presse-papier. Vous verrez désormais une suggestion « Lien vers » vous laissant le choix de sélectionner l’URL de votre presse-papier ou d’en saisir une autre. -- Lorsque vous créez un bloc Galerie, les options multimédia de votre appareil s’ouvrent automatiquement pour faciliter l’ajout d’images. -- Vous souhaitez ajouter un nouveau bloc ? Si la langue de votre appareil n’est pas l’anglais, les onglets du menu d’insertion apparaîtront désormais dans la langue définie. -- Lorsque vous utilisez le bloc de contenu embarqué, l’action « Modifier » n’apparaîtra plus dans la barre d’outils. Vous pouvez désormais modifier l’URL à partir des réglages du bloc. -- Dans l’éditeur d’article, vous recevrez une notification si vous passez du mode HTML au mode visuel. -- Vous avez peut-être remarqué des changements de taille de police intempestifs dans les blocs de Média & texte. Nous avons corrigé le bug à l’origine de ce problème. - -Vous découvrez WordPress ? Pas d’inquiétude. Notre procédure de connexion vous permet de créer et de commencer à gérer votre site encore plus facilement. - -Nous avons également ajouté une nouvelle page À propos à partir de laquelle vous pouvez évaluer et partager l’application, consulter notre profil Twitter et notre blog, découvrir nos autres applications, etc. diff --git a/fastlane/jetpack_metadata/he/release_notes.txt b/fastlane/jetpack_metadata/he/release_notes.txt deleted file mode 100644 index a7c6d8c173e1..000000000000 --- a/fastlane/jetpack_metadata/he/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -יש לנו חדשות טובות לכולם – תיקנו את הקריסות באפליקציה שנגרמו עקב העלאת תמונות במצב לא מחובר, מחיקת מדיה או צפייה בפרטים של הודעות 'לייק'. - -ביצענו כמה שינויים משמעותיים בעורך הבלוקים כדי לאפשר לכולם לפרסם בהנאה: - -- כאשר פותחים את ההגדרות של בלוק הכפתור או בלוק התמונה שאליו מצורף קישור של כתובת URL, העורך לא יזין עוד באופן אוטומטי את כתובת ה-URL מהלוח שלך. כעת תופיע הצעה 'קישור אל' כדי לאפשר לך להשתמש בכתובת ה-URL שבלוח או להזין כתובת שונה. -- אפשר ליצור בלוק גלריה ואפשרויות המדיה במכשיר שלך ייפתחו באופן אוטומטי כדי שיהיה קל יותר להוסיף תמונות. -- רוצה להוסיף בלוק חדש? אם המכשיר שלך מוגדר לשפה שאינה אנגלית, הלשוניות בתפריט המוסיף של הבלוקים כעת תואמות לשפה שהגדרת. -- כאשר משתמשים בבלוק ההטמעה, הפעולה 'לערוך' לא תופיע עוד בסרגל הכלים. במקום, אפשר כעת לשנות את כתובת ה-URL דרך הגדרות הבלוק. -- בעורך הפוסטים, ההחלפה בין עורך HTML והעורך חזותי תציג הודעה קטנה שמיידעת אותך שהשינוי בוצע. -- אולי הבחנת שגודל הגופן משתנה מעצמו בבלוק המדיה ובבלוק הטקסט. סילקנו את הבאג שגרם לתקלה הזאת. - -פעם ראשונה ב-WordPress? אל דאגה. תהליך ההתחברות שלנו היום פשוט יותר ויעזור לך ליצור אתר ולהתחיל לנהל אותו בקלות. - -הוספנו גם מסך 'אודות' חדש כדי לאפשר לך לדרג ולשתף את האפליקציה (כן, אנחנו רומזים בנימוס לעשות את זה), לבקר בפרופיל שלנו בטוויטר ובבלוג שלנו, לעיין באפליקציות הנוספות שלנו ועוד. diff --git a/fastlane/jetpack_metadata/id/release_notes.txt b/fastlane/jetpack_metadata/id/release_notes.txt deleted file mode 100644 index c33ecda10c2a..000000000000 --- a/fastlane/jetpack_metadata/id/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Kabar baik, kami telah memperbaiki masalah crash aplikasi yang disebabkan pengunggahan gambar saat offline, menghapus media, atau melihat detail pemberitahuan "Suka". - -Kami melakukan perubahan besar pada editor blok sehingga Anda bisa tetap tenang dan terus memposkan: - -- Ketika Anda membuka pengaturan untuk blok Tombol atau Gambar yang ditautkan ke sebuah URL, editor tidak akan lagi mengisi URL secara otomatis dari papan klip Anda. Sekarang Anda akan melihat saran "Tautkan Ke" sehingga Anda bisa menggunakan URL papan klip atau memasukkan URL yang berbeda. -- Membuat blok Galeri akan secara otomatis membuka pilihan media perangkat sehingga memudahkan Anda untuk menambahkan gambar. -- Menambahkan blok baru? Jika bahasa perangkat diatur ke bahasa selain Inggris, sekarang tab pada menu penyisip akan mencocokkan dengan bahasa yang Anda tetapkan. -- Ketika menggunakan blok Sematan, Anda tidak akan melihat tindakan "Edit" pada bilah peralatan. Sekarang Anda bisa mengubah URL dengan membuka Pengaturan Blok. -- Pada editor pos, mengalihkan mode HTML ke mode Visual akan memunculkan pemberitahuan singkat tentang peralihan tersebut. -- Anda mungkin akan melihat ukuran font berubah dengan sendirinya pada blok Media dan Teks. Kami telah menghapus bug penyebabnya. - -Baru menggunakan WordPress? Jangan khawatir. Proses login kami mempermudah Anda membuat dan mulai mengelola situs. - -Kami juga menambahkan layar Tentang baru sehingga Anda dapat menilai dan membagikan aplikasi (mohon bantuannya), mengunjungi profil dan blog Twitter kami, melihat aplikasi lain dari kami, dan masih banyak lainnya. diff --git a/fastlane/jetpack_metadata/it/release_notes.txt b/fastlane/jetpack_metadata/it/release_notes.txt deleted file mode 100644 index 8a3b37913cdf..000000000000 --- a/fastlane/jetpack_metadata/it/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Buone notizie per tutti: abbiamo risolto gli arresti anomali dell'app causati dal caricamento di immagini offline, dall'eliminazione di elementi multimediali o dalla visualizzazione dei dettagli per le notifiche dei "Mi piace". - -Abbiamo apportato alcune grandi modifiche all'editor a blocchi in modo che tu possa mantenere la calma e pubblicare su: - -- Quando apri le impostazioni per un blocco Pulsante o Immagine collegato a un URL, l'editor non compilerà più automaticamente un URL dagli appunti. Ora visualizzerai un suggerimento "Collega a" in modo da poter usare l'URL degli appunti o inserirne uno diverso. -- Crea un blocco Galleria e le opzioni degli elementi multimediali del tuo dispositivo si apriranno automaticamente, facilitandoti l'aggiunta delle tue immagini. -- Stai aggiungendo un nuovo blocco? Se il tuo dispositivo è impostato su una lingua diversa dall'inglese, le schede nel menu dell'inseritore ora corrisponderanno alla lingua impostata. -- Quando utilizzi il blocco Incorporamenti, non visualizzerai l'azione "Modifica" nella barra degli strumenti. Ora puoi modificare l'URL andando invece in Impostazioni del blocco. -- Nell'editor degli articoli, passando dalla modalità HTML alla modalità visuale apparirà un avviso coinciso che informa del passaggio. -- Potresti aver notato che la dimensione del carattere cambia da sola nei blocchi Media e testo. Abbiamo eliminato il bug che stava causando questa modifica. - -Nuovo su WordPress? Non preoccuparti. Il nostro processo di accesso rende più facile che mai creare e iniziare a gestire il tuo sito. - -Abbiamo anche aggiunto una nuova schermata Informazioni in modo da poter valutare e condividere l'app (suggerisci, suggerisci), visitare il nostro profilo Twitter e il blog, visualizzare le nostre altre app e altro ancora. diff --git a/fastlane/jetpack_metadata/ja/release_notes.txt b/fastlane/jetpack_metadata/ja/release_notes.txt deleted file mode 100644 index ffc1267f2b6c..000000000000 --- a/fastlane/jetpack_metadata/ja/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -皆さんに朗報です。オフライン時に画像をアップロードしたり、メディアを削除したり、「いいね」の通知の詳細を表示したりすると、アプリがクラッシュする問題を修正しました。 - -また、ブロックエディターが大きく変わったため、落ち着いて公開できるようになりました。 - -- URL にリンクされたボタンブロックまたは画像ブロックの設定を開くときに、エディターがクリップボードから URL を自動入力しなくなりました。 「リンク先」の候補が表示されるため、クリップボードの URL を使用するか、別の URL を入力できます。 -- ギャラリーブロックを作成する際に、デバイスのメディア設定が自動的に開き、さらに簡単に画像を追加できるようになりました。 -- 新しいブロックを追加する際は、 お使いの端末で英語以外の言語を設定している場合、挿入メニューのタブが設定している言語と一致するようになりました。 -- 埋め込みブロックを使用しているときは、ツールバーに「編集」アクションが表示されません。 代わりに「ブロック設定」で URL を変更できるようになりました。 -- 投稿エディターで HTML モードからビジュアルモードに切り替えると、切り替わったことを知らせるコンパクトな通知が表示されるようになりました。 -- メディアブロックやテキストブロックで、フォントサイズが勝手に変更されてしまうことにお気付きかもしれません。 原因となっていたバグを修正しました。 - -WordPress を初めてお使いになる方へ 心配ご無用です。 ログインするだけで、さらに簡単にサイトを作成して、管理を開始できるようになりました。 - -また、新たに「このサイトについて」画面を追加し、アプリ (ヒント) の評価や共有、Twitter のプロフィールやブログへのアクセス、他のアプリの表示などができるようになりました。 diff --git a/fastlane/jetpack_metadata/ko/release_notes.txt b/fastlane/jetpack_metadata/ko/release_notes.txt deleted file mode 100644 index 014b2bbebcb5..000000000000 --- a/fastlane/jetpack_metadata/ko/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -모두에게 좋은 소식 - 오프라인 중 이미지 업로드, 미디어 삭제 또는 "좋아요" 알림의 상세 정보 표시에서 발생하던 앱 충돌을 해결했습니다. - -침착하게 계속 발행할 수 있도록 블록 편집기 일부를 대폭 변경했습니다. - -- URL과 연결된 버튼 또는 이미지 블록의 설정을 열 때 더는 클립보드의 URL이 자동으로 채워지지 않습니다. 이제는 클립보드 URL을 사용하거나 다른 URL을 입력할 수 있도록 "링크 연결 대상" 제안이 표시됩니다. -- 갤러리 블록을 만들면 기기의 미디어 옵션이 자동으로 열려 이미지를 더 쉽게 추가할 수 있습니다. -- 새 블록을 추가하시나요? 기기가 영어가 아닌 언어로 설정된 경우 삽입기 메뉴의 탭이 이제는 설정한 언어와 일치합니다. -- 임베드 블록을 사용할 때 도구 모음에 "편집" 작업이 표시되지 않습니다. - 이제는 그 대신에 블록 설정으로 이동하여 URL을 변경할 수 있습니다. -- 글 편집기에서 HTML 모드를 비주얼 모드로 전환하면 전환에 대한 간단한 알림 메시지가 표시됩니다. -- 미디어 블록과 텍스트 블록에서 글꼴 크기가 자동으로 변경되는 경우가 있었습니다. - 원인이 되었던 버그를 수정했습니다. - -- 워드프레스가 생소한가요? 걱정하지 마세요. 사이트를 만들고 관리를 시작하는 로그인 프로세스가 이전보다 쉬워졌습니다. - -앱 평가 및 공유(힌트), 트위터 프로필과 블로그 방문, 다른 앱 보기 등이 가능하도록 새로운 정보 화면도 추가했습니다. diff --git a/fastlane/jetpack_metadata/nl-NL/release_notes.txt b/fastlane/jetpack_metadata/nl-NL/release_notes.txt deleted file mode 100644 index a5da1a960a5f..000000000000 --- a/fastlane/jetpack_metadata/nl-NL/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -We hebben goed nieuws! We hebben het crashen van de app opgelost dat werd veroorzaakt door afbeeldingen offline uploaden, verwijderen van media of details te bekijken van 'Vind ik leuk'-meldingen. - -We hebben enkele grote wijzigingen doorgevoerd in de blokeditor, dus blijf kalm en blijf publiceren: - -- Als je de instellingen voor een Knop- of Afbeeldingblok opent dat is gekoppeld aan een URL, vult de editor niet meer automatisch een URL van je klembord in. Je ziet nu een suggestie 'Doorsturen naar', zodat je de klembord-URL kunt gebruiken of toch een andere kunt invoeren. -- Wanneer je een Galerijblok aanmaakt, opent je apparaat automatisch de mediaopties, zodat je gemakkelijker je afbeeldingen kunt toevoegen. -- Nieuw blok toevoegen? Als je apparaat is ingesteld op een andere taal dan het Engels, komen de tabbladen in het invoegermenu nu overeen met je gekozen taal. -- Bij gebruik van een Insluitblok zie je geen optie voor 'Bewerken' in de werkbalk. Je kunt de URl wijzigen door in plaats daarvan naar Blokinstellingen te gaan. -- Als je in de berichteneditor schakelt van HTML-modus naar Visuele modus, krijg je een beknopt bericht te zien met melding van de schakeling. -- Misschien heb je gemerkt dat de grootte van je lettertype uit zichzelf wijzigt in Media- en Tekstblokken. De bug die dat veroorzaakte, is nu weggehaald. - -Nieuw bij WordPress? Geen zorgen. Met ons aanmeldproces was nog nooit zo gemakkelijk om een site aan te maken en te beheren. - -We hebben ook een nieuw 'Over'-scherm toegevoegd, zodat je de app kunt beoordelen en delen (hint, hint), ons Twitter-profiel en blog kunt bezoeken, onze andere apps kunt bekijken en nog veel meer. diff --git a/fastlane/jetpack_metadata/pt-BR/release_notes.txt b/fastlane/jetpack_metadata/pt-BR/release_notes.txt deleted file mode 100644 index 6bd39e60bc0d..000000000000 --- a/fastlane/jetpack_metadata/pt-BR/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Boas notícias, pessoal: corrigimos as falhas do aplicativo causadas ao carregar imagens offline, excluir mídias ou ver os detalhes de notificações de curtida. - -Fizemos algumas mudanças importantes no editor de blocos para você poder continuar publicando tranquilamente: - -- Quando você abrir as configurações de um bloco de botões ou de imagem vinculado a uma URL, o editor não preencherá mais automaticamente uma URL da sua área de transferência. Você verá uma sugestão "Vincular a", para que possa usar a URL da área de transferência ou digitar uma nova. -- Quando você criar um bloco de galeria, as opções de mídia do seu dispositivo se abrirão automaticamente, tornando a inclusão de imagens mais fácil. -- Vai adicionar um novo bloco? Se o seu dispositivo estiver configurado em um idioma diferente do inglês, as guias do menu de inserção corresponderão ao idioma definido. -- Quando utilizar o bloco de mídia incorporada, você não verá a ação "Editar" na barra de ferramentas. Agora, é possível alterar a URL acessando as Configurações do bloco. -- No editor de posts, alterar do modo HTML para o Visual fará surgir um aviso comunicando sobre a mudança. -- Você pode ter percebido uma alteração automática no tamanho da fonte nos blocos de mídia e texto. Nós eliminamos o bug que causava essa alteração. - -Novo no WordPress? Não se preocupe. Com nosso processo de login, ficou mais fácil do que nunca criar e começar a gerenciar o seu site. - -Incluímos também uma tela "Sobre", para que você possa classificar e compartilhar o aplicativo (atenção para a dica), visitar nosso perfil no Twitter e o nosso blog, visualizar os nossos outros aplicativos e muito mais. diff --git a/fastlane/jetpack_metadata/ru/release_notes.txt b/fastlane/jetpack_metadata/ru/release_notes.txt deleted file mode 100644 index 5881fe7683fc..000000000000 --- a/fastlane/jetpack_metadata/ru/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Друзья, у нас хорошие новости — мы исправили сбои в приложении при загрузке изображений в автономном режиме, удалении медиафайлов или просмотре сведений в уведомлениях "Нравится". - -Мы внесли ряд существенных изменений в редактор блоков, чтобы вы могли спокойно работать над публикациями -. -— При открытии настроек блоков "Кнопка" или "Изображение", для которых указан URL-адрес, редактор больше не будет автоматически вставлять URL-адрес из буфера обмена. Вам будет предложено "Добавить ссылку", чтобы использовать URL-адрес из буфера обмена или ввести другой. -— Создайте блок "Галерея", и автоматически откроются опции мультимедиа на устройстве, чтобы вам было проще добавлять изображения. -— Добавляете новый блок? Если на устройстве установлен язык, отличный от английского, вкладки в меню вставки теперь будут отображаться на этом языке. -— При использовании блока "Вставка" на панели инструментов больше нет действия "Изменить". Теперь изменить URL-адрес можно в разделе "Настройки блока". -— При переключении из режима HTML в визуальный режим в редакторе записей появится небольшое уведомление о переключении. -— Вы могли заметить, что в блоках "Медиа и текст" автоматически менялся размер шрифта. Мы исправили эту ошибку. - -Только начали работать с WordPress? Не переживайте. У нас простая процедура регистрации, поэтому создать сайт будет очень легко. - -Мы также добавили новую страницу "О приложении", на которой можно оценить приложение и рассказать о нём другим пользователям (да, это тонкий намёк), перейти в блог и профиль в Twitter, посмотреть другие наши приложения и многое другое. diff --git a/fastlane/jetpack_metadata/sv/release_notes.txt b/fastlane/jetpack_metadata/sv/release_notes.txt deleted file mode 100644 index 04db3f63bc2a..000000000000 --- a/fastlane/jetpack_metadata/sv/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Glada nyheter, allihopa – vi har åtgärdat appkrascher som orsakades av bilduppladdning i offline-läge, borttagning av media eller visning av information för "Gilla"-aviseringar. - -Vi har gjort några stora ändringar av blockredigeraren, så du kan vara lugn och publicera vidare: - -- När du öppnar inställningarna för ett knapp- eller bildblock som är länkat till en URL kommer redigeraren inte längre att klistra in en URL från dina urklipp automatiskt. Du kommer nu att se förslaget "Länka till" och kunna välja att antingen använda urklipps-URL:en eller ange en annan URL. -- När du skapar ett galleriblock öppnas mediaalternativen för din enhet automatiskt, vilket gör det enklare för dig att lägga till dina bilder. -- Ska du lägga till ett nytt block? Om din enhet är inställd på ett annat språk än engelska kommer flikarna i infogarmenyn nu att matcha ditt inställda språk. -- När du använder inbäddningsblocket kommer åtgärden "Redigera" inte att visas i verktygsfältet. Du kan nu istället ändra URL:en genom att gå till blockinställningarna. -- När du växlar från HTML-läge till visuellt läge i inläggsredigeraren kommer det att visas en avisering som meddelar dig om detta. -- Du kanske har noterat att textstorleken ibland har ändrat sig av sig själv i dina media- och textblock. Vi har åtgärdat felet som orsakade detta. - -Är du ny på WordPress? Oroa dig inte. Vår inloggningsprocess gör det enklare än någonsin att skapa och börja hantera din webbplats. - -Vi har också lagt till en ny Om-skärm där du kan betygsätta och dela appen (blink, blink), besöka vår Twitter-profil och blogg, visa våra övriga appar, med mera. diff --git a/fastlane/jetpack_metadata/tr/release_notes.txt b/fastlane/jetpack_metadata/tr/release_notes.txt deleted file mode 100644 index bcd419e39188..000000000000 --- a/fastlane/jetpack_metadata/tr/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -Herkese iyi haberlerimiz var. Çevrimdışıyken resim yüklerken, medya silerken veya "Beğenme" bildirimlerinin ayrıntılarını görüntülerken oluşan uygulama kilitlenme durumlarını düzelttik. - -Gönderilerinizi huzurlu bir şekilde yayınlayabilmeniz için blok düzenleyicide bazı büyük değişiklikler yaptık: - -- Bir URL'ye bağlı bir Düğme veya Resim blokunun ayarlarını açtığınızda, düzenleyici artık bir URL'yi panonuzdan otomatik olarak doldurmaz. Artık pano URL'sini kullanabilmeniz veya farklı bir URL girebilmeniz için bir "Bağlantı" önerisi göreceksiniz. -- Bir Galeri bloku oluşturduğunuzda, cihazınızın medya seçenekleri otomatik olarak açılır ve görsel eklemenizi kolaylaştırır. -- Yeni bir blok mu ekliyorsunuz? Cihazınız İngilizce dışında bir dile ayarlanmışsa, ekleyici menüsündeki sekmeler artık ayarladığınız dille eşleşecektir. -- Gömülü bloku kullanırken, araç çubuğunda "Düzenle" eylemi görüntülenmez. Artık bunun yerine Blok Ayarlarına giderek URL'yi değiştirebilirsiniz. -- Gönderi düzenleyicide HTML modundan Görsel moda geçiş yaptığınızda geçiş hakkında size bilgi veren küçük bir uyarı görüntülenir. -- Medya ve Metin bloklarında yazı tipi boyutunun kendi kendine değiştiğini fark etmiş olabilirsiniz. Buna neden olan hatayı giderdik. - -WordPress'te yeni misiniz? Endişe etmeyin. Giriş sürecimiz, sitenizi oluşturmayı ve yönetmeye başlamayı her zamankinden daha kolay hale getiriyor. - -Ayrıca, uygulamaya puan verip paylaşabilmeniz için (ipucu, ipucu) yeni bir Hakkında ekranı ekledik, Twitter profilimizi ve blogumuzu ziyaret edebilir, diğer uygulamalarınızı görüntüleyebilir ve daha bir çok şey yapabilirsiniz. diff --git a/fastlane/jetpack_metadata/zh-Hans/release_notes.txt b/fastlane/jetpack_metadata/zh-Hans/release_notes.txt deleted file mode 100644 index 775eeedae327..000000000000 --- a/fastlane/jetpack_metadata/zh-Hans/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -各位,好消息 — 我们修复了因离线上传图片、删除媒体或查看“赞”通知详情而导致的应用程序崩溃。 - -我们对区块编辑器做了一些重大改动,让您可以放心地发表文章: - -- 当您打开链接到 URL 的按钮或图像区块的设置时,编辑器将不再从剪贴板自动填充 URL。 现在您会看到一个“链接到”建议,以便使用剪贴板 URL,也可以输入其他 URL。 -- 创建一个图库区块,您设备的媒体选项就会自动打开,这有助于您更轻松地添加图像。 -- 添加新区块? 如果您的设备未设为英语,插入器菜单中的选项卡现在会与您设置的语言相对应。 -- 使用嵌入区块时,您在工具栏中看不到“编辑”操作。 但您现在可以转至“区块设置”以更改 URL。 -- 在文章编辑器中,如果从 HTML 模式切换到可视化模式,系统会显示一个提醒您该模式切换的小型通知。 -- 您可能已经注意到,字体大小会在媒体和文本区块中自行更改。 我们已经解决此错误。 - -刚开始使用 WordPress? 不用担心。 我们的登录流程使得创建和开始管理您的站点更加简单。 - -我们还添加了新的“关于”屏幕,以便您可以为应用程序评分并与他人分享(推荐!),访问我们的 Twitter 个人资料和博客,查看我们其他的应用程序等等。 diff --git a/fastlane/jetpack_metadata/zh-Hant/release_notes.txt b/fastlane/jetpack_metadata/zh-Hant/release_notes.txt deleted file mode 100644 index fd0d87d56cef..000000000000 --- a/fastlane/jetpack_metadata/zh-Hant/release_notes.txt +++ /dev/null @@ -1,14 +0,0 @@ -在此向各位宣佈好消息:我們已修正離線上傳圖片、刪除媒體或查看「按讚」通知詳細資訊時造成的應用程式當機問題。 - -我們大幅變更了區塊編輯器,讓你能順利編輯並持續發表內容: - -- 當你開啟與 URL 連結的按鈕或圖片區塊時,編輯器不會再從剪貼簿自動填入 URL 了。 系統現在會顯示「連結到」建議,讓你選擇使用剪貼簿 URL 或輸入其他 URL。 -- 建立圖庫區塊時,系統會自動開啟裝置的媒體選項,讓你更輕鬆地新增圖片。 -- 要新增區塊嗎? 若你的裝置設定為英文以外的語言,插入工具選單中的分頁內容現在會以你設定的語言顯示。 -- 使用嵌入區塊時,你不會在工具列中看到「編輯」動作。 你現在可改為前往「區塊設定」變更 URL。 -- 在文章編輯器中,從 HTML 模式切換到視覺化模式會顯示精簡的切換通知。 -- 你可能有注意到媒體和文字區塊中的文字大小會自行變更。 我們已修正造成此問題的錯誤。 - -初次使用 WordPress 嗎? 別擔心。 我們的登入程序可讓你更輕鬆地建立並開始管理網站。 - -我們也新增了全新的「關於」畫面,讓你評分並分享應用程式 (建議)、造訪我們的 Twitter 個人檔案和網誌、檢視我們的其他應用程式等。 From 61689e56f8dfbd739ed65ccc9bf109d8eb41c350 Mon Sep 17 00:00:00 2001 From: Jeremy Massel <1123407+jkmassel@users.noreply.github.com> Date: Fri, 17 Dec 2021 15:08:15 -0700 Subject: [PATCH 08/16] 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 6bd9a83d53fe..b1a7c774e60b 100644 --- a/config/Version.internal.xcconfig +++ b/config/Version.internal.xcconfig @@ -6,4 +6,4 @@ VERSION_SHORT=18.9 // build for the day so I bumped it to 10/02. On 10/04 we'll code freeze 18.4 // and this should be the very last build for 18.3, so we should be fine. // – Gio -VERSION_LONG=18.9.0.20211213 +VERSION_LONG=18.9.0.20211217 diff --git a/config/Version.public.xcconfig b/config/Version.public.xcconfig index f7e967edc216..7bc66b34f40b 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,4 +1,4 @@ VERSION_SHORT=18.9 // Public long version example: VERSION_LONG=9.9.0.0 -VERSION_LONG=18.9.0.0 +VERSION_LONG=18.9.0.1 From 61b9cc3bea5b4f6b00e36e72a7308eeb92b8b814 Mon Sep 17 00:00:00 2001 From: Leandro Alonso Date: Mon, 13 Dec 2021 14:12:49 -0300 Subject: [PATCH 09/16] Add: SIWA entitlements --- WordPress/Jetpack/JetpackDebug.entitlements | 4 ++++ WordPress/Jetpack/JetpackRelease.entitlements | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/WordPress/Jetpack/JetpackDebug.entitlements b/WordPress/Jetpack/JetpackDebug.entitlements index 0ee72271aa63..4b1258b729a3 100644 --- a/WordPress/Jetpack/JetpackDebug.entitlements +++ b/WordPress/Jetpack/JetpackDebug.entitlements @@ -4,6 +4,10 @@ aps-environment development + com.apple.developer.applesignin + + Default + com.apple.developer.associated-domains webcredentials:wordpress.com diff --git a/WordPress/Jetpack/JetpackRelease.entitlements b/WordPress/Jetpack/JetpackRelease.entitlements index 0ee72271aa63..4b1258b729a3 100644 --- a/WordPress/Jetpack/JetpackRelease.entitlements +++ b/WordPress/Jetpack/JetpackRelease.entitlements @@ -4,6 +4,10 @@ aps-environment development + com.apple.developer.applesignin + + Default + com.apple.developer.associated-domains webcredentials:wordpress.com From 87bfc2176b512808e799d4a87b6d78f2b22bdd0e Mon Sep 17 00:00:00 2001 From: Leandro Alonso Date: Mon, 13 Dec 2021 14:14:29 -0300 Subject: [PATCH 10/16] Add: SIWA button for Jetpack --- .../ViewRelated/NUX/WordPressAuthenticationManager.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/Classes/ViewRelated/NUX/WordPressAuthenticationManager.swift b/WordPress/Classes/ViewRelated/NUX/WordPressAuthenticationManager.swift index ab004e74c2bc..8ce36d945ff7 100644 --- a/WordPress/Classes/ViewRelated/NUX/WordPressAuthenticationManager.swift +++ b/WordPress/Classes/ViewRelated/NUX/WordPressAuthenticationManager.swift @@ -57,7 +57,7 @@ extension WordPressAuthenticationManager { private func authenticatorConfiguation() -> WordPressAuthenticatorConfiguration { // SIWA can not be enabled for internal builds // Ref https://github.com/wordpress-mobile/WordPress-iOS/pull/12332#issuecomment-521994963 - let enableSignInWithApple = AppConfiguration.allowSignUp && !(BuildConfiguration.current ~= [.a8cBranchTest, .a8cPrereleaseTesting]) + let enableSignInWithApple = !(BuildConfiguration.current ~= [.a8cBranchTest, .a8cPrereleaseTesting]) return WordPressAuthenticatorConfiguration(wpcomClientId: ApiCredentials.client, wpcomSecret: ApiCredentials.secret, From 27b046fb15b97e549bf48abfa430a44cae734080 Mon Sep 17 00:00:00 2001 From: Leandro Alonso Date: Tue, 14 Dec 2021 15:31:16 -0300 Subject: [PATCH 11/16] Add: presentSignupEpilogue to authentication handler --- .../Utility/App Configuration/AuthenticationHandler.swift | 2 ++ .../Jetpack/Classes/JetpackAuthenticationManager.swift | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/WordPress/Classes/Utility/App Configuration/AuthenticationHandler.swift b/WordPress/Classes/Utility/App Configuration/AuthenticationHandler.swift index d04d1f679dc6..8781e5a1d188 100644 --- a/WordPress/Classes/Utility/App Configuration/AuthenticationHandler.swift +++ b/WordPress/Classes/Utility/App Configuration/AuthenticationHandler.swift @@ -5,6 +5,8 @@ protocol AuthenticationHandler { func presentLoginEpilogue(in navigationController: UINavigationController, for credentials: AuthenticatorCredentials, windowManager: WindowManager, onDismiss: @escaping () -> Void) -> Bool + func presentSignupEpilogue(in navigationController: UINavigationController, for credentials: AuthenticatorCredentials, service: SocialService?) + // WPAuthenticator style overrides var statusBarStyle: UIStatusBarStyle { get } var prologueViewController: UIViewController? { get } diff --git a/WordPress/Jetpack/Classes/JetpackAuthenticationManager.swift b/WordPress/Jetpack/Classes/JetpackAuthenticationManager.swift index 2b1f215d67a2..ffc2f49ee410 100644 --- a/WordPress/Jetpack/Classes/JetpackAuthenticationManager.swift +++ b/WordPress/Jetpack/Classes/JetpackAuthenticationManager.swift @@ -65,6 +65,14 @@ struct JetpackAuthenticationManager: AuthenticationHandler { return true } + // If the user signs up using the Jetpack app (through SIWA, for example) + // We show right away the screen explaining that they do not have Jetpack sites + func presentSignupEpilogue(in navigationController: UINavigationController, for credentials: AuthenticatorCredentials, service: SocialService?) { + let viewModel = JetpackNoSitesErrorViewModel() + let controller = errorViewController(with: viewModel) + navigationController.present(controller, animated: true) + } + // MARK: - Private: Helpers private func isValidJetpack(for site: WordPressComSiteInfo) -> Bool { return site.hasJetpack && From 62df99d749e4a616d4e321f12930a5daaedbcfd5 Mon Sep 17 00:00:00 2001 From: Leandro Alonso Date: Tue, 14 Dec 2021 15:31:44 -0300 Subject: [PATCH 12/16] Add: check if the authentication handler is present and call presentSignupEpilogue --- .../ViewRelated/NUX/WordPressAuthenticationManager.swift | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/WordPress/Classes/ViewRelated/NUX/WordPressAuthenticationManager.swift b/WordPress/Classes/ViewRelated/NUX/WordPressAuthenticationManager.swift index 8ce36d945ff7..995809c9b6ef 100644 --- a/WordPress/Classes/ViewRelated/NUX/WordPressAuthenticationManager.swift +++ b/WordPress/Classes/ViewRelated/NUX/WordPressAuthenticationManager.swift @@ -387,6 +387,11 @@ extension WordPressAuthenticationManager: WordPressAuthenticatorDelegate { /// Presents the Signup Epilogue, in the specified NavigationController. /// func presentSignupEpilogue(in navigationController: UINavigationController, for credentials: AuthenticatorCredentials, service: SocialService?) { + if let authenticationHandler = authenticationHandler { + authenticationHandler.presentSignupEpilogue(in: navigationController, for: credentials, service: service) + return + } + let storyboard = UIStoryboard(name: "SignupEpilogue", bundle: .main) guard let epilogueViewController = storyboard.instantiateInitialViewController() as? SignupEpilogueViewController else { fatalError() From 0be5ec0b0593a3e61e476e69953dfadd6628e4ec Mon Sep 17 00:00:00 2001 From: Leandro Alonso Date: Tue, 14 Dec 2021 16:14:19 -0300 Subject: [PATCH 13/16] refactor: display the no Jetpack screen using the windowManager --- .../Jetpack/Classes/JetpackAuthenticationManager.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/WordPress/Jetpack/Classes/JetpackAuthenticationManager.swift b/WordPress/Jetpack/Classes/JetpackAuthenticationManager.swift index ffc2f49ee410..6af076d90f42 100644 --- a/WordPress/Jetpack/Classes/JetpackAuthenticationManager.swift +++ b/WordPress/Jetpack/Classes/JetpackAuthenticationManager.swift @@ -68,9 +68,13 @@ struct JetpackAuthenticationManager: AuthenticationHandler { // If the user signs up using the Jetpack app (through SIWA, for example) // We show right away the screen explaining that they do not have Jetpack sites func presentSignupEpilogue(in navigationController: UINavigationController, for credentials: AuthenticatorCredentials, service: SocialService?) { + let windowManager = WordPressAppDelegate.shared?.windowManager + + windowManager?.dismissFullscreenSignIn() + let viewModel = JetpackNoSitesErrorViewModel() let controller = errorViewController(with: viewModel) - navigationController.present(controller, animated: true) + windowManager?.show(controller, completion: nil) } // MARK: - Private: Helpers From 1b1d01271a4b1a3061cf0b32bc747aabb1450732 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 21 Dec 2021 06:10:21 +0100 Subject: [PATCH 14/16] Update `Pluginfile` to use a fix release-toolkit version That's because of the `develop` to `trunk` rename. --- Gemfile.lock | 6 +++--- fastlane/Pluginfile | 9 ++++++++- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 9ce41658755c..9125bcb451a9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ GIT remote: git@github.com:wordpress-mobile/release-toolkit revision: 31187cfd1e671a6f686466066b9deb67f864358c - branch: develop + ref: 31187cfd1e671a6f686466066b9deb67f864358c specs: fastlane-plugin-wpmreleasetoolkit (2.2.0) activesupport (~> 5) @@ -188,7 +188,7 @@ GEM fourflusher (2.3.1) fuzzy_match (2.0.4) gh_inspector (1.1.3) - git (1.9.1) + git (1.10.0) rchardet (~> 1.8) google-apis-androidpublisher_v3 (0.14.0) google-apis-core (>= 0.4, < 2.a) @@ -353,4 +353,4 @@ DEPENDENCIES xcpretty-travis-formatter BUNDLED WITH - 2.2.31 + 2.2.32 diff --git a/fastlane/Pluginfile b/fastlane/Pluginfile index 872157c83264..da5a2cedff6c 100644 --- a/fastlane/Pluginfile +++ b/fastlane/Pluginfile @@ -8,7 +8,14 @@ end # gem 'fastlane-plugin-wpmreleasetoolkit', '~> 2.1' # This comment avoids typing to switch to a development version for testing. -gem 'fastlane-plugin-wpmreleasetoolkit', git: 'git@github.com:wordpress-mobile/release-toolkit', branch: 'develop' +# gem 'fastlane-plugin-wpmreleasetoolkit', git: 'git@github.com:wordpress-mobile/release-toolkit', branch: 'trunk' +# +# We are in a special scenario in which `Gemfile.lock` points to a commit on +# `develop`, but `develop` has been renamed into `trunk`. `trunk` has new +# commits on since the lockfile was generated so, instead of updating the line +# above to point to `trunk` and rebundling, I'm pointing to a specific commit +# here. +gem 'fastlane-plugin-wpmreleasetoolkit', git: 'git@github.com:wordpress-mobile/release-toolkit', ref: '31187cfd1e671a6f686466066b9deb67f864358c' gem 'fastlane-plugin-sentry' gem 'fastlane-plugin-appcenter', '~> 1.8' From 1b25b4742ebf9809403a53d5ff1929072b626452 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 21 Dec 2021 06:24:52 +0100 Subject: [PATCH 15/16] Update translations --- .../Resources/ar.lproj/Localizable.strings | 24 +++++++++---------- .../Resources/ro.lproj/Localizable.strings | 4 ++-- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/WordPress/Resources/ar.lproj/Localizable.strings b/WordPress/Resources/ar.lproj/Localizable.strings index 17ae92aba26f..08f24c265cfa 100644 --- a/WordPress/Resources/ar.lproj/Localizable.strings +++ b/WordPress/Resources/ar.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-12-17 11:23:58+0000 */ +/* Translation-Revision-Date: 2021-12-20 19: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 */ @@ -1016,7 +1016,7 @@ translators: Block name. %s: The localized block name */ "Bar Chart depicting visitors for your latest post" = "مخطط شريطي يصف للزائرين أحدث مقالة لك"; /* Title for button on the post details page when there are no comments. */ -"Be the first to comment" = "Be the first to comment"; +"Be the first to comment" = "كن أول من يعلق"; /* Message shown encouraging the user to leave a comment on a post in the reader. */ "Be the first to leave a comment." = "كن أول من يضع تعليقًا."; @@ -1605,7 +1605,7 @@ translators: Block name. %s: The localized block name */ "Comments" = "تعليقات"; /* Displayed on the post details page when there are no post comments and commenting is closed. */ -"Comments are closed" = "Comments are closed"; +"Comments are closed" = "التعليقات مغلقة"; /* Sentence fragment. The full phrase is 'Comments on' followed by the title of a post on a separate line. */ "Comments on" = "تعليقات على"; @@ -2345,7 +2345,7 @@ translators: Block name. %s: The localized block name */ "Do it again" = "القيام بذلك مرة أخرى"; /* Accessibility label for other media items in the media collection view. The parameter is the creation date of the document. */ -"Document, %@" = "Document, %@"; +"Document, %@" = "المستند، %@"; /* Accessibility label for other media items in the media collection view. The parameter is the filename file. */ "Document: %@" = "المستند: %@"; @@ -2473,10 +2473,10 @@ translators: Block name. %s: The localized block name */ "Double tap to select an image" = "الضغط المزدوج لتحديد صورة"; /* No comment provided by engineer. */ -"Double tap to select default font size" = "Double tap to select default font size"; +"Double tap to select default font size" = "الضغط المزدوج لتحديد حجم الخط الافتراضي"; /* No comment provided by engineer. */ -"Double tap to select font size" = "Double tap to select font size"; +"Double tap to select font size" = "الضغط المزدوج لتحديد حجم الخط"; /* translators: accessibility text (hint for selecting option) */ "Double tap to select the option" = "الضغط ضغطًا مزدوجًا لتحديد الخيار"; @@ -3191,7 +3191,7 @@ translators: Block name. %s: The localized block name */ "Follows the tag." = "يتابع الوسم."; /* No comment provided by engineer. */ -"Font Size" = "Font Size"; +"Font Size" = "حجم الخط"; /* An example tag used in the login prologue screens. */ "Football" = "كرة القدم"; @@ -3270,7 +3270,7 @@ translators: Block name. %s: The localized block name */ "Get started by choosing from a wide variety of pre-made page layouts. Or just start with a blank page." = "ابدأ بالاختيار من بين مجموعة متنوعة من تخطيطات صفحة معدة مسبقًا. أو ما عليك سوى البدء بصفحة فارغة."; /* No comment provided by engineer. */ -"Get support" = "Get support"; +"Get support" = "الحصول على الدعم"; /* Appended to latest post summary text when the post does not have data. */ "Get the ball rolling and increase your post views by sharing your post." = "ابدأ العمل وقم بزيادة مشاهدات مقالتك عن طريق مشاركة مقالتك."; @@ -4170,7 +4170,7 @@ translators: Block name. %s: The localized block name */ "Mark Unread" = "وسم كغير مقروء"; /* Marks comment as spam */ -"Mark as Spam" = "Mark as Spam"; +"Mark as Spam" = "وضع علامة مزعج"; /* Label for the Mark as Sticky option in post settings. */ "Mark as Sticky" = "وضع علامة كمُثبَّت"; @@ -4334,7 +4334,7 @@ translators: Block name. %s: The localized block name */ "More on WordPress.com" = "المزيد على WordPress.com"; /* No comment provided by engineer. */ -"More support options" = "More support options"; +"More support options" = "خيارات دعم إضافية"; /* Insights 'Most Popular Time' header */ "Most Popular Time" = "الوقت الأكثر شعبية"; @@ -6302,7 +6302,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Selected: %s" = "مُحدَّد: %s"; /* No comment provided by engineer. */ -"Selected: Default" = "Selected: Default"; +"Selected: Default" = "المحدَّد: الإعداد الافتراضي"; /* Menus alert message for alerting the user to unsaved changes while trying to select a different menu location. */ "Selecting a different menu location will discard changes you've made to the current menu. Are you sure you want to continue?" = "إن تحديد موقع قائمة مختلف سيتجاهل التغييرات التي قمت بإجرائها على القائمة الحالية. هل أنت متأكد من رغبتك في المتابعة؟"; @@ -7121,7 +7121,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "The app can't recognize the server response. Please, check the configuration of your site." = "لا يمكن للتطبيق التعرف على استجابة الخادم. يُرجى التحقق من تكوين موقعك."; /* No comment provided by engineer. */ -"The basics" = "The basics"; +"The basics" = "الأساسيات"; /* No comment provided by engineer. */ "The certificate for this server is invalid. You might be connecting to a server that is pretending to be “%@” which could put your confidential information at risk.\n\nWould you like to trust the certificate anyway?" = "شهادة هذا الخادم غير صالحة. قد تكون مرتبطًا بخادم يبدو "%@" والذي قد يجعل معلوماتك السرية في خطر.\n\nهل تريد أن تثق في الشهادة على أية حال؟"; diff --git a/WordPress/Resources/ro.lproj/Localizable.strings b/WordPress/Resources/ro.lproj/Localizable.strings index e5fc71d5a478..116e2e8b8bae 100644 --- a/WordPress/Resources/ro.lproj/Localizable.strings +++ b/WordPress/Resources/ro.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2021-12-16 20:03:21+0000 */ +/* Translation-Revision-Date: 2021-12-19 17:22:39+0000 */ /* Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2); */ /* Generator: GlotPress/3.0.0-alpha.2 */ /* Language: ro */ @@ -7235,7 +7235,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "There has been a problem while loading your Notification Settings" = "A apărut o problemă în timpul încărcării setărilor pentru notificări"; /* Error displayed if a comment fails to get updated */ -"There has been an unexpected error while editing the comment" = "There has been an unexpected error while editing the comment"; +"There has been an unexpected error while editing the comment" = "A fost o eroare neașteptată în timpul editării comentariului"; /* Error displayed if a comment fails to get updated */ "There has been an unexpected error while editing your comment" = "A fost o eroare neașteptată în timpul editării comentariului tău"; From efe1069059d6b880f4ca6d488a7a39069ec97a17 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 21 Dec 2021 06:25:15 +0100 Subject: [PATCH 16/16] 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 b1a7c774e60b..39c6e8fb9630 100644 --- a/config/Version.internal.xcconfig +++ b/config/Version.internal.xcconfig @@ -6,4 +6,4 @@ VERSION_SHORT=18.9 // build for the day so I bumped it to 10/02. On 10/04 we'll code freeze 18.4 // and this should be the very last build for 18.3, so we should be fine. // – Gio -VERSION_LONG=18.9.0.20211217 +VERSION_LONG=18.9.0.20211221 diff --git a/config/Version.public.xcconfig b/config/Version.public.xcconfig index 7bc66b34f40b..bdba72ae7089 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,4 +1,4 @@ VERSION_SHORT=18.9 // Public long version example: VERSION_LONG=9.9.0.0 -VERSION_LONG=18.9.0.1 +VERSION_LONG=18.9.0.2