From bd50f67fba11751162a1f6aa64cf44473dc48e71 Mon Sep 17 00:00:00 2001 From: Tony Li Date: Mon, 8 Jan 2024 17:22:26 +1300 Subject: [PATCH 01/28] Add a couple of unit tests to test PageTree --- WordPress/WordPressTest/PagesListTests.swift | 84 +++++++++++++++++++- 1 file changed, 80 insertions(+), 4 deletions(-) diff --git a/WordPress/WordPressTest/PagesListTests.swift b/WordPress/WordPressTest/PagesListTests.swift index a3a9e124d6b3..fa29567fce17 100644 --- a/WordPress/WordPressTest/PagesListTests.swift +++ b/WordPress/WordPressTest/PagesListTests.swift @@ -22,6 +22,11 @@ class PagesListTests: CoreDataTestCase { try makeAssertions(pages: pages) } + func testOneNestedListInReversedOrder() throws { + let pages = parentPage(childrenCount: 17, additionalLevels: 7).reversed() + try makeAssertions(pages: Array(pages)) + } + func testManyNestedLists() throws { let groups = [ parentPage(childrenCount: 5), @@ -108,6 +113,32 @@ class PagesListTests: CoreDataTestCase { try makeAssertions(pages: pages) } + func testDistantChildAndParentPages() throws { + let child = PageBuilder(mainContext).build() + child.postID = NSNumber(value: randomID.next()) + child.parentID = NSNumber(value: randomID.next()) + + let parent = PageBuilder(mainContext).build() + parent.postID = child.parentID + parent.parentID = 0 + + let manyPages = parentPage(childrenCount: 17, additionalLevels: 7) + + // Test 1: place the child page at the begining and the parent page at the end. + var sorted = try PageTree.hierarchyList(of: [child] + manyPages + [parent]) + XCTAssertEqual(parent.hierarchyIndex, 0) + XCTAssertEqual(child.hierarchyIndex, 1) + // The child page should follow the parent page in the sorted list + try XCTAssertEqual(XCTUnwrap(sorted.firstIndex(of: parent)) + 1, XCTUnwrap(sorted.firstIndex(of: child))) + + // Test 2: place the child page at the end and the parent page at the begining. + sorted = try PageTree.hierarchyList(of: [parent] + manyPages + [child]) + XCTAssertEqual(parent.hierarchyIndex, 0) + XCTAssertEqual(child.hierarchyIndex, 1) + // The child page should follow the parent page in the sorted list + try XCTAssertEqual(XCTUnwrap(sorted.firstIndex(of: parent)) + 1, XCTUnwrap(sorted.firstIndex(of: child))) + } + func testHierachyListRepresentationRoundtrip() throws { let roundtrip: (String) throws -> Void = { string in let pages = try Array(hierarchyListRepresentation: string, context: self.mainContext) @@ -175,10 +206,27 @@ class PagesListTests: CoreDataTestCase { _ = pages.sorted { ($0.postID?.int64Value ?? 0) < ($1.postID?.int64Value ?? 0) } NSLog("Array.sort took \(String(format: "%.3f", (CFAbsoluteTimeGetCurrent() - start) * 1000)) millisecond to process \(pages.count) pages") - let originalIDs = original.map { $0.postID! } - let newIDs = new.map { $0.postID! } - let diff = originalIDs.difference(from: newIDs).inferringMoves() - XCTAssertTrue(diff.count == 0, "Unexpected diff: \(diff)", file: file, line: line) + // Compare the two implementions to make sure their results are similar. The pages don'n't need to be in the exact same order, + // but each hierachy level should contain the same child pages in it. + + let originalList = HierachyList(pages: original) + let newList = HierachyList(pages: new) + + // They have the same hierachy level. + XCTAssertEqual(originalList.numberOfLevels, newList.numberOfLevels) + + // For each hierachy level, the same child pages are present in both results, without the need of being in the same order. + for level in 1...(originalList.numberOfLevels) { + let pagesAtLevelOriginal = originalList.pages(atLevel: level) + let pagesAtLevelNew = newList.pages(atLevel: level) + XCTAssertEqual(Set(pagesAtLevelOriginal.keys), Set(pagesAtLevelNew.keys), "The parent page ids in each level should be the same") + + for parentPageID in pagesAtLevelOriginal.keys { + let childrenPageIDsOriginal = try XCTUnwrap(pagesAtLevelOriginal[parentPageID]).map { $0.postID } + let childrenPageIDsNew = try XCTUnwrap(pagesAtLevelNew[parentPageID]).map { $0.postID } + XCTAssertEqual(Set(childrenPageIDsOriginal), Set(childrenPageIDsNew), "The children page ids in each level should be the same") + } + } } } @@ -252,3 +300,31 @@ private extension Array where Element == Page { self = pages } } + +private struct HierachyList { + let pages: [Page] + + var numberOfLevels: Int { + pages.map { $0.hierarchyIndex }.max()! + 1 + } + + func pages(atLevel level: Int) -> [NSNumber: [Page]] { + var result = [NSNumber: [Page]]() + for page in pages { + guard page.hierarchyIndex + 1 == level else { + continue + } + + let parentID = page.parentID ?? 0 + result[parentID, default: []].append(page) + } + return result + } + + func print() { + for page in pages { + Swift.print(String(repeating: " ", count: page.hierarchyIndex * 2), terminator: "|- ") + Swift.print("post id: \(page.postID!), parent id: \(page.parentID ?? 0)") + } + } +} From 3eb5573f278367fae1e63c1b58c6b70e40e36017 Mon Sep 17 00:00:00 2001 From: Tony Li Date: Mon, 8 Jan 2024 17:23:10 +1300 Subject: [PATCH 02/28] Fix #22283: child pages are not moved under parent pages --- WordPress/Classes/Utility/PageTree.swift | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/WordPress/Classes/Utility/PageTree.swift b/WordPress/Classes/Utility/PageTree.swift index ea0a58fa91b4..58239335b200 100644 --- a/WordPress/Classes/Utility/PageTree.swift +++ b/WordPress/Classes/Utility/PageTree.swift @@ -110,7 +110,6 @@ final class PageTree { /// This function assumes none of array elements already exists in the current page tree. func add(_ newPages: [Page]) { let newNodes = newPages.map { TreeNode(page: $0) } - relocateOrphans(to: newNodes) // First try to constrcuture a smaller subtree from the given pages, then move the new subtree to the existing // page tree (`self`). @@ -151,6 +150,8 @@ final class PageTree { } private func add(_ newNodes: [TreeNode]) { + relocateOrphans(to: newNodes) + newNodes.forEach { newNode in let parentID = newNode.pageData.parentID ?? 0 @@ -177,13 +178,17 @@ final class PageTree { /// Move all the nodes in the given argument to the current page tree. private func merge(subtree: PageTree) { - var parentIDs = subtree.nodes.reduce(into: Set()) { $0.insert($1.pageData.parentID ?? 0) } + let subtreeNodes = subtree.nodes + + relocateOrphans(to: subtreeNodes) + + var parentIDs = subtreeNodes.reduce(into: Set()) { $0.insert($1.pageData.parentID ?? 0) } // No need to look for root level parentIDs.remove(0) // Look up parent nodes upfront, to avoid repeated iteration for each node in `subtree`. let parentNodes = findNodes(postIDs: parentIDs) - subtree.nodes.forEach { newNode in + subtreeNodes.forEach { newNode in let parentID = newNode.pageData.parentID ?? 0 // If the new node is at the root level, then simply add it as a child From c7054965959a23ed2f099f03d834634c107f905f Mon Sep 17 00:00:00 2001 From: Tony Li Date: Mon, 8 Jan 2024 17:41:11 +1300 Subject: [PATCH 03/28] Add a release note --- RELEASE-NOTES.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index 18667bca6217..a7f725a3b929 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -17,6 +17,7 @@ * [*] Fix an issue with BlogDashboardPersonalizationService being used on the background thread [#22335] * [***] Block Editor: Avoid keyboard dismiss when interacting with text blocks [https://github.com/WordPress/gutenberg/pull/57070] * [**] Block Editor: Auto-scroll upon block insertion [https://github.com/WordPress/gutenberg/pull/57273] +* [**] Fix an issue in Pages List where the pages are not displayed in a hierarchical order [#22338] 23.9 ----- From 3839c2f583071933181e302d77e5c52cae1b28ff Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Mon, 8 Jan 2024 18:07:22 +1100 Subject: [PATCH 04/28] Fix typo in `HierarchyList` name --- WordPress/WordPressTest/PagesListTests.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/WordPress/WordPressTest/PagesListTests.swift b/WordPress/WordPressTest/PagesListTests.swift index fa29567fce17..2ded32394e72 100644 --- a/WordPress/WordPressTest/PagesListTests.swift +++ b/WordPress/WordPressTest/PagesListTests.swift @@ -139,7 +139,7 @@ class PagesListTests: CoreDataTestCase { try XCTAssertEqual(XCTUnwrap(sorted.firstIndex(of: parent)) + 1, XCTUnwrap(sorted.firstIndex(of: child))) } - func testHierachyListRepresentationRoundtrip() throws { + func testHierarchyListRepresentationRoundtrip() throws { let roundtrip: (String) throws -> Void = { string in let pages = try Array(hierarchyListRepresentation: string, context: self.mainContext) try XCTAssertEqual(PageTree.hierarchyList(of: pages).hierarchyListRepresentation(), string) @@ -209,8 +209,8 @@ class PagesListTests: CoreDataTestCase { // Compare the two implementions to make sure their results are similar. The pages don'n't need to be in the exact same order, // but each hierachy level should contain the same child pages in it. - let originalList = HierachyList(pages: original) - let newList = HierachyList(pages: new) + let originalList = HierarchyList(pages: original) + let newList = HierarchyList(pages: new) // They have the same hierachy level. XCTAssertEqual(originalList.numberOfLevels, newList.numberOfLevels) @@ -301,7 +301,7 @@ private extension Array where Element == Page { } } -private struct HierachyList { +private struct HierarchyList { let pages: [Page] var numberOfLevels: Int { From 8aa107401da8ccfbcdf3fb2f5172603dbbf6662e Mon Sep 17 00:00:00 2001 From: Salim Braksa Date: Tue, 2 Jan 2024 23:46:28 +0100 Subject: [PATCH 05/28] Remove remote feature flag dynamic card attribute and all the code related to it --- .../Blog Dashboard/Models/DashboardCard.swift | 17 ++--------------- .../Service/BlogDashboardRemoteEntity.swift | 2 -- .../Service/BlogDashboardService.swift | 7 +------ ...shboard-200-with-multiple-dynamic-cards.json | 3 --- ...ashboard-200-with-only-one-dynamic-card.json | 1 - 5 files changed, 3 insertions(+), 27 deletions(-) diff --git a/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Models/DashboardCard.swift b/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Models/DashboardCard.swift index 1068063e1ab6..b349e248bb95 100644 --- a/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Models/DashboardCard.swift +++ b/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Models/DashboardCard.swift @@ -147,21 +147,8 @@ enum DashboardCard: String, CaseIterable { } } - static func shouldShowDynamicCard( - for blog: Blog, - payload: DashboardDynamicCardModel.Payload, - remoteFeatureFlagStore: RemoteFeatureFlagStore, - isJetpack: Bool = AppConfiguration.isJetpack - ) -> Bool { - let remoteFeatureFlagEnabled = { - guard let key = payload.remoteFeatureFlag else { - return true - } - return remoteFeatureFlagStore.value(for: key) ?? false - }() - return isJetpack - && RemoteDashboardCard.dynamic.supported(by: blog) - && remoteFeatureFlagEnabled + static func shouldShowDynamicCard(for blog: Blog, isJetpack: Bool = AppConfiguration.isJetpack) -> Bool { + isJetpack && RemoteDashboardCard.dynamic.supported(by: blog) } private func shouldShowRemoteCard(apiResponse: BlogDashboardRemoteEntity?) -> Bool { diff --git a/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardRemoteEntity.swift b/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardRemoteEntity.swift index 864184d32edb..3adc0af744b9 100644 --- a/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardRemoteEntity.swift +++ b/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardRemoteEntity.swift @@ -57,7 +57,6 @@ extension BlogDashboardRemoteEntity { struct BlogDashboardDynamic: Decodable, Hashable { let id: String - let remoteFeatureFlag: String? let title: String? let featuredImage: String? let url: String? @@ -79,7 +78,6 @@ extension BlogDashboardRemoteEntity { private enum CodingKeys: String, CodingKey { case id case title - case remoteFeatureFlag = "remote_feature_flag" case featuredImage = "featured_image" case url case action diff --git a/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardService.swift b/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardService.swift index a60b58666451..8337eaf973e5 100644 --- a/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardService.swift +++ b/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardService.swift @@ -7,7 +7,6 @@ final class BlogDashboardService { private let persistence: BlogDashboardPersistence private let postsParser: BlogDashboardPostsParser private let repository: UserPersistentRepository - private let remoteFeatureFlagStore: RemoteFeatureFlagStore private let isJetpack: Bool private let isDotComAvailable: Bool private let shouldShowJetpackFeatures: Bool @@ -20,8 +19,7 @@ final class BlogDashboardService { remoteService: DashboardServiceRemote? = nil, persistence: BlogDashboardPersistence = BlogDashboardPersistence(), repository: UserPersistentRepository = UserDefaults.standard, - postsParser: BlogDashboardPostsParser? = nil, - remoteFeatureFlagStore: RemoteFeatureFlagStore = .init() + postsParser: BlogDashboardPostsParser? = nil ) { self.isJetpack = isJetpack self.isDotComAvailable = isDotComAvailable @@ -30,7 +28,6 @@ final class BlogDashboardService { self.persistence = persistence self.repository = repository self.postsParser = postsParser ?? BlogDashboardPostsParser(managedObjectContext: managedObjectContext) - self.remoteFeatureFlagStore = remoteFeatureFlagStore } /// Fetch cards from remote @@ -187,8 +184,6 @@ private extension BlogDashboardService { let model = DashboardDynamicCardModel(payload: payload, dotComID: dotComID) let shouldShow = DashboardCard.shouldShowDynamicCard( for: blog, - payload: payload, - remoteFeatureFlagStore: remoteFeatureFlagStore, isJetpack: isJetpack ) guard shouldShow, personalizationService.isEnabled(model) else { diff --git a/WordPress/WordPressTest/Test Data/Dashboard/dashboard-200-with-multiple-dynamic-cards.json b/WordPress/WordPressTest/Test Data/Dashboard/dashboard-200-with-multiple-dynamic-cards.json index 51800bfc5d63..ac08a9ac021e 100644 --- a/WordPress/WordPressTest/Test Data/Dashboard/dashboard-200-with-multiple-dynamic-cards.json +++ b/WordPress/WordPressTest/Test Data/Dashboard/dashboard-200-with-multiple-dynamic-cards.json @@ -3,7 +3,6 @@ { "id": "id_12345", "title": "Title 12345", - "remote_feature_flag": "feature_flag_12345", "featured_image": "https://example.com/image12345", "url": "https://example.com/url12345", "action": "Action 12345", @@ -24,7 +23,6 @@ { "id": "id_67890", "title": "Title 67890", - "remote_feature_flag": "feature_flag_67890", "featured_image": "https://example.com/image67890", "url": "https://example.com/url67890", "action": "Action 67890", @@ -45,7 +43,6 @@ { "id": "id_13579", "title": "Title 13579", - "remote_feature_flag": "feature_flag_13579", "featured_image": "https://example.com/image13579", "url": "https://example.com/url13579", "action": "Action 13579", diff --git a/WordPress/WordPressTest/Test Data/Dashboard/dashboard-200-with-only-one-dynamic-card.json b/WordPress/WordPressTest/Test Data/Dashboard/dashboard-200-with-only-one-dynamic-card.json index 88e239b41588..bac329cfc092 100644 --- a/WordPress/WordPressTest/Test Data/Dashboard/dashboard-200-with-only-one-dynamic-card.json +++ b/WordPress/WordPressTest/Test Data/Dashboard/dashboard-200-with-only-one-dynamic-card.json @@ -3,7 +3,6 @@ { "id": "id_12345", "title": "Title 12345", - "remote_feature_flag": "feature_flag_12345", "featured_image": "https://example.com/image12345", "url": "https://example.com/url12345", "action": "Action 12345", From 798e9442b22b612861f9f81810226eb3f2bb84a2 Mon Sep 17 00:00:00 2001 From: Salim Braksa Date: Wed, 3 Jan 2024 00:11:03 +0100 Subject: [PATCH 06/28] Fix failing dynamic cards unit tests --- .../Dashboard/BlogDashboardServiceTests.swift | 31 ++----------------- ...DashboardDynamicCardCoordinatorTests.swift | 1 - 2 files changed, 3 insertions(+), 29 deletions(-) diff --git a/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift b/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift index fa82e6b4eea2..c9c981dc1f29 100644 --- a/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift +++ b/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift @@ -11,7 +11,6 @@ class BlogDashboardServiceTests: CoreDataTestCase { private var persistenceMock: BlogDashboardPersistenceMock! private var repositoryMock: InMemoryUserDefaults! private var postsParserMock: BlogDashboardPostsParserMock! - private var remoteFeatureFlagStore: RemoteFeatureFlagStoreMock! private let featureFlags = FeatureFlagOverrideStore() private let wpComID = 123456 @@ -28,7 +27,6 @@ class BlogDashboardServiceTests: CoreDataTestCase { persistenceMock = BlogDashboardPersistenceMock() repositoryMock = InMemoryUserDefaults() postsParserMock = BlogDashboardPostsParserMock(managedObjectContext: mainContext) - remoteFeatureFlagStore = RemoteFeatureFlagStoreMock() service = BlogDashboardService( managedObjectContext: mainContext, // Notice these three boolean make the test run as if the app was Jetpack. @@ -43,8 +41,7 @@ class BlogDashboardServiceTests: CoreDataTestCase { remoteService: remoteServiceMock, persistence: persistenceMock, repository: repositoryMock, - postsParser: postsParserMock, - remoteFeatureFlagStore: remoteFeatureFlagStore + postsParser: postsParserMock ) // The state of the world these tests assume relies on certain feature flags. @@ -413,10 +410,9 @@ class BlogDashboardServiceTests: CoreDataTestCase { // MARK: - Dynamic Cards - func testCardsPresenceWhenAllCardsFeatureFlagsAreEnabled() throws { + func testCardsPresenceWhenFeatureFlagIsEnabled() throws { let expect = expectation(description: "2 dynamic cards at the top and one at the bottom should be present") remoteServiceMock.respondWith = .withMultipleDynamicCards - remoteFeatureFlagStore.enabledFeatureFlags = ["feature_flag_12345", "feature_flag_67890", "feature_flag_13579"] let blog = newTestBlog(id: wpComID, context: mainContext) @@ -430,28 +426,9 @@ class BlogDashboardServiceTests: CoreDataTestCase { waitForExpectations(timeout: 3, handler: nil) } - func testCardsPresenceWhenSomeCardsFeatureFlagsAreEnabled() throws { - let expect = expectation(description: "2 dynamic cards at the top and one at the bottom should be present") - remoteServiceMock.respondWith = .withMultipleDynamicCards - remoteFeatureFlagStore.enabledFeatureFlags = ["feature_flag_12345"] - remoteFeatureFlagStore.disabledFeatureFlag = ["feature_flag_67890"] - - let blog = newTestBlog(id: wpComID, context: mainContext) - - service.fetch(blog: blog) { cards in - let numberOfDynamicCards = cards.compactMap { $0.dynamic() }.count - XCTAssertEqual(numberOfDynamicCards, 1) - XCTAssertEqual(cards[0].dynamic()?.payload.id, "id_12345") - expect.fulfill() - } - - waitForExpectations(timeout: 3, handler: nil) - } - - func testCardsAbsenceWhenRemoteFeatureFlagIsDisabled() throws { + func testCardsAbsenceWhenFeatureFlagIsDisabled() throws { let expect = expectation(description: "No dynamic card should be present") remoteServiceMock.respondWith = .withMultipleDynamicCards - remoteFeatureFlagStore.enabledFeatureFlags = ["feature_flag_12345", "feature_flag_67890", "feature_flag_13579"] try featureFlags.override(RemoteFeatureFlag.dynamicDashboardCards, withValue: false) let blog = newTestBlog(id: wpComID, context: mainContext) @@ -468,7 +445,6 @@ class BlogDashboardServiceTests: CoreDataTestCase { func testDecodingWithDynamicCards() throws { let expect = expectation(description: "Dynamic card should be successfully decoded") remoteServiceMock.respondWith = .withOnlyOneDynamicCard - remoteFeatureFlagStore.enabledFeatureFlags = ["feature_flag_12345"] try featureFlags.override(RemoteFeatureFlag.dynamicDashboardCards, withValue: true) let blog = newTestBlog(id: wpComID, context: mainContext) @@ -479,7 +455,6 @@ class BlogDashboardServiceTests: CoreDataTestCase { let payload = card.payload let expected = BlogDashboardRemoteEntity.BlogDashboardDynamic( id: "id_12345", - remoteFeatureFlag: "feature_flag_12345", title: "Title 12345", featuredImage: "https://example.com/image12345", url: "https://example.com/url12345", diff --git a/WordPress/WordPressTest/Dashboard/Dynamic Cards/BlogDashboardDynamicCardCoordinatorTests.swift b/WordPress/WordPressTest/Dashboard/Dynamic Cards/BlogDashboardDynamicCardCoordinatorTests.swift index 8895ac9aadb6..08916d578e08 100644 --- a/WordPress/WordPressTest/Dashboard/Dynamic Cards/BlogDashboardDynamicCardCoordinatorTests.swift +++ b/WordPress/WordPressTest/Dashboard/Dynamic Cards/BlogDashboardDynamicCardCoordinatorTests.swift @@ -156,7 +156,6 @@ final class BlogDashboardDynamicCardCoordinatorTests: XCTestCase { ) -> BlogDashboardDynamicCardCoordinator { let payload = DashboardDynamicCardModel.Payload( id: id, - remoteFeatureFlag: "default", title: "Domain Management", featuredImage: "https://wordpress.com", url: url, From 674dddfb8cb0e86f8077a47c2a967feff79427db Mon Sep 17 00:00:00 2001 From: Salim Braksa Date: Wed, 3 Jan 2024 19:07:42 +0100 Subject: [PATCH 07/28] Pass devide id when calling dashboard cards endpoint --- Podfile | 6 ++--- .../Stores/RemoteFeatureFlagStore.swift | 26 +++++++++---------- .../Service/BlogDashboardService.swift | 8 ++++-- .../Dashboard/BlogDashboardServiceTests.swift | 17 ++++++++++-- .../RemoteFeatureFlagStoreMock.swift | 4 ++- 5 files changed, 40 insertions(+), 21 deletions(-) diff --git a/Podfile b/Podfile index f8e73a0cc86c..1eeaf33e0c23 100644 --- a/Podfile +++ b/Podfile @@ -51,11 +51,11 @@ end def wordpress_kit # Anything compatible with 8.9, starting from 8.9.1 which has a breaking change fix - pod 'WordPressKit', '~> 9.0', '>= 9.0.2' - # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: '' + # pod 'WordPressKit', '~> 9.0' + # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: '32b5a9fdd097b82934a5ce679c915a1fc3f21848' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: 'trunk' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: '' - # pod 'WordPressKit', path: '../WordPressKit-iOS' + pod 'WordPressKit', path: '../WordPressKit-iOS' end def kanvas diff --git a/WordPress/Classes/Stores/RemoteFeatureFlagStore.swift b/WordPress/Classes/Stores/RemoteFeatureFlagStore.swift index f1484ca9ba19..dc41c17d7087 100644 --- a/WordPress/Classes/Stores/RemoteFeatureFlagStore.swift +++ b/WordPress/Classes/Stores/RemoteFeatureFlagStore.swift @@ -17,6 +17,19 @@ class RemoteFeatureFlagStore { return queue }() + /// The `deviceID` ensures we retain a stable set of Feature Flags between updates. If there are staged rollouts or other dynamic changes + /// happening server-side we don't want out flags to change on each fetch, so we provide an anonymous ID to manage this. + public var deviceID: String { + guard let deviceID = persistenceStore.string(forKey: Constants.DeviceIdKey) else { + DDLogInfo("🚩 Unable to find existing device ID – generating a new one") + let newID = UUID().uuidString + persistenceStore.set(newID, forKey: Constants.DeviceIdKey) + return newID + } + + return deviceID + } + init(queue: DispatchQueue = .remoteFeatureFlagStoreQueue, persistenceStore: UserPersistentRepository = UserDefaults.standard) { self.queue = queue @@ -63,19 +76,6 @@ extension RemoteFeatureFlagStore { typealias FetchCallback = () -> Void - /// The `deviceID` ensures we retain a stable set of Feature Flags between updates. If there are staged rollouts or other dynamic changes - /// happening server-side we don't want out flags to change on each fetch, so we provide an anonymous ID to manage this. - private var deviceID: String { - guard let deviceID = persistenceStore.string(forKey: Constants.DeviceIdKey) else { - DDLogInfo("🚩 Unable to find existing device ID – generating a new one") - let newID = UUID().uuidString - persistenceStore.set(newID, forKey: Constants.DeviceIdKey) - return newID - } - - return deviceID - } - /// The local cache stores feature flags between runs so that the most recently fetched set are ready to go as soon as this object is instantiated. private var cache: [String: Bool] { get { diff --git a/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardService.swift b/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardService.swift index 8337eaf973e5..141056448f91 100644 --- a/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardService.swift +++ b/WordPress/Classes/ViewRelated/Blog/Blog Dashboard/Service/BlogDashboardService.swift @@ -10,6 +10,7 @@ final class BlogDashboardService { private let isJetpack: Bool private let isDotComAvailable: Bool private let shouldShowJetpackFeatures: Bool + private let remoteFeatureFlagStore: RemoteFeatureFlagStore init( managedObjectContext: NSManagedObjectContext, @@ -19,7 +20,8 @@ final class BlogDashboardService { remoteService: DashboardServiceRemote? = nil, persistence: BlogDashboardPersistence = BlogDashboardPersistence(), repository: UserPersistentRepository = UserDefaults.standard, - postsParser: BlogDashboardPostsParser? = nil + postsParser: BlogDashboardPostsParser? = nil, + remoteFeatureFlagStore: RemoteFeatureFlagStore = .init() ) { self.isJetpack = isJetpack self.isDotComAvailable = isDotComAvailable @@ -28,6 +30,7 @@ final class BlogDashboardService { self.persistence = persistence self.repository = repository self.postsParser = postsParser ?? BlogDashboardPostsParser(managedObjectContext: managedObjectContext) + self.remoteFeatureFlagStore = remoteFeatureFlagStore } /// Fetch cards from remote @@ -39,8 +42,9 @@ final class BlogDashboardService { } let cardsToFetch: [String] = DashboardCard.RemoteDashboardCard.allCases.filter {$0.supported(by: blog)}.map { $0.rawValue } + let deviceID = remoteFeatureFlagStore.deviceID - remoteService.fetch(cards: cardsToFetch, forBlogID: dotComID, success: { [weak self] cardsDictionary in + remoteService.fetch(cards: cardsToFetch, forBlogID: dotComID, deviceId: deviceID, success: { [weak self] cardsDictionary in guard let cardsDictionary = self?.parseCardsForLocalContent(cardsDictionary, blog: blog) else { failure?([]) diff --git a/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift b/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift index c9c981dc1f29..02bdd94dfbbf 100644 --- a/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift +++ b/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift @@ -11,6 +11,8 @@ class BlogDashboardServiceTests: CoreDataTestCase { private var persistenceMock: BlogDashboardPersistenceMock! private var repositoryMock: InMemoryUserDefaults! private var postsParserMock: BlogDashboardPostsParserMock! + private var remoteFeatureFlagStore: RemoteFeatureFlagStoreMock! + private let featureFlags = FeatureFlagOverrideStore() private let wpComID = 123456 @@ -27,6 +29,7 @@ class BlogDashboardServiceTests: CoreDataTestCase { persistenceMock = BlogDashboardPersistenceMock() repositoryMock = InMemoryUserDefaults() postsParserMock = BlogDashboardPostsParserMock(managedObjectContext: mainContext) + remoteFeatureFlagStore = RemoteFeatureFlagStoreMock() service = BlogDashboardService( managedObjectContext: mainContext, // Notice these three boolean make the test run as if the app was Jetpack. @@ -41,7 +44,8 @@ class BlogDashboardServiceTests: CoreDataTestCase { remoteService: remoteServiceMock, persistence: persistenceMock, repository: repositoryMock, - postsParser: postsParserMock + postsParser: postsParserMock, + remoteFeatureFlagStore: remoteFeatureFlagStore ) // The state of the world these tests assume relies on certain feature flags. @@ -74,6 +78,7 @@ class BlogDashboardServiceTests: CoreDataTestCase { service.fetch(blog: blog) { _ in XCTAssertEqual(self.remoteServiceMock.didCallWithBlogID, self.wpComID) + XCTAssertEqual(self.remoteServiceMock.didCallWithDeviceId, "Test") XCTAssertEqual(self.remoteServiceMock.didRequestCards, ["todays_stats", "posts", "pages", "activity", "dynamic"]) expect.fulfill() } @@ -521,11 +526,19 @@ class DashboardServiceRemoteMock: DashboardServiceRemote { var respondWith: Response = .withDraftAndSchedulePosts var didCallWithBlogID: Int? + var didCallWithDeviceId: String? var didRequestCards: [String]? - override func fetch(cards: [String], forBlogID blogID: Int, success: @escaping (NSDictionary) -> Void, failure: @escaping (Error) -> Void) { + override func fetch( + cards: [String], + forBlogID blogID: Int, + deviceId: String, + success: @escaping (NSDictionary) -> Void, + failure: @escaping (Error) -> Void + ) { didCallWithBlogID = blogID didRequestCards = cards + didCallWithDeviceId = deviceId if let fileURL: URL = Bundle(for: BlogDashboardServiceTests.self).url(forResource: respondWith.rawValue, withExtension: nil), let data: Data = try? Data(contentsOf: fileURL), diff --git a/WordPress/WordPressTest/RemoteFeatureFlagStoreMock.swift b/WordPress/WordPressTest/RemoteFeatureFlagStoreMock.swift index 2cb63959fd14..3d85f211706e 100644 --- a/WordPress/WordPressTest/RemoteFeatureFlagStoreMock.swift +++ b/WordPress/WordPressTest/RemoteFeatureFlagStoreMock.swift @@ -14,7 +14,9 @@ class RemoteFeatureFlagStoreMock: RemoteFeatureFlagStore { var enabledFeatureFlags = Set() var disabledFeatureFlag = Set() - // MARK: - Access Remote Feature Flag Value + override var deviceID: String { + return "Test" + } override func value(for flagKey: String) -> Bool? { if enabledFeatureFlags.contains(flagKey) { From af78c4ba942a39923e4b8c73114f15368a0347e3 Mon Sep 17 00:00:00 2001 From: Salim Braksa Date: Wed, 3 Jan 2024 19:09:44 +0100 Subject: [PATCH 08/28] Change WordPressKit pod branch --- Podfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Podfile b/Podfile index 1eeaf33e0c23..bfcc4ab66ec1 100644 --- a/Podfile +++ b/Podfile @@ -53,9 +53,9 @@ def wordpress_kit # Anything compatible with 8.9, starting from 8.9.1 which has a breaking change fix # pod 'WordPressKit', '~> 9.0' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: '32b5a9fdd097b82934a5ce679c915a1fc3f21848' - # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: 'trunk' + pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: 'task/22315-backend-driven-dynamic-cards-filtering' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: '' - pod 'WordPressKit', path: '../WordPressKit-iOS' + # pod 'WordPressKit', path: '../WordPressKit-iOS' end def kanvas From 14cc431a77f48ecca6c52be22021fecabeb3bce2 Mon Sep 17 00:00:00 2001 From: Salim Braksa Date: Fri, 5 Jan 2024 18:25:58 +0100 Subject: [PATCH 09/28] Fix typo in documentation --- Podfile | 2 +- WordPress/Classes/Stores/RemoteFeatureFlagStore.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Podfile b/Podfile index bfcc4ab66ec1..2706a0ee36a5 100644 --- a/Podfile +++ b/Podfile @@ -53,7 +53,7 @@ def wordpress_kit # Anything compatible with 8.9, starting from 8.9.1 which has a breaking change fix # pod 'WordPressKit', '~> 9.0' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: '32b5a9fdd097b82934a5ce679c915a1fc3f21848' - pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: 'task/22315-backend-driven-dynamic-cards-filtering' + pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: 'trunk' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: '' # pod 'WordPressKit', path: '../WordPressKit-iOS' end diff --git a/WordPress/Classes/Stores/RemoteFeatureFlagStore.swift b/WordPress/Classes/Stores/RemoteFeatureFlagStore.swift index dc41c17d7087..4091b29a6e19 100644 --- a/WordPress/Classes/Stores/RemoteFeatureFlagStore.swift +++ b/WordPress/Classes/Stores/RemoteFeatureFlagStore.swift @@ -18,7 +18,7 @@ class RemoteFeatureFlagStore { }() /// The `deviceID` ensures we retain a stable set of Feature Flags between updates. If there are staged rollouts or other dynamic changes - /// happening server-side we don't want out flags to change on each fetch, so we provide an anonymous ID to manage this. + /// happening server-side we don't want our flags to change on each fetch, so we provide an anonymous ID to manage this. public var deviceID: String { guard let deviceID = persistenceStore.string(forKey: Constants.DeviceIdKey) else { DDLogInfo("🚩 Unable to find existing device ID – generating a new one") From 1331bbce7cefbe0eb47eb65ba0ef3f45a30931ad Mon Sep 17 00:00:00 2001 From: Hassaan El-Garem Date: Sun, 7 Jan 2024 16:18:16 +0200 Subject: [PATCH 10/28] Update: point WPKit to latest trunk commit --- Podfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Podfile b/Podfile index 2706a0ee36a5..76c50f179f1f 100644 --- a/Podfile +++ b/Podfile @@ -52,8 +52,8 @@ end def wordpress_kit # Anything compatible with 8.9, starting from 8.9.1 which has a breaking change fix # pod 'WordPressKit', '~> 9.0' - # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: '32b5a9fdd097b82934a5ce679c915a1fc3f21848' - pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: 'trunk' + pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: '87eba2549022571515f256667ce209e6604ea0e0' + # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: '' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: '' # pod 'WordPressKit', path: '../WordPressKit-iOS' end From 89c4de9b22a7b9c596f9c93911eb76ce080562b0 Mon Sep 17 00:00:00 2001 From: Salim Braksa Date: Mon, 8 Jan 2024 12:47:21 +0100 Subject: [PATCH 11/28] Rebase with release/24.0 --- Podfile.lock | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Podfile.lock b/Podfile.lock index daab523c6c77..7c36c7bfd54b 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -70,7 +70,7 @@ PODS: - WordPressKit (~> 9.0.0) - WordPressShared (~> 2.1-beta) - WordPressUI (~> 1.7-beta) - - WordPressKit (9.0.2): + - WordPressKit (9.0.1): - Alamofire (~> 4.8.0) - NSObject-SafeExpectations (~> 0.0.4) - UIDeviceIdentifier (~> 2.0) @@ -121,7 +121,7 @@ DEPENDENCIES: - SwiftLint (~> 0.50) - WordPress-Editor-iOS (~> 1.19.9) - WordPressAuthenticator (>= 8.0.1, ~> 8.0) - - WordPressKit (>= 9.0.2, ~> 9.0) + - WordPressKit (from `https://github.com/wordpress-mobile/WordPressKit-iOS.git`, commit `87eba2549022571515f256667ce209e6604ea0e0`) - WordPressShared (~> 2.2) - WordPressUI (~> 1.15) - ZendeskSupportSDK (= 5.3.0) @@ -158,7 +158,6 @@ SPEC REPOS: - UIDeviceIdentifier - WordPress-Aztec-iOS - WordPress-Editor-iOS - - WordPressKit - WordPressShared - WordPressUI - wpxmlrpc @@ -177,6 +176,9 @@ EXTERNAL SOURCES: :tag: 0.2.0 Gutenberg: :podspec: https://cdn.a8c-ci.services/gutenberg-mobile/Gutenberg-v1.110.0.podspec + WordPressKit: + :commit: 87eba2549022571515f256667ce209e6604ea0e0 + :git: https://github.com/wordpress-mobile/WordPressKit-iOS.git CHECKOUT OPTIONS: FSInteractiveMap: @@ -186,6 +188,9 @@ CHECKOUT OPTIONS: :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true :tag: v1.100.2 + WordPressKit: + :commit: 87eba2549022571515f256667ce209e6604ea0e0 + :git: https://github.com/wordpress-mobile/WordPressKit-iOS.git SPEC CHECKSUMS: Alamofire: 3ec537f71edc9804815215393ae2b1a8ea33a844 @@ -218,7 +223,7 @@ SPEC CHECKSUMS: WordPress-Aztec-iOS: fbebd569c61baa252b3f5058c0a2a9a6ada686bb WordPress-Editor-iOS: bda9f7f942212589b890329a0cb22547311749ef WordPressAuthenticator: fd2e1d340680faffffd9d675fc2df5ed19e26ea2 - WordPressKit: 23d0ffb43f2ccdad2debd6799e62d39790a5ffad + WordPressKit: 304725187d755db8d5ff73a58d27eda0071771c1 WordPressShared: 87f3ee89b0a3e83106106f13a8b71605fb8eb6d2 WordPressUI: a491454affda3b0fb812812e637dc5e8f8f6bd06 wpxmlrpc: 68db063041e85d186db21f674adf08d9c70627fd @@ -231,6 +236,6 @@ SPEC CHECKSUMS: ZendeskSupportSDK: 3a8e508ab1d9dd22dc038df6c694466414e037ba ZIPFoundation: d170fa8e270b2a32bef9dcdcabff5b8f1a5deced -PODFILE CHECKSUM: 9567ce349333fd257fea44c201727b4180efb961 +PODFILE CHECKSUM: 14202243a91bedd4a83e4a73959ea3b28dc82ee6 COCOAPODS: 1.14.2 From 2167ff2c21474ecc366564b91864830dfa349b73 Mon Sep 17 00:00:00 2001 From: Salim Braksa Date: Mon, 8 Jan 2024 12:52:47 +0100 Subject: [PATCH 12/28] Revert unwanted changes due to rebase --- Podfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Podfile b/Podfile index 76c50f179f1f..d21df2c7ebce 100644 --- a/Podfile +++ b/Podfile @@ -51,9 +51,9 @@ end def wordpress_kit # Anything compatible with 8.9, starting from 8.9.1 which has a breaking change fix - # pod 'WordPressKit', '~> 9.0' + # pod 'WordPressKit', '~> 9.0', '>= 9.0.2' pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: '87eba2549022571515f256667ce209e6604ea0e0' - # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: '' + # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: 'trunk' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: '' # pod 'WordPressKit', path: '../WordPressKit-iOS' end From 9227f0ce82271995c2afce3787840e58467254cc Mon Sep 17 00:00:00 2001 From: Salim Braksa Date: Mon, 8 Jan 2024 13:02:49 +0100 Subject: [PATCH 13/28] Run bundle exec pod install --- Podfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Podfile.lock b/Podfile.lock index 7c36c7bfd54b..086f2a30c290 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -236,6 +236,6 @@ SPEC CHECKSUMS: ZendeskSupportSDK: 3a8e508ab1d9dd22dc038df6c694466414e037ba ZIPFoundation: d170fa8e270b2a32bef9dcdcabff5b8f1a5deced -PODFILE CHECKSUM: 14202243a91bedd4a83e4a73959ea3b28dc82ee6 +PODFILE CHECKSUM: d3b259c9bf3b4aa64a7b7f2bc5909a0baeb6e1be COCOAPODS: 1.14.2 From 71873232b685137e4fdc29f7364e051d95dab267 Mon Sep 17 00:00:00 2001 From: Momo Ozawa Date: Mon, 8 Jan 2024 16:45:42 +0000 Subject: [PATCH 14/28] enable new tab icons --- WordPress/Classes/Utility/BuildInformation/FeatureFlag.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WordPress/Classes/Utility/BuildInformation/FeatureFlag.swift b/WordPress/Classes/Utility/BuildInformation/FeatureFlag.swift index 8e5336fa6f94..ce9999a2ee6c 100644 --- a/WordPress/Classes/Utility/BuildInformation/FeatureFlag.swift +++ b/WordPress/Classes/Utility/BuildInformation/FeatureFlag.swift @@ -39,7 +39,7 @@ enum FeatureFlag: Int, CaseIterable { case .googleDomainsCard: return false case .newTabIcons: - return BuildConfiguration.current == .localDeveloper + return true } } From 7efa1d7b5cd57219727625f9b42544a57860fae2 Mon Sep 17 00:00:00 2001 From: Momo Ozawa Date: Mon, 8 Jan 2024 16:57:29 +0000 Subject: [PATCH 15/28] find the imageview to animate --- .../ViewRelated/System/WPTabBarController+Swift.swift | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/WordPress/Classes/ViewRelated/System/WPTabBarController+Swift.swift b/WordPress/Classes/ViewRelated/System/WPTabBarController+Swift.swift index a6becc8df5a2..98d2a9e5e4eb 100644 --- a/WordPress/Classes/ViewRelated/System/WPTabBarController+Swift.swift +++ b/WordPress/Classes/ViewRelated/System/WPTabBarController+Swift.swift @@ -109,8 +109,13 @@ extension WPTabBarController { @objc func animateSelectedItem(_ item: UITabBarItem, for tabBar: UITabBar) { - guard let index = tabBar.items?.firstIndex(of: item), tabBar.subviews.count > index + 1, - let imageView = tabBar.subviews[index + 1].subviews.last as? UIImageView else { + guard let index = tabBar.items?.firstIndex(of: item), tabBar.subviews.count > index + 1 else { + return + } + + let button = tabBar.subviews[(index + 1)] + + guard let imageView = button.subviews.lazy.compactMap({ $0 as? UIImageView }).first else { return } From 7a834f08ed5fe16db20aa9b32d6fc98a1e6a0624 Mon Sep 17 00:00:00 2001 From: Tony Li Date: Tue, 9 Jan 2024 11:00:09 +1300 Subject: [PATCH 16/28] Simpilify building page tree hierarchy --- WordPress/Classes/Utility/PageTree.swift | 235 ++++------------------- 1 file changed, 33 insertions(+), 202 deletions(-) diff --git a/WordPress/Classes/Utility/PageTree.swift b/WordPress/Classes/Utility/PageTree.swift index 58239335b200..1c92e1613480 100644 --- a/WordPress/Classes/Utility/PageTree.swift +++ b/WordPress/Classes/Utility/PageTree.swift @@ -6,28 +6,18 @@ final class PageTree { var postID: NSNumber? var parentID: NSNumber? } - let pageID: TaggedManagedObjectID - let pageData: PageData + let page: Page var children = [TreeNode]() var parentNode: TreeNode? - init(page: Page, children: [TreeNode] = [], parentNode: TreeNode? = nil) { - self.pageID = TaggedManagedObjectID(page) - self.pageData = PageData(postID: page.postID, parentID: page.parentID) - self.children = children - self.parentNode = parentNode + init(page: Page) { + self.page = page } - // The `PageTree` type is used to loaded - // Some page There are pages They are pages that doesn't belong to the root level, but their parent pages haven't been loaded yet. - var isOrphan: Bool { - (pageData.parentID?.int64Value ?? 0) > 0 && parentNode == nil - } - - func dfsList(in context: NSManagedObjectContext) throws -> [Page] { + func dfsList() -> [Page] { var pages = [Page]() - _ = try depthFirstSearch { level, node in - let page = try context.existingObject(with: node.pageID) + _ = depthFirstSearch { level, node in + let page = node.page page.hierarchyIndex = level page.hasVisibleParent = node.parentNode != nil pages.append(page) @@ -42,18 +32,18 @@ final class PageTree { /// a boolean value indicate whether the search should be stopped. /// - Returns: `true` if search has been stopped by the closure. @discardableResult - func depthFirstSearch(using closure: (Int, TreeNode) throws -> Bool) rethrows -> Bool { - try depthFirstSearch(level: 0, using: closure) + func depthFirstSearch(using closure: (Int, TreeNode) -> Bool) -> Bool { + depthFirstSearch(level: 0, using: closure) } - private func depthFirstSearch(level: Int, using closure: (Int, TreeNode) throws -> Bool) rethrows -> Bool { - let shouldStop = try closure(level, self) + private func depthFirstSearch(level: Int, using closure: (Int, TreeNode) -> Bool) -> Bool { + let shouldStop = closure(level, self) if shouldStop { return true } for child in children { - let shouldStop = try child.depthFirstSearch(level: level + 1, using: closure) + let shouldStop = child.depthFirstSearch(level: level + 1, using: closure) if shouldStop { return true } @@ -61,197 +51,38 @@ final class PageTree { return false } - - /// Perform breadth-first search starting with the current (`self`) node. - /// - /// - Parameter closure: A closure that takes a node as argument and returns a boolean value indicate whether - /// the search should be stopped. - /// - Returns: `true` if search has been stopped by the closure. - func breadthFirstSearch(using closure: (TreeNode) -> Bool) { - var queue = [TreeNode]() - queue.append(self) - while let current = queue.popLast() { - let shouldStop = closure(current) - if shouldStop { - break - } - - queue.append(contentsOf: current.children) - } - } - - func add(_ newNodes: [TreeNode], parentID: NSNumber) -> Bool { - assert(parentID != 0) - - return depthFirstSearch { _, node in - if node.pageData.postID == parentID { - node.children.append(contentsOf: newNodes) - newNodes.forEach { $0.parentNode = node } - return true - } - return false - } - } } - // The top level (or root level) pages, or nodes. - // They can be two types node: - // - child nodes. They are top level pages. - // - orphan nodes. They are pages that doesn't belong to the root level, but their parent pages haven't been loaded yet. - private var nodes = [TreeNode]() - - // `orphanNodes` contains indexes of orphan nodes in the `nodes` array (the value part in the dictionary), which are - // grouped using their parent id (the key part in the dictionary). - // IMPORTANT: Make sure `orphanNodes` is up-to-date after the `nodes` array is modified. - private var orphanNodes = [NSNumber: [Int]]() + static func hierarchyList(of pages: [Page]) -> [Page] { + // An array of `TreeNode` instances that are one-to-one map of the `pages` list. + var nodes: [TreeNode] = [] + // A map of parent page (the dictionary key) to its children (the dictionary value). + var children: [NSNumber: [TreeNode]] = [:] + var allPostIDs: Set = [] - /// Add *new pages* to the page tree. - /// - /// This function assumes none of array elements already exists in the current page tree. - func add(_ newPages: [Page]) { - let newNodes = newPages.map { TreeNode(page: $0) } - - // First try to constrcuture a smaller subtree from the given pages, then move the new subtree to the existing - // page tree (`self`). - // The number of pages in a subtree can be changed if we want to futher tweak the performance. - let batch = 100 - for index in stride(from: 0, to: newNodes.count, by: batch) { - let tree = PageTree() - tree.add(Array(newNodes[index..) -> [NSNumber: TreeNode] { - guard !originalIDs.isEmpty else { - return [:] + return topLevelNodes.reduce(into: []) { + $0.append(contentsOf: $1.dfsList()) } - - var ids = originalIDs - var result = [NSNumber: TreeNode]() - - // The new node is not at the root level, find its parent in the root level nodes. - for child in nodes { - if ids.isEmpty { - break - } - - // Using BFS under the assumption that page tree in most sites is a shallow tree, where most pages are in top layers. - child.breadthFirstSearch { node in - let postID = node.pageData.postID ?? 0 - let foundIndex = ids.firstIndex(of: postID) - if let foundIndex { - ids.remove(at: foundIndex) - result[postID] = node - } - return ids.isEmpty - } - } - - return result - } - - func hierarchyList(in context: NSManagedObjectContext) throws -> [Page] { - try nodes.reduce(into: []) { - try $0.append(contentsOf: $1.dfsList(in: context)) - } - } - - static func hierarchyList(of pages: [Page]) throws -> [Page] { - guard let context = pages.first?.managedObjectContext else { - return [] - } - - let tree = PageTree() - tree.add(pages) - return try tree.hierarchyList(in: context) } } From d087d78a3b5c492ac5df9ab4ed4f3debdc10a498 Mon Sep 17 00:00:00 2001 From: Tony Li Date: Tue, 9 Jan 2024 11:00:45 +1300 Subject: [PATCH 17/28] Revert to more strict comparision --- WordPress/WordPressTest/PagesListTests.swift | 30 ++++++-------------- 1 file changed, 9 insertions(+), 21 deletions(-) diff --git a/WordPress/WordPressTest/PagesListTests.swift b/WordPress/WordPressTest/PagesListTests.swift index 2ded32394e72..93e93fa534b9 100644 --- a/WordPress/WordPressTest/PagesListTests.swift +++ b/WordPress/WordPressTest/PagesListTests.swift @@ -196,37 +196,25 @@ class PagesListTests: CoreDataTestCase { start = CFAbsoluteTimeGetCurrent() let original = pages.hierarchySort() + let originalIDs = original.map { $0.postID! } + let originalLevels = original.map { $0.hierarchyIndex } NSLog("hierarchySort took \(String(format: "%.3f", (CFAbsoluteTimeGetCurrent() - start) * 1000)) millisecond to process \(pages.count) pages") start = CFAbsoluteTimeGetCurrent() - let new = try PageTree.hierarchyList(of: pages) + let new = PageTree.hierarchyList(of: pages) + let newIDs = new.map { $0.postID! } + let newLevels = new.map { $0.hierarchyIndex } NSLog("PageTree took \(String(format: "%.3f", (CFAbsoluteTimeGetCurrent() - start) * 1000)) millisecond to process \(pages.count) pages") start = CFAbsoluteTimeGetCurrent() _ = pages.sorted { ($0.postID?.int64Value ?? 0) < ($1.postID?.int64Value ?? 0) } NSLog("Array.sort took \(String(format: "%.3f", (CFAbsoluteTimeGetCurrent() - start) * 1000)) millisecond to process \(pages.count) pages") - // Compare the two implementions to make sure their results are similar. The pages don'n't need to be in the exact same order, - // but each hierachy level should contain the same child pages in it. + let orderDiff = originalIDs.difference(from: newIDs).inferringMoves() + XCTAssertTrue(orderDiff.count == 0, "Unexpected order difference: \(orderDiff)", file: file, line: line) - let originalList = HierarchyList(pages: original) - let newList = HierarchyList(pages: new) - - // They have the same hierachy level. - XCTAssertEqual(originalList.numberOfLevels, newList.numberOfLevels) - - // For each hierachy level, the same child pages are present in both results, without the need of being in the same order. - for level in 1...(originalList.numberOfLevels) { - let pagesAtLevelOriginal = originalList.pages(atLevel: level) - let pagesAtLevelNew = newList.pages(atLevel: level) - XCTAssertEqual(Set(pagesAtLevelOriginal.keys), Set(pagesAtLevelNew.keys), "The parent page ids in each level should be the same") - - for parentPageID in pagesAtLevelOriginal.keys { - let childrenPageIDsOriginal = try XCTUnwrap(pagesAtLevelOriginal[parentPageID]).map { $0.postID } - let childrenPageIDsNew = try XCTUnwrap(pagesAtLevelNew[parentPageID]).map { $0.postID } - XCTAssertEqual(Set(childrenPageIDsOriginal), Set(childrenPageIDsNew), "The children page ids in each level should be the same") - } - } + let levelDiff = originalLevels.difference(from: newLevels).inferringMoves() + XCTAssertTrue(orderDiff.count == 0, "Unexpected level difference: \(orderDiff)", file: file, line: line) } } From b118514b1c3a4f65379cc499dc9d1c37cf776d5c Mon Sep 17 00:00:00 2001 From: Tony Li Date: Tue, 9 Jan 2024 11:08:18 +1300 Subject: [PATCH 18/28] Update view controller to use the new function --- .../Pages/PageListViewController.swift | 22 ++++++++++++++----- 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/WordPress/Classes/ViewRelated/Pages/PageListViewController.swift b/WordPress/Classes/ViewRelated/Pages/PageListViewController.swift index dac04f114c0b..4c909d5f5ee4 100644 --- a/WordPress/Classes/ViewRelated/Pages/PageListViewController.swift +++ b/WordPress/Classes/ViewRelated/Pages/PageListViewController.swift @@ -249,7 +249,11 @@ final class PageListViewController: AbstractPostListViewController, UIViewContro do { self.pages = try await buildPageTree(pageIDs: pageIDs) - .hierarchyList(in: coreDataStack.mainContext) + .map { pageID, hierarchyIndex in + let page = try coreDataStack.mainContext.existingObject(with: pageID) + page.hierarchyIndex = hierarchyIndex + return page + } } catch { DDLogError("Failed to reload published pages: \(error)") } @@ -263,7 +267,7 @@ final class PageListViewController: AbstractPostListViewController, UIViewContro /// Build page hierachy in background, which should not take long (less than 2 seconds for 6000+ pages). @MainActor - func buildPageTree(pageIDs: [TaggedManagedObjectID]? = nil, request: NSFetchRequest? = nil) async throws -> PageTree { + func buildPageTree(pageIDs: [TaggedManagedObjectID]? = nil, request: NSFetchRequest? = nil) async throws -> [(pageID: TaggedManagedObjectID, hierarchyIndex: Int)] { assert(pageIDs != nil || request != nil, "`pageIDs` and `request` can not both be nil") let coreDataStack = ContextManager.shared @@ -278,9 +282,9 @@ final class PageListViewController: AbstractPostListViewController, UIViewContro pages = pages.setHomePageFirst() - let tree = PageTree() - tree.add(pages) - return tree + // The `hierarchyIndex` is not a managed property, so it needs to be returend along with the page object id. + return PageTree.hierarchyList(of: pages) + .map { (TaggedManagedObjectID($0), $0.hierarchyIndex) } } } @@ -462,7 +466,13 @@ final class PageListViewController: AbstractPostListViewController, UIViewContro request.predicate = filter.predicate(for: blog, author: .everyone) request.sortDescriptors = filter.sortDescriptors do { - var pages = try await buildPageTree(request: request).hierarchyList(in: ContextManager.shared.mainContext) + let context = ContextManager.shared.mainContext + var pages = try await buildPageTree(request: request) + .map { pageID, hierarchyIndex in + let page = try context.existingObject(with: pageID) + page.hierarchyIndex = hierarchyIndex + return page + } if let index = pages.firstIndex(of: page) { pages = pages.remove(from: index) } From 49fd7b9394d0907007651391f697dce24d0f961d Mon Sep 17 00:00:00 2001 From: Tony Li Date: Tue, 9 Jan 2024 11:37:27 +1300 Subject: [PATCH 19/28] Remove no longer required try keywords --- WordPress/WordPressTest/PagesListTests.swift | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/WordPress/WordPressTest/PagesListTests.swift b/WordPress/WordPressTest/PagesListTests.swift index 93e93fa534b9..9277019552b4 100644 --- a/WordPress/WordPressTest/PagesListTests.swift +++ b/WordPress/WordPressTest/PagesListTests.swift @@ -77,7 +77,7 @@ class PagesListTests: CoreDataTestCase { NSLog("\(pages.count) pages used in \(#function)") measure { - let list = (try? PageTree.hierarchyList(of: pages)) ?? [] + let list = PageTree.hierarchyList(of: pages) XCTAssertEqual(list.count, pages.count) } } @@ -94,7 +94,7 @@ class PagesListTests: CoreDataTestCase { NSLog("\(pages.count) pages used in \(#function)") measure { - let list = (try? PageTree.hierarchyList(of: pages)) ?? [] + let list = PageTree.hierarchyList(of: pages) XCTAssertEqual(list.count, pages.count) } } @@ -125,14 +125,14 @@ class PagesListTests: CoreDataTestCase { let manyPages = parentPage(childrenCount: 17, additionalLevels: 7) // Test 1: place the child page at the begining and the parent page at the end. - var sorted = try PageTree.hierarchyList(of: [child] + manyPages + [parent]) + var sorted = PageTree.hierarchyList(of: [child] + manyPages + [parent]) XCTAssertEqual(parent.hierarchyIndex, 0) XCTAssertEqual(child.hierarchyIndex, 1) // The child page should follow the parent page in the sorted list try XCTAssertEqual(XCTUnwrap(sorted.firstIndex(of: parent)) + 1, XCTUnwrap(sorted.firstIndex(of: child))) // Test 2: place the child page at the end and the parent page at the begining. - sorted = try PageTree.hierarchyList(of: [parent] + manyPages + [child]) + sorted = PageTree.hierarchyList(of: [parent] + manyPages + [child]) XCTAssertEqual(parent.hierarchyIndex, 0) XCTAssertEqual(child.hierarchyIndex, 1) // The child page should follow the parent page in the sorted list @@ -142,7 +142,7 @@ class PagesListTests: CoreDataTestCase { func testHierarchyListRepresentationRoundtrip() throws { let roundtrip: (String) throws -> Void = { string in let pages = try Array(hierarchyListRepresentation: string, context: self.mainContext) - try XCTAssertEqual(PageTree.hierarchyList(of: pages).hierarchyListRepresentation(), string) + XCTAssertEqual(PageTree.hierarchyList(of: pages).hierarchyListRepresentation(), string) } try roundtrip(""" From 55fbfdb25b7c973af27a9c4f885dacaf750b6389 Mon Sep 17 00:00:00 2001 From: Tony Li Date: Tue, 9 Jan 2024 11:40:57 +1300 Subject: [PATCH 20/28] Update PR number in a release note --- RELEASE-NOTES.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASE-NOTES.txt b/RELEASE-NOTES.txt index a7f725a3b929..69a5d40070b0 100644 --- a/RELEASE-NOTES.txt +++ b/RELEASE-NOTES.txt @@ -17,7 +17,7 @@ * [*] Fix an issue with BlogDashboardPersonalizationService being used on the background thread [#22335] * [***] Block Editor: Avoid keyboard dismiss when interacting with text blocks [https://github.com/WordPress/gutenberg/pull/57070] * [**] Block Editor: Auto-scroll upon block insertion [https://github.com/WordPress/gutenberg/pull/57273] -* [**] Fix an issue in Pages List where the pages are not displayed in a hierarchical order [#22338] +* [**] Fix an issue in Pages List where the pages are not displayed in a hierarchical order [#22345] 23.9 ----- From 57075b9770f3f85932e841a1b1294601f1b29ec6 Mon Sep 17 00:00:00 2001 From: Salim Braksa Date: Tue, 9 Jan 2024 03:27:52 +0100 Subject: [PATCH 21/28] Update WordPressKit pod commit --- Podfile | 2 +- Podfile.lock | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Podfile b/Podfile index d21df2c7ebce..1cb1bbf075dd 100644 --- a/Podfile +++ b/Podfile @@ -52,7 +52,7 @@ end def wordpress_kit # Anything compatible with 8.9, starting from 8.9.1 which has a breaking change fix # pod 'WordPressKit', '~> 9.0', '>= 9.0.2' - pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: '87eba2549022571515f256667ce209e6604ea0e0' + pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: 'eab6275c5955f8fb5a15f4b01f7a197c4aae261e' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: 'trunk' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: '' # pod 'WordPressKit', path: '../WordPressKit-iOS' diff --git a/Podfile.lock b/Podfile.lock index 086f2a30c290..ea188ff7d980 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -70,7 +70,7 @@ PODS: - WordPressKit (~> 9.0.0) - WordPressShared (~> 2.1-beta) - WordPressUI (~> 1.7-beta) - - WordPressKit (9.0.1): + - WordPressKit (9.0.2): - Alamofire (~> 4.8.0) - NSObject-SafeExpectations (~> 0.0.4) - UIDeviceIdentifier (~> 2.0) @@ -121,7 +121,7 @@ DEPENDENCIES: - SwiftLint (~> 0.50) - WordPress-Editor-iOS (~> 1.19.9) - WordPressAuthenticator (>= 8.0.1, ~> 8.0) - - WordPressKit (from `https://github.com/wordpress-mobile/WordPressKit-iOS.git`, commit `87eba2549022571515f256667ce209e6604ea0e0`) + - WordPressKit (from `https://github.com/wordpress-mobile/WordPressKit-iOS.git`, commit `eab6275c5955f8fb5a15f4b01f7a197c4aae261e`) - WordPressShared (~> 2.2) - WordPressUI (~> 1.15) - ZendeskSupportSDK (= 5.3.0) @@ -177,7 +177,7 @@ EXTERNAL SOURCES: Gutenberg: :podspec: https://cdn.a8c-ci.services/gutenberg-mobile/Gutenberg-v1.110.0.podspec WordPressKit: - :commit: 87eba2549022571515f256667ce209e6604ea0e0 + :commit: eab6275c5955f8fb5a15f4b01f7a197c4aae261e :git: https://github.com/wordpress-mobile/WordPressKit-iOS.git CHECKOUT OPTIONS: @@ -189,7 +189,7 @@ CHECKOUT OPTIONS: :submodules: true :tag: v1.100.2 WordPressKit: - :commit: 87eba2549022571515f256667ce209e6604ea0e0 + :commit: eab6275c5955f8fb5a15f4b01f7a197c4aae261e :git: https://github.com/wordpress-mobile/WordPressKit-iOS.git SPEC CHECKSUMS: @@ -223,7 +223,7 @@ SPEC CHECKSUMS: WordPress-Aztec-iOS: fbebd569c61baa252b3f5058c0a2a9a6ada686bb WordPress-Editor-iOS: bda9f7f942212589b890329a0cb22547311749ef WordPressAuthenticator: fd2e1d340680faffffd9d675fc2df5ed19e26ea2 - WordPressKit: 304725187d755db8d5ff73a58d27eda0071771c1 + WordPressKit: 23d0ffb43f2ccdad2debd6799e62d39790a5ffad WordPressShared: 87f3ee89b0a3e83106106f13a8b71605fb8eb6d2 WordPressUI: a491454affda3b0fb812812e637dc5e8f8f6bd06 wpxmlrpc: 68db063041e85d186db21f674adf08d9c70627fd @@ -236,6 +236,6 @@ SPEC CHECKSUMS: ZendeskSupportSDK: 3a8e508ab1d9dd22dc038df6c694466414e037ba ZIPFoundation: d170fa8e270b2a32bef9dcdcabff5b8f1a5deced -PODFILE CHECKSUM: d3b259c9bf3b4aa64a7b7f2bc5909a0baeb6e1be +PODFILE CHECKSUM: ad841405d522fbc6b10dc974d36e18db546137e7 COCOAPODS: 1.14.2 From ceca329b2d31ca76cdc7a619bfd3daae19738d06 Mon Sep 17 00:00:00 2001 From: Salim Braksa Date: Tue, 9 Jan 2024 03:49:02 +0100 Subject: [PATCH 22/28] Fix failing unit test --- .../EEUUSCompliance/CompliancePopoverCoordinator.swift | 2 +- .../WordPressTest/Dashboard/BlogDashboardServiceTests.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/WordPress/Classes/ViewRelated/EEUUSCompliance/CompliancePopoverCoordinator.swift b/WordPress/Classes/ViewRelated/EEUUSCompliance/CompliancePopoverCoordinator.swift index 6d9fd7a47256..6658186f53e8 100644 --- a/WordPress/Classes/ViewRelated/EEUUSCompliance/CompliancePopoverCoordinator.swift +++ b/WordPress/Classes/ViewRelated/EEUUSCompliance/CompliancePopoverCoordinator.swift @@ -26,7 +26,7 @@ final class CompliancePopoverCoordinator: CompliancePopoverCoordinatorProtocol { } func presentIfNeeded() { - guard FeatureFlag.compliancePopover.enabled, !defaults.didShowCompliancePopup else { + guard FeatureFlag.compliancePopover.enabled/*, !defaults.didShowCompliancePopup */else { return } complianceService.getIPCountryCode { [weak self] result in diff --git a/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift b/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift index 02bdd94dfbbf..64257325fce6 100644 --- a/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift +++ b/WordPress/WordPressTest/Dashboard/BlogDashboardServiceTests.swift @@ -532,7 +532,7 @@ class DashboardServiceRemoteMock: DashboardServiceRemote { override func fetch( cards: [String], forBlogID blogID: Int, - deviceId: String, + deviceId: String?, success: @escaping (NSDictionary) -> Void, failure: @escaping (Error) -> Void ) { From 0b2718248c113b1edcd28078aad6718575f9df44 Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 9 Jan 2024 15:06:23 +1100 Subject: [PATCH 23/28] Use stable WordPressKit version, 9.0.3 --- Podfile | 5 ++--- Podfile.lock | 15 +++++---------- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/Podfile b/Podfile index 1cb1bbf075dd..90ba07faffc3 100644 --- a/Podfile +++ b/Podfile @@ -50,9 +50,8 @@ def wordpress_ui end def wordpress_kit - # Anything compatible with 8.9, starting from 8.9.1 which has a breaking change fix - # pod 'WordPressKit', '~> 9.0', '>= 9.0.2' - pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: 'eab6275c5955f8fb5a15f4b01f7a197c4aae261e' + pod 'WordPressKit', '~> 9.0', '>= 9.0.3' + # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', commit: '' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', branch: 'trunk' # pod 'WordPressKit', git: 'https://github.com/wordpress-mobile/WordPressKit-iOS.git', tag: '' # pod 'WordPressKit', path: '../WordPressKit-iOS' diff --git a/Podfile.lock b/Podfile.lock index ea188ff7d980..35f8ccf85a0c 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -70,7 +70,7 @@ PODS: - WordPressKit (~> 9.0.0) - WordPressShared (~> 2.1-beta) - WordPressUI (~> 1.7-beta) - - WordPressKit (9.0.2): + - WordPressKit (9.0.3): - Alamofire (~> 4.8.0) - NSObject-SafeExpectations (~> 0.0.4) - UIDeviceIdentifier (~> 2.0) @@ -121,7 +121,7 @@ DEPENDENCIES: - SwiftLint (~> 0.50) - WordPress-Editor-iOS (~> 1.19.9) - WordPressAuthenticator (>= 8.0.1, ~> 8.0) - - WordPressKit (from `https://github.com/wordpress-mobile/WordPressKit-iOS.git`, commit `eab6275c5955f8fb5a15f4b01f7a197c4aae261e`) + - WordPressKit (>= 9.0.3, ~> 9.0) - WordPressShared (~> 2.2) - WordPressUI (~> 1.15) - ZendeskSupportSDK (= 5.3.0) @@ -158,6 +158,7 @@ SPEC REPOS: - UIDeviceIdentifier - WordPress-Aztec-iOS - WordPress-Editor-iOS + - WordPressKit - WordPressShared - WordPressUI - wpxmlrpc @@ -176,9 +177,6 @@ EXTERNAL SOURCES: :tag: 0.2.0 Gutenberg: :podspec: https://cdn.a8c-ci.services/gutenberg-mobile/Gutenberg-v1.110.0.podspec - WordPressKit: - :commit: eab6275c5955f8fb5a15f4b01f7a197c4aae261e - :git: https://github.com/wordpress-mobile/WordPressKit-iOS.git CHECKOUT OPTIONS: FSInteractiveMap: @@ -188,9 +186,6 @@ CHECKOUT OPTIONS: :git: https://github.com/wordpress-mobile/gutenberg-mobile.git :submodules: true :tag: v1.100.2 - WordPressKit: - :commit: eab6275c5955f8fb5a15f4b01f7a197c4aae261e - :git: https://github.com/wordpress-mobile/WordPressKit-iOS.git SPEC CHECKSUMS: Alamofire: 3ec537f71edc9804815215393ae2b1a8ea33a844 @@ -223,7 +218,7 @@ SPEC CHECKSUMS: WordPress-Aztec-iOS: fbebd569c61baa252b3f5058c0a2a9a6ada686bb WordPress-Editor-iOS: bda9f7f942212589b890329a0cb22547311749ef WordPressAuthenticator: fd2e1d340680faffffd9d675fc2df5ed19e26ea2 - WordPressKit: 23d0ffb43f2ccdad2debd6799e62d39790a5ffad + WordPressKit: 4d41fd70b83876ee5db4617868767b33f3ae1bc4 WordPressShared: 87f3ee89b0a3e83106106f13a8b71605fb8eb6d2 WordPressUI: a491454affda3b0fb812812e637dc5e8f8f6bd06 wpxmlrpc: 68db063041e85d186db21f674adf08d9c70627fd @@ -236,6 +231,6 @@ SPEC CHECKSUMS: ZendeskSupportSDK: 3a8e508ab1d9dd22dc038df6c694466414e037ba ZIPFoundation: d170fa8e270b2a32bef9dcdcabff5b8f1a5deced -PODFILE CHECKSUM: ad841405d522fbc6b10dc974d36e18db546137e7 +PODFILE CHECKSUM: d7a42312b8249374e94aecb6021ee06d137c7cfa COCOAPODS: 1.14.2 From 88efd9a5b0c5ed832a9c0b0b1322b03afaeadf4f Mon Sep 17 00:00:00 2001 From: Gio Lodi Date: Tue, 9 Jan 2024 18:51:58 +1100 Subject: [PATCH 24/28] Switch to release-toolkit dev version with newer SwiftGen This is an attempt to address a CI failure. See also https://github.com/wordpress-mobile/release-toolkit/commit/2cb009edaee3d058a61cfeb503e533eb0647f108 --- Gemfile | 9 ++++----- Gemfile.lock | 44 +++++++++++++++++++++++++------------------- 2 files changed, 29 insertions(+), 24 deletions(-) diff --git a/Gemfile b/Gemfile index 8a11ae824018..9913846ca360 100644 --- a/Gemfile +++ b/Gemfile @@ -12,11 +12,10 @@ gem 'fastlane-plugin-appcenter', '~> 2.1' gem 'fastlane-plugin-sentry' # This comment avoids typing to switch to a development version for testing. # -# Switch to this branch for auto-retry on 429 for GlotPress strings while -# waiting for the fix to be shipped. -# gem 'fastlane-plugin-wpmreleasetoolkit', git: 'git@github.com:wordpress-mobile/release-toolkit', branch: 'mokagio/auto-retry-on-strings-glotpress-429' -# -gem 'fastlane-plugin-wpmreleasetoolkit', '~> 9.1' +# Attempt to address 'Bad CPU type in executable' on new Apple Silicon CI +# See https://buildkite.com/automattic/wordpress-ios/builds/19609#018ced25-05f4-4c8b-9850-b314ea2f8d9e/1131-1330 +gem 'fastlane-plugin-wpmreleasetoolkit', git: 'git@github.com:wordpress-mobile/release-toolkit', ref: '2cb009edaee3d058a61cfeb503e533eb0647f108' +# gem 'fastlane-plugin-wpmreleasetoolkit', '~> 9.1' gem 'rake' gem 'rubocop', '~> 1.30' gem 'rubocop-rake', '~> 0.6' diff --git a/Gemfile.lock b/Gemfile.lock index 6a16ac1d447c..ebec1063a12e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,3 +1,26 @@ +GIT + remote: git@github.com:wordpress-mobile/release-toolkit + revision: 2cb009edaee3d058a61cfeb503e533eb0647f108 + ref: 2cb009edaee3d058a61cfeb503e533eb0647f108 + specs: + fastlane-plugin-wpmreleasetoolkit (9.2.0) + activesupport (>= 6.1.7.1) + buildkit (~> 1.5) + chroma (= 0.2.0) + diffy (~> 3.3) + fastlane (~> 2.213) + git (~> 1.3) + google-cloud-storage (~> 1.31) + java-properties (~> 0.3.0) + nokogiri (~> 1.11) + octokit (~> 6.1) + parallel (~> 1.14) + plist (~> 3.1) + progress_bar (~> 1.3) + rake (>= 12.3, < 14.0) + rake-compiler (~> 1.0) + xcodeproj (~> 1.22) + GIT remote: https://github.com/Automattic/dangermattic revision: 06a54db4f546d20c0465e4d144049d061a2a1e20 @@ -212,23 +235,6 @@ GEM fastlane-plugin-appcenter (2.1.1) fastlane-plugin-sentry (1.15.0) os (~> 1.1, >= 1.1.4) - fastlane-plugin-wpmreleasetoolkit (9.2.0) - activesupport (>= 6.1.7.1) - buildkit (~> 1.5) - chroma (= 0.2.0) - diffy (~> 3.3) - fastlane (~> 2.213) - git (~> 1.3) - google-cloud-storage (~> 1.31) - java-properties (~> 0.3.0) - nokogiri (~> 1.11) - octokit (~> 6.1) - parallel (~> 1.14) - plist (~> 3.1) - progress_bar (~> 1.3) - rake (>= 12.3, < 14.0) - rake-compiler (~> 1.0) - xcodeproj (~> 1.22) ffi (1.16.3) fourflusher (2.3.1) fuzzy_match (2.0.4) @@ -301,7 +307,7 @@ GEM naturally (2.2.1) netrc (0.11.0) no_proxy_fix (0.1.2) - nokogiri (1.15.4) + nokogiri (1.16.0) mini_portile2 (~> 2.8.2) racc (~> 1.4) octokit (6.1.1) @@ -408,7 +414,7 @@ DEPENDENCIES fastlane (~> 2.217) fastlane-plugin-appcenter (~> 2.1) fastlane-plugin-sentry - fastlane-plugin-wpmreleasetoolkit (~> 9.1) + fastlane-plugin-wpmreleasetoolkit! rake rmagick (~> 3.2.0) rubocop (~> 1.30) From 4fc41102549fc787a7e1bd76c7cd12ccd4508aa6 Mon Sep 17 00:00:00 2001 From: Automattic Release Bot Date: Mon, 8 Jan 2024 23:57:33 -0800 Subject: [PATCH 25/28] =?UTF-8?q?Update=20app=20translations=20=E2=80=93?= =?UTF-8?q?=20`Localizable.strings`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Resources/ar.lproj/Localizable.strings | 275 +------------ .../Resources/bg.lproj/Localizable.strings | 28 +- .../Resources/cs.lproj/Localizable.strings | 248 +----------- .../Resources/cy.lproj/Localizable.strings | 25 +- .../Resources/da.lproj/Localizable.strings | 19 +- .../Resources/de.lproj/Localizable.strings | 368 ++++++------------ .../Resources/en-AU.lproj/Localizable.strings | 275 +------------ .../Resources/en-CA.lproj/Localizable.strings | 275 +------------ .../Resources/en-GB.lproj/Localizable.strings | 368 ++++++------------ .../Resources/es.lproj/Localizable.strings | 368 ++++++------------ .../Resources/fr.lproj/Localizable.strings | 275 +------------ .../Resources/he.lproj/Localizable.strings | 275 +------------ .../Resources/hr.lproj/Localizable.strings | 28 +- .../Resources/hu.lproj/Localizable.strings | 15 +- .../Resources/id.lproj/Localizable.strings | 275 +------------ .../Resources/is.lproj/Localizable.strings | 28 +- .../Resources/it.lproj/Localizable.strings | 275 +------------ .../Resources/ja.lproj/Localizable.strings | 275 +------------ .../Resources/ko.lproj/Localizable.strings | 275 +------------ .../Resources/nb.lproj/Localizable.strings | 166 +------- .../Resources/nl.lproj/Localizable.strings | 272 +------------ .../Resources/pl.lproj/Localizable.strings | 47 +-- .../Resources/pt-BR.lproj/Localizable.strings | 269 +------------ .../Resources/pt.lproj/Localizable.strings | 25 +- .../Resources/ro.lproj/Localizable.strings | 368 ++++++------------ .../Resources/ru.lproj/Localizable.strings | 368 ++++++------------ .../Resources/sk.lproj/Localizable.strings | 88 +---- .../Resources/sq.lproj/Localizable.strings | 275 +------------ .../Resources/sv.lproj/Localizable.strings | 275 +------------ .../Resources/th.lproj/Localizable.strings | 25 +- .../Resources/tr.lproj/Localizable.strings | 275 +------------ .../zh-Hans.lproj/Localizable.strings | 275 +------------ .../zh-Hant.lproj/Localizable.strings | 275 +------------ 33 files changed, 823 insertions(+), 6150 deletions(-) diff --git a/WordPress/Resources/ar.lproj/Localizable.strings b/WordPress/Resources/ar.lproj/Localizable.strings index 9e84947c5d14..090df97eba41 100644 --- a/WordPress/Resources/ar.lproj/Localizable.strings +++ b/WordPress/Resources/ar.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nللتأكيد، يرجى إعادة إدخال اسم المستخدم الخاص بك قبل الإغلاق.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/ سنة"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "صور \"بطيئة التحميل\""; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li كلمات، %2$li أحرف"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "مكوّن [%s]"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "خيارات المكوِّن %s"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "إضافة موضوع"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "أضف عنوان URL الخاص بـ CSS المخصصة هنا ليتم تحميلها في القارئ. إذا كنتَ تقوم بتشغيل Calypso محليًا، فقد يبدو هذا مثل: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "إضافة نطاق"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "تتضمن جميع خطط ووردبريس.كوم السنوية اسم نطاق مخصصًا. سجِّل نطاقك المجاني الآن."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "تتضمن جميع خطط WordPress.com اسم نطاق مخصصًا. قم بتسجيل نطاقك المتميز المجاني الآن."; - /* An option in a list. Automatically approve all comments */ "All comments" = "جميع التعليقات"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "تمت الإدارة التلقائية على هذا الموقع"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "تم تمكين التجديد التلقائي"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "موافقة تلقائية"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "المكوِّن الذي تم تكراره"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "تم تمكين محرر المكوّنات"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "تم تجميع المكوّنات"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "قم بإحضار الوسائط مباشرةً من جهازك أو الكاميرا الخاصة بك إلى موقعك."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "تصفّح جميع قوالبنا للعثور على ما يناسبك."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "الحماية من هجمات القوة الغاشمة"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "اختيار موقع لفتحه."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "اختيار قالب"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "إغلاق"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "مُنجَز: التحقّق من عنوان موقعك"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "مُنجَز: اختيار قالب"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "مُنجَز: اختيار أيقونة فريدة للموقع"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "اكتمل: الربط بمواقع أخرى"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "مُنجَز: الاستمرار في إعداد الموقع"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "مُنجَز: إنشاء موقعك"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "مُنجَز: استكشاف الخطط"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "مُنجَز: نشر مقالة"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "المتابعة باستخدام Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "الاستمرار في إعداد الموقع"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "المتابعة عبر Apple"; @@ -1981,15 +1944,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "يتعذر الاتصال بموقع ووردبريس. لا يوجد موقع ووردبريس صالح على هذا العنوان. تحقق من عنوان الموقع (URL) الذي أدخلته."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "تعذر الاتصال. طرق XML-RPC المطلوبة غير موجودة على الخادم."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "تعذر الاتصال. تلقينا الخطأ 403 عند محاولة الوصول إلى نقطة نهاية موقعك XMLRPC. يحتاج التطبيق إلى ذلك للاتصال بموقعك. يُرجى الاتصال بمستضيفك لحل هذه المشكلة."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "تعذر الاتصال. يحظر مضيفك طلبات POST، ويحتاج التطبيق إلى ذلك للاتصال بموقعك. يُرجى الاتصال بالمضيف لحل هذه المشكلة."; - /* Error message when tag loading failed */ "Couldn't load tags." = "تعذّر تحميل الوسوم."; @@ -2021,9 +1975,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "رمز البلد"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "تسجيل الأعطال"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "تقارير الأعطال"; @@ -2039,9 +1990,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "إنشاء جديد"; -/* Title for the site creation flow. */ -"Create New Site" = "إنشاء موقع جديد"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2176,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "تصحيح الأخطاء (Debug)"; -/* Debug settings title */ -"Debug Settings" = "إعدادات وضع تصحيح الأخطاء"; - /* Only December needs to be translated */ "December 17, 2017" = "17 ديسمبر، 2017"; @@ -2252,9 +2197,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "التنسيق الافتراضي للمقالة"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "الرابط الافتراضي URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "الإعدادات الافتراضية للمقالات الجديدة"; @@ -2420,12 +2362,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "النطاقات"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "النطاقات التي تم شراؤها على هذا الموقع سيتم توجيهها إلى %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "النطاقات التي تم شراؤها على هذا الموقع ستعيد توجيه الزائرين إلى "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "ليس لديك حساب؟ _تسجيل_"; @@ -2595,8 +2531,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "تحرير"; /* Title for the edit more button section */ @@ -2661,9 +2596,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "المحرّر"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "يحرر تعليقًا"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "يحرِّر التعليق."; @@ -2791,9 +2723,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "إدخال كلمة مرور لحماية هذه المقالة"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "أدخل كلمات مختلفة أعلاه وسنبحث عن عنوان يطابقها."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "أدخل كلمة المرور"; @@ -2979,24 +2908,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "التوسيع لتحديد منطقة قائمة مختلفة"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "منتهي الصلاحية"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "رمز تسجيل دخول منتهي الصلاحية"; /* Title. Indicates an expiration date. */ "Expires on" = "تنتهي الصلاحية في"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "تنتهي الصلاحية في %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "اكتب نبذة قصيرة عن الموقع."; -/* Title of a Quick Start Tour */ -"Explore plans" = "استكشاف الخطط"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "تصدير المحتوى"; @@ -3182,8 +3102,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "المتابعين"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "المتابعة"; @@ -3200,9 +3119,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "متابعات"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "متابعة المدونة"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "يتابع المدونة."; @@ -3242,9 +3158,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "مكتبة الصور المجانية"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "مجاني للسنة الأولى"; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "يمكنك توفير مساحة تخزين على هذا الجهاز عن طريق حذف ملفات الوسائط المؤقتة. لن يؤثر هذا على الوسائط الموجودة على موقعك."; @@ -3333,9 +3246,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "التعرُّف على التطبيق"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "احصل على نطاقك"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "تلقي تنبيهاتك بشكل أسرع"; @@ -3360,9 +3270,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "عد للخلف"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "انتقل إلى التالي"; @@ -3401,18 +3308,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "يرشدك في أثناء عملية التحقُّق من تنبيهاتك."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "يرشدك خلال عملية اختيار قالب لموقعك."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "يرشدك خلال عملية إنشاء صفحة جديدة لموقعك."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "يرشدك خلال عملية إنشاء موقعك."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "يرشدك خلال عملية استكشاف خطط لموقعك."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "يرشدك خلال عملية متابعة المواقع الأخرى."; @@ -3428,9 +3329,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "يرشدك خلال عملية تعيين عنوان لموقعك."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "يرشدك خلال عملية إعداد موقعك."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "يرشدك خلال عملية تحميل أيقونة رمزية لموقعك."; @@ -3584,9 +3482,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "فشل تحديث الرمز"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "إذا كان لديك موقع بالفعل، فسيتعيَّن عليك تثبيت إضافة Jetpack المجانية وربطها بحسابك على WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "إذا تعذر عليك العثور على البريد الإلكتروني، فيرجى التحقُّق من مجلد البريد الإلكتروني غير الهام والبريد الإلكتروني المزعج"; @@ -3996,9 +3891,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "تعرَّف على التعليقات والإعجابات والمتابعات الجديدة في غضون ثوانٍ."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "معرفة المزيد عن أدوات التسويق وتحسين محركات البحث SEO في خططنا المدفوعة."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4057,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "جارٍ تحميل التعليق..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "تحميل النطاقات"; - /* Displayed while a call is loading the history. */ "Loading history..." = "جاري تحميل السجلّ..."; @@ -4619,9 +4508,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "بحاجة إلى تحديث"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "لا تنتهي صلاحيته أبداً"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "جديد"; @@ -4696,9 +4582,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "لا توجد عناصر"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "لم يتم العثور على أي مواقع Jetpack"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "لا توجد قائمة"; @@ -4915,9 +4798,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "لا توجد مساحة كافية للرفع"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "عدم المتابعة"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4898,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5202,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "اختيار اسم مستخدم"; -/* The item to select during a guided tour. */ -"Plan" = "الخطة"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "الخطط"; @@ -5642,9 +5518,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "الموقع الرئيسي"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "رابط الموقع الأساسي"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "الخصوصية"; @@ -5746,9 +5619,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "تمّ النشر في"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "نشر إلى"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "جارٍ نشر الصفحة..."; @@ -5770,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "تم إيقاف تشغيل تنبيهات الدفع في إعدادات iOS. قم بتبديل \"السماح بالتنبيهات\" لتشغيلها من جديد."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "البدء السريع"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "قيّمنا"; @@ -5791,13 +5658,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "القارئ"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "رابط Reader CSS URL"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "قراءة تدوينات من مواقع أخرى"; @@ -5958,9 +5821,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "تؤدي إزالة المتابعين إلى توقفهم عن استقبال تحديثات من موقعك. إذا اختاروا ذلك، فسيظل بإمكانهم زيارة موقعك ومتابعته مرة أخرى."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "يتم التجديد في %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "استبدال المكوِّن الحالي"; @@ -6093,7 +5953,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "إعادة المحاولة"; @@ -6315,9 +6174,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "مشاهدة الكل"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "الاطلاع على الإرشادات"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "شاهد التعليقات والإشعارات في الوقت الفعلي."; @@ -6334,24 +6190,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "حدّد %@ لإنشاء مقالة جديدة"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "حدّد %@ لاكتشاف القوالب الجديدة"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "حدِّد %@ للعثور على مواقع أخرى."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "حدّد %@ لمعرفة مستوى أداء موقعك."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "حدّد %@ لرؤية قائمة الاختيار الخاصة بك"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "حدِّد %@ للاطلاع على مكتبتك الحالية."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "حدّد %@ لرؤية خطتك الحالية والخطط المتاحة الأخرى."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "حدّد %@ لرؤية قائمة صفحاتك."; @@ -6744,10 +6591,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "صفحة الموقع"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "أمان الموقع وأداؤه\nمن جيبك"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "المنطقة الزمنيّة للموقع (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6645,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "لم يتم تحميل بعض البيانات"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "فشلت بعض عمليات رفع الوسائط. سيؤدي هذا الإجراء إلى إزالة كل الوسائط الفاشلة من المقالة.\nهل تريد الحفظ على أي حال؟"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "حدث خطأ ما"; @@ -7348,7 +7188,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "يستخدم الموقع في %1$@ ووردبريس %2$@. نوصي بالتحديث إلى أحدث إصدار أو الإصدار %3$@ على الأقل"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "الموقع الموجود على هذا العنوان ليس موقع ووردبريس. لكي نتصل بالموقع، يجب أن يستخدم الموقع ووردبريس."; /* Message shown when site deletion API failed */ @@ -7388,7 +7229,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "تم تفعيل القالب"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "القوالب"; @@ -7634,9 +7474,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "المنطقة الزمنيّة"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "حان الوقت لإنهاء إعداد موقعك! توضِّح لك قائمة الاختيار الخاصة بنا الخطوات التالية."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "انتهى الوقت، لكن لا داعي للقلق، فأمانك هو أولويتنا. يرجى المحاولة مرة أخرى!"; @@ -7688,9 +7525,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "لاستخدام الإحصاءات على موقعك، سيتعين عليك تنصيب إضافة Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "لاستخدام هذا التطبيق لـ %@، سيتعيَّن عليك تثبيت إضافة Jetpack وتفعيلها."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7545,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "تبديل نمط القائمة غير المرتبة"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "أدوات"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "أفضل المعلقين"; @@ -7721,8 +7552,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "أعلى مستوى"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "الموضوع"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7630,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "حاول مرّة اخرى"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "المحاولة باستخدام حساب آخر"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "محاولة ضبط عامل تصفية مدى التاريخ الخاص بك"; @@ -7882,9 +7709,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "اكتب اسمًا لموقعك (اسم للنطاق)"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "اكتب للحصول على مزيد من الاقتراحات"; - /* URL text field placeholder */ "URL" = "الرابط"; @@ -7990,12 +7814,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "يتعذر رفع مسودة مقالة واحدة"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "يتعذر رفع مسودة مقالة واحدة، و%ld من الملفات"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "يتعذر رفع مسودة مقالة واحدة، وملف واحد"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "تعذر رفع مقالة واحدة"; @@ -8050,8 +7868,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "إلغاء المتابعة"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "إلغاء متابعة %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7884,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "موقع لا تتم متابعته"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "إلغاء متابعة مدونة"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "إلغاء متابعة المدونة."; @@ -8239,18 +8053,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "جاري الرفع…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "فشلت عمليات الرفع"; - /* Use the current image */ "Use" = "استخدم"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "استخدم %@ للعثور على المواقع والوسوم."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "استخدام مخزن Sandbox"; - /* The button's title text to use a security key. */ "Use a security key" = "استخدام مفتاح الأمان"; @@ -8298,9 +8106,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "التحقق من تسجيل الدخول"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "التحقُّق من عنوان بريدك الإلكتروني - تم إرسال الإرشادات إلى %@"; - /* Description for the version label in the What's new page. */ "Version " = "النسخة"; @@ -8506,9 +8311,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "لم نتمكن من إنشاء النسخة الاحتياطية الخاصة بك، يرجى المحاولة مجددًا في وقت لاحق."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "لم نتمكن من العثور على أي عنوان متاح بالكلمات التي أدخلتها - لنحاول مرة أخرى."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "لم نتمكن من نشر هذه الصفحة، ولكننا سنحاول مرة أخرى لاحقًا."; @@ -8584,9 +8386,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "أرسلنا رابطًا سحريًا للتو إلى"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "أجرينا تحسينات هائلة بمحرِّر المكوّنات، ونعتقد أنها تستحق التجربة!\n\nقمنا بتمكينها في المقالات والصفحات الجديدة، ولكن إذا رغبتَ في التغيير إلى المحرِّر التقليدي فانتقل إلى \"موقعي\" > \"إعدادات الموقع\"."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "لقد نجحنا في إنشاء نسخة احتياطية لموقعك اعتبارًا من %@"; @@ -8596,9 +8395,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "نستخدم أدوات تتبع أخرى، بما في ذلك بعض الأدوات التي تنتمي إلى أطراف ثالثة. اقرأ عن هذه الأدوات وكيفية التحكم فيها."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "لم نتمكن من اكتشاف موقع ووردبريس على العنوان الذي أدخلته. يرجى التأكُّد من تثبيت ووردبريس، وأنك تقوم بتشغيل أحدث إصدار متاح."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "يتعذر علينا إرسال بريد إلكتروني في هذا الوقت. يُرجى المحاولة مرة أخرى لاحقًا."; @@ -8687,9 +8483,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "أرسلنا إليك رسالة عبر البريد الإلكتروني تتضمن رابط التسجيل لإنشاء حسابك الجديد على WordPress.com. تحقَّق من بريدك الإلكتروني على هذا الجهاز، وانقر على الرابط الموجود في الرسالة التي تم تلقيها عبر البريد الإلكتروني من WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "واجهنا مشكلات في تغيير النطاق الأساسي على موقعك — ولكن لا داعي للقلق، تم شراء نطاقك بنجاح."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "عنوان الويب (URL)"; @@ -8967,8 +8760,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "سنوات"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "نعم"; @@ -9067,9 +8859,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "لديك موقع WordPress واحد مخفى."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "لديك تسجيل نطاق مجاني مدته عام واحد ضمن خطتك"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "لديك ترقيات متميزة نشطة على موقعك. يرجى إلغاء ترقياتك قبل حذف موقعك."; @@ -9154,9 +8943,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "لقد أجريتَ تغييرات غير محفوظة على هذه المقالة"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "نطاقات موقعك"; - /* The item to select during a guided tour. */ "Your Site Icon" = "أيقونة موقعك"; @@ -9184,9 +8970,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "ستكون نسختك الاحتياطية الأولى جاهزة قريبًا"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "عنوان ووردبريس.كوم المجاني الخاص بك هو"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "جاري الآن إعداد نطاقك الجديد %@. قد يستغرق الأمر ما يصل إلى 30 دقيقة لكي يبدأ نطاقك بالعمل."; @@ -9202,9 +8985,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "سيتم إرسال المقالات والصفحات والإعدادات الخاصة بك لك عبر %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "رابط الموقع الأساسي هو العنوان الذي سيراه الزائرون في شريط العناوين بمتصفحاتهم عند زيارة موقعك."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "استغرقت محاولة الاستعادة أكثر من المعتاد، يُرجى التحقق مرة أخرى بعد دقائق قليلة."; @@ -9262,12 +9042,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "إنك تتابع هذه المحادثة. ستتلقى بريدًا إلكترونيًا عند إجراء تعليق جديد."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "أنت الآن تستخدم محرِّر المكوّن للصفحات الجديدة — رائع! إذا كنت ترغب في التغيير إلى المحرِّر التقليدي، فانتقل إلى \"موقعي\" > \"إعدادات الموقع\"."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "أنت الآن تستخدم محرِّر المكوّن للمقالات الجديدة — رائع! إذا كنت ترغب في التغيير إلى المحرِّر التقليدي، فانتقل إلى \"موقعي\" > \"إعدادات الموقع\"."; - /* Comment Attachment Label */ "[COMMENT]" = "[تعليق]"; @@ -9650,19 +9424,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "تمييز العلامات"; -/* General section title */ -"debugMenu.generalSectionTitle" = "عام"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "يُشار إلى المعلمات التي تم تجاوزها بعلامة اختيار."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "تجاوز المعلمة المختارة عن طريق تحديد قيمة جديدة هنا."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "لا توجد قيمة بعيدة أو افتراضية"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "تكوين بعيد"; /* Remove current quick start tour menu item */ @@ -9810,7 +9573,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "المزيد"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10222,9 +9984,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "تم وضع علامة على أنه بريد مزعج"; -/* Products header text in Me Screen. */ -"me.products.header" = "المنتجات"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "تتعذر مزامنة الوسائط"; @@ -10853,12 +10612,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "عرض كل الردود"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "زيارة إعدادات الموقع لإعادة التشغيل"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "تم إخفاء مطالبات التدوين"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "تجاهل"; @@ -11363,9 +11116,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "البريد الإلكتروني"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "منتديات ووردبريس"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "مركز مساعدة ووردبريس"; @@ -11582,9 +11332,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "معرفة المزيد"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "موقعك"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} تسجيل الدخول باستخدام Google."; diff --git a/WordPress/Resources/bg.lproj/Localizable.strings b/WordPress/Resources/bg.lproj/Localizable.strings index 9485329681c9..fc67265fae48 100644 --- a/WordPress/Resources/bg.lproj/Localizable.strings +++ b/WordPress/Resources/bg.lproj/Localizable.strings @@ -454,7 +454,6 @@ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Затваряне"; @@ -796,8 +795,7 @@ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Редакция"; /* Title for the edit more button section */ @@ -826,9 +824,6 @@ /* Title for the editor settings section */ "Editor" = "Редактор"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Редактира на коментар"; - /* Accessibility label for the Email text field. Account Settings Email label Email address text field placeholder @@ -975,8 +970,7 @@ Label for number of followers. */ "Followers" = "Последователи"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Следван"; @@ -1590,7 +1584,6 @@ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -1889,8 +1882,7 @@ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Четец"; /* Text for the 'Reblog' button. */ @@ -2016,7 +2008,6 @@ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Отново"; @@ -2206,9 +2197,6 @@ Continue without making a selection. */ "Skip" = "Пропускане"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Някои качвания на файлове се провалиха. Това действие ще премахне всички провалени файлове от публикацията. Запазване въпреки това?"; - /* Invite Validation Alert Update User Failed Title */ "Sorry!" = "Съжаляваме!"; @@ -2448,7 +2436,6 @@ "Theme Activated" = "Темата е активирана"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Теми"; @@ -2547,8 +2534,7 @@ /* Discoverability title for HTML keyboard shortcut. */ "Toggle HTML Source " = "Включване на HTML"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Тема"; /* Topics Filter Tab Title */ @@ -2698,9 +2684,6 @@ /* Label to show while uploading media to server */ "Uploading..." = "Качване..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Неуспешно качване"; - /* Use the current image */ "Use" = "Използване"; @@ -2871,8 +2854,7 @@ /* Title of Years stats filter. */ "Years" = "Години"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Да"; diff --git a/WordPress/Resources/cs.lproj/Localizable.strings b/WordPress/Resources/cs.lproj/Localizable.strings index c439feda32b6..d3164caa91f2 100644 --- a/WordPress/Resources/cs.lproj/Localizable.strings +++ b/WordPress/Resources/cs.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nPro potvrzení prosím zadejte před uzavřením znovu své uživatelské jméno.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/ rok"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Postupné načítání obrázků \"Lazy-load\""; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li slov, %2$li znaků"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s blok"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s možnosti bloku"; @@ -496,9 +489,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Přidat téma"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Zde přidejte vlastní adresu URL CSS, která se načte do aplikace Reader. Pokud používáte Calypso místně, může to být něco jako: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Přidat doménu"; @@ -631,10 +621,6 @@ translators: Block name. %s: The localized block name */ Title of the drafts filter. This filter shows a list of draft posts. */ "All" = "Vše"; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Všechny plány WordPress.com obsahují vlastní název domény. Zaregistrujte si zdarma svou prémiovou doménu hned teď."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Všechny komentáře"; @@ -948,9 +934,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Automaticky spravováno na tomto webu"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Automatické obnovení povoleno"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Schválit automaticky"; @@ -1076,9 +1059,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Blok duplikován"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Editor bloků povolen"; - /* Jetpack Settings: Block malicious login attempts */ "Block malicious login attempts" = "Blokovat škodlivé pokusy o přihlášení"; @@ -1153,9 +1133,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Přeneste média přímo ze zařízení nebo fotoaparátu na svůj web."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Prozkoumejte seznam šablon a nejděte tu co se hodí nejvíce."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Ochrana před útokem hrubou silou"; @@ -1448,8 +1425,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Vyberte web, který chcete otevřít."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Vybrat šablonu"; /* Select the site's intent. Subtitle */ @@ -1538,7 +1514,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Zavřít"; @@ -1679,24 +1654,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Dokončeno: Nastavte název svého webu"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Dokončeno: Vyberte šablonu"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Dokončeno: Vyberte jedinečnou ikonu webu"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Dokončeno: Spojte se s jinými weby"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Dokončeno: Pokračujte v nastavení webu"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Dokončeno: Vytvořte si svůj web"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Dokončeno: Prozkoumejte plány"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Dokončeno: Publikujte příspěvek"; @@ -1834,9 +1800,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Pokračujte pomocí Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Pokračujte v nastavení webu"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Pokračování s Apple"; @@ -1930,15 +1893,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Nelze se připojit k webu WordPress. Na této adrese není platný web WordPress. Zkontrolujte adresu webu (URL), kterou jste zadali."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Nelze se připojit. Na serveru chybí požadované metody XML-RPC."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Nelze se připojit. Při pokusu o přístup ke koncovému bodu XMLRPC vašeho webu jsme obdrželi chybu 403. Aplikace to potřebuje, aby mohla komunikovat s vaším webem. Požádejte svého hostitele o vyřešení tohoto problému."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Nelze se připojit. Váš hostitel blokuje požadavky POST a aplikace to potřebuje, aby mohla komunikovat s vaším webem. Požádejte svého hostitele o vyřešení tohoto problému."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Značky se nepodařilo načíst."; @@ -1970,9 +1924,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "ZIP"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Protokolování pádů"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Crash zprávy"; @@ -1988,9 +1939,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Vytvořit nový"; -/* Title for the site creation flow. */ -"Create New Site" = "Vytvořit novou stránku"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2177,9 +2125,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Ladit"; -/* Debug settings title */ -"Debug Settings" = "Nastavení ladění"; - /* Only December needs to be translated */ "December 17, 2017" = "17. prosince, 2017"; @@ -2198,9 +2143,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Výchozí formát příspěvků"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "Výchozí adresa URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Výchozí pro nové příspěvky"; @@ -2360,12 +2302,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domény"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domény zakoupené na tomto webu budou přesměrovány na %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Domény zakoupené na tomto webu budou uživatele přesměrovávat"; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Nemáte účet? _Přihlásit se_"; @@ -2532,8 +2468,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Úpravy"; /* Title for the edit more button section */ @@ -2592,9 +2527,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Šéfredaktor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Upravit komentář"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Upravit komentář."; @@ -2722,9 +2654,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Chcete-li tento příspěvek chránit, zadejte heslo"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Výše zadejte různá slova a my vyhledáme adresu, která jí odpovídá."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Zadejte heslo"; @@ -2910,24 +2839,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Rozbalí se a vybere jinou oblast nabídky"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Platnost vypršela"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Přihlašovací kód vypršel"; /* Title. Indicates an expiration date. */ "Expires on" = "Vyprší za"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Platnost vyprší %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Několika slovy popište, čím se budete na webu zabývat"; -/* Title of a Quick Start Tour */ -"Explore plans" = "Prozkoumejte plány"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Export obsahu"; @@ -3113,8 +3033,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Odběratelé"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Sleduji"; @@ -3131,9 +3050,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Sledovat"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Sleduje blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Sledovat tento blog."; @@ -3167,9 +3083,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Knihovna fotografií zdarma"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "První rok zdarma"; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Uvolněte úložný prostor v tomto zařízení odstraněním dočasných mediálních souborů. To neovlivní média na vašem webu."; @@ -3258,9 +3171,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Seznamte se s aplikací"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Získejte svou doménu"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Získejte svá oznámení rychleji"; @@ -3285,9 +3195,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Zpět"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Přejít na sledování"; @@ -3326,18 +3233,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Provede vás procesem kontroly vašich oznámení."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Provede vás procesem výběru šablony pro váš web."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Provede vás procesem vytváření nové stránky pro váš web."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Provede vás procesem vytváření vašeho webu."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Provede vás procesem zkoumání plánů pro váš web."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Provede vás procesem sledování dalších webů."; @@ -3353,9 +3254,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Provede vás procesem nastavení názvu vašeho webu."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Provede vás procesem nastavení vašeho webu."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Provede vás procesem nahrání ikony pro váš web."; @@ -3509,9 +3407,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Aktualizace ikony se nezdařila"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Pokud již web máte, budete si muset nainstalovat bezplatný plugin Jetpack a připojit ho ke svému účtu WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Pokud e-mail nemůžete najít, zkontrolujte složku nevyžádané pošty nebo spamu"; @@ -3903,9 +3798,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Dozvíte se o nových komentářích, lajcích a následováních během několika sekund."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Zjistěte více o marketingových a SEO nástrojích v našich placených plánech."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4072,9 +3964,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Načítání komentáře..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Načítání domén"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Načítání historie ..."; @@ -4523,9 +4412,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Vyžaduje aktualizaci"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Nikdy nevyprší"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "Nový"; @@ -4600,9 +4486,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Žádné položky"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Nebyly nalezeny žádné stránky Jetpack"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Žádné menu"; @@ -4813,9 +4696,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Nedostatek místa k nahrání"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Nesledujete"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -4916,7 +4796,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5218,9 +5097,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Vyberte uživatelské jméno"; -/* The item to select during a guided tour. */ -"Plan" = "Plán"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Plány"; @@ -5528,9 +5404,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Primární web"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Primární adresa webu"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Soukromé"; @@ -5629,9 +5502,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Publikováno"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publikování do"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Publikuji stránku..."; @@ -5653,9 +5523,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Push oznámení byla vypnuta v nastavení iOS. Přepnutím možnosti „Povolit oznámení“ je znovu zapnete."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Rychlý start"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Ohodnoťte nás!"; @@ -5674,13 +5541,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Čtenář"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "URL CSS čtečky"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Čtení příspěvků z jiných webů"; @@ -5835,9 +5698,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Odebráním sledujících přestanou dostávat aktualizace z vašeho webu. Pokud se rozhodnou, mohou stále navštívit váš web a znovu jej sledovat."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Obnovení na %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Vyměňte aktuální blok"; @@ -5970,7 +5830,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Opakovat"; @@ -6189,9 +6048,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Zobrazit vše"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Zobrazit instrukce"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Podívejte se na komentáře a oznámení v reálném čase."; @@ -6208,24 +6064,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Vyberte %@ a vytvořte nový příspěvek"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Vyberte %@ a objevte nové šablony"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Chcete-li najít další stránky, vyberte %@."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Vyberte %@ a podívejte se, jak si váš web vede."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Chcete-li zobrazit svůj kontrolní seznam, vyberte %@"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Vyberte %@ pro zobrazení vaší aktuální knihovny."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Chcete-li zobrazit svůj aktuální plán a další dostupné plány, vyberte %@."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Chcete-li zobrazit seznam stránek, vyberte %@"; @@ -6618,10 +6465,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Stránka webu"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Zabezpečení a výkon webu\nv kapse"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Časové pásmo webu (UTC%1$@%2$d%3$@)"; @@ -6676,9 +6519,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Některá data nebyla načtena"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Některá nahrání medií se nezdařila. Tato akce odstraní všechna neúspěšné nahraná média z příspěvku.\nPřesto přepnout?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Něco se pokazilo"; @@ -7213,7 +7053,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Webová stránka %1$@ používá WordPress %2$@. Neprodleně aktualizujte na poslední verzi WordPress %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Web na této adrese není web WordPress. Abychom se k němu mohli připojit, musí web používat WordPress."; /* Message shown when site deletion API failed */ @@ -7253,7 +7094,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Šablona byla aktivována"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Šablony"; @@ -7499,9 +7339,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Časové pásmo"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Je čas dokončit nastavení vašeho webu! Náš kontrolní seznam vás provede dalšími kroky."; - /* WordPress.com Marketing Footer Text */ "Tips for getting the most out of WordPress.com." = "Tipy jak získat co nejvíc z WordPress.com."; @@ -7550,9 +7387,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Chcete-li na svém webu používat statistiky, musíte si nainstalovat plugin Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Abyste mohli tuto aplikaci používat pro %@, musíte mít nainstalovaný a aktivovaný plugin Jetpack."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7573,9 +7407,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Přepíná styl neuspořádaného seznamu"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Nástroje"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Nejlepší komentátoři"; @@ -7583,8 +7414,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Nejvyšší úroveň"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Téma"; /* Used when a Reader Topic is not found for a specific id */ @@ -7659,9 +7489,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Opakovat"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Zkuste to s jiným účtem"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Zkuste upravit časové období filtru"; @@ -7738,9 +7565,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Zadejte název svého webu"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Zadejte další návrhy"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7846,12 +7670,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Nelze nahrát 1 koncept příspěvku"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Nelze nahrát 1 koncept příspěvku, %ld souborů"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Nelze nahrát 1 koncept příspěvku, 1 soubor"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Nelze nahrát 1 příspěvek"; @@ -7906,8 +7724,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Zrušení sledování"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Zrušit sledování %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -7923,9 +7740,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Sledování webu zrušeno"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Nesleduje blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Přestat sledovat tento blog."; @@ -8089,18 +7903,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Nahrávám..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Nahrávání selhalo"; - /* Use the current image */ "Use" = "Použit"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "K vyhledání stránek a značek použijte %@"; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Použijte Sandbox Store"; - /* Option to enable the block editor for new posts */ "Use block editor" = "Použijte editor bloků"; @@ -8145,9 +7953,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Ověřte přihlášení"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Ověřte svou e-mailovou adresu - pokyny zaslané na %@"; - /* Description for the version label in the What's new page. */ "Version " = "Verze"; @@ -8352,9 +8157,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "Vaši zálohu jsme nemohli vytvořit. Prosím zkuste to znovu později."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Nenašli jsme žádnou dostupnou adresu se zadanými slovy - zkusme to znovu."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Tuto stránku jsme nemohli zveřejnit, ale zkusíme to znovu později."; @@ -8430,9 +8232,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Právě jsme poslali kouzelný odkaz"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Udělali jsme velká vylepšení editoru bloků a myslíme si, že to stojí za vyzkoušení!\n\nPovolili jsme to pro nové příspěvky a stránky, ale pokud chcete přejít na klasický editor, přejděte do části „Můj web“> „Nastavení webu“."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "Úspěšně jsme vytvořili zálohu vašeho webu od %@"; @@ -8442,9 +8241,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Používáme další nástroje pro měření, včetně některých nástrojů od třetích stran. Přečtěte si více o těchto nástrojích a jak je ovládat."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "Na zadané adrese se nám nepodařilo zjistit web WordPress. Ujistěte se, že je nainstalován WordPress a že používáte nejnovější dostupnou verzi."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "V tuto chvíli jsme vám nemohli poslat e-mail. Prosím zkuste to znovu později."; @@ -8533,9 +8329,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Poslali jsme vám e-mailem odkaz na přihlášení k vytvoření nového účtu WordPress.com. Zkontrolujte svůj e-mail v tomto zařízení a klepněte na odkaz v e-mailu, který obdržíte z WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Došlo k problémům se změnou primární domény na vašem webu. Nemusíte se obávat, vaše doména byla úspěšně zakoupena."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Adresa webu"; @@ -8807,8 +8600,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Roky"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Ano"; @@ -8901,9 +8693,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "Máte 1 skrytou WordPress stránku."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "Ke svému plánu máte bezplatnou roční registraci domény"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Máte na svém webu aktivní upgrade na prémium. Zrušte tento upgrade před smazáním vašeho webu."; @@ -8988,9 +8777,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "V tomto příspěvku jste provedli neuložené změny"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Domény vašeho webu"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Ikona vašeho webu"; @@ -9018,9 +8804,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Vaše první záloha bude brzy připravena"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Vaše bezplatná adresa na WordPress.com je"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Vaše nová doména %@ se nastavuje. Může trvat až 30 minut, než vaše doména začne fungovat."; @@ -9036,9 +8819,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Vaše příspěvky, stránky a nastavení budou zaslány na %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Adresa primárního webu je adresa, kterou návštěvníci uvidí ve svém adresním řádku při návštěvě vašeho webu."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Obnova trvá déle než obvykle, zkontrolujte to prosím znovu za několik minut."; @@ -9096,12 +8876,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Sledujete tuto konverzaci. Při každém novém komentáři obdržíte e-mail."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Nyní používáte editor bloků pro nové stránky - skvělé! Chcete-li přejít na klasický editor, přejděte do části „Můj web“> „Nastavení webu“."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Nyní pro nové příspěvky používáte editor bloků - skvělé! Chcete-li přejít na klasický editor, přejděte do části „Můj web“> „Nastavení webu“."; - /* Comment Attachment Label */ "[COMMENT]" = "[KOMENTÁŘ]"; @@ -9211,7 +8985,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "ellipsisButton.AccessibilityLabel" = "Více"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -9950,9 +9723,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Jetpack Plugin Modal title in WordPress */ "wordpress.jetpack.plugin.modal.title" = "Tento web není aplikací WordPress podporován"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "váš web"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Přihlaste se pomocí Google."; diff --git a/WordPress/Resources/cy.lproj/Localizable.strings b/WordPress/Resources/cy.lproj/Localizable.strings index 003ec220025d..6ac347e6cd42 100644 --- a/WordPress/Resources/cy.lproj/Localizable.strings +++ b/WordPress/Resources/cy.lproj/Localizable.strings @@ -414,7 +414,6 @@ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Cau"; @@ -728,8 +727,7 @@ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Golygu"; /* Title for the edit more button section */ @@ -883,8 +881,7 @@ Label for number of followers. */ "Followers" = "Dilynwyr"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Yn dilyn"; @@ -1390,7 +1387,6 @@ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -1671,8 +1667,7 @@ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Darllennydd"; /* Text for the 'Reblog' button. */ @@ -1792,7 +1787,6 @@ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Ceisiwch eto"; @@ -1979,9 +1973,6 @@ /* Label for the slug field. Should be the same as WP core. */ "Slug" = "Bonyn"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Mae llwytho rhai cyfryngau wedi methu. Bydd y weithred hon yn tynnu'r holl cyfryngau oll wedi methu o'r cofnod.\nCadw beth bynnag?"; - /* Invite Validation Alert Update User Failed Title */ "Sorry!" = "Ymddiheuriadau!"; @@ -2197,7 +2188,6 @@ "Theme Activated" = "Thema yn fyw"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Themâu"; @@ -2287,8 +2277,7 @@ /* Discoverability title for HTML keyboard shortcut. */ "Toggle HTML Source " = "Togglo Ffynhonnell yr HTML "; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Pwnc"; /* Topics Filter Tab Title */ @@ -2434,9 +2423,6 @@ /* Label to show while uploading media to server */ "Uploading..." = "Llwytho..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Llwytho wedi methu"; - /* Use the current image */ "Use" = "Defnydd"; @@ -2601,8 +2587,7 @@ /* Title of Years stats filter. */ "Years" = "Blwyddyn"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Iawn"; diff --git a/WordPress/Resources/da.lproj/Localizable.strings b/WordPress/Resources/da.lproj/Localizable.strings index d6dcddee2441..6e6fcfff38fe 100644 --- a/WordPress/Resources/da.lproj/Localizable.strings +++ b/WordPress/Resources/da.lproj/Localizable.strings @@ -205,7 +205,6 @@ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Luk"; @@ -395,8 +394,7 @@ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Rediger"; /* View title when editing a comment. */ @@ -506,8 +504,7 @@ Label for number of followers. */ "Followers" = "Følgere"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Følgere"; @@ -833,7 +830,6 @@ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -1030,8 +1026,7 @@ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Læser"; /* Text for the 'Reblog' button. */ @@ -1110,7 +1105,6 @@ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Prøv igen"; @@ -1345,7 +1339,6 @@ "The username or password stored in the app may be out of date. Please re-enter your password in the settings and try again." = "Brugernavnet eller kodeordet, der er gemt i app'en, er ikke korrekt. Prøv venligst at genindtaste dit kodeord under indstillinger og prøv igen."; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Temaer"; @@ -1376,8 +1369,7 @@ Notifications Today Section Header */ "Today" = "I dag"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Emne"; /* Topics Filter Tab Title */ @@ -1563,8 +1555,7 @@ /* Title of Years stats filter. */ "Years" = "År"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Ja"; diff --git a/WordPress/Resources/de.lproj/Localizable.strings b/WordPress/Resources/de.lproj/Localizable.strings index a6e78cdad650..2fa59090e212 100644 --- a/WordPress/Resources/de.lproj/Localizable.strings +++ b/WordPress/Resources/de.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2024-01-04 00:31:04+0000 */ +/* Translation-Revision-Date: 2024-01-08 12:56:59+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/4.0.0-alpha.11 */ /* Language: de */ @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nBitte gib den Benutzernamen vor dem Schließen erneut an, um den Vorgang zu bestätigen.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/Jahr"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Verzögertes Laden von Bildern"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li Wörter, %2$li Zeichen"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s blockieren"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s Blockoptionen"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Ein Thema hinzufügen"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Füge hier eine individuelle CSS-URL hinzu, die im Reader geladen werden soll. Wenn du Calypso lokal ausführst, kann das etwa folgendermaßen aussehen: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Domain hinzufügen"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Alle WordPress.com-Jahrestarife enthalten einen individuellen Domainnamen. Registriere jetzt deine kostenlose Domain."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Alle WordPress.com-Tarife beinhalten einen individuellen Domain-Namen. Registriere jetzt deine kostenlose Premium-Domain."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Alle Kommentare"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Auf dieser Website automatisch verwaltet"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Automatische Verlängerung aktiviert"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Automatisch genehmigen"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Block wurde dupliziert"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Block-Editor aktiviert"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Block gruppiert"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Bringe Medien direkt von deinem Gerät oder Kamera auf deine Website."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Durchsuche alle unsere Themes, um das für dich perfekte Theme zu finden."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Schutz vor Brute-Force-Angriffen"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Wähle eine Website aus, die geöffnet werden soll."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Wähle ein Theme"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Schließen"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Abgeschlossen: Deinen Website-Titel prüfen"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Abgeschlossen: Ein Theme auswählen"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Abgeschlossen: Ein einzigartiges Website-Icon auswählen"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Abgeschlossen: Mit anderen Websites verbinden"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Abgeschlossen: Mit der Website-Einrichtung fortfahren"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Vollständig: Deine Website erstellen"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Abgeschlossen: Tarife ansehen"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Abgeschlossen: Einen Beitrag veröffentlichen"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Mit Google fortfahren"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Mit der Website-Einrichtung fortfahren"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Weiter mit Apple"; @@ -1982,13 +1945,13 @@ translators: Block name. %s: The localized block name */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Konnte keine Verbindung zur WordPress-Website herstellen. Es gibt unter dieser Adresse keine gültige WordPress-Website. Überprüfe die eingegebene Website-Adresse (URL)."; /* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Verbindung fehlgeschlagen. Die erforderlichen XML-RPC-Methoden sind auf dem Server nicht vorhanden."; +"Couldn't connect. Required XML-RPC methods are missing on the server. Please contact your hosting provider to solve this problem." = "Die Verbindung konnte nicht hergestellt werden. Die erforderlichen XML-RPC-Methoden fehlen auf dem Server. Bitte kontaktiere deinen Hosting-Anbieter, um dieses Problem zu lösen."; /* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Verbindung fehlgeschlagen. Wir haben einen 403-Fehler erhalten, als wir versucht haben, den XMLRPC-Endpunkt deiner Website aufzurufen. Die App braucht diesen, um mit deiner Website zu kommunizieren. Kontaktiere deinen Host, um dieses Problem zu beheben."; +"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem." = "Die Verbindung ist fehlgeschlagen. Wir haben einen 403-Fehler erhalten, als wir versucht haben, den XMLRPC-Endpunkt deiner Website aufzurufen. Die App braucht diesen, um mit deiner Website zu kommunizieren. Kontaktiere deinen Hosting-Anbieter, um dieses Problem zu beheben."; /* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Verbindung fehlgeschlagen. Dein Host blockiert POST-Anforderungen und die App benötigt diese, um mit deiner Website zu kommunizieren. Kontaktiere deinen Host, um dieses Problem zu beheben."; +"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem." = "Die Verbindung ist fehlgeschlagen. Dein Host blockiert POST-Anforderungen und die App benötigt diese, um mit deiner Website zu kommunizieren. Kontaktiere deinen Hosting-Anbieter, um dieses Problem zu beheben."; /* Error message when tag loading failed */ "Couldn't load tags." = "Schlagwörter konnten nicht geladen werden."; @@ -2021,9 +1984,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Ländercode"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Crash-Logging "; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Absturzberichte"; @@ -2039,9 +1999,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Neu erstellen"; -/* Title for the site creation flow. */ -"Create New Site" = "Neue Website erstellen"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2185,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Debug"; -/* Debug settings title */ -"Debug Settings" = "Debug-Einstelllungen"; - /* Only December needs to be translated */ "December 17, 2017" = "17. Dezember 2017"; @@ -2252,9 +2206,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Standard-Beitragsformat"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "Standard-URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Standardeinstellungen für neue Beiträge"; @@ -2420,12 +2371,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domains"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Auf dieser Website erworbene Domains leiten zu %@ weiter"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Auf dieser Website erworbene Domains werden Nutzer weiterleiten zu "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Du hast noch kein Konto? _Registrieren_"; @@ -2595,8 +2540,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Bearbeiten"; /* Title for the edit more button section */ @@ -2661,9 +2605,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Bearbeitet einen Kommentar"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Hiermit kannst du den Kommentar bearbeiten."; @@ -2791,9 +2732,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Gib ein Passwort ein, um diesen Beitrag zu schützen"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Gib oben andere Wörter ein und wir suchen nach einer passenden Adresse."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Passwort eingeben"; @@ -2979,24 +2917,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Klappt auf, um einen anderen Menübereich auszuwählen"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Abgelaufen"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Abgelaufener Anmeldecode"; /* Title. Indicates an expiration date. */ "Expires on" = "Läuft ab am"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Läuft ab am %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Erkläre worum es auf dieser Website geht."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Pläne erkunden"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Inhalte exportieren"; @@ -3095,6 +3024,9 @@ translators: Block name. %s: The localized block name */ /* Label for the file type (.JPG, .PNG, etc) for a media asset (image / video) */ "File type" = "Dateityp"; +/* No comment provided by engineer. */ +"File type not supported as a media file." = "Der Dateityp wird nicht als Mediendatei unterstützt."; + /* Film & Television site intent topic */ "Film & Television" = "Film und Fernsehen"; @@ -3182,8 +3114,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Follower"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Folgen"; @@ -3200,9 +3131,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Follows"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Folgt Blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Hiermit folgst du dem Blog."; @@ -3212,6 +3140,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Font Size" = "Schriftgröße"; +/* translators: %1$s: Font size name e.g. Small */ +"Font Size, %1$s" = "Schriftgröße: %1$s"; + /* Food site intent topic */ "Food" = "Essen"; @@ -3242,9 +3173,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Kostenlose Fotobibliothek"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Im ersten Jahr kostenlos "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Gib Speicherplatz auf diesem Gerät frei, indem du temporäre Mediendateien löschst. Dies hat keine Auswirkung auf die Medien auf deiner Website."; @@ -3333,9 +3261,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Lerne die App kennen"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Hol dir deine Domain"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Erhalte deine Benachrichtigungen schneller"; @@ -3360,9 +3285,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Zurück"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Zu „Du folgst“ wechseln"; @@ -3401,18 +3323,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Erläutert dir den Vorgang, wie du deine Benachrichtigungen ansehen kannst."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Erläutert dir den Vorgang, wie du ein Theme für deine Website auswählen kannst."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Erläutert dir den Vorgang, wie du eine neue Seite für deine Website erstellen kannst."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Erläutert dir den Vorgang, wie du deine Website erstellen kannst."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Erläutert dir den Vorgang, wie du Tarife für deine Website entdecken kannst."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Erläutert dir den Vorgang, wie du anderen Websites folgen kannst."; @@ -3428,9 +3344,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Unterstützt dich beim Festlegen eines Titels für deine Website."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Erläutert dir den Vorgang, wie du deine Website einrichten kannst."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Erläutert dir den Vorgang, wie du ein Icon für deine Website hochladen kannst."; @@ -3584,9 +3497,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Icon-Aktualisierung fehlgeschlagen"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Wenn du bereits eine Website hast, musst du das kostenlose Jetpack-Plugin installieren und deinen Store mit deinem WordPress.com-Konto verbinden."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Wenn du die E-Mail nicht findest, schau in deinem Spam-E-Mail-Ordner nach."; @@ -3996,9 +3906,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Erfahre in Sekunden von neuen Kommentaren, Likes und Follows."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Erfahre mehr über die Marketing- und SEO-Tools in unseren kostenpflichtigen Plänen."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4072,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Lade Kommentare..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Domains werden geladen"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Ladeverlauf..."; @@ -4619,8 +4523,11 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Benötigt Update"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Läuft nie ab"; +/* No comment provided by engineer. */ +"Network connection lost, working offline" = "Die Netzwerkverbindung ging verloren, offline arbeiten"; + +/* No comment provided by engineer. */ +"Network connection re-established" = "Die Netzwerkverbindung wurde wiederhergestellt"; /* Header of section in Plugin Directory showing newest plugins */ "New" = "Neu"; @@ -4696,9 +4603,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Keine Elemente"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Keine Jetpack-Websites gefunden"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Kein Menü"; @@ -4915,9 +4819,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Nicht genug Platz zum Hochladen"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Du folgst nicht"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4919,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5223,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Wähle einen Benutzernamen aus"; -/* The item to select during a guided tour. */ -"Plan" = "Planung"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Tarife"; @@ -5642,9 +5539,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Haupt-Website"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Adresse der Haupt-Website"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Privatsphäre"; @@ -5746,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Publiziert am"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Veröffentlichen in"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Veröffentliche Seite..."; @@ -5770,9 +5661,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Push-Benachrichtigungen wurden in den iOS-Einstellungen deaktiviert. Aktiviere \"Benachrichtigungen erlauben\", um sie wieder zu aktivieren."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Schnellstart"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Bewerte uns"; @@ -5791,13 +5679,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Reader"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "Reader-CSS-URL"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Beiträge von anderen Websites lesen"; @@ -5958,9 +5842,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Wenn du Follower entfernst, erhalten sie keine Updates mehr von deiner Website. Wenn sie möchten, können sie deine Website aber weiterhin besuchen und dir auch wieder folgen."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Wird verlängert am %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Aktuellen Block ersetzen"; @@ -6093,7 +5974,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Erneut versuchen"; @@ -6147,6 +6027,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button label to open web page in Safari */ "Safari" = "Safari"; +/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ +"Sandbox Store" = "Sandbox Store"; + /* Menus save button title Save Action Save button label (saving content, ex: Post, Page, Comment, Category). @@ -6315,9 +6198,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Alle anzeigen"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Anweisungen anzeigen"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Kommentare und Benachrichtigungen in Echtzeit anzeigen."; @@ -6334,24 +6214,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Wähle %@ aus, um einen neuen Beitrag zu erstellen"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Wähle %@ aus, um neue Themes zu entdecken"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Wähle „%@“ aus, um andere Websites zu finden."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Wähle %@ aus, um zu sehen, wie deine Website funktioniert."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Wähle %@ aus, um deine Checkliste anzuzeigen"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Wähle %@, um deine aktuelle Bibliothek anzuzeigen."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Wähle %@ aus, um deinen aktuellen Plan und andere verfügbare Pläne anzuzeigen."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Wähle %@ aus, um deine Seitenliste anzuzeigen."; @@ -6744,10 +6615,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Website-Seite"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Website-Sicherheit und Performance\nimmer dabei"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Zeitzone der Website (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6669,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Einige Daten wurden nicht geladen"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Einige Medien-Uploads sind fehlgeschlagen. Durch diese Aktion werden alle Medien, für die das Hochladen fehlgeschlagen ist, aus dem Beitrag entfernt.\nTrotzdem speichern?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Etwas ist schiefgelaufen"; @@ -7348,7 +7212,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Die Website unter %1$@ nutzt WordPress %2$@. Wir empfehlen ein Update auf die aktuellste Version oder mindestens auf %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Die Website mit dieser Adresse ist keine WordPress-Website. Damit wir uns mit ihr verbinden können, muss die Website WordPress verwenden."; /* Message shown when site deletion API failed */ @@ -7388,7 +7253,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Theme aktiviert"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Themes"; @@ -7634,9 +7498,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Zeitzone"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Schließe nun die Einrichtung deiner Website ab! Unsere Checkliste leitet dich durch die nächsten Schritte."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Die Zeit ist abgelaufen, aber mach dir keine Sorgen, deine Sicherheit steht bei uns an erster Stelle. Versuche es bitte noch einmal!"; @@ -7688,9 +7549,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Um Statistiken auf deiner Website verwenden zu können, musst du das Jetpack-Plugin installieren."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Um diese App für %@ zu verwenden, muss das Jetpack-Plugin installiert und aktiviert sein."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7569,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Schaltet den Stil der ungeordneten Liste um"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Werkzeuge"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Top-Kommentatoren"; @@ -7721,8 +7576,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Oberste Ebene"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Thema"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7654,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Erneut versuchen"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Mit einem anderen Konto probieren"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Versuche, den Datumsbereichsfilter anzupassen"; @@ -7882,9 +7733,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Gib einen Namen für deine Website ein"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Tippe, um weitere Vorschläge zu erhalten"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7990,12 +7838,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "1 Beitragsentwurf konnte nicht hochgeladen werden."; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "1 Beitragsentwurf, %ld Dateien konnten nicht hochgeladen werden."; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "1 Beitragsentwurf, 1 Datei konnten nicht hochgeladen werden."; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "1 Beitrag konnte nicht hochgeladen werden"; @@ -8050,8 +7892,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Entfolgen"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Entfolge %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7908,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Entfolgte Website"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Blog wird nicht mehr gefolgt"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Hiermit folgst du dem Blog nicht mehr."; @@ -8239,18 +8077,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Wird hochgeladen …"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Uploads fehlgeschlagen"; - /* Use the current image */ "Use" = "Benutzen"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Unter %@ findest du Websites und Schlagwörter."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Sandbox Store verwenden"; - /* The button's title text to use a security key. */ "Use a security key" = "Sicherheitsschlüssel verwenden"; @@ -8298,9 +8130,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Verifiziere Anmeldung"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Überprüfe deinen Posteingang – eine Anleitung wurde an %@ gesendet"; - /* Description for the version label in the What's new page. */ "Version " = "Version"; @@ -8509,9 +8338,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "Wir konnten dein Backup nicht erstellen. Bitte versuche es später erneut."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Wir konnten mit den von dir eingegebenen Wörtern keine verfügbare Adresse finden. Versuche es bitte noch einmal."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Wir konnten diese Seite nicht veröffentlichen, versuchen es aber später erneut."; @@ -8587,9 +8413,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Wir haben einen magischen Link an folgende Adresse geschickt:"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Wir haben große Verbesserungen am Block-Editor vorgenommen und denken, dass es sich lohnt, ihn auszuprobieren!\n\nWir haben ihn für neue Beiträge und Seiten aktiviert, aber wenn du zum klassischen Editor wechseln möchtest, gehe zu „Meine Website“ > „Website-Einstellungen“."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "Wir haben erfolgreich ein Backup deiner Website mit Stand %@ erstellt"; @@ -8599,9 +8422,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Wir verwenden andere Werkzeuge zum Tracking, darunter auch welche von Drittanbietern. Hier erhältst du weitere Informationen und Tipps, wie du sie kontrollierst."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "An der von dir eingegeben Adresse konnten wir keine WordPress-Website finden. Bitte stelle sicher, dass WordPress installiert ist und du über die aktuelle Version verfügst."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "Leider können wir dir zu diesem Zeitpunkt keine E-Mail senden. Bitte versuche es später erneut."; @@ -8690,9 +8510,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Wir haben dir einen Anmeldelink per E-Mail gesendet, um dein neues WordPress.com-Konto zu erstellen. Überprüfe deine E-Mails auf diesem Gerät und tippe auf den Link in der E-Mail, die du von WordPress.com erhalten hast."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Beim Ändern der Hauptdomain deiner Website ist ein Problem aufgetreten. Aber keine Sorge, deine Domain wurde erfolgreich gekauft."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Web-Adresse"; @@ -8924,6 +8741,9 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of button that displays the Automattic Work With Us web page */ "Work With Us" = "Werde Teil unseres Teams"; +/* No comment provided by engineer. */ +"Working Offline" = "Offline arbeiten"; + /* Accessibility label for the Stats' world map. */ "World map showing views by country." = "Weltkarte mit Aufrufen pro Land."; @@ -8970,8 +8790,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Jahre"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Ja"; @@ -9071,7 +8890,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "You have 1 hidden WordPress site." = "Du hast eine versteckte WordPress-Website."; /* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "In deinem Tarif ist eine kostenlose Domain-Registrierung für ein Jahr enthalten"; +"You have a free one-year domain registration with your plan." = "In deinem Tarif ist eine kostenlose Domain-Registrierung für ein Jahr enthalten."; /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Du hast aktive Premium-Upgrades auf deiner Seite. Bitte lösche deine Upgrades bevor du deine Website löschst."; @@ -9157,9 +8976,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Du hast nicht gespeicherte Änderungen an diesem Beitrag vorgenommen"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Deine Website-Domains"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Dein Website-Icon"; @@ -9187,9 +9003,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Dein erstes Backup ist bald fertig"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Deine kostenlose WordPress.com-Adresse lautet"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Deine neue Domain „%@“ wird eingerichtet. Es kann bis zu 30 Minuten dauern, bis deine Domain funktioniert."; @@ -9205,9 +9018,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Deine Beiträge, Seiten und Einstellungen werden dir per E-Mail an %@ geschickt."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Die Hauptadresse deiner Website ist das, was Besucher in ihrer Adressleiste sehen, wenn sie deine Website besuchen."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Deine Wiederherstellung dauert länger als üblich, bitte überprüfe das hier in wenigen Minuten nochmal."; @@ -9265,12 +9075,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Du folgst dieser Unterhaltung. Du erhältst eine E-Mail, sobald ein neuer Kommentar hinzugefügt wird."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Großartig! Du nutzt jetzt den Block-Editor für neue Seiten! Wenn du zum klassischen Editor wechseln möchtest, gehe zu „Meine Website“ > „Website-Einstellungen“."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Großartig! Du nutzt jetzt den Block-Editor für neue Beiträge! Wenn du zum klassischen Editor wechseln möchtest, gehe zu „Meine Website“ > „Website-Einstellungen“."; - /* Comment Attachment Label */ "[COMMENT]" = "[KOMMENTAR]"; @@ -9506,6 +9310,9 @@ Note that the word 'go' here should have a closer meaning to 'start' rather than /* Option for users to rate a chat bot answer as helpful. */ "chat.rateHelpful" = "Als hilfreich bewerten"; +/* Title for the checkout view */ +"checkout.title" = "Kasse"; + /* Displayed in the confirmation alert when marking comment notifications as read. */ "comment" = "Kommentar"; @@ -9656,27 +9463,58 @@ Example: Reply to Pamela Nguyen */ /* Title for the View stats button in the More menu */ "dashboardCard.stats.viewStats" = "Statistiken anzeigen"; +/* Debug menu item title */ +"debugMenu.analytics" = "Analysen"; + /* Feature flags menu item */ "debugMenu.featureFlags" = "Feature Flags"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Allgemein"; +/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ +"debugMenu.readerCellTitle" = "Reader-CSS-URL"; + +/* Placeholder for the reader CSS URL */ +"debugMenu.readerDefaultURL" = "Standard-URL"; + +/* Hint for the reader CSS URL field */ +"debugMenu.readerHit" = "Füge hier eine individuelle CSS-URL hinzu, die im Reader geladen werden soll. Wenn du Calypso lokal ausführst, kann das in etwa so aussehen: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; + +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.currentValue" = "Aktueller Wert"; -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Überschriebene Parameter sind mit einem Häkchen gekennzeichnet."; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.defaultValue" = "Standardwert"; -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Überschreibe den ausgewählten Parameter, indem du hier einen neuen Wert definierst."; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.overridenValue" = "Remote-Konfiguration"; -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Kein Remote- oder Standardwert vorhanden"; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.remoteConfigValue" = "Wert für Remote-Konfiguration"; -/* Remote Config debug menu title */ +/* Remote Config Debug Menu reset button title */ +"debugMenu.remoteConfig.reset" = "Zurücksetzen"; + +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Remote-Konfiguration"; /* Remove current quick start tour menu item */ "debugMenu.removeQuickStart" = "Aktuelle Tour entfernen"; +/* Debug Menu section title */ +"debugMenu.section.logging" = "Protokollierung"; + +/* Debug Menu section title */ +"debugMenu.section.quickStart" = "Schnellstart"; + +/* Debug Menu section title */ +"debugMenu.section.settings" = "Einstellungen"; + +/* Title for debug menu screen */ +"debugMenu.title" = "Entwickler"; + +/* Weekly Roundup debug menu item */ +"debugMenu.weeklyRoundup" = "Wöchentliche Zusammenfassung"; + /* Title for a menu action in the context menu on the Jetpack install card. */ "domain.dashboard.card.menu.hide" = "Ausblenden"; @@ -9695,6 +9533,9 @@ Example: Reply to Pamela Nguyen */ /* The expired label of the domain card in All Domains screen. */ "domain.management.card.expired.label" = "Abgelaufen"; +/* Label indicating that a domain name registration has no expiry date. */ +"domain.management.card.neverExpires.label" = "Läuft nie ab"; + /* The renews label of the domain card in All Domains screen. */ "domain.management.card.renews.label" = "Wird verlängert"; @@ -9788,6 +9629,15 @@ Example: Reply to Pamela Nguyen */ /* The text to display for paid domains in 'Site Creation > Choose a domain' screen */ "domain.suggestions.row.yearly" = "pro Jahr"; +/* Help button */ +"domainSelection.helpButton.title" = "Hilfe"; + +/* Description for the first domain purchased with a free plan. */ +"domainSelection.redirectPrompt.title" = "Auf dieser Website erworbene Domains leiten zu %1$@ weiter"; + +/* Search domain - Title for the Suggested domains screen */ +"domainSelection.search.title" = "Domains suchen"; + /* Title for the checkout screen. */ "domains.checkout.title" = "Kasse"; @@ -9819,7 +9669,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Mehr"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10231,9 +10080,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "als Spam markiert"; -/* Products header text in Me Screen. */ -"me.products.header" = "Produkte"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Medien konnten nicht synchronisiert werden"; @@ -10663,6 +10509,9 @@ Example: Reply to Pamela Nguyen */ /* Register Domain - Domain contact information field Phone */ "phone number" = "Telefonnummer"; +/* Title for the plan selection view */ +"planSelection.title" = "Tarife"; + /* Post status and date for list cells with %@ a placeholder for the date. */ "post.createdTimeAgo" = "Erstellt %@"; @@ -10871,12 +10720,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Alle Antworten anzeigen"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Wechsle zu den Website-Einstellungen, um sie wieder zu aktivieren"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Blog-Schreibanregungen ausgeblendet"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Schließen"; @@ -11101,6 +10944,30 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Site name that is placed in the tooltip view. */ "site.creation.domain.tooltip.site.name" = "DeineWebsite.com"; +/* Header of the secondary domains list section in the Domains Dashboard. %1$@ is the name of the site. */ +"site.domains.domainSection.title" = "Andere Domains für %1$@"; + +/* A section title which displays a row with a free WP.com domain */ +"site.domains.freeDomainSection.title" = "Deine kostenlose WordPress.com-Domain"; + +/* Description for the first domain purchased with a paid plan. */ +"site.domains.freeDomainWithPaidPlan.description" = "Erhalte mit jedem kostenpflichtigen Jahrestarif eine kostenlose Domain-Registrierung oder -Übertragung für ein Jahr."; + +/* Title of the card that starts the purchase of the first domain with a paid plan. */ +"site.domains.freeDomainWithPaidPlan.title" = "Hol dir deine Domain"; + +/* Footer of the primary site section in the Domains Dashboard. */ +"site.domains.primaryDomain" = "Die Hauptadresse deiner Website ist das, was Besucher in ihrer Adressleiste sehen, wenn sie deine Website besuchen."; + +/* Primary domain label, used in the site address section of the Domains Dashboard. */ +"site.domains.primaryDomain.title" = "Hauptdomain"; + +/* Title for a button that opens domain purchasing flow. */ +"site.domains.purchaseDirectly.buttons.title" = "Nur nach einer Domain suchen"; + +/* Title for a button that opens plan and domain purchasing flow. */ +"site.domains.purchaseWithPlan.buttons.title" = "Tarif-Upgrade durchführen"; + /* Back button title shown in Site Creation flow to come back from Plan selection to Domain selection */ "siteCreation.domain.backButton.title" = "Domains"; @@ -11422,9 +11289,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "E-Mail"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "WordPress-Foren"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "WordPress Hilfe-Center"; @@ -11617,6 +11481,9 @@ Example: given a notice format "Following %@" and empty site name, this will be /* This is a comma separated list of keywords used for spotlight indexing of the 'My Sites' tab. */ "wordpress, sites, site, blogs, blog" = "wordpress, websites, website, blogs, blog"; +/* Error message that describes an unknown error had occured */ +"wordpress-api.error.unknown" = "Etwas ist schiefgelaufen. Bitte versuche es später erneut."; + /* Jetpack Plugin Modal on WordPress primary button title */ "wordpress.jetpack.plugin.modal.primary.button.title" = "Zur Jetpack-App wechseln"; @@ -11641,9 +11508,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Weitere Informationen"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "deine Website"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Mit Google anmelden."; diff --git a/WordPress/Resources/en-AU.lproj/Localizable.strings b/WordPress/Resources/en-AU.lproj/Localizable.strings index e7ac13e96635..25ff4400b510 100644 --- a/WordPress/Resources/en-AU.lproj/Localizable.strings +++ b/WordPress/Resources/en-AU.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nTo confirm, please re-enter your username before closing.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/ year"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "\"Lazy-load\" images"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li words, %2$li characters"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s block"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s block options"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Add a Topic"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally, this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Add a domain"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "All WordPress.com annual plans include a custom domain name. Register your free domain now."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "All WordPress.com plans include a custom domain name. Register your free premium domain now."; - /* An option in a list. Automatically approve all comments */ "All comments" = "All comments"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Auto-managed on this site"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Auto-renew enabled"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Automatically Approve"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Block duplicated"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Block editor enabled"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Block grouped"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Bring media straight from your device or camera to your site."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Browse all our themes to find your perfect fit."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Brute Force Attack Protection"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Choose a site to open."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Choose a theme"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Close"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Completed: Set your site title"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Completed: Choose a theme"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Completed: Choose a unique site icon"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Completed: Connect with other sites"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Completed: Continue with site setup"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Completed: create your site"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Completed: explore plans"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Completed: Publish a post"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Continue with Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Continue with site setup"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Continuing with Apple"; @@ -1981,15 +1944,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Couldn't connect. Required XML-RPC methods are missing on the server."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Couldn't load tags."; @@ -2021,9 +1975,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Country Code"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Crash Logging"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Crash reports"; @@ -2039,9 +1990,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Create New"; -/* Title for the site creation flow. */ -"Create New Site" = "Create New Site"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2176,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Debug"; -/* Debug settings title */ -"Debug Settings" = "Debug Settings"; - /* Only December needs to be translated */ "December 17, 2017" = "December 17, 2017"; @@ -2252,9 +2197,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Default Post Format"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "Default URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Defaults for New Posts"; @@ -2420,12 +2362,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domains"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Domains purchased on this site will redirect users to "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Don't have an account? _Sign up_"; @@ -2595,8 +2531,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Edit"; /* Title for the edit more button section */ @@ -2661,9 +2596,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Edits a comment"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Edits the comment."; @@ -2791,9 +2723,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Enter a password to protect this post"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Enter different words above and we'll look for an address that matches it."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Enter password"; @@ -2979,24 +2908,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Expands to select a different menu area"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Expired"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Expired log in code"; /* Title. Indicates an expiration date. */ "Expires on" = "Expires on"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Expires on %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Explain what this site is about."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Explore plans"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Export Content"; @@ -3182,8 +3102,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Followers"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Following"; @@ -3200,9 +3119,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Follows"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Follows blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Follows the blog."; @@ -3242,9 +3158,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Free Photo Library"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site."; @@ -3333,9 +3246,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Get to know the app"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Get your domain"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Get your notifications faster"; @@ -3360,9 +3270,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Go Back"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Go to Following"; @@ -3401,18 +3308,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Guides you through the process of checking your notifications."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Guides you through the process of choosing a theme for your site."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Guides you through the process of creating a new page for your site."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Guides you through the process of creating your site."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Guides you through the process of exploring plans for your site."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Guides you through the process of following other sites."; @@ -3428,9 +3329,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Guides you through the process of setting a title for your site."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Guides you through the process of setting up your site."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Guides you through the process of uploading an icon for your site."; @@ -3584,9 +3482,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Icon update failed"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "If you can’t find the email, please check your junk or spam email folder"; @@ -3996,9 +3891,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Learn about new comments, likes, and follows in seconds."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Learn about the marketing and SEO tools in our paid plans."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4057,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Loading comment..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Loading domains"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Loading history..."; @@ -4619,9 +4508,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Needs Update"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Never expires"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "New"; @@ -4696,9 +4582,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "No Items"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "No Jetpack sites found"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "No Menu"; @@ -4915,9 +4798,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Not enough space to upload"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Not following"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4898,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5202,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Pick username"; -/* The item to select during a guided tour. */ -"Plan" = "Plan"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Plans"; @@ -5642,9 +5518,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Primary Site"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Primary Site Address"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Privacy"; @@ -5746,9 +5619,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Published on"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publishing To"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Publishing page..."; @@ -5770,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Quick Start"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Rate Us"; @@ -5791,13 +5658,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Reader"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "Reader CSS URL"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Reading posts from other sites"; @@ -5958,9 +5821,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Renews on %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Replace Current Block"; @@ -6093,7 +5953,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Retry"; @@ -6315,9 +6174,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "See All"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "See Instructions"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "See comments and notifications in real time."; @@ -6334,24 +6190,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Tap %@ to create a new post"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Tap %@ to discover new themes"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Select %@ to find other sites."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Select %@ to see how your site is performing."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Tap %@ to see your checklist"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Select %@ to see your current library."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Select %@ to see your current plan and other available plans."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Select %@ to see your page list."; @@ -6744,10 +6591,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Site page"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Site security and performance\nfrom your pocket"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Site timezone (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6645,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Some data wasn't loaded"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Something went wrong"; @@ -7348,7 +7188,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "The site at %1$@ uses WordPress %2$@. We recommend to update to the latest version, or at least %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress."; /* Message shown when site deletion API failed */ @@ -7388,7 +7229,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Theme Activated"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Themes"; @@ -7634,9 +7474,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Time Zone"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Time to finish setting up your site! Our checklist walks you through the next steps."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Time's up, but don't worry, your security is our priority. Please try again!"; @@ -7688,9 +7525,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "To use stats on your site, you'll need to install the Jetpack plugin."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "To use this app for %@ you'll need to have the Jetpack plugin installed and activated."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7545,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Toggles the unordered list style"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Tools"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Top Commenters"; @@ -7721,8 +7552,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Top level"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Topic"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7630,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Try Again"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Try With Another Account"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Try adjusting your date range filter"; @@ -7882,9 +7709,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Type a name for your site"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Type to get more suggestions"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7990,12 +7814,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Unable to upload 1 draft post"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Unable to upload 1 draft post, %ld files"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Unable to upload 1 draft post, 1 file"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Unable to upload 1 post"; @@ -8050,8 +7868,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Unfollow"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Unfollow %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7884,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Unfollowed site"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Unfollows blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Unfollows the blog."; @@ -8239,18 +8053,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Uploading…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Uploads failed"; - /* Use the current image */ "Use" = "Use"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Use %@ to find sites and tags."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Use Sandbox Store"; - /* The button's title text to use a security key. */ "Use a security key" = "Use a security key"; @@ -8298,9 +8106,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Verify Log In"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Verify your email address - instructions sent to %@"; - /* Description for the version label in the What's new page. */ "Version " = "Version "; @@ -8509,9 +8314,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "We couldn't create your backup. Please try again later."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "We couldn't find any available address with the words you entered - let's try again."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "We couldn't publish this page, but we'll try again later."; @@ -8587,9 +8389,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "We just sent a magic link to"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "We successfully created a backup of your site as of %@"; @@ -8599,9 +8398,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "We use other tracking tools, including some from third parties. Read about these and how to control them."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "We were unable to send you an email at this time. Please try again later."; @@ -8690,9 +8486,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "We’ve emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Web Address"; @@ -8970,8 +8763,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Years"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Yes"; @@ -9070,9 +8862,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "You have 1 hidden WordPress site."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "You have a free one-year domain registration with your plan"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site."; @@ -9157,9 +8946,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "You've made unsaved changes to this post"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Your Site Domains"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Your Site Icon"; @@ -9187,9 +8973,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Your first backup will be ready soon"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Your free WordPress.com address is"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working."; @@ -9205,9 +8988,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Your posts, pages, and settings will be mailed to you at %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Your primary site address is what visitors will see in their address bar when visiting your website."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Your restore is taking longer than usual, please check again in a few minutes."; @@ -9265,12 +9045,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "You’re following this conversation. You will receive an email whenever a new comment is made."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’."; - /* Comment Attachment Label */ "[COMMENT]" = "[COMMENT]"; @@ -9659,19 +9433,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "Feature Flags"; -/* General section title */ -"debugMenu.generalSectionTitle" = "General"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Overridden parameters are denoted by a checkmark."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Override the chosen param by defining a new value here."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "No remote or default value"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Remote Config"; /* Remove current quick start tour menu item */ @@ -9819,7 +9582,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "More"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10231,9 +9993,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "marked as spam"; -/* Products header text in Me Screen. */ -"me.products.header" = "Products"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Unable to sync media"; @@ -10871,12 +10630,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "View all responses"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Visit Site Settings to turn back on"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Blogging Prompts hidden"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Dismiss"; @@ -11422,9 +11175,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "Email"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "WordPress Forums"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "WordPress Help Centre"; @@ -11641,9 +11391,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Learn more"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "your site"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Log in with Google."; diff --git a/WordPress/Resources/en-CA.lproj/Localizable.strings b/WordPress/Resources/en-CA.lproj/Localizable.strings index d8650148bd0a..380f17c4c7c5 100644 --- a/WordPress/Resources/en-CA.lproj/Localizable.strings +++ b/WordPress/Resources/en-CA.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nTo confirm, please re-enter your username before closing.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/year"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "\"Lazy-load\" images"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li words, %2$li characters"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s block"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s block options"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Add a Topic"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Add a domain"; @@ -649,10 +639,6 @@ translators: Block name. %s: The localized block name */ Title of the drafts filter. This filter shows a list of draft posts. */ "All" = "All"; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "All WordPress.com plans include a custom domain name. Register your free premium domain now."; - /* An option in a list. Automatically approve all comments */ "All comments" = "All comments"; @@ -969,9 +955,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Auto-managed on this site"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Auto-renew enabled"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Automatically Approve"; @@ -1103,9 +1086,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Block duplicated"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Block editor enabled"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Block grouped"; @@ -1192,9 +1172,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Bring media straight from your device or camera to your site."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Browse all our themes to find your perfect fit."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Brute Force Attack Protection"; @@ -1487,8 +1464,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Choose a site to open."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Choose a theme"; /* Select the site's intent. Subtitle */ @@ -1577,7 +1553,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Close"; @@ -1718,24 +1693,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Completed: Check your site title"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Completed: choose a theme"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Completed: Choose a unique site icon"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Completed: Connect with other sites"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Completed: continue with site setup"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Completed: create your site"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Completed: explore plans"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Completed: publish a post"; @@ -1873,9 +1839,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Continue with Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Continue with site setup"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Continuing with Apple"; @@ -1969,15 +1932,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Couldn't connect. Required XML-RPC methods are missing on the server."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Couldn't load tags."; @@ -2009,9 +1963,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Country Code"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Crash Logging"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Crash reports"; @@ -2027,9 +1978,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Create New"; -/* Title for the site creation flow. */ -"Create New Site" = "Create New Site"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2216,9 +2164,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Debug"; -/* Debug settings title */ -"Debug Settings" = "Debug Settings"; - /* Only December needs to be translated */ "December 17, 2017" = "December 17, 2017"; @@ -2240,9 +2185,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Default Post Format"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "Default URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Defaults for New Posts"; @@ -2408,12 +2350,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domains"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Domains purchased on this site will redirect users to "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Don't have an account? _Sign up_"; @@ -2583,8 +2519,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Edit"; /* Title for the edit more button section */ @@ -2649,9 +2584,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Edits the comment"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Edits the comment."; @@ -2779,9 +2711,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Enter a password to protect this post"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Enter different words above and we'll look for an address that matches it."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Enter password"; @@ -2967,24 +2896,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Expands to select a different menu area"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Expired"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Expired log in code"; /* Title. Indicates an expiration date. */ "Expires on" = "Expires on"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Expires on %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Explain what this site is about."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Explore plans"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Export Content"; @@ -3170,8 +3090,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Followers"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Following"; @@ -3188,9 +3107,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Follows"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Follows blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Follows the blog."; @@ -3224,9 +3140,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Free Photo Library"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site."; @@ -3315,9 +3228,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Get to know the app"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Get your domain"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Get your notifications faster"; @@ -3342,9 +3252,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Go back"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Go to Following"; @@ -3383,18 +3290,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Guides you through the process of checking your notifications."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Guides you through the process of choosing a theme for your site."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Guides you through the process of creating a new page for your site."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Guides you through the process of creating your site."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Guides you through the process of exploring plans for your site."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Guides you through the process of following other sites."; @@ -3410,9 +3311,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Guides you through the process of setting a title for your site."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Guides you through the process of setting up your site."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Guides you through the process of uploading an icon for your site."; @@ -3566,9 +3464,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Icon update failed"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "If you can’t find the email, please check your junk or spam email folder"; @@ -3978,9 +3873,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Learn about new comments, likes, and follows in seconds."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Learn about the marketing and SEO tools in our paid plans."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4147,9 +4039,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Loading comment..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Loading domains"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Loading history…"; @@ -4601,9 +4490,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Needs Update"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Never expires"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "New"; @@ -4678,9 +4564,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "No Items"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "No Jetpack sites found"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "No Menu"; @@ -4897,9 +4780,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Not enough space to upload"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Not following"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5000,7 +4880,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5305,9 +5184,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Pick username"; -/* The item to select during a guided tour. */ -"Plan" = "Plan"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Plans"; @@ -5624,9 +5500,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Primary Site"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Primary site address"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Privacy"; @@ -5728,9 +5601,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Published on"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publishing To"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Publishing page..."; @@ -5752,9 +5622,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Quick Start"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Rate Us"; @@ -5773,13 +5640,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Reader"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "Reader CSS URL"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Reading posts from other sites"; @@ -5940,9 +5803,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Renews on %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Replace Current Block"; @@ -6075,7 +5935,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Retry"; @@ -6297,9 +6156,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "See All"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "See Instructions"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "See comments and notifications in real time."; @@ -6316,24 +6172,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Select %@ to create a new post"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Select %@ to discover new themes"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Select %@ to find other sites."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Select %@ to see how your site is performing."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Select %@ to see your checklist"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Select %@ to see your current library."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Select %@ to see your current plan and other available plans."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Select %@ to see your page list."; @@ -6726,10 +6573,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Site page"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Site security and performance\nfrom your pocket"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Site time zone (UTC%1$@%2$d%3$@)"; @@ -6784,9 +6627,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Some data wasn't loaded"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Something went wrong"; @@ -7330,7 +7170,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "The site at %1$@ uses WordPress %2$@. We recommend to update to the latest version, or at least %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress."; /* Message shown when site deletion API failed */ @@ -7370,7 +7211,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Theme Activated"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Themes"; @@ -7616,9 +7456,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Time Zone"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Time to finish setting up your site! Our checklist walks you through the next steps."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Time's up, but don't worry, your security is our priority. Please try again!"; @@ -7670,9 +7507,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "To use stats on your site, you'll need to install the Jetpack plugin."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "To use this app for %@ you'll need to have the Jetpack plugin installed and activated."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7693,9 +7527,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Toggles the unordered list style"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Tools"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Top Commenters"; @@ -7703,8 +7534,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Top level"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Topic"; /* Used when a Reader Topic is not found for a specific id */ @@ -7782,9 +7612,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Try Again"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Try With Another Account"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Try adjusting your date range filter"; @@ -7864,9 +7691,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Type a name for your site"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Type to get more suggestions"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7972,12 +7796,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Unable to upload 1 draft post"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Unable to upload 1 draft post, %ld files"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Unable to upload 1 draft post, 1 file"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Unable to upload 1 post"; @@ -8032,8 +7850,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Unfollow"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Unfollow %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8049,9 +7866,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Unfollowed site"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Unfollows blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Unfollows the blog."; @@ -8221,18 +8035,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Uploading…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Uploads failed"; - /* Use the current image */ "Use" = "Use"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Use %@ to find sites and tags."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Use Sandbox Store"; - /* The button's title text to use a security key. */ "Use a security key" = "Use a security key"; @@ -8280,9 +8088,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Verify Log In"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Verify your email address - instructions sent to %@"; - /* Description for the version label in the What's new page. */ "Version " = "Version "; @@ -8491,9 +8296,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "We couldn't create your backup. Please try again later."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "We couldn't find any available address with the words you entered - let's try again."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "We couldn't publish this page, but we'll try again later."; @@ -8569,9 +8371,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "We just sent a magic link to"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "We successfully created a backup of your site as of %@"; @@ -8581,9 +8380,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "We use other tracking tools, including some from third parties. Read about these and how to control them."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "We were unable to send you an email at this time. Please try again later."; @@ -8672,9 +8468,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "We’ve emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Web Address"; @@ -8952,8 +8745,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Years"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Yes"; @@ -9052,9 +8844,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "You have 1 hidden WordPress site."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "You have a free one-year domain registration with your plan"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site."; @@ -9139,9 +8928,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "You've made unsaved changes to this post"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Your Site Domains"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Your Site Icon"; @@ -9169,9 +8955,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Your first backup will be ready soon"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Your free WordPress.com address is"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working."; @@ -9187,9 +8970,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Your posts, pages, and settings will be mailed to you at %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Your primary site address is what visitors will see in their address bar when visiting your website."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Your restore is taking longer than usual, please check again in a few minutes."; @@ -9247,12 +9027,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "You’re following this conversation. You will receive an email whenever a new comment is made."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’."; - /* Comment Attachment Label */ "[COMMENT]" = "[COMMENT]"; @@ -9568,19 +9342,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "Feature Flags"; -/* General section title */ -"debugMenu.generalSectionTitle" = "General"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Overridden parameters are denoted by a checkmark."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Override the chosen param by defining a new value here."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "No remote or default value"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Remote Config"; /* Remove current quick start tour menu item */ @@ -9728,7 +9491,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "More"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10131,9 +9893,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "marked as spam"; -/* Products header text in Me Screen. */ -"me.products.header" = "Products"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Unable to sync media"; @@ -10711,12 +10470,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "View all responses"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Visit Site Settings to turn back on"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Blogging Prompts hidden"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Dismiss"; @@ -11241,9 +10994,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "Email"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "WordPress Forums"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "WordPress Help Center"; @@ -11457,9 +11207,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Learn more"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "your site"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Log in with Google."; diff --git a/WordPress/Resources/en-GB.lproj/Localizable.strings b/WordPress/Resources/en-GB.lproj/Localizable.strings index 749d6cdd5e9b..dfae76448a74 100644 --- a/WordPress/Resources/en-GB.lproj/Localizable.strings +++ b/WordPress/Resources/en-GB.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2024-01-03 09:18:47+0000 */ +/* Translation-Revision-Date: 2024-01-08 10:12:50+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/4.0.0-alpha.11 */ /* Language: en_GB */ @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nTo confirm, please re-enter your username before closing.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/year"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "\"Lazy-load\" images"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li words, %2$li characters"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s block"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s block options"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Add a Topic"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally, this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Add a domain"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "All WordPress.com annual plans include a custom domain name. Register your free domain now."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "All WordPress.com plans include a custom domain name. Register your free premium domain now."; - /* An option in a list. Automatically approve all comments */ "All comments" = "All comments"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Auto-managed on this site"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Auto-renew enabled"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Automatically Approve"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Block duplicated"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Block editor enabled"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Block grouped"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Bring media straight from your device or camera to your site."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Browse all our themes to find your perfect fit."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Brute Force Attack Protection"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Choose a site to open."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Choose a theme"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Close"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Completed: check your site title"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Completed: choose a theme"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Completed: choose a unique site icon"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Completed: Connect with other sites"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Completed: continue with site setup"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Completed: create your site"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Completed: explore plans"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Completed: publish a post"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Continue with Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Continue with site setup"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Continuing with Apple"; @@ -1982,13 +1945,13 @@ translators: Block name. %s: The localized block name */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered."; /* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Couldn't connect. Required XML-RPC methods are missing on the server."; +"Couldn't connect. Required XML-RPC methods are missing on the server. Please contact your hosting provider to solve this problem." = "Couldn't connect. Required XML-RPC methods are missing on the server. Please contact your hosting provider to solve this problem."; /* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem."; +"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem." = "Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem."; /* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem."; +"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem." = "Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem."; /* Error message when tag loading failed */ "Couldn't load tags." = "Couldn't load tags."; @@ -2021,9 +1984,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Country Code"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Crash Logging"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Crash reports"; @@ -2039,9 +1999,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Create New"; -/* Title for the site creation flow. */ -"Create New Site" = "Create New Site"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2185,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Debug"; -/* Debug settings title */ -"Debug Settings" = "Debug Settings"; - /* Only December needs to be translated */ "December 17, 2017" = "December 17, 2017"; @@ -2252,9 +2206,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Default Post Format"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "Default URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Defaults for New Posts"; @@ -2420,12 +2371,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domains"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domains purchased on this site will redirect to %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Domains purchased on this site will redirect users to "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Don't have an account? _Sign up_"; @@ -2595,8 +2540,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Edit"; /* Title for the edit more button section */ @@ -2661,9 +2605,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Edits a comment"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Edits the comment."; @@ -2791,9 +2732,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Enter a password to protect this post"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Enter different words above and we'll look for an address that matches it."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Enter password"; @@ -2979,24 +2917,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Expands to select a different menu area"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Expired"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Expired log-in code"; /* Title. Indicates an expiration date. */ "Expires on" = "Expires on"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Expires on %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Explain what this site is about."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Explore plans"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Export Content"; @@ -3095,6 +3024,9 @@ translators: Block name. %s: The localized block name */ /* Label for the file type (.JPG, .PNG, etc) for a media asset (image / video) */ "File type" = "File type"; +/* No comment provided by engineer. */ +"File type not supported as a media file." = "File type not supported as a media file."; + /* Film & Television site intent topic */ "Film & Television" = "Film & Television"; @@ -3182,8 +3114,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Followers"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Following"; @@ -3200,9 +3131,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Follows"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Follows blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Follows the blog."; @@ -3212,6 +3140,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Font Size" = "Font size"; +/* translators: %1$s: Font size name e.g. Small */ +"Font Size, %1$s" = "Font size, %1$s"; + /* Food site intent topic */ "Food" = "Food"; @@ -3242,9 +3173,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Free Photo Library"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Free for the first year "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site."; @@ -3333,9 +3261,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Get to know the app"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Get your domain"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Get your notifications faster"; @@ -3360,9 +3285,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Go back"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Go to Following"; @@ -3401,18 +3323,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Guides you through the process of checking your notifications."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Guides you through the process of choosing a theme for your site."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Guides you through the process of creating a new page for your site."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Guides you through the process of creating your site."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Guides you through the process of exploring plans for your site."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Guides you through the process of following other sites."; @@ -3428,9 +3344,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Guides you through the process of setting a title for your site."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Guides you through the process of setting up your site."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Guides you through the process of uploading an icon for your site."; @@ -3584,9 +3497,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Icon update failed"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "If you can’t find the email, please check your junk or spam email folder"; @@ -3996,9 +3906,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Learn about new comments, likes, and follows in seconds."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Learn about the marketing and SEO tools in our paid plans."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4072,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Loading comment..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Loading domains"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Loading history..."; @@ -4619,8 +4523,11 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Needs Update"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Never expires"; +/* No comment provided by engineer. */ +"Network connection lost, working offline" = "Network connection lost, working offline"; + +/* No comment provided by engineer. */ +"Network connection re-established" = "Network connection re-established"; /* Header of section in Plugin Directory showing newest plugins */ "New" = "New"; @@ -4696,9 +4603,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "No Items"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "No Jetpack sites found"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "No Menu"; @@ -4915,9 +4819,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Not enough space to upload"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Not following"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4919,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5223,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Pick username"; -/* The item to select during a guided tour. */ -"Plan" = "Plan"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Plans"; @@ -5642,9 +5539,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Primary Site"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Primary site address"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Privacy"; @@ -5746,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Published on"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publishing To"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Publishing page..."; @@ -5770,9 +5661,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Quick Start"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Rate us"; @@ -5791,13 +5679,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Reader"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "Reader CSS URL"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Reading posts from other sites"; @@ -5958,9 +5842,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Renews on %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Replace Current Block"; @@ -6093,7 +5974,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Retry"; @@ -6147,6 +6027,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button label to open web page in Safari */ "Safari" = "Safari"; +/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ +"Sandbox Store" = "Sandbox Store"; + /* Menus save button title Save Action Save button label (saving content, ex: Post, Page, Comment, Category). @@ -6315,9 +6198,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "See All"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "See instructions"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "See comments and notifications in real time."; @@ -6334,24 +6214,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Select %@ to create a new post"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Select %@ to discover new themes"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Select %@ to find other sites."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Select %@ to see how your site is performing."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Select %@ to see your checklist"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Select %@ to see your current library."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Select %@ to see your current plan and other available plans."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Select %@ to see your page list."; @@ -6744,10 +6615,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Site page"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Site security and performance\nfrom your pocket"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Site time zone (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6669,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Some data wasn't loaded"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Something went wrong"; @@ -7348,7 +7212,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "The site at %1$@ uses WordPress %2$@. We recommend to update to the latest version, or at least %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress."; /* Message shown when site deletion API failed */ @@ -7388,7 +7253,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Theme Activated"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Themes"; @@ -7634,9 +7498,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Time Zone"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Time to finish setting up your site! Our checklist walks you through the next steps."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Time's up, but don't worry, your security is our priority. Please try again!"; @@ -7688,9 +7549,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "To use stats on your site, you'll need to install the Jetpack plugin."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "To use this app for %@, you'll need to have the Jetpack plugin installed and activated."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7569,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Toggles the unordered list style"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Tools"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Top Commenters"; @@ -7721,8 +7576,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Top level"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Topic"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7654,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Try Again"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Try with another account"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Try adjusting your date range filter"; @@ -7882,9 +7733,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Type a name for your site"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Type to get more suggestions"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7990,12 +7838,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Unable to upload 1 draft post"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Unable to upload one draft post, %ld files"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Unable to upload 1 draft post, 1 file"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Unable to upload 1 post"; @@ -8050,8 +7892,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Unfollow"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Unfollow %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7908,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Unfollowed site"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Unfollows blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Unfollows the blog."; @@ -8239,18 +8077,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Uploading…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Uploads failed"; - /* Use the current image */ "Use" = "Use"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Use %@ to find sites and tags."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Use Sandbox Store"; - /* The button's title text to use a security key. */ "Use a security key" = "Use a security key"; @@ -8298,9 +8130,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Verify Log In"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Verify your e-mail address - instructions sent to %@"; - /* Description for the version label in the What's new page. */ "Version " = "Version "; @@ -8509,9 +8338,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "We couldn't create your backup. Please try again later."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "We couldn't find any available address with the words you entered - let's try again."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "We couldn't publish this page, but we'll try again later."; @@ -8587,9 +8413,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "We just sent a magic link to"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages, but, if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "We successfully created a backup of your site as of %@"; @@ -8599,9 +8422,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "We use other tracking tools, including some from third parties. Read about these and how to control them."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "We were unable to send you an email at this time. Please try again later."; @@ -8690,9 +8510,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "We’ve emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Web Address"; @@ -8924,6 +8741,9 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of button that displays the Automattic Work With Us web page */ "Work With Us" = "Work with us"; +/* No comment provided by engineer. */ +"Working Offline" = "Working offline"; + /* Accessibility label for the Stats' world map. */ "World map showing views by country." = "World map showing views by country."; @@ -8970,8 +8790,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Years"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Yes"; @@ -9071,7 +8890,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "You have 1 hidden WordPress site." = "You have 1 hidden WordPress site."; /* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "You have a free one-year domain registration with your plan"; +"You have a free one-year domain registration with your plan." = "You have a free one-year domain registration with your plan."; /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site."; @@ -9157,9 +8976,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "You've made unsaved changes to this post"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Your Site Domains"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Your Site Icon"; @@ -9187,9 +9003,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Your first backup will be ready soon"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Your free WordPress.com address is"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working."; @@ -9205,9 +9018,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Your posts, pages, and settings will be mailed to you at %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Your primary site address is what visitors will see in their address bar when visiting your website."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Your restore is taking longer than usual, please check again in a few minutes."; @@ -9265,12 +9075,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "You’re following this conversation. You will receive an email whenever a new comment is made."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "You’re now using the block editor for new pages - great! If you’d like to change to the classic editor, go to ‘My site’ > ‘Site settings’."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "You’re now using the block editor for new posts - great! If you’d like to change to the classic editor, go to ‘My site’ > ‘Site settings’."; - /* Comment Attachment Label */ "[COMMENT]" = "[COMMENT]"; @@ -9506,6 +9310,9 @@ Note that the word 'go' here should have a closer meaning to 'start' rather than /* Option for users to rate a chat bot answer as helpful. */ "chat.rateHelpful" = "Rate as helpful"; +/* Title for the checkout view */ +"checkout.title" = "Checkout"; + /* Displayed in the confirmation alert when marking comment notifications as read. */ "comment" = "comment"; @@ -9656,27 +9463,58 @@ Example: Reply to Pamela Nguyen */ /* Title for the View stats button in the More menu */ "dashboardCard.stats.viewStats" = "View stats"; +/* Debug menu item title */ +"debugMenu.analytics" = "Analytics"; + /* Feature flags menu item */ "debugMenu.featureFlags" = "Feature Flags"; -/* General section title */ -"debugMenu.generalSectionTitle" = "General"; +/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ +"debugMenu.readerCellTitle" = "Reader CSS URL"; + +/* Placeholder for the reader CSS URL */ +"debugMenu.readerDefaultURL" = "Default URL"; + +/* Hint for the reader CSS URL field */ +"debugMenu.readerHit" = "Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; + +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.currentValue" = "Current Value"; -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Overridden parameters are denoted by a checkmark."; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.defaultValue" = "Default Value"; -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Override the chosen param by defining a new value here."; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.overridenValue" = "Remote Config"; -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "No remote or default value"; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.remoteConfigValue" = "Remote Config Value"; -/* Remote Config debug menu title */ +/* Remote Config Debug Menu reset button title */ +"debugMenu.remoteConfig.reset" = "Reset"; + +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Remote Config"; /* Remove current quick start tour menu item */ "debugMenu.removeQuickStart" = "Remove Current Tour"; +/* Debug Menu section title */ +"debugMenu.section.logging" = "Logging"; + +/* Debug Menu section title */ +"debugMenu.section.quickStart" = "Quick Start"; + +/* Debug Menu section title */ +"debugMenu.section.settings" = "Settings"; + +/* Title for debug menu screen */ +"debugMenu.title" = "Developer"; + +/* Weekly Roundup debug menu item */ +"debugMenu.weeklyRoundup" = "Weekly Roundup"; + /* Title for a menu action in the context menu on the Jetpack install card. */ "domain.dashboard.card.menu.hide" = "Hide this"; @@ -9695,6 +9533,9 @@ Example: Reply to Pamela Nguyen */ /* The expired label of the domain card in All Domains screen. */ "domain.management.card.expired.label" = "Expired"; +/* Label indicating that a domain name registration has no expiry date. */ +"domain.management.card.neverExpires.label" = "Never expires"; + /* The renews label of the domain card in All Domains screen. */ "domain.management.card.renews.label" = "Renews"; @@ -9788,6 +9629,15 @@ Example: Reply to Pamela Nguyen */ /* The text to display for paid domains in 'Site Creation > Choose a domain' screen */ "domain.suggestions.row.yearly" = "per year"; +/* Help button */ +"domainSelection.helpButton.title" = "Help"; + +/* Description for the first domain purchased with a free plan. */ +"domainSelection.redirectPrompt.title" = "Domains purchased on this site will redirect to %1$@"; + +/* Search domain - Title for the Suggested domains screen */ +"domainSelection.search.title" = "Search domains"; + /* Title for the checkout screen. */ "domains.checkout.title" = "Checkout"; @@ -9819,7 +9669,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "More"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10231,9 +10080,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "marked as spam"; -/* Products header text in Me Screen. */ -"me.products.header" = "Products"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Unable to sync media"; @@ -10663,6 +10509,9 @@ Example: Reply to Pamela Nguyen */ /* Register Domain - Domain contact information field Phone */ "phone number" = "phone number"; +/* Title for the plan selection view */ +"planSelection.title" = "Plans"; + /* Post status and date for list cells with %@ a placeholder for the date. */ "post.createdTimeAgo" = "Created %@"; @@ -10871,12 +10720,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "View all responses"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Visit Site Settings to turn back on"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Blogging Prompts hidden"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Dismiss"; @@ -11101,6 +10944,30 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Site name that is placed in the tooltip view. */ "site.creation.domain.tooltip.site.name" = "YourSiteName.com"; +/* Header of the secondary domains list section in the Domains Dashboard. %1$@ is the name of the site. */ +"site.domains.domainSection.title" = "Other domains for %1$@"; + +/* A section title which displays a row with a free WP.com domain */ +"site.domains.freeDomainSection.title" = "Your free WordPress.com domain"; + +/* Description for the first domain purchased with a paid plan. */ +"site.domains.freeDomainWithPaidPlan.description" = "Get a free one-year domain registration or transfer with any annual paid plan."; + +/* Title of the card that starts the purchase of the first domain with a paid plan. */ +"site.domains.freeDomainWithPaidPlan.title" = "Get your domain"; + +/* Footer of the primary site section in the Domains Dashboard. */ +"site.domains.primaryDomain" = "Your primary site address is what visitors will see in their address bar when visiting your website."; + +/* Primary domain label, used in the site address section of the Domains Dashboard. */ +"site.domains.primaryDomain.title" = "Primary domain"; + +/* Title for a button that opens domain purchasing flow. */ +"site.domains.purchaseDirectly.buttons.title" = "Just search for a domain"; + +/* Title for a button that opens plan and domain purchasing flow. */ +"site.domains.purchaseWithPlan.buttons.title" = "Upgrade to a plan"; + /* Back button title shown in Site Creation flow to come back from Plan selection to Domain selection */ "siteCreation.domain.backButton.title" = "Domains"; @@ -11422,9 +11289,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "Email"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "WordPress Forums"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "WordPress Help Centre"; @@ -11617,6 +11481,9 @@ Example: given a notice format "Following %@" and empty site name, this will be /* This is a comma separated list of keywords used for spotlight indexing of the 'My Sites' tab. */ "wordpress, sites, site, blogs, blog" = "wordpress, sites, site, blogs, blog"; +/* Error message that describes an unknown error had occured */ +"wordpress-api.error.unknown" = "Something went wrong, please try again later."; + /* Jetpack Plugin Modal on WordPress primary button title */ "wordpress.jetpack.plugin.modal.primary.button.title" = "Switch to the Jetpack app"; @@ -11641,9 +11508,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Learn more"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "your site"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Log in with Google."; diff --git a/WordPress/Resources/es.lproj/Localizable.strings b/WordPress/Resources/es.lproj/Localizable.strings index c3e3bcdae385..b7df55b3787e 100644 --- a/WordPress/Resources/es.lproj/Localizable.strings +++ b/WordPress/Resources/es.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2024-01-03 08:48:15+0000 */ +/* Translation-Revision-Date: 2024-01-08 13:34:43+0000 */ /* Plural-Forms: nplurals=2; plural=n != 1; */ /* Generator: GlotPress/4.0.0-alpha.11 */ /* Language: es */ @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nPara confirmar, por favor, vuelve a introducir tu nombre de usuario antes de cerrarlo.\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = "\/ año"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "«Carga perezosa» de imágenes"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li palabras, %2$li caracteres"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "Bloque %s"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "Opciones del bloque %s"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Añadir un debate"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Añade aquí una URL del CSS personalizado para que se cargue en el lector. Si estás ejecutando Calypso localmente, esto puede ser algo como: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Añade un dominio"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Todos los planes anuales de WordPress.com incluyen un nombre de dominio personalizado. Registra tu dominio gratis ahora."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Todos los planes de WordPress.com incluyen un nombre de dominio personalizado. Registra ahora tu dominio premium gratuito."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Todos los comentarios"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Gestión automática de este sitio"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Renovación automática activada"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Aprobar automáticamente"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Bloque duplicado"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Editor de bloques activado"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Bloque agrupado"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Lleva los medios directamente desde tu dispositivo o cámara a tu sitio."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Navega por todos nuestros temas para encontrar el que se adapte a ti. "; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Protección frente a ataques de fuerza bruta"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Elige un sitio para abrir."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Elige un tema"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Cerrar"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Completado: Comprobar el título de tu sitio"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Completado: Elegir un tema"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Completado: Elige un icono del sitio que sea único"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Completado: conecta con otros sitios"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Completado: Continúa con la configuración del sitio"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Completado: Crea tu sitio"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Completado: Consultar planes"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Completado: Publicar una entrada"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Continuar con Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Seguir con la configuración del sitio"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Continuando con Apple"; @@ -1982,13 +1945,13 @@ translators: Block name. %s: The localized block name */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "No se pudo conectar al sitio WordPress. Hay un sitio WordPress no válido en esta dirección. Revisa la dirección del sitio (URL) que has introducido."; /* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "No se pudo conectar. Los métodos requeridos XML-RPC no están disponibles en el servidor."; +"Couldn't connect. Required XML-RPC methods are missing on the server. Please contact your hosting provider to solve this problem." = "No se pudo conectar. Los métodos requeridos de XML-RPC no están disponibles en el servidor. Por favor, contacta con tu proveedor de alojamiento para resolver este problema."; /* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "No se pudo conectar. Hemos recibido un error 403 al tratar de acceder a la variable XMLRPC de tu sitio. La aplicación lo necesita para poder comunicar con tu sitio. Contacta con tu alojamiento para resolver este problema."; +"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem." = "No se pudo conectar. Hemos recibido un error 403 al tratar de acceder a la variable XMLRPC de tu sitio. La aplicación lo necesita para poder comunicar con tu sitio. Contacta con tu proveedor de alojamiento para resolver este problema."; /* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "No se pudo conectar. Tu alojamiento está bloqueando peticiones POST, y la aplicación lo necesita para poder comunicar con tu sitio. Contacta con tu alojamiento para resolver este problema."; +"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem." = "No se pudo conectar. Tu alojamiento está bloqueando peticiones POST, y la aplicación lo necesita para poder comunicar con tu sitio. Contacta con tu proveedor de alojamiento para resolver este problema."; /* Error message when tag loading failed */ "Couldn't load tags." = "No se han podido cargar las etiquetas."; @@ -2021,9 +1984,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Código de país"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Registro de fallos"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Informes de fallos"; @@ -2039,9 +1999,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Crear nuevo"; -/* Title for the site creation flow. */ -"Create New Site" = "Crea un nuevo sitio"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2185,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Depuración"; -/* Debug settings title */ -"Debug Settings" = "Ajustes de depuración"; - /* Only December needs to be translated */ "December 17, 2017" = "17 de diciembre de 2017"; @@ -2252,9 +2206,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Formato de entrada por defecto"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "URL por defecto"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Opciones predeterminadas para entradas nuevas"; @@ -2420,12 +2371,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Dominios"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Los dominios comprados en este sitio se redirigirán a %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Los dominios comprados en este sitio redirigirán a los usuarios a"; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "¿No tienes una cuenta? _Regístrate_"; @@ -2595,8 +2540,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Editar"; /* Title for the edit more button section */ @@ -2661,9 +2605,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Edita un comentario"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Edita el comentario."; @@ -2791,9 +2732,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Introduce una contraseña para proteger esta entrada"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Introduce arriba distintas palabras y buscaremos una dirección que coincida."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Escribe contraseña"; @@ -2979,24 +2917,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Amplía para seleccionar un área de menú diferente"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Caducado"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "El código de acceso ha caducado"; /* Title. Indicates an expiration date. */ "Expires on" = "Caduca el"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Caduca el %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Explica de qué trata este sitio."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Explorar planes"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Exportar el contenido"; @@ -3095,6 +3024,9 @@ translators: Block name. %s: The localized block name */ /* Label for the file type (.JPG, .PNG, etc) for a media asset (image / video) */ "File type" = "Tipo de archivo"; +/* No comment provided by engineer. */ +"File type not supported as a media file." = "Tipo de archivo no admitido como archivo de medios."; + /* Film & Television site intent topic */ "Film & Television" = "Películas y televisión"; @@ -3182,8 +3114,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Seguidores"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Siguiendo"; @@ -3200,9 +3131,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Seguimientos"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Sigue al blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Sigue al blog."; @@ -3212,6 +3140,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Font Size" = "Tamaño de la fuente"; +/* translators: %1$s: Font size name e.g. Small */ +"Font Size, %1$s" = "Tamaño de fuente: %1$s"; + /* Food site intent topic */ "Food" = "Comida"; @@ -3242,9 +3173,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Biblioteca de fotos gratuitas"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Gratis el primer año"; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Libera espacio de almacenamiento en este dispositivo eliminando archivos temporales de medios. Esto no afectará a los medios en tu sitio."; @@ -3333,9 +3261,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Conoce la aplicación"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Consigue tu dominio"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Obtén tus avisos más rápido"; @@ -3360,9 +3285,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Volver"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Ir al siguiente"; @@ -3401,18 +3323,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Te guía a través del proceso de comprobación de tus notificaciones."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Te guía a través del proceso de elegir un tema para tu sitio."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Te guía a través del proceso de crear una nueva página para tu sitio."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Te guía a través del proceso de crear tu sitio."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Te guía a través del proceso de explorar planes para tu sitio."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Te guía a través del proceso de seguir a otros sitios."; @@ -3428,9 +3344,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Te guía a través del proceso de configurar un título para tu sitio."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Te guía a través del proceso de configurar tu sitio."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Te guía a través del proceso de subir un icono para tu sitio."; @@ -3584,9 +3497,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Fallo al actualizar el icono"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Si ya tienes un sitio, tendrás que instalar el plugin gratuito de Jetpack y conectarlo a tu cuenta de WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Si no encuentras el correo electrónico, comprueba tu carpeta de correo no deseado o spam."; @@ -3996,9 +3906,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Aprende sobre nuevos comentarios, me gusta y seguidores en segundos."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Aprende sobre herramientas de marketing y SEO en nuestros planes de pago."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4072,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Cargando comentario..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Cargando dominios"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Cargando el historial…"; @@ -4619,8 +4523,11 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Necesita actualización"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Nunca caduca"; +/* No comment provided by engineer. */ +"Network connection lost, working offline" = "Conexión de red perdida, trabajando sin conexión"; + +/* No comment provided by engineer. */ +"Network connection re-established" = "Conexión de red vuelta a establecer"; /* Header of section in Plugin Directory showing newest plugins */ "New" = "Nuevos"; @@ -4696,9 +4603,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Sin elementos"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "No se han encontrado sitios de Jetpack"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Sin menú"; @@ -4915,9 +4819,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "No hay espacio suficiente para subidas"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "No siguiendo"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4919,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5223,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Elige un nombre de usuario"; -/* The item to select during a guided tour. */ -"Plan" = "Plan"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Planes"; @@ -5642,9 +5539,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Sitio principal"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Dirección principal del sitio"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Privacidad"; @@ -5746,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Publicado el"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publicando en"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Publicando página…"; @@ -5770,9 +5661,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Los avisos instantáneos se han desactivado en los ajustes de iOS. Cambia «Permitir avisos» para volver a activarlos."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Inicio rápido"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Valóranos"; @@ -5791,13 +5679,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Lector"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "URL del CSS del lector"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Leer entradas de otros sitios"; @@ -5958,9 +5842,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Eliminar seguidores hace que dejen de recibir novedades de tu sitio. Si eligen hacerlo pueden aún visitar tu sitio, y seguirlo de nuevo."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Se renueva el %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Reemplazar el bloque actual"; @@ -6093,7 +5974,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Reintentar"; @@ -6147,6 +6027,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button label to open web page in Safari */ "Safari" = "Safari"; +/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ +"Sandbox Store" = "Tienda en entorno de pruebas"; + /* Menus save button title Save Action Save button label (saving content, ex: Post, Page, Comment, Category). @@ -6315,9 +6198,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Ver todos"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Consulta las instrucciones"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Ve comentarios y avisos en tiempo real."; @@ -6334,24 +6214,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Selecciona %@ para crear una entrada"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Selecciona %@ para descubrir nuevos temas"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Elige %@ para encontrar otros sitios."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Selecciona %@ para ver cómo está rindiendo tu sitio."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Selecciona %@ para ver tu lista de tareas"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Selecciona %@ para ver tu biblioteca actual."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Selecciona %@ para ver tu plan actual y otros planes disponibles."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Selecciona %@ para ver tu lista de páginas."; @@ -6744,10 +6615,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Página del sitio"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Rendimiento y seguridad del sitio\ndesde tu bolsillo"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Zona horaria del sitio (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6669,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Algunos datos no se han cargado"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Error al cargar algunos elementos multimedia. Esta acción eliminará todos los elementos multimedia con errores de la entrada.\n¿Quieres guardar de todos modos?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Algo ha ido mal"; @@ -7348,7 +7212,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "El sitio en %1$@ usa WordPress %2$@. Se recomienda usar la última versión, o al menos %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "El sitio que hay en esta dirección no es un sitio WordPress. Para que podamos conectarnos con él, el sitio debe usar WordPress."; /* Message shown when site deletion API failed */ @@ -7388,7 +7253,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Tema activado"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Temas"; @@ -7634,9 +7498,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Zona horaria"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "¡Hora de terminar de configurar tu sitio! Nuestra lista de tareas te guía por los siguientes pasos."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Se acabó el tiempo, pero no te preocupes, tu seguridad es nuestra prioridad. ¡Vuelve a intentarlo!"; @@ -7688,9 +7549,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Para usar las estadísticas en tu sitio necesitarás instalar el plugin Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Para usar esta aplicación para %@ deberás tener el plugin de Jetpack instalado y activado."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7569,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Cambia al estilo de lista sin orden"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Herramientas"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Principales comentaristas"; @@ -7721,8 +7576,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Nivel superior"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Tema"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7654,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Intentar de nuevo"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Probar con otra cuenta"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Prueba a ajustar el filtro de rango de fechas"; @@ -7882,9 +7733,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Escribe un nombre para tu sitio"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Teclea para obtener más sugerencias"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7990,12 +7838,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "No fue posible subir 1 entrada en borrador"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "No fue posible subir 1 entrada en borrador, %ld archivos"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "No fue posible subir 1 entrada en borrador, 1 archivo"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "No ha sido posible subir 1 entrada"; @@ -8050,8 +7892,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Dejar de seguir"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Dejar de seguir %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7908,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "No sigues este sitio"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Deja de seguir el blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Deja de seguir el blog."; @@ -8239,18 +8077,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Subiendo…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Se han producido errores en las cargas"; - /* Use the current image */ "Use" = "Utilizar"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Utiliza %@ para encontrar sitios y etiquetas."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Usar la tienda en un entorno de pruebas"; - /* The button's title text to use a security key. */ "Use a security key" = "Usa una clave de seguridad"; @@ -8298,9 +8130,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Acceso verificado"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Verifica tu dirección de correo electrónico - las instrucciones se enviaron a %@"; - /* Description for the version label in the What's new page. */ "Version " = "Versión"; @@ -8509,9 +8338,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "No hemos podido crear la copia de seguridad. Por favor, inténtalo de nuevo más tarde."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "No hemos podido encontrar una dirección disponible con las palabras que has introducido - probemos de nuevo."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "No hemos podido publicar esta página, pero lo intentaremos de nuevo más tarde."; @@ -8587,9 +8413,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Acabamos de enviar un enlace mágico a"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Hemos hecho grandes mejoras en el editor de bloques y creemos que ¡vale la pena probarlo!\n\nLo hemos activado para nuevas entradas y páginas, pero si quieres cambiar al editor clásico, ve a «Mi sitio > Ajustes del sitio»."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "Hemos creado una copia de seguridad de tu sitio %@"; @@ -8599,9 +8422,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Utilizamos otras herramientas de seguimiento, incluyendo algunas de terceras partes. Lee acerca de ellas y cómo controlarlas."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "No hemos podido detectar un sitio de WordPress en la dirección que has indicado. Comprueba que WordPress está instalado y que estás ejecutando la versión más reciente disponible."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "No hemos sido capaces de enviarte un correo electrónico en este momento. Por favor, inténtalo más tarde de nuevo."; @@ -8690,9 +8510,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Te hemos enviado por correo electrónico un enlace de registro para crear tu nueva cuenta de WordPress.com. Comprueba tu correo electrónico en este dispositivo y toca el enlace en el correo electrónico que has recibido de WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Hemos tenido problemas al cambiar el dominio principal de tu sitio - pero no te preocupes, tu dominio se ha comprado con éxito."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Dirección web"; @@ -8924,6 +8741,9 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of button that displays the Automattic Work With Us web page */ "Work With Us" = "Trabaja con nosotros"; +/* No comment provided by engineer. */ +"Working Offline" = "Trabajo sin conexión"; + /* Accessibility label for the Stats' world map. */ "World map showing views by country." = "Mapa del mundo que muestra las visualizaciones por país."; @@ -8970,8 +8790,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Años"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Sí"; @@ -9071,7 +8890,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "You have 1 hidden WordPress site." = "Tienes 1 sitio WordPress oculto."; /* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "Tienes el registro de dominio gratuito por un año con tu plan"; +"You have a free one-year domain registration with your plan." = "Tienes el registro de dominio gratuito por un año con tu plan."; /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Dispones de mejoras premium activas en tu sitio. Cancela las mejoras antes de eliminar el sitio."; @@ -9157,9 +8976,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Has realizado cambios en esta entrada que no has guardado"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Dominios de tu sitio"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Icono de tu sitio"; @@ -9187,9 +9003,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Tu primera copia de seguridad estará lista pronto"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Tu dirección gratuita de WordPress.com es"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Tu nuevo dominio %@ está siendo configurando. Tu dominio puede tardar hasta 30 minutos en empezar a funcionar."; @@ -9205,9 +9018,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Recibirás tus entradas, páginas y ajustes por correo electrónico a %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "La dirección principal de tu sitio es la que los visitantes ven en su barra de direcciones al visitar tu web."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Tu restauración está tardando más de lo habitual, por favor, inténtalo de nuevo en unos minutos."; @@ -9265,12 +9075,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Estás siguiendo esta conversación. Recibirás un correo electrónico cada vez que se haga un nuevo comentario."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Ahora estás usando el editor de bloques para las nuevas páginas — ¡Genial! Si quieres cambiar al editor clásico, ve a «Mi sitio > Ajustes del sitio»."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Ahora estás usando el editor de bloques para las nuevas entradas — ¡Genial! Si quieres cambiar al editor clásico, ve a «Mi sitio > Ajustes del sitio»."; - /* Comment Attachment Label */ "[COMMENT]" = "[COMENTARIO]"; @@ -9506,6 +9310,9 @@ Note that the word 'go' here should have a closer meaning to 'start' rather than /* Option for users to rate a chat bot answer as helpful. */ "chat.rateHelpful" = "Valorar como útil"; +/* Title for the checkout view */ +"checkout.title" = "Finalizar compra"; + /* Displayed in the confirmation alert when marking comment notifications as read. */ "comment" = "comentario"; @@ -9656,27 +9463,58 @@ Example: Reply to Pamela Nguyen */ /* Title for the View stats button in the More menu */ "dashboardCard.stats.viewStats" = "Ver estadísticas"; +/* Debug menu item title */ +"debugMenu.analytics" = "Analítica"; + /* Feature flags menu item */ "debugMenu.featureFlags" = "Indicadores de características"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Generales"; +/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ +"debugMenu.readerCellTitle" = "URL del CSS del lector"; + +/* Placeholder for the reader CSS URL */ +"debugMenu.readerDefaultURL" = "URL por defecto"; + +/* Hint for the reader CSS URL field */ +"debugMenu.readerHit" = "Añade aquí una URL del CSS personalizado para que se cargue en el lector. Si estás ejecutando Calypso localmente, esto puede ser algo como: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; + +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.currentValue" = "Valor actual"; -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Los parámetros sobreescritos están marcados con un check."; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.defaultValue" = "Valor por defecto"; -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Sobreescribe el parámetro seleccionado definiendo aquí un nuevo valor."; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.overridenValue" = "Configuración remota"; -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "No hay valor remoto o predeterminado"; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.remoteConfigValue" = "Valor de configuración remota"; -/* Remote Config debug menu title */ +/* Remote Config Debug Menu reset button title */ +"debugMenu.remoteConfig.reset" = "Restablecer"; + +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Configuración remota"; /* Remove current quick start tour menu item */ "debugMenu.removeQuickStart" = "Eliminar recorrido actual"; +/* Debug Menu section title */ +"debugMenu.section.logging" = "Registro"; + +/* Debug Menu section title */ +"debugMenu.section.quickStart" = "Inicio rápido"; + +/* Debug Menu section title */ +"debugMenu.section.settings" = "Ajustes"; + +/* Title for debug menu screen */ +"debugMenu.title" = "Desarrollador"; + +/* Weekly Roundup debug menu item */ +"debugMenu.weeklyRoundup" = "Resumen semanal"; + /* Title for a menu action in the context menu on the Jetpack install card. */ "domain.dashboard.card.menu.hide" = "Ocultar esto"; @@ -9695,6 +9533,9 @@ Example: Reply to Pamela Nguyen */ /* The expired label of the domain card in All Domains screen. */ "domain.management.card.expired.label" = "Caducado"; +/* Label indicating that a domain name registration has no expiry date. */ +"domain.management.card.neverExpires.label" = "Nunca caduca"; + /* The renews label of the domain card in All Domains screen. */ "domain.management.card.renews.label" = "Se renueva"; @@ -9788,6 +9629,15 @@ Example: Reply to Pamela Nguyen */ /* The text to display for paid domains in 'Site Creation > Choose a domain' screen */ "domain.suggestions.row.yearly" = "por año"; +/* Help button */ +"domainSelection.helpButton.title" = "Ayuda"; + +/* Description for the first domain purchased with a free plan. */ +"domainSelection.redirectPrompt.title" = "Los dominios comprados en este sitio se redirigirán a %1$@"; + +/* Search domain - Title for the Suggested domains screen */ +"domainSelection.search.title" = "Buscar dominios"; + /* Title for the checkout screen. */ "domains.checkout.title" = "Finalizar compra"; @@ -9819,7 +9669,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Más"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10231,9 +10080,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "marcado como spam"; -/* Products header text in Me Screen. */ -"me.products.header" = "Productos"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "No se pueden sincronizar los medios"; @@ -10663,6 +10509,9 @@ Example: Reply to Pamela Nguyen */ /* Register Domain - Domain contact information field Phone */ "phone number" = "número de teléfono"; +/* Title for the plan selection view */ +"planSelection.title" = "Planes"; + /* Post status and date for list cells with %@ a placeholder for the date. */ "post.createdTimeAgo" = "Creado el %@"; @@ -10871,12 +10720,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Ver todas las respuestas"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Visitar los ajustes del sitio para volver a activar"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Se han ocultado las sugerencias de publicación"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Descartar"; @@ -11101,6 +10944,30 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Site name that is placed in the tooltip view. */ "site.creation.domain.tooltip.site.name" = "YourSiteName.com"; +/* Header of the secondary domains list section in the Domains Dashboard. %1$@ is the name of the site. */ +"site.domains.domainSection.title" = "Otros dominios para %1$@"; + +/* A section title which displays a row with a free WP.com domain */ +"site.domains.freeDomainSection.title" = "Tu dominio gratuito de WordPress.com"; + +/* Description for the first domain purchased with a paid plan. */ +"site.domains.freeDomainWithPaidPlan.description" = "Registra o transfiere un dominio gratis durante un año con cualquier plan de pago anual."; + +/* Title of the card that starts the purchase of the first domain with a paid plan. */ +"site.domains.freeDomainWithPaidPlan.title" = "Consigue tu dominio"; + +/* Footer of the primary site section in the Domains Dashboard. */ +"site.domains.primaryDomain" = "La dirección principal de tu sitio es la que los visitantes ven en su barra de direcciones al visitar tu web."; + +/* Primary domain label, used in the site address section of the Domains Dashboard. */ +"site.domains.primaryDomain.title" = "Dominio principal"; + +/* Title for a button that opens domain purchasing flow. */ +"site.domains.purchaseDirectly.buttons.title" = "Simplemente busca un dominio"; + +/* Title for a button that opens plan and domain purchasing flow. */ +"site.domains.purchaseWithPlan.buttons.title" = "Mejora tu plan"; + /* Back button title shown in Site Creation flow to come back from Plan selection to Domain selection */ "siteCreation.domain.backButton.title" = "Dominios"; @@ -11422,9 +11289,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "Correo electrónico"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "Foros WordPress"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "Centro de Ayuda WordPress"; @@ -11617,6 +11481,9 @@ Example: given a notice format "Following %@" and empty site name, this will be /* This is a comma separated list of keywords used for spotlight indexing of the 'My Sites' tab. */ "wordpress, sites, site, blogs, blog" = "wordpress, sitios, sitio, blogs, blog"; +/* Error message that describes an unknown error had occured */ +"wordpress-api.error.unknown" = "Algo ha salido mal, vuelve a intentarlo más tarde."; + /* Jetpack Plugin Modal on WordPress primary button title */ "wordpress.jetpack.plugin.modal.primary.button.title" = "Cambiar a la aplicación de Jetpack"; @@ -11641,9 +11508,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Saber más"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "tu sitio"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Acceder con Google."; diff --git a/WordPress/Resources/fr.lproj/Localizable.strings b/WordPress/Resources/fr.lproj/Localizable.strings index d97bbdc5f565..d4e6c49a2c08 100644 --- a/WordPress/Resources/fr.lproj/Localizable.strings +++ b/WordPress/Resources/fr.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nPour confirmer, veuillez ressaisir votre identifiant avant de fermer.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/ an"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Images « Lazy-load »"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li mots, %2$li caractères"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "Bloc %s"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "Options du bloc %s"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Ajouter un sujet"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Ajouter un CSS personnalisé ici pour être chargé dans le Lecteur. Si vous utilisez Calypso en local, cela ressemble à : http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Ajouter un domaine"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Tous les plans annuels WordPress.com incluent un nom de domaine personnalisé. Enregistrez votre domaine gratuit dès maintenant."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Tous les plans WordPress.com inclus un nom de domaine personnalisé. Enregistrer votre domaine Premium gratuit dès maintenant."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Tous les commentaires"; @@ -975,9 +961,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Géré automatiquement sur ce site"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Renouvellement automatique activé"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Approuver automatiquement"; @@ -1109,9 +1092,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Bloc dupliqué"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Éditeur de blocs activé"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Bloc groupé"; @@ -1198,9 +1178,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Chargez des médias sur votre site directement depuis votre appareil (photo)."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Naviguez parmi tous nos thèmes pour trouver celui qui sera idéal."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Protection d’attaque par force brute"; @@ -1493,8 +1470,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Sélectionnez un site à ouvrir."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Choisissez un thème"; /* Select the site's intent. Subtitle */ @@ -1583,7 +1559,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Fermer"; @@ -1724,24 +1699,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Terminé : vérifiez le titre de votre site"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Terminé : choisissez votre thème"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Terminé : favicône unique choisie"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Terminé : se connecter à d’autres sites"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Terminé : continuez vers les réglages du site"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Terminé : créez votre site"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Terminé : explorez les offres"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Terminé : publiez un article"; @@ -1879,9 +1845,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Continuer avec Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Continuez à configurer le site"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Continuez avec Apple"; @@ -1975,15 +1938,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Impossible de se connecter au site WordPress. Aucun site WordPress valide à cette adresse. Vérifier l’adresse (URL) que vous avez saisi."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Impossible se connecter. Les méthodes XML-RPC obligatoires sont manquantes sur ce serveur."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Impossible de se connecter. Nous avons reçu une erreur 403 en se connectant au point de terminaison XMLRPC de votre site. L’app a besoin de cela pour communiquer avec votre site. Contactez votre hébergeur pour résoudre ce problème."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Impossible de se connecter. Votre hébergeur bloque les requêtes POST et l’app a besoin de cela pour communiquer avec votre site. Contactez votre hébergeur pour résoudre ce problème."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Impossible de charger les étiquettes"; @@ -2015,9 +1969,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Code du pays"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Plantage à l’enregistrement"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Rapports d’incident"; @@ -2033,9 +1984,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Créer un nouveau"; -/* Title for the site creation flow. */ -"Create New Site" = "Créer un nouveau site"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2222,9 +2170,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Debug"; -/* Debug settings title */ -"Debug Settings" = "Réglages de debug"; - /* Only December needs to be translated */ "December 17, 2017" = "17 décembre 2017"; @@ -2246,9 +2191,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Format par défaut des articles"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "URL par défaut"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Paramètres par défaut pour les nouveaux articles"; @@ -2414,12 +2356,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domaines"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Les domaines achetés sur ce site redirigeront vers %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Les domaines achetés sur ce site redirigeront les utilisateurs vers"; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Vous n'avez pas encore de compte ? _S'inscrire_"; @@ -2589,8 +2525,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Modifier"; /* Title for the edit more button section */ @@ -2655,9 +2590,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Éditeur"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Modifie un commentaire"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Modifier le commentaire."; @@ -2785,9 +2717,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Saisissez un mot de passe pour protéger cette publication"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Saisissez des mots différents ci-dessus et nous regarderons si une adresse correspond."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Saisissez un mot de passe"; @@ -2973,24 +2902,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Déplier pour sélectionner une autre zone de menu"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Expiré"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Code de connexion expiré"; /* Title. Indicates an expiration date. */ "Expires on" = "Expire le"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Expire le %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Décrivez ce site."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Explorer les plans"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Exporter le contenu"; @@ -3176,8 +3096,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Abonnés"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Blogs suivis"; @@ -3194,9 +3113,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Abonnements"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Permet de s’abonner au blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Suivre le blog."; @@ -3230,9 +3146,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Bibliothèque de photos gratuites"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Gratuit la première année "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Libérez de l’espace de stockage sur cet appareil en supprimant des fichiers multimédias temporaires. Cela n’aura aucune incidence sur le support de votre site."; @@ -3321,9 +3234,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Découvrir l’application"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Prenez votre propre domaine."; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Obtenir vos notifications plus rapidement"; @@ -3348,9 +3258,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Retour"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Allez aux abonnements"; @@ -3389,18 +3296,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Vous guide dans le processus de vérification de vos notifications."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Cela vous guide pour choisir un thème pour votre site."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Cela vous guide pour créer une nouvelle page pour votre site."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Cela vous guide pour créer votre site."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Cela vous guide pour explorer les plans de votre site."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Cela vous guide pour suivre d’autres sites."; @@ -3416,9 +3317,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Vous guide lors du processus de définition d’une titre pour votre site."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Cela vous guide pour configurer votre site."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Cela vous guide pour téléverser une icône pour votre site."; @@ -3572,9 +3470,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "La mise à jour de l’icône a échoué"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Si vous possédez déjà un site, vous devrez installer l’extension Jetpack gratuite et la connecter à votre compte WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Si vous ne trouvez pas l’e-mail, vérifiez votre dossier de courrier indésirable ou de spam."; @@ -3984,9 +3879,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Découvrez les nouveaux commentaires, les mentions J’aime et les abonnements en quelques secondes."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "En savoir plus sur les outils marketing et SEO dans nos offres payantes."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4153,9 +4045,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Chargement des commentaires…"; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Chargement des domaines"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Chargement de l'historique…"; @@ -4607,9 +4496,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Mise à jour nécessaire"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "N'expire jamais"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "Nouveautés"; @@ -4684,9 +4570,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Aucun élément"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Aucun site Jetpack trouvé"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Aucun menu"; @@ -4903,9 +4786,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Pas assez d’espace disque disponible pour téléverser"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Pas abonné"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5006,7 +4886,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5311,9 +5190,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Sélectionner un identifiant"; -/* The item to select during a guided tour. */ -"Plan" = "Offre"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Offres"; @@ -5630,9 +5506,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Site principal"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Adresse du site principal"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Vie privée"; @@ -5734,9 +5607,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Publié le"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publication sur"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Publication de la page..."; @@ -5758,9 +5628,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Les notifications Push ont été désactivées dans les paramètres iOS. Sélectionnez « Autoriser les notifications » pour les réactiver."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Démarrage rapide"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Évaluez-nous"; @@ -5779,13 +5646,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Lecteur"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "URL du CSS du Lecteur"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Lire des articles d’autres sites"; @@ -5946,9 +5809,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Les abonnés que vous supprimez ne recevront plus les mises à jour de votre site. Mais ils pourront toujours consulter le site et s’y réabonner s’ils le souhaitent."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Renouvellement le %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Remplacer le bloc actuel"; @@ -6081,7 +5941,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Réessayer"; @@ -6303,9 +6162,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Voir tout"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Voir les instructions"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Voir les commentaires et notifications en temps réel."; @@ -6322,24 +6178,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Sélectionnez %@ pour créer un nouvel article"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Sélectionnez %@ pour découvrir de nouveaux thèmes"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Sélectionnez %@ pour rechercher d’autres sites."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Sélectionnez %@ pour voir comment votre site se comporte."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Sélectionnez %@ pour voir votre check-list"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Sélectionnez %@ pour afficher votre bibliothèque actuelle."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Sélectionnez %@ pour voir votre plan actuel et les autres plans disponibles."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Sélectionnez %@ pour afficher votre liste de pages."; @@ -6732,10 +6579,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Page du site"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Sécurité et performances du site\nde votre poche"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Fuseau horaire du site (UTC%1$@%2$d%3$@)"; @@ -6790,9 +6633,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Certaines données n’ont pas été chargées"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Certains téléversements de média ont échoués. Cette action va supprimer tous ces médias de l’article. \nEnregistrer quand même ?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Un problème est survenu…"; @@ -7336,7 +7176,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Votre site %1$@ utilise WordPress %2$@. Nous recommandons fortement de le mettre à jour à la version la plus récente, ou au minimum la version %3$@."; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Le site à cette adresse n’est pas un site WordPress. Pour pouvoir s’y connecter, le site doit utiliser WordPress."; /* Message shown when site deletion API failed */ @@ -7376,7 +7217,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Thème activé"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Thèmes"; @@ -7622,9 +7462,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Fuseau horaire"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "C’est le moment de terminer les réglages de votre ! Notre check-list vous amènera à la prochaine étape."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Le temps est écoulé, mais ne vous inquiétez pas : votre sécurité est notre priorité. Veuillez réessayer."; @@ -7676,9 +7513,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Pour utiliser les statistiques sur votre site, vous devez installer l'extension Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Pour utiliser cette application pour %@, l’extension Jetpack doit être installée et activée."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7699,9 +7533,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Active\/désactive le style liste à puces"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Outils"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Top des commentaires"; @@ -7709,8 +7540,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Premier niveau"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Sujet"; /* Used when a Reader Topic is not found for a specific id */ @@ -7788,9 +7618,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Recommencez"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Essayer avec un autre compte"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Essayez d’ajuster le filtre Période"; @@ -7870,9 +7697,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Saisissez un nom pour votre site"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Toucher pour obtenir plus de suggestions."; - /* URL text field placeholder */ "URL" = "Adresse Web"; @@ -7978,12 +7802,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Impossible de téléverser un article brouillon"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Impossible de téléverser un article brouillon et %ld fichiers"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Impossible de téléverser un article brouillon et un fichier"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Impossible de téléverser un article"; @@ -8038,8 +7856,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Se désabonner"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Ne plus suivre %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8055,9 +7872,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Site non suivi"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Annule l'abonnement au blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Arrêter de suivre ce blog."; @@ -8227,18 +8041,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Téléversement..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Échec des téléversements"; - /* Use the current image */ "Use" = "Utilise"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Utilisez %@ pour rechercher des sites et des étiquettes."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Utiliser une boutique « bac à sable »"; - /* The button's title text to use a security key. */ "Use a security key" = "Utiliser une clé de sécurité"; @@ -8286,9 +8094,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Vérification de votre identité"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Vérifiez votre adresse de messagerie. Instructions envoyées à %@"; - /* Description for the version label in the What's new page. */ "Version " = "Version"; @@ -8494,9 +8299,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "Nous ne pouvons pas créer votre sauvegarde. Veuillez réessayer plus tard."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Nous ne trouvons aucune adresse disponible avec les mots que vous avez saisis. Veuillez essayer à nouveau."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Nous ne pouvons pas publier cette page mais nous réessayerons ultérieurement."; @@ -8572,9 +8374,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Nous venons d'envoyer un lien magique à "; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Nous avons apporté de grosses améliorations à l’éditeur de blocs et nous pensons que ça vaut le coup d’essayer !\n\nNous l’avons activé pour les nouveaux articles et pages mais si vous voulez changer pour l’éditeur classique, allez à Mes sites > Réglages de sites."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "Nous avons créé une sauvegarde de votre site en date du %@  !"; @@ -8584,9 +8383,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Nous utilisons d’autres outils de suivi dont certains proviennent de services tiers. En lire plus sur ceux-ci et comment les contrôler."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "Aucun site WordPress n’a été détecté à l’adresse saisie. Assurez-vous que WordPress est installé et que vous utilisez la dernière version disponible."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "Nous n’avons pas encore pu vous envoyer un e-mail. Veuillez réessayer ultérieurement."; @@ -8675,9 +8471,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Nous vous avons envoyé un lien d’inscription pour créer votre nouveau compte WordPress.com. Consultez vos e-mails sur cet appareil et touchez le lien dans l’e-mail que vous avez reçu de WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Nous avons rencontré des problèmes lors de la modification du domaine principal de votre site, mais ne vous inquiétez pas, votre domaine a bien été acheté."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Adresse web"; @@ -8955,8 +8748,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Années"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Oui"; @@ -9055,9 +8847,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "Vous avez 1 site WordPress masqué."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "Vous bénéficiez d’un enregistrement de domaine gratuit d’un an avec votre plan."; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Vous avez activé les extensions payantes sur votre site. Veuillez d’abord annuler cette option payante avant d'effacer votre site."; @@ -9142,9 +8931,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Vous avez apporté des modifications non enregistrées à cet article."; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Les domaines de votre site"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Votre icône de site"; @@ -9172,9 +8958,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Votre première sauvegarde sera bientôt prête."; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Votre adresse gratuite WordPress.com est"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Votre nouveau domaine %@ est en cours de configuration. Un délai de 30 minutes peut être nécessaire pour que votre domaine soit opérationnel."; @@ -9190,9 +8973,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Vos articles, pages et réglages vous seront envoyés par e-mail à %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "L’adresse de votre site principal est celle qui s’affichera dans la barre d’adresse des visiteurs qui consultent votre site Web."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Votre restauration prend plus de temps qu’à l’habitude, veuillez vérifiez dans quelques minutes."; @@ -9250,12 +9030,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Vous êtes abonné à cette conversation. Vous recevrez un e-mail dès l’ajout d’un commentaire."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Vous utilisez actuellement le nouvel éditeur de blocs pour les nouvelles pages – c’est super ! Si vous revenir à l’éditeur classique, allez à « Mon site » > « Réglages du site »."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Vous utilisez actuellement le nouvel éditeur de blocs pour les nouveaux articles – c’est super ! Si vous revenir à l’éditeur classique, allez à « Mon site » > « Réglages du site »."; - /* Comment Attachment Label */ "[COMMENT]" = "[COMMENTAIRE]"; @@ -9620,19 +9394,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "Étiquettes de fonctionnalités"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Général"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Les paramètres remplacés sont marqués par une coche."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Remplacez le paramètre choisi en définissant une nouvelle valeur ici."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Pas de valeur par défaut ni distante"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Configuration à distance"; /* Remove current quick start tour menu item */ @@ -9777,7 +9540,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Plus"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "exemple.com"; @@ -10189,9 +9951,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "marqué comme indésirable"; -/* Products header text in Me Screen. */ -"me.products.header" = "Produits"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Impossible de synchroniser les médias"; @@ -10814,12 +10573,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Afficher toutes les réponses"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Consulter les réglages du site pour réactiver"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Invites pour bloguer masquées"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Ignorer"; @@ -11347,9 +11100,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "E-mail"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "Forums WordPress"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "Centre d'assistance de WordPress"; @@ -11566,9 +11316,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Lire la suite"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "votre site"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Connectez-vous avec Google."; diff --git a/WordPress/Resources/he.lproj/Localizable.strings b/WordPress/Resources/he.lproj/Localizable.strings index 36bbae12a556..85f2da150ac6 100644 --- a/WordPress/Resources/he.lproj/Localizable.strings +++ b/WordPress/Resources/he.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nלאישור, עליך להזין שוב את שם המשתמש שלך לפני הסגירה.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " לשנה"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "'טעינה עצלה' של תמונות"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li מילים, %2$li תווים"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "בלוק %s"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s אפשרויות הבלוק"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "להוסיף נושא"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "להוסיף כאן כתובת URL של CSS מותאם כדי לטעון אותה ב-Reader. אם השירות של Calypso מופעל אצלך באופן מקומי, הכתובת תוצג בצורה הבאה: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "להוסיף דומיין"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "כל התוכניות השנתיות של WordPress.com כוללות דומיין אישי. ניתן לרשום את הדומיין החינמי שלך עכשיו."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "כל התוכניות של WordPress.com כוללות דומיין אישי. ניתן להירשם ולקבל דומיין פרימים בחינם עכשיו."; - /* An option in a list. Automatically approve all comments */ "All comments" = "כל התגובות"; @@ -975,9 +961,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "מנוהל באופן אוטומטי באתר זה"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "החידוש האוטומטי מופעל"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "אישור אוטומטי"; @@ -1109,9 +1092,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "הבלוק שוכפל"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "עורך הבלוקים הופעל"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "הבלוק נוסף לקבוצה"; @@ -1201,9 +1181,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "להעביר מדיה לאתר ישירות מהמכשיר או מהמצלמה."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "עיון בכל ערכות העיצוב שלנו כדי למצוא את ההתאמה המושלמת."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "הגנה מפני התקפות של ניחוש סיסמה"; @@ -1496,8 +1473,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "לבחור אתר לפתיחה."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "בחירת ערכת עיצוב"; /* Select the site's intent. Subtitle */ @@ -1586,7 +1562,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "סגור"; @@ -1727,24 +1702,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "הושלם: לבדוק את שם האתר שלך"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "הושלם: לבחירה של ערכת עיצוב"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "הושלם: לבחור סמל ייחודי לאתר"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "הושלם: להתחבר עם אתרים אחרים"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "הושלם: להמשך הגדרת האתר"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "הושלם: ליצירת האתר שלך"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "הושלם: לעיון בתוכניות"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "הושלם: לפרסום פוסט"; @@ -1882,9 +1848,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "להמשיך עם Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "המשך להגדרת האתר"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "להמשיך עם Apple"; @@ -1978,15 +1941,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "לא ניתן היה להתחבר לאתר WordPress. אין אתר WordPress תקף בכתובת זו. בדוק את כתובת האתר (URL) שהזנת."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "לא ניתן להתחבר. שיטות XML-RPC נדרשות חסרות בשרת."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "לא ניתן להתחבר. התקבלה שגיאת 403 בניסיון לגשת אל נקודת הקצה של XMLRPC באתר שלך. כדי שהאפליקציה תוכל לבצע התקשרות עם האתר שלך, יש להפעיל אפשרות זו. יש ליצור קשר עם חברת האחסון שלך כדי לפתור בעיה זו."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "לא ניתן להתחבר. חברת האחסון שלך חוסמת בקשות POST והאפליקציה דורשת את הפעלת האפשרות הזו כדי לבצע התקשרות עם האתר שלך. יש ליצור קשר עם חברת האחסון שלך כדי לפתור בעיה זו."; - /* Error message when tag loading failed */ "Couldn't load tags." = "לא ניתן לטעון את התגיות."; @@ -2018,9 +1972,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "קידומת טלפון בינלאומית"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "ליצור דוח קריסה"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "דוחות קריסה"; @@ -2036,9 +1987,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "ליצור חדש"; -/* Title for the site creation flow. */ -"Create New Site" = "יצירת אתר חדש"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2225,9 +2173,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "איתור באגים"; -/* Debug settings title */ -"Debug Settings" = "הגדרות של איתור באגים"; - /* Only December needs to be translated */ "December 17, 2017" = "17 בדצמבר, 2017"; @@ -2249,9 +2194,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "סוג ברירת מחדל של פוסט"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "כתובת URL בברירת מחדל"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "ברירות מחדל עבור פוסטים חדשים"; @@ -2417,12 +2359,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "דומיינים"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "רכישות דומיין באתר זה ינתבו את המבקרים אל %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "דומיינים שנרכשו באתר זה ינתבו את המשתמשים אל "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "אין לך חשבון עדיין? _הרשמה_"; @@ -2592,8 +2528,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "עריכה"; /* Title for the edit more button section */ @@ -2658,9 +2593,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "עורך"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "עריכת תגובה"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "עריכת התגובה."; @@ -2788,9 +2720,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "להזין סיסמה כדי להגן על פוסט זה"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "יש להזין מילים שונות למעלה ואנחנו נחפש כתובת שתתאים להן."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "הזן סיסמה"; @@ -2976,24 +2905,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "הפעולה מרחיבה כדי לאפשר בחירה באזור תפריט אחר"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "פג תוקף"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "קוד התחברות פג תוקף"; /* Title. Indicates an expiration date. */ "Expires on" = "התוקף פג בתאריך"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "התוקף פג בתאריך %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "מה מהות האתר."; -/* Title of a Quick Start Tour */ -"Explore plans" = "עיון בתוכניות"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "לייצא תוכן"; @@ -3179,8 +3099,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "עוקבים"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "עוקב"; @@ -3197,9 +3116,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "עוקב"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "עוקב אחרי הבלוג"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "מעקב אחר הבלוג."; @@ -3239,9 +3155,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "ספריית תמונות בחינם"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "ניתן בחינם לשנה הראשונה "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "פינוי שטח אחסון במכשיר באמצעות מחיקה של קובצי מדיה זמניים. הפעולה לא תשפיע על המדיה באתר שלך."; @@ -3330,9 +3243,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "היכרות עם האפליקציה"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "לקבל בעלות על דומיין משלך"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "לקבל הודעות מהר יותר"; @@ -3357,9 +3267,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "חזרה"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "מעבר לעוקבים"; @@ -3398,18 +3305,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "הפעולה תדריך אותך איך לבדוק את ההודעות שלך."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "הפעולה תדריך אותך בביצוע התהליך של בחירה בערכת עיצוב לאתר שלך."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "הפעולה תדריך אותך בביצוע התהליך של יצירת עמוד חדש באתר שלך."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "הפעולה תדריך אותך בביצוע התהליך של יצירת האתר שלך."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "הפעולה תדריך אותך בביצוע התהליך של עיון בתוכניות לאתר שלך."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "הפעולה תדריך אותך בביצוע התהליך של מעקב אחר אתרים אחרים."; @@ -3425,9 +3326,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "הפעולה תדריך אותך בביצוע התהליך של הגדרת השם לאתר שלך."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "הפעולה תדריך אותך בביצוע התהליך של הגדרת האתר שלך."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "הפעולה תדריך אותך בביצוע התהליך של העלאת סמל לאתר שלך."; @@ -3581,9 +3479,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "עדכון הסמל נכשל"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "אם כבר יש לך אתר, יהיה עליך להתקין את התוסף החינמי של Jetpack ולחבר אותו לחשבון שלך ב-WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "אם לא הצלחת למצוא את הודעת האימייל, כדאי לחפש בתיבה של דואר הזבל או הספאם"; @@ -3993,9 +3888,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "לקבל מידע על תגובות, לייקים ועוקבים חדשים בשניות."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "מידע נוסף על כלי שיווק ו-SEO בתוכניות שלנו בתשלום."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4162,9 +4054,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "טוען תגובה..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "טוען דומיינים"; - /* Displayed while a call is loading the history. */ "Loading history..." = "טוען היסטוריה..."; @@ -4616,9 +4505,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "נדרש עדכון"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "לעולם לא יפוג"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "חדש"; @@ -4693,9 +4579,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "אין פריטים"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "לא נמצאו אתרים של Jetpack"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "אין תפריט"; @@ -4912,9 +4795,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "אין מספיק מקום לבצע העלאה"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "לא במעקב"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5015,7 +4895,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5320,9 +5199,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "בחירת שם משתמש"; -/* The item to select during a guided tour. */ -"Plan" = "תוכנית"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "תוכניות"; @@ -5639,9 +5515,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "אתר ראשי"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "כתובת האתר הראשי"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "פרטיות"; @@ -5743,9 +5616,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "פורסם ב"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "פורסם בעמוד"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "מפרסם את העמוד..."; @@ -5767,9 +5637,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "הודעות בדחיפה כובו בהגדרות של iOS. יש לבחור ב'הפעלת הודעות' כדי לאפשר אותן שוב."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "התחלה מהירה"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "נשמח לקבל ממך דירוג"; @@ -5788,13 +5655,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "קורא"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "כתובת URL ל-CSS של Reader"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "קריאת פוסטים מאתרים אחרים"; @@ -5955,9 +5818,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "הסרת עוקבים תפסיק את שליחת העדכונים אליהם מהאתר שלך. אם העוקבים יבחרו לעשות זאת, הם עדיין יוכלו לבקר באתר שלך ולעקוב אחריו שוב."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "מתחדש בתאריך %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "יש להחליף את הבלוק הנוכחי"; @@ -6090,7 +5950,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "נסה שנית"; @@ -6312,9 +6171,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "הצגת הכול"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "להציג את ההוראות"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "להציג תגובות והודעות בזמן אמת."; @@ -6331,24 +6187,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "יש לבחור %@ כדי ליצור פוסט חדש"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "יש לבחור %@ כדי למצוא ערכות עיצוב חדשות"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "יש לבחור את %@ כדי למצוא אתרים אחרים."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "יש לבחור %@ כדי להציג את הביצועים של האתר שלך."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "יש לבחור %@ כדי להציג את רשימת המשימות שלך"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "יש לבחור %@ כדי להציג את הספרייה הנוכחית שלך."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "יש לבחור %@ כדי להציג את התוכנית הנוכחית שלך ותוכניות אחרות שזמינות."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "יש לבחור באפשרות %@ כדי להציג את רשימת העמודים שלך."; @@ -6741,10 +6588,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "עמוד האתר"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "האבטחה והביצועים של האתר\nמהכיס שלך"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "אזור הזמן של האתר (UTC%1$@%2$d%3$@)"; @@ -6799,9 +6642,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "חלק מהנתונים לא נטענו"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "מספר טעינות מדיה נכשלו. פעולה זו תסיר את כל המדיה שנכשלה מהפוסט.\nלשמור בכל זאת?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "משהו השתבש"; @@ -7345,7 +7185,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "האתר %1$@ משתמש בוורדפרס %2$@. מומלץ לשדרג לגרסה העדכנית ביותר, או לפחות לגרסה %3$@."; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "כתובת האתר שהזנת אינה עבור אתר ב-WordPress. כדי שנוכל להתחבר לאתר, האתר חייב להשתמש בפלטפורמה של WordPress."; /* Message shown when site deletion API failed */ @@ -7385,7 +7226,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "ערכת עיצוב הופעלה"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "ערכות עיצוב"; @@ -7631,9 +7471,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "אזור זמן"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "הגיע הזמן לסיים את הגדרת האתר שלך! רשימת המשימות שלנו תדריך אותך בשלבים הבאים."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "נגמר הזמן הקצוב, אבל לא לדאוג: האבטחה שלך בעדיפות ראשונה אצלנו. יש לנסות שוב!"; @@ -7685,9 +7522,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "כדי להשתמש בנתונים סטטיסטיים באתר שלך, עליך להתקין את התוסף של Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "כדי להשתמש באפליקציה הזאת עבור %@ עליך להתקין את התוסף של Jetpack ולהפעיל אותו."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7708,9 +7542,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "מבצע החלפה בין סגנונות רשימה לא ממוספרת"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "כלים"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "מגיבים מובילים"; @@ -7718,8 +7549,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "קטגוריה עליונה"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "נושא"; /* Used when a Reader Topic is not found for a specific id */ @@ -7797,9 +7627,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "לנסות שוב"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "לנסות עם חשבון אחר"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "כדאי לנסות להתאים את המסנן של טווח התאריכים"; @@ -7879,9 +7706,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "יש להקליד שם לאתר שלך"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "יש להקליד כדי לקבל הצעות נוספות"; - /* URL text field placeholder */ "URL" = "כתובת אתר"; @@ -7987,12 +7811,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "אין אפשרות להעלות פוסט טיוטה אחד"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "אין אפשרות להעלות פוסט טיוטה אחד, %ld קבצים"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "אין אפשרות להעלות פוסט טיוטה אחד, קובץ אחד"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "אין אפשרות להעלות פוסט אחד"; @@ -8047,8 +7865,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "להפסיק לעקוב"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "להפסיק את המעקב אחר %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8064,9 +7881,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "בוטל מינוי לאתר"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "ביטול המעקב אחרי הבלוג"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "ביטול המעקב אחרי הבלוג."; @@ -8236,18 +8050,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "מעלה…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "העלאות נכשלו"; - /* Use the current image */ "Use" = "שימוש"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "להשתמש בפריט %@ למציאת אתרים ותגיות."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "להשתמש בחנות של Sandbox"; - /* The button's title text to use a security key. */ "Use a security key" = "להשתמש במפתח אבטחה"; @@ -8295,9 +8103,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "יש לאמת התחברות"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "יש לאמת את כתובת האימייל שלך - ההוראות נשלחו לכתובת %@"; - /* Description for the version label in the What's new page. */ "Version " = "גרסה"; @@ -8503,9 +8308,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "לא הצלחנו ליצור את הגיבוי שלך. יש לנסות שוב מאוחר יותר."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "לא הצלחנו למצוא כתובת זמינה עם המילים שהזנת - שננסה שוב?"; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "לא הצלחנו לפרסם את העמוד אבל ננסה שוב מאוחר יותר."; @@ -8581,9 +8383,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "שלחנו כעת קישור ישיר אל"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "שיפרנו באופן משמעותי את עורך הבלוקים ואנחנו חושבים שכדאי לנסות אותו!\n\nהפעלנו אותו בפוסטים ובעמודים חדשים אבל אם ברצונך לחזור לעורך הקלאסי, יש לעבור אל 'האתר שלי' > 'הגדרות אתר'."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "יצרנו בהצלחה גיבוי של האתר שלך לפי הגרסה שלו מתאריך %@"; @@ -8593,9 +8392,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "אנחנו משתמשים בכלים למעקב, כולל כלים של צד שלישי. אפשר לקרוא פרטים על אלו על אלו ועל אופן השליטה בהם."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "לא הצלחנו למצוא אתר WordPress בכתובת שהזנת. עליך לוודא שהאפליקציה של WordPress מותקנת ושהפעלת את הגרסה האחרונה."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "לא הצלחנו לשלוח אליך אימייל בשלב זה. יש לנסות שוב מאוחר יותר."; @@ -8684,9 +8480,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "שלחנו לך קישור הרשמה ליצירת חשבון WordPress.com חדש. בדוק את האימייל שלך במכשיר הנוכחי, ותקיש על הלינק שקיבלת מ WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "נתקלנו בבעיות בשינוי הדומיין הראשי באתר שלך – אל דאגה, הדומיין שלך נרכש בהצלחה."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "כתובת אתר"; @@ -8964,8 +8757,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "שנים"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "כן"; @@ -9064,9 +8856,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "יש לך אתר WordPress מוסתר אחד."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "אנחנו מעניקים לך רישום דומיין בחינם לשנה עם התוכנית שלך"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "קיימים שדרוגים פעילים באתר שלך. יש לבטל את השדרוגים לפני מחיקת האתר."; @@ -9151,9 +8940,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "ביצעת שינויים שלא נשמרו בפוסט הזה"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "הדומיינים באתר שלך"; - /* The item to select during a guided tour. */ "Your Site Icon" = "הסמל של האתר שלך"; @@ -9181,9 +8967,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "הגיבוי הראשון שלך יהיה מוכן בקרוב"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "הכתובת החינמית שלך ב-WordPress.com היא"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "כעת מתבצע תהליך ההגדרה של הדומיין החדש שלך, %@. יידרשו עד 30 שעות להתחלת הפעילות של הדומיין."; @@ -9199,9 +8982,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "הפוסטים, העמודים וההגדרות שלך יישלחו באימייל לכתובת %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "כתובת האתר הראשי שלך היא הכתובת שהמבקרים יראו בשורת הכתובת שלהם כאשר יבקרו באתר שלך."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "השחזור שלך אורך יותר זמן מהצפוי, מומלץ לבדוק שוב בעוד מספר דקות."; @@ -9259,12 +9039,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "השיחה הזאת נוספה למעקב שלך. נשלח לך אימייל כאשר תתפרסם תגובה חדשה."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "התחלת להשתמש בעורך הבלוקים עבור עמודים חדשים - מעולה! כדי לחזור לעורך הקלאסי, יש לעבור אל 'האתר שלי' > 'הגדרות אתר'."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "התחלת להשתמש בעורך הבלוקים עבור פוסטים חדשים - מעולה! כדי לחזור לעורך הקלאסי, יש לעבור אל 'האתר שלי' > 'הגדרות אתר'."; - /* Comment Attachment Label */ "[COMMENT]" = "[תגובה]"; @@ -9650,19 +9424,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "האפשרות סומנה"; -/* General section title */ -"debugMenu.generalSectionTitle" = "כללי"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "פרמטרים שנדרסו מסומנים בסימן אישור."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "לדרוס את הפרמטר שנבחר על ידי הגדרה של הערך החדש כאן."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "אין ערך מרוחק או ערך בברירת מחדל"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "שינוי תצורה מרחוק"; /* Remove current quick start tour menu item */ @@ -9810,7 +9573,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "עוד"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10222,9 +9984,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "סומן כ'זבל'"; -/* Products header text in Me Screen. */ -"me.products.header" = "מוצרים"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "לא ניתן לסנכרן את פריטי המדיה"; @@ -10853,12 +10612,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "להציג את כל התשובות"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "יש לעבור אל הגדרות האתר כדי להפעיל אותן בחזרה"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "הצעות הכתיבה בבלוג מוסתרות"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "ביטול"; @@ -11404,9 +11157,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "אימייל"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "הפורומים של WordPress"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "מרכז העזרה של WordPress"; @@ -11623,9 +11373,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "למידע נוסף"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "האתר שלך"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} התחברות עם Google."; diff --git a/WordPress/Resources/hr.lproj/Localizable.strings b/WordPress/Resources/hr.lproj/Localizable.strings index 7a0b4f7cb2ba..94ea992a3706 100644 --- a/WordPress/Resources/hr.lproj/Localizable.strings +++ b/WordPress/Resources/hr.lproj/Localizable.strings @@ -150,7 +150,6 @@ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Zatvori"; @@ -272,8 +271,7 @@ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Uredi"; /* View title when editing a comment. */ @@ -335,9 +333,6 @@ /* Example post content used in the login prologue screens. */ "I am so inspired by photographer Cameron Karsten's work. I will be trying these techniques on my next" = "Inspiriran sam radovima fotografa Camerona Karstena. Pokušavat ću primjenjivati te tehnike na svoje sljedeće"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Ako već imate sjedište, trebat ćete instalirati besplatni Jetpack priključak te ga povezati s vašim WordPress računom."; - /* Undated post time label */ "Immediately" = "Odmah"; @@ -517,7 +512,6 @@ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -647,8 +641,7 @@ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Čitač"; /* Button label to refres a web page @@ -687,7 +680,6 @@ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Pokušaj Ponovno"; @@ -738,9 +730,6 @@ /* No comment provided by engineer. */ "Search blocks" = "Pretraži blokove"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Pogledajte upute"; - /* Link to plugin's Settings Section title The menu item to select during a guided tour. @@ -829,7 +818,6 @@ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Web stranica na %1$@ koristi WordPress %2$@. Preporučamo da ažurirate na najnoviju inačicu, ili barem %3$@"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Teme"; @@ -869,9 +857,6 @@ Try to load the list of interests again. */ "Try Again" = "Pokušajte ponovno"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Pokušajte s drugim računom"; - /* Button label for trying to retrieve the activities type again Button label for trying to retrieve the history again Button label for trying to retrieve the scan status again @@ -979,9 +964,6 @@ Today's Stats 'Visitors' label */ "Visitors" = "Posjetitelji"; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "Nismo bili u mogućnosti pronaći WordPress sjedište na adresi koju ste unijeli. Provjerite da je WordPress instaliran i da koristite najnoviju verziju."; - /* Example Reader feed title */ "Web News" = "Web novosti"; @@ -1012,8 +994,7 @@ /* WordPress.com Notification Settings Title */ "WordPress.com Updates" = "WordPress.com Statistika"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Da"; @@ -1063,6 +1044,3 @@ /* Title of visitors label in today widget */ "widget.today.visitors.label" = "Posjetitelji"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "vaše sjedište"; - diff --git a/WordPress/Resources/hu.lproj/Localizable.strings b/WordPress/Resources/hu.lproj/Localizable.strings index 60cb0ac66986..88ddb689322c 100644 --- a/WordPress/Resources/hu.lproj/Localizable.strings +++ b/WordPress/Resources/hu.lproj/Localizable.strings @@ -110,7 +110,6 @@ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Bezár"; @@ -213,8 +212,7 @@ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Szerkesztés"; /* View title when editing a comment. */ @@ -282,8 +280,7 @@ Label for number of followers. */ "Followers" = "Követők"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Követve"; @@ -483,7 +480,6 @@ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -618,8 +614,7 @@ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Olvasó"; /* Text for the 'Reblog' button. */ @@ -663,7 +658,6 @@ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Újra"; @@ -968,8 +962,7 @@ /* Label for WordPress.com followers */ "WordPress.com" = "WordPress.com"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Igen"; diff --git a/WordPress/Resources/id.lproj/Localizable.strings b/WordPress/Resources/id.lproj/Localizable.strings index 31c94dac31a8..546f00bf7c4c 100644 --- a/WordPress/Resources/id.lproj/Localizable.strings +++ b/WordPress/Resources/id.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nUntuk mengonfirmasi, silakan masukkan lagi nama pengguna Anda sebelum menutup.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/ tahu"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Gambar \"Lazy-load\""; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li kata, %2$li karakter"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s blok"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s pilihan blok"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Tambahkan Topik"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Tambahkan URL CSS kustom di sini untuk dimuat di Pembaca. Jika Anda menjalankan Calypso secara lokal, URL bisa seperti: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Tambah domain"; @@ -646,10 +636,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Semua paket tahunan WordPress.com menyertakan nama domain kustom. Daftarkan domain gratis Anda sekarang."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Semua paket WordPress.com menyertakan nama domain kustom. Daftarkan domain premium gratis Anda sekarang."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Semua komentar"; @@ -972,9 +958,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Dikelola secara otomatis di situs ini"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Perpanjangan otomatis diaktifkan"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Otomatis Setujui"; @@ -1106,9 +1089,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Blok diduplikasi"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Penyunting blok diaktifkan"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Blok dikelompokkan"; @@ -1198,9 +1178,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Masukkan media langsung dari perangkat atau kamera ke situs Anda."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Jelajahi semua tema kami untuk menemukan yang paling cocok."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Perlindungan Terhadap Serangan Paksa"; @@ -1493,8 +1470,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Pilih situs yang ingin dibuka"; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Pilih tema"; /* Select the site's intent. Subtitle */ @@ -1583,7 +1559,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Tutup"; @@ -1724,24 +1699,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Selesai: Periksa judul situs Anda"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Selesai: Pilih tema"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Selesai: Memilih ikon unik untuk situs Anda"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Selesai: Hubungkan dengan situs lainnya"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Selesai: Lanjutkan penyiapan situs"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Selesai: Buat situs Anda"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Selesai: Jelajahi paket"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Selesai: Publikasikan pos"; @@ -1879,9 +1845,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Lanjutkan dengan Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Lanjutkan penyiapan situs"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Melanjutkan dengan Apple"; @@ -1975,15 +1938,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Tidak dapat terhubung ke situs WordPress. Tidak ada situs WordPress yang valid di alamat ini. Periksa alamat situs (URL) yang Anda masukkan."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Tidak dapat terhubung. Metode XML-RPC yang diperlukan tidak ditemukan di server."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Tidak dapat terhubung. Kami menerima error 403 saat mencoba mengakses titik akhir XMLRPC situs Anda. Aplikasi ini memerlukannya agar dapat berkomunikasi dengan situs Anda. Hubungi host Anda untuk mengatasi masalah ini."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Tidak dapat terhubung. Host Anda memblokir permintaan POST, dan aplikasi memerlukannya untuk berkomunikasi dengan situs Anda. Hubungi host Anda untuk mengatasi masalah ini."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Tidak bisa memuat tag."; @@ -2015,9 +1969,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Kode Negara"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Pembuatan Log Crash"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Laporan masalah crash"; @@ -2033,9 +1984,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Buat Baru"; -/* Title for the site creation flow. */ -"Create New Site" = "Buat Situs Baru"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2222,9 +2170,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Debug"; -/* Debug settings title */ -"Debug Settings" = "Pengaturan Debug"; - /* Only December needs to be translated */ "December 17, 2017" = "17 Desember 2017"; @@ -2246,9 +2191,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Format Pos Default"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "URL Asal"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Default untuk Pos Baru"; @@ -2414,12 +2356,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domain"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domain yang dibeli di situs ini akan mengalihkan ke %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Domain yang dibeli di situs ini akan mengalihkan pengguna ke "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Belum memiliki akun? _Daftar_"; @@ -2589,8 +2525,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Sunting"; /* Title for the edit more button section */ @@ -2655,9 +2590,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Penyunting"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Edit komentar"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Menyunting komentar."; @@ -2785,9 +2717,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Masukkan kata sandi untuk melindungi pos ini"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Masukkan kata yang berbeda dengan yang di atas dan kami akan mencari alamat yang cocok dengan kata tersebut."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Masukkan kata sandi"; @@ -2973,24 +2902,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Perluas untuk memilih area menu yang berbeda"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Kedaluwarsa"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Kode login kedaluwarsa"; /* Title. Indicates an expiration date. */ "Expires on" = "Kedaluwarsa pada"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Kedaluwarsa pada %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Jelaskan tentang apa situs ini."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Pelajari paket"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Ekspor Konten"; @@ -3176,8 +3096,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Pengikut"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Mengikuti"; @@ -3194,9 +3113,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Mengikuti"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Mengikuti blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Mengikuti blog."; @@ -3236,9 +3152,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Pustaka Foto Gratis"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Gratis untuk tahun pertama "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Kosongkan sebagian ruang penyimpanan di perangkat ini dengan menghapus file media sementara. Tindakan ini tidak akan memengaruhi media di situs Anda."; @@ -3327,9 +3240,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Kenali aplikasinya"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Dapatkan domain Anda"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Dapatkan pemberitahuan lebih cepat"; @@ -3354,9 +3264,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Kembali"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Buka yang Diikuti"; @@ -3395,18 +3302,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Memandu Anda dalam proses pemeriksaan pemberitahuan. "; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Memandu Anda melalui proses pemilihan tema untuk situs Anda."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Memandu Anda melalui proses pembuatan halaman baru untuk situs Anda."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Memandu Anda melalui proses pembuatan situs Anda."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Memandu Anda melalui proses penjelajahan paket untuk situs Anda."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Memandu Anda melalui proses untuk mengikuti situs lain."; @@ -3422,9 +3323,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Memandu Anda melalui proses pembuatan judul untuk situs Anda."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Memandu Anda melalui proses penyiapan situs Anda."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Memandu Anda melalui proses pengunggahan ikon untuk situs Anda."; @@ -3578,9 +3476,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Pembaruan ikon gagal"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Jika Anda sudah memiliki situs, Anda perlu memasang plugin Jetpack gratis ini dan menghubungkannya ke akun WordPress.com Anda."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Jika tidak dapat menemukan emailnya, periksa tong sampah atau folder email spam Anda"; @@ -3990,9 +3885,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Ketahui komentar, suka, dan pengikut baru dengan cepat."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Pelajari alat pemasaran dan SEO di paket berbayar kami."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4159,9 +4051,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Memuat komentar..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Memuat domain"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Memuat riwayat..."; @@ -4613,9 +4502,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Perlu Pembaruan"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Tidak pernah kedaluwarsa"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "Baru"; @@ -4690,9 +4576,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Tak ada Item"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Situs Jetpack tidak ditemukan"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Tidak Ada Menu"; @@ -4909,9 +4792,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Tidak cukup ruang untuk unggah."; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Tidak mengikuti"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5012,7 +4892,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5317,9 +5196,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Pilih nama pengguna"; -/* The item to select during a guided tour. */ -"Plan" = "Paket"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Paket"; @@ -5636,9 +5512,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Situs Utama"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Alamat situs utama"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Privasi"; @@ -5740,9 +5613,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Dipublikasikan pada"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Memublikasikan ke"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Menerbitkan halaman..."; @@ -5764,9 +5634,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Pemberitahuan push telah dinonaktifkan di pengaturan iOS Aktifkan kembali “Izinkan Pemberitahuan”."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Mulai Cepat"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Beri Rating"; @@ -5785,13 +5652,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Pembaca"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "URL CSS Pembaca"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Membaca pos dari situs lainnya"; @@ -5952,9 +5815,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Jika pengikut dibuang, mereka akan berhenti menerima pembaruan dari situs Anda. Mereka tetap bebas mengunjungi dan mengikuti kembali situs Anda."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Diperbarui pada %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Ganti Blok Saat Ini"; @@ -6087,7 +5947,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Coba Lagi"; @@ -6309,9 +6168,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Lihat Semuanya"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Lihat Instruksi"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Lihat komentar dan pemberitahuan secara real-time."; @@ -6328,24 +6184,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Pilih %@ untuk membuat pos baru"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Pilih %@ untuk menemukan tema baru"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Pilih %@ untuk menemukan situs lainnya."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Pilih %@ untuk melihat kinerja situs Anda."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Pilih %@ untuk melihat daftar periksa"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Pilih %@ untuk melihat pustaka Anda saat ini."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Pilih %@ untuk melihat paket Anda saat ini dan paket lain yang tersedia."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Pilih %@ untuk melihat daftar halaman Anda."; @@ -6738,10 +6585,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Halaman situs"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Keamanan dan performa situs\ndari saku Anda"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Atur zona waktu (UTC%1$@%2$d%3$@)"; @@ -6796,9 +6639,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Sejumlah data belum dimuat"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Gagal mengunggah beberapa media. Tindakan ini akan menghapus semua media yang gagal dari pos tersebut.\nTetap simpan?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Terjadi kesalahan"; @@ -7342,7 +7182,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Situs di %1$@ menggunakan WordPress %2$@. Kami merekomendasikan agar diperbarui ke versi terbaru, atau sekurang-kurangnya %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Situs di alamat ini bukan situs WordPress. Agar kami dapat menghubungkannya, situs harus menggunakan WordPress."; /* Message shown when site deletion API failed */ @@ -7382,7 +7223,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Tema Diaktifkan"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Tema"; @@ -7628,9 +7468,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Zona Waktu"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Waktunya menyelesaikan penyiapan situs Anda! Daftar periksa kami memberikan panduan bagi Anda untuk langkah selanjutnya."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Waktu habis, tetapi jangan khawatir, keamanan Anda menjadi prioritas kami. Coba lagi!"; @@ -7682,9 +7519,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Untuk menggunakan statistik di situs, Anda perlu menginstal plugin Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Untuk menggunakan aplikasi ini untuk %@ Anda perlu memasang dan mengaktifkan plugin Jetpack."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7705,9 +7539,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Mengaktifkan dan menonaktifkan gaya daftar yang tidak diurutkan"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Alat"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Komentator Teratas"; @@ -7715,8 +7546,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Level teratas"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Topik"; /* Used when a Reader Topic is not found for a specific id */ @@ -7791,9 +7621,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Coba Lagi"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Coba dengan Akun Lain"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Coba sesuaikan penyaring rentang tanggal"; @@ -7873,9 +7700,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Ketik nama untuk situs Anda"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Ketik untuk mendapatkan lebih banyak saran"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7981,12 +7805,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Gagal mengunggah 1 pos konsep"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Gagal mengunggah 1 pos konsep, %ld file"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Gagal mengunggah 1 pos konsep, 1 file"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Gagal mengunggah 1 pos"; @@ -8041,8 +7859,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Batal Mengikuti"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Batal Mengikuti %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8058,9 +7875,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Batal mengikuti situs"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Berhenti mengikuti blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Berhenti mengikuti blog."; @@ -8230,18 +8044,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Mengunggah…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Unggahan gagal"; - /* Use the current image */ "Use" = "Gunakan"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Gunakan %@ untuk menemukan situs dan tag."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Gunakan Toko Sandbox"; - /* The button's title text to use a security key. */ "Use a security key" = "Gunakan kunci keamanan"; @@ -8289,9 +8097,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Verifikasi Log In"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Verifikasi alamat email Anda - instruksi dikirim ke %@"; - /* Description for the version label in the What's new page. */ "Version " = "Versi:"; @@ -8500,9 +8305,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "Kami tidak dapat membuat cadangan Anda. Silakan coba lagi nanti."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Kami tidak dapat menemukan alamat yang tersedia dengan kata yang Anda masukkan - mari kita coba lagi."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Kami tidak dapat memublikasikan halaman ini, namun kami akan mencoba lagi nanti."; @@ -8578,9 +8380,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Kami baru saja mengirimkan tautan ajaib ke "; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Kami membuat peningkatan besar untuk penyunting blok dan merasa itu layak dicoba!\n\nKami mengaktifkannya untuk pos dan halaman baru tetapi jika Anda ingin mengganti ke penyunting klasik, buka 'Situs Saya' > 'Pengaturan Situs'."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "Kami berhasil membuat cadangan situs Anda pada %@"; @@ -8590,9 +8389,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Kami menggunakan alat pelacakan lainnya, termasuk beberapa dari pihak ketiga. Baca tentang hal ini dan cara mengontrolnya."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "Kami tidak dapat mendeteksi situs WordPress di alamat yang Anda masukkan. Pastikan WordPress terpasang dan Anda menjalankan versi terbaru yang tersedia."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "Kami tidak dapat mengirimkan email kepada Anda. Coba lagi nanti."; @@ -8681,9 +8477,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Kami telah mengirimi Anda email berisi tautan pendaftaran untuk membuat akun WordPress.com baru. Periksa email Anda di perangkat ini, dan ketuk tautan dalam email yang Anda terima dari WordPress.com"; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Kami mengalami masalah saat mengubah domain utama di situs Anda — tetapi jangan khawatir, domain Anda telah berhasil dibeli."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Alamat Web"; @@ -8961,8 +8754,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Tahun"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Ya"; @@ -9061,9 +8853,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "Anda memiliki 1 situs WordPress tersembunyi."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "Anda memiliki registrasi domain gratis selama satu tahun dengan paket Anda"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Anda memiliki peningkatan premium aktif dalam situs Anda. Batalkan peningkatan sebelum menghapus situs Anda."; @@ -9148,9 +8937,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Anda telah membuat perubahan yang tidak tersimpan di pos ini"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Domain Situs Anda"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Ikon Situs Anda"; @@ -9178,9 +8964,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Pencadangan pertama Anda akan segera tersedia"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Alamat WordPress.com gratis Anda adalah"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Domain baru Anda %@ sedang disiapkan. Perlu waktu hingga 30 menit agar domain anda mulai berfungsi."; @@ -9196,9 +8979,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Pos, laman, dan pengaturan Anda akan dikirim melalui alamat email %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Alamat situs utama adalah yang akan muncul pada kotak alamat browser saat pengunjung mengunjungi situs web Anda."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Pemulihan Anda memerlukan waktu lebih lama dari biasanya, periksa lagi dalam beberapa menit."; @@ -9256,12 +9036,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Anda mengikuti percakapan ini. Anda akan menerima email setiap kali ada komentar baru."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Saat ini Anda menggunakan penyunting blok untuk halaman baru — hebat! Jika Anda ingin mengubah ke penyunting klasik, buka ‘Situs Saya’ > ‘Pengaturan Situs’."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Saat ini Anda menggunakan penyunting blok untuk pos baru — hebat! Jika Anda ingin mengubah ke penyunting klasik, buka ‘Situs Saya’ > ‘Pengaturan Situs’."; - /* Comment Attachment Label */ "[COMMENT]" = "[KOMENTAR]"; @@ -9644,19 +9418,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "Bendera Fitur"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Umum"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Parameter yang ditolak ditandai dengan tanda centang."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Tolak parameter terpilih dengan menentukan nilai baru di sini."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Tidak ada nilai jarak jauh atau default"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Konfigurasi Jarak Jauh"; /* Remove current quick start tour menu item */ @@ -9804,7 +9567,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Lainnya"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "contoh.com"; @@ -10216,9 +9978,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "ditandai sebagai spam"; -/* Products header text in Me Screen. */ -"me.products.header" = "Produk"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Tidak dapat menyinkronkan media"; @@ -10856,12 +10615,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Lihat semua tanggapan"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Buka Pengaturan Situs untuk menyalakan kembali"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Prompt Blogging tersembunyi"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Tutup"; @@ -11407,9 +11160,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "E-mail"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "Forum WordPress"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "Pusat Bantuan WordPress"; @@ -11626,9 +11376,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Baca selengkapnya"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "situs Anda"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Login dengan Google."; diff --git a/WordPress/Resources/is.lproj/Localizable.strings b/WordPress/Resources/is.lproj/Localizable.strings index 3ba79578486b..314b040f4bfd 100644 --- a/WordPress/Resources/is.lproj/Localizable.strings +++ b/WordPress/Resources/is.lproj/Localizable.strings @@ -435,7 +435,6 @@ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Loka"; @@ -769,8 +768,7 @@ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Breyta"; /* Title for the edit more button section */ @@ -793,9 +791,6 @@ /* Title for the editor settings section */ "Editor" = "Ritstjóri"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Breytir athugasemd"; - /* Accessibility label for the Email text field. Account Settings Email label Email address text field placeholder @@ -949,8 +944,7 @@ Label for number of followers. */ "Followers" = "Fylgjendur"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Fylgja"; @@ -1526,7 +1520,6 @@ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -1817,8 +1810,7 @@ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Lesari"; /* Title for a list of ssettings for editing a blog's Reblog and Like settings. */ @@ -1938,7 +1930,6 @@ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Reyna aftur"; @@ -2140,9 +2131,6 @@ /* Label for the slug field. Should be the same as WP core. */ "Slug" = "Fangamark"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Einhverjar skráarupphleðslur mistókust. Þessi aðgerð fjarlægir allar gallaðar skrár úr færslunni.\nVista samt sem áður?"; - /* Error message shown when a media upload fails for a general network issue and the user should try again in a moment. Error message shown when the app fails to save user selected interests Error message shown when user tries to share the app with others, but failed due to unknown errors. */ @@ -2375,7 +2363,6 @@ "Theme Activated" = "Þema virkjað"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Þemu"; @@ -2477,8 +2464,7 @@ /* Discoverability title for HTML keyboard shortcut. */ "Toggle HTML Source " = "Sýna HTML kóða"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Umfjöllunarefni"; /* Topics Filter Tab Title */ @@ -2639,9 +2625,6 @@ /* Label to show while uploading media to server */ "Uploading..." = "Hala upp…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Upphleðslur mistókust"; - /* Use the current image */ "Use" = "Nota"; @@ -2812,8 +2795,7 @@ /* Title of Years stats filter. */ "Years" = "Ár"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Já"; diff --git a/WordPress/Resources/it.lproj/Localizable.strings b/WordPress/Resources/it.lproj/Localizable.strings index d20331712d87..b605b392fa7f 100644 --- a/WordPress/Resources/it.lproj/Localizable.strings +++ b/WordPress/Resources/it.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nPer confermare, inserisci nuovamente il nome utente prima di chiudere.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " all'anno"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Immagini a \"caricamento lento\""; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li parole, %2$li caratteri"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "Blocco %s"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s opzioni blocco"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Inserisci un argomento"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Aggiungi qui l'URL del CSS personalizzato per essere caricato in Reader. Se stai utilizzando Calypso localmente, potrebbe essere qualcosa come: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Aggiungi un dominio"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Tutti i piani WordPress.com annuali comprendono un nome di dominio personalizzato. Registra subito il tuo dominio gratuito."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Tutti i piani WordPress.com comprendono un nome di dominio personalizzato. Registra il tuo dominio premium gratuito ora."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Tutti i commenti"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Auto-gestito su questo sito"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Rinnovo automatico attivato"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Approva automaticamente"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Blocco duplicato"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Editor a blocchi abilitato"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Blocco raggruppato"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Porta gli elementi multimediali dal tuo dispositivo o dalla fotocamera direttamente sul tuo sito."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Sfoglia tutti i nostri temi per trovare quello perfetto per te."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Protezione dagli attacchi di forza bruta"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Scegli un sito da aprire."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Scegli un tema"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Chiudi"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Completato: Controllo del titolo del sito"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Completato: scegli un tema"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Completato: Scegli un'icona del sito univoca"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Completato: Connettiti con altri siti"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Completato: continua con la configurazione del sito"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Completato: crea il tuo sito"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Completato: esplora i piani"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Completato: pubblica un articolo"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Continua con Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Continua con l'impostazione del sito"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Continua con Apple"; @@ -1981,15 +1944,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Impossibile connettersi al sito WordPress. Non c'è alcun sito WordPress valido a questo indirizzo. Controlla l'indirizzo del sito (URL) inserito."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Impossibile connettersi. I metodi XML-RPC necessari non sono presenti su questo server."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Impossibile connettersi. Abbiamo ricevuto un messaggio di errore 403 durante il tentativo di accedere all'endpoint XMLRPC del tuo sito. Per l'app ne ha bisogno per comunicare con il tuo sito. Contatta il tuo fornitore del servizio di hosting per risolvere questo problema."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Impossibile connettersi. L’host sta bloccando le richieste POST ma queste sono necessarie per la corretta comunicazione dell'app con il sito. Contatta il tuo fornitore del servizio di hosting per risolvere questo problema."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Non è stato possibile caricare le tag."; @@ -2021,9 +1975,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Prefisso internazionale"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Registrazione crash"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Report di arresto anomalo"; @@ -2039,9 +1990,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Crea nuovo"; -/* Title for the site creation flow. */ -"Create New Site" = "Crea un nuovo sito"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2176,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Debug"; -/* Debug settings title */ -"Debug Settings" = "Impostazioni debug"; - /* Only December needs to be translated */ "December 17, 2017" = "17 dicembre 2017"; @@ -2252,9 +2197,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Formato articoli predefinito"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "URL predefinito"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Valori predefiniti per i nuovi articoli"; @@ -2420,12 +2362,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domini"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "I domini acquistati su questo sito reindirizzeranno gli utenti a %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "I domini acquistati su questo sito reindirizzeranno gli utenti a "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Non hai un account? _Registrati_"; @@ -2595,8 +2531,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Modifica"; /* Title for the edit more button section */ @@ -2661,9 +2596,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Modifica un commento"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Modifica il commento."; @@ -2791,9 +2723,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Inserisci una password per proteggere questo articolo"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Inserire parole diverse nel campo in alto e cercheremo un indirizzo che corrisponda."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Inserisci la password"; @@ -2979,24 +2908,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Espande per selezionare un'area del menu differente"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Scaduto"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Codice di accesso scaduto"; /* Title. Indicates an expiration date. */ "Expires on" = "Scade il giorno"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Scade il giorno %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Spiega di cosa tratta il sito."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Esplora i piani"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Esporta contenuti"; @@ -3182,8 +3102,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Seguaci"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Seguendo"; @@ -3200,9 +3119,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Segue"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Segue il blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Segue il blog."; @@ -3242,9 +3158,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Libreria di foto gratuita"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Gratis per il primo anno "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Libera lo spazio di archiviazione su questo dispositivo eliminando i file multimediali temporanei. Ciò non influirà sul contenuto multimediale presente sul tuo sito."; @@ -3333,9 +3246,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Conosci l'app"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Ottieni il tuo dominio"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Ricevi le tue notifiche più rapidamente"; @@ -3360,9 +3270,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Torna indietro"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Vai al seguente"; @@ -3401,18 +3308,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Ti guida nel processo di verifica delle notifiche."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Ti guida nel processo di scelta di un tema per il tuo sito."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Ti guida nel processo di creazione di una nuova pagina per il tuo sito."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Ti guida nel processo di creazione del tuo sito."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Ti guida nel processo di esplorazione di piani per il tuo sito."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Ti guida nel processo per seguire altri siti."; @@ -3428,9 +3329,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Ti guida nel processo di impostazione di un titolo per il tuo sito."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Ti guida nel processo di configurazione del tuo sito."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Ti guida nel processo di caricamento di un’icona per il tuo sito."; @@ -3584,9 +3482,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Aggiornamento icona fallito"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Se hai già un sito, dovrai installare il plugin Jetpack gratuito e collegarlo al tuo account WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Se non riesci a trovare l'email, controlla la cartella della posta indesiderata o dello spam"; @@ -3996,9 +3891,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Scopri di più sui nuovi commenti, sui Mi piace e su chi ti segue in pochi secondi."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Scopri di più sugli strumenti di marketing e SEO nei nostri piani a pagamento."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4057,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Caricamento del commento..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Caricamento domini"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Caricamento della cronologia..."; @@ -4619,9 +4508,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "È necessario l'aggiornamento"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Nessuna scadenza"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "Nuovo"; @@ -4696,9 +4582,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Nessun elemento"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Nessun sito Jetpack trovato"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Nessun menu"; @@ -4915,9 +4798,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Spazio di upload insufficiente."; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Non stai seguendo"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4898,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5202,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Scegli il nome utente"; -/* The item to select during a guided tour. */ -"Plan" = "Piano"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Piani"; @@ -5642,9 +5518,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Sito principale"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Indirizzo principale del sito"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Privacy"; @@ -5746,9 +5619,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Pubblicato il"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Pubblicazione su"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Pubblicazione della pagina in corso..."; @@ -5770,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Le notifiche push sono state disattivate nelle impostazioni iOS. Attiva\/Disattiva \"Consenti notifiche\" per riattivarle."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Tour iniziale"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Valutaci"; @@ -5791,13 +5658,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Reader"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "URL del CSS del Reader"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Lettura degli articoli da altri siti"; @@ -5958,9 +5821,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "La rimozione dei follower impedisce loro di ricevere aggiornamenti dal tuo sito. Se lo preferiscono, possono comunque visitare il tuo sito e seguirlo di nuovo."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Verrà rinnovato il giorno %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Sostituisci blocco attuale"; @@ -6093,7 +5953,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Riprova"; @@ -6315,9 +6174,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Visualizza tutti"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Visualizza istruzioni"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Vedi i commenti e le notifiche in tempo reale."; @@ -6334,24 +6190,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Seleziona %@ per creare un nuovo articolo"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Seleziona %@ per scoprire nuovi temi"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Seleziona %@ per cercare altri siti."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Seleziona %@ per vedere il rendimento del tuo sito."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Seleziona %@ per visualizzare la checklist"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Seleziona %@ per vedere la tua libreria attuale."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Seleziona %@ per vedere il piano attuale e gli altri piani disponibili."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Seleziona %@ per visualizzare l'elenco delle tue pagine."; @@ -6744,10 +6591,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Pagina sito"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Sicurezza e prestazioni del sito\ndalla tua tasca"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Fuso orario del sito (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6645,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Alcuni dati non sono stati caricati"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Alcuni caricamenti multimediali non sono riusciti. Questa azione eliminerà tutti i contenuti multimediali non caricati dall'articolo.\nSalvare?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Si è verificato un problema."; @@ -7348,7 +7188,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Il sito su %1$@ utilizza WordPress %2$@. Ti raccomandiamo di aggiornarlo all'ultima versione o almeno alla versione %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Il sito a questo indirizzo non è un sito WordPress. Per poterci connettere, il sito deve utilizzare WordPress."; /* Message shown when site deletion API failed */ @@ -7388,7 +7229,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Tema attivato"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Temi"; @@ -7634,9 +7474,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Fuso orario"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "È il momento di finire l'impostazione del tuo sito! La nostra checklist ti guida attraverso i prossimi passaggi."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Il tempo è scaduto, ma non preoccuparti: la tua sicurezza è la nostra priorità. Riprova."; @@ -7688,9 +7525,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Per utilizzare le statistiche sul tuo sito, sarà necessario installare il plugin di Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Per usare quest'app per %@, il plugin Jetpack dovrà essere installato e attivato."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7545,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Attiva o disattiva lo stile elenco non ordinato"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Strumenti"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Migliori commentatori"; @@ -7721,8 +7552,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Top level"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Argomento"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7630,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Riprova"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Prova con un altro account"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Prova a regolare il filtro per intervallo di date"; @@ -7882,9 +7709,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Digita un nome per il sito"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Digita per ottenere ulteriori suggerimenti"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7990,12 +7814,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Impossibile caricare 1 articolo bozza"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Impossibile caricare 1 articolo bozza e %ld file"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Impossibile caricare 1 articolo bozza e 1 file"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Impossibile caricare 1 articolo"; @@ -8050,8 +7868,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Smetti di seguire"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Smetti di seguire %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7884,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Sito non più seguito"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Non seguire più il blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Non segue il blog."; @@ -8239,18 +8053,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Caricamento in corso…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Caricamento fallito"; - /* Use the current image */ "Use" = "Usa"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Usa %@ per trovare siti e tag. "; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Usa il negozio sandbox"; - /* The button's title text to use a security key. */ "Use a security key" = "Usa una chiave di sicurezza"; @@ -8298,9 +8106,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Verifica l'accesso"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Verifica il tuo indirizzo email - istruzioni inviate a %@"; - /* Description for the version label in the What's new page. */ "Version " = "Versione"; @@ -8506,9 +8311,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "Impossibile creare il backup. Riprova più tardi."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Non abbiamo trovare alcun indirizzo disponibile con le parole inserite: riproviamo."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Impossibile pubblicare questa pagina, riproveremo più tardi."; @@ -8584,9 +8386,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Abbiamo appena inviato un link magico a"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Abbiamo apportato grandi miglioramenti all'editor dei blocchi e pensiamo che valga la pena provare!\n\nL'abbiamo abilitato per i nuovi articoli e pagine, ma se desideri passare all'editor classico, vai su \"Il mio sito\"> \"Impostazioni sito\"."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "Abbiamo creato correttamente un backup del sito a partire dal %@"; @@ -8596,9 +8395,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Utilizziamo altri strumenti di tracciamento, compresi alcuni di terzi. Leggi le informazioni sugli strumenti e come utilizzarli."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "Non siamo in grado di rilevare un sito WordPress all'indirizzo inserito. Assicurati che WordPress sia installato e di disporre dell'ultima versione disponibile."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "Al momento non siamo stati in grado di inviarti un'email. Riprova più tardi."; @@ -8687,9 +8483,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Ti abbiamo inviato via email un link di iscrizione per creare il tuo nuovo account WordPress.com. Controlla la tua email su questo dispositivo e tocca il link nell'email ricevuta da WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Abbiamo riscontrato problemi nella modifica del dominio principale sul tuo sito, ma non preoccuparti, l'acquisto del tuo dominio è andato a buon fine."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Indirizzo web"; @@ -8967,8 +8760,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Anni"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Si"; @@ -9067,9 +8859,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "Hai 1 sito Wordpress nascosto."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "Con il tuo piano hai la registrazione del dominio per un anno gratuitamente"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Sul tuo sito sono attivi degli aggiornamenti premium. Cancella tali aggiornamenti prima di eliminare il sito."; @@ -9154,9 +8943,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Hai apportato modifiche non salvate a questo articolo"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "I domini del tuo sito"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Icona del tuo sito"; @@ -9184,9 +8970,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Il tuo primo backup sarà pronto a breve"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Il tuo indirizzo WordPress.com gratuito è"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Il tuo nuovo dominio %@ è in fase di configurazione. Potrebbero essere necessari fino a 30 minuti prima che il tuo dominio inizi a funzionare."; @@ -9202,9 +8985,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "I tuoi articoli, pagine e impostazioni ti saranno inviati via email a %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Il tuo dominio principale è l'indirizzo visualizzato nel browser dagli utenti che visitano il tuo sito."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Il ripristino sta impiegando più tempo del solito, controlla di nuovo tra pochi minuti."; @@ -9262,12 +9042,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Stai seguendo questa conversazione. Riceverai una email da qualsiasi luogo venga scritto un nuovo commento."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Ora stai usando l'editor dei blocchi per le nuove pagine, fantastico. Se desideri passare all'editor classico, vai a \"Il mio sito\" > \"Impostazioni del sito\"."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Ora stai usando l'editor dei blocchi per i nuovi articoli, fantastico. Se desideri passare all'editor classico, vai a \"Il mio sito\" > \"Impostazioni del sito\"."; - /* Comment Attachment Label */ "[COMMENT]" = "[COMMENT]"; @@ -9653,19 +9427,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "Flag funzionalità"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Generale"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "I parametri sovrascritti sono contrassegnati da un segno di spunta."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Sovrascrivi il parametro scelto definendo qui un nuovo valore."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Nessun valore remoto o predefinito"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Configurazione remota"; /* Remove current quick start tour menu item */ @@ -9813,7 +9576,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Altro"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "esempio.com"; @@ -10225,9 +9987,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "contrassegnato come spam"; -/* Products header text in Me Screen. */ -"me.products.header" = "Prodotti"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Impossibile sincronizzare gli elementi multimediali"; @@ -10856,12 +10615,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Visualizza tutte le risposte"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Visita le Impostazioni del sito per riattivare"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Richieste di blog nascoste"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Ignora"; @@ -11404,9 +11157,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "Email"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "Forum di WordPress"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "Centro d'assistenza di WordPress"; @@ -11623,9 +11373,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Scopri di più"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "il tuo sito"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Accedi con Google."; diff --git a/WordPress/Resources/ja.lproj/Localizable.strings b/WordPress/Resources/ja.lproj/Localizable.strings index f60bcce90293..eaaa56c0eda2 100644 --- a/WordPress/Resources/ja.lproj/Localizable.strings +++ b/WordPress/Resources/ja.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\n確認するには、閉鎖する前のユーザーアカウントをもう一度入力してください。\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/ 年"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "画像の「遅延読み込み」"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li 単語、%2$li 文字"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%sブロック"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s ブロックオプション"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "トピックを追加"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Reader に読み込むカスタム CSS URL はここに追加できます。Calypso をローカル環境で実行している場合、次のようになります: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "ドメインを追加"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "WordPress.com のすべての年間プランにはカスタムドメイン名が含まれています。 無料ドメインを登録してください。"; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "WordPress.com のすべてのプランにはカスタムドメイン名があります。無料プレミアムドメインを登録してください。"; - /* An option in a list. Automatically approve all comments */ "All comments" = "すべてのコメント"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "このサイトで自動管理"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "自動更新が有効"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "自動的に承認"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "ブロックを複製しました"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "ブロックエディターを有効にしました"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "ブロックがグループ化されました"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "メディアを端末またはカメラからサイトに取り込む"; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "すべてのテーマからぴったりのデザインを見つけましょう。"; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "総当たり攻撃対策"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "開くサイトを選択します。"; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "テーマを選択"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "閉じる"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "完了: サイトタイトルを確認する"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "完了 : テーマを選択"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "完了: 独自のサイトアイコンを選択する"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "完了: 別のサイトを接続"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "完了 : サイトの設定を続ける"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "完了 : サイトを作成"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "完了 : プランを詳しく見る"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "完了 : 投稿を公開"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Google で続ける"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "サイトの設定を続ける"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Apple と連携しています"; @@ -1981,15 +1944,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "WordPress サイトに接続できませんでした。有効な WordPress サイトはこのアドレスにありません。入力したサイトアドレス (URL) を確認してください。"; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "接続できませんでした。必須である XML-RPC メソッドがサーバーに存在しません。"; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "接続できませんでした。サイトの XMLRPC エンドポイントにアクセスしようとした際に403エラーを受け取りました。サイトと通信するために、アプリはこのエンドポイントにアクセスする必要があります。この問題を解決するには、ホスティングサービスに連絡してください。"; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "接続できませんでした。ご利用のホスティングサービスは POST 要求をブロックしていますが、アプリはあなたのサイトとの通信に POST 要求を必要としています。ホスティングサービスに連絡して、この問題を解決してください。"; - /* Error message when tag loading failed */ "Couldn't load tags." = "タグを読み込めませんでした。"; @@ -2021,9 +1975,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "国コード"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "クラッシュのロギング"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "クラッシュレポート"; @@ -2039,9 +1990,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "新規作成"; -/* Title for the site creation flow. */ -"Create New Site" = "新規サイトを作成"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2176,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "デバッグ"; -/* Debug settings title */ -"Debug Settings" = "デバッグ設定"; - /* Only December needs to be translated */ "December 17, 2017" = "2017年12月17日"; @@ -2252,9 +2197,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "デフォルト投稿フォーマット"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "デフォルト URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "新しい投稿のデフォルト"; @@ -2420,12 +2362,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "ドメイン"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "このサイトで購入したドメインにアクセスすると %@ に転送されます"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "このサイトで購入したドメインにアクセスするとこちらに転送されます: "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "アカウントをお持ちでない場合は_登録_してください"; @@ -2595,8 +2531,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "編集"; /* Title for the edit more button section */ @@ -2661,9 +2596,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "編集者"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "コメントを編集します"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "コメントを編集します。"; @@ -2791,9 +2723,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "この投稿を保護するためのパスワードを入力してください"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "上に別の語句を入力してください。一致するアドレスを検索します。"; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "パスワードを入力"; @@ -2979,24 +2908,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "拡大して別のメニューエリアを選択"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "期限切れ"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "期限切れのログインコード"; /* Title. Indicates an expiration date. */ "Expires on" = "有効期限日"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "%@に期限切れ"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "このサイトの簡単な説明。"; -/* Title of a Quick Start Tour */ -"Explore plans" = "プランの内容を見る"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "コンテンツをエクスポート"; @@ -3182,8 +3102,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "フォロワー"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "フォロー中"; @@ -3200,9 +3119,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "フォロー"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "ブログをフォロー"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "ブログをフォローします。"; @@ -3242,9 +3158,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "無料の写真ギャラリー"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "1年目は無料 "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "一時メディアファイルを削除してこの端末の保存スペースを空けてください。この操作はサイトのメディアには影響しません。"; @@ -3333,9 +3246,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "アプリについて知る"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "ドメインを取得"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "通知をもっとすばやく受信"; @@ -3360,9 +3270,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "戻る"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "次に移動"; @@ -3401,18 +3308,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "通知を確認するプロセスを紹介します。"; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "サイトのテーマを選択するプロセスを紹介します。"; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "サイトの新しいページを作成するプロセスを紹介します。"; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "サイトを作成するプロセスを紹介します。"; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "サイトのプランを検査するプロセスを紹介します。"; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "他のサイトをフォローするプロセスを紹介します。"; @@ -3428,9 +3329,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "サイトのタイトルを設定するプロセスを紹介します。"; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "サイトを設定するプロセスを紹介します。"; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "サイトにアイコンをアップロードするプロセスを紹介します。"; @@ -3584,9 +3482,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "アイコンを更新できませんでした"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "すでにサイトがある場合は、無料の Jetpack プラグインをインストールし、WordPress.com アカウントに接続する必要があります。"; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "メールが見つからない場合は、迷惑メールやスパムのフォルダーを確認してください"; @@ -3996,9 +3891,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "新しいコメント、いいね、フォロワーについての通知をすぐに受け取りましょう。"; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "有料プランのマーケティングと SEO ツールについての詳細を読む。"; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4057,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "コメントを読み込み中…"; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "ドメインを読み込み中"; - /* Displayed while a call is loading the history. */ "Loading history..." = "履歴を読み込み中…"; @@ -4619,9 +4508,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "更新が必要"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "期限なし"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "新規"; @@ -4696,9 +4582,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "項目なし"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Jetpack サイトが見つかりませんでした"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "メニューがありません"; @@ -4915,9 +4798,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "アップロードするスペース容量が足りません"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "フォローしていません"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4898,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5202,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "ユーザー名を選択"; -/* The item to select during a guided tour. */ -"Plan" = "プラン"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "プラン"; @@ -5642,9 +5518,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "主要サイト"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "主要サイトのアドレス"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "プライバシー"; @@ -5746,9 +5619,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "公開日時:"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "公開先"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "ページを公開しています..."; @@ -5770,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "iOS 設定でプッシュ通知がオフになっています。「通知を許可」でオンに戻します。"; -/* The menu item to select during a guided tour. */ -"Quick Start" = "クイックスタート"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "評価してください"; @@ -5791,13 +5658,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "購読ブログ"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "Reader CSS URL"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "別のサイトの投稿を読む"; @@ -5958,9 +5821,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "フォロワーを削除すると、そのフォロワーにはお客様のサイトの更新情報が送信されなくなります。 そのフォロワーがお客様のサイトを再び訪問し、再度お客様のサイトをフォローすることもできます。"; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "%@に更新"; - /* No comment provided by engineer. */ "Replace Current Block" = "現在のブロックを置き換え"; @@ -6093,7 +5953,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "再度試す"; @@ -6315,9 +6174,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "すべて表示"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "手順を参照してください"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "コメントと通知をリアルタイムで表示します。"; @@ -6334,24 +6190,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "%@ を選択して新しい投稿を作成する"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "%@ を選択して新しいテーマを発見する"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "別のサイトを検索するには %@ を選択します。"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "%@ を選択してサイトのパフォーマンスを確認する。"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "%@ を選択してチェックリストを確認する"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "%@ を選択すると現在のライブラリを確認できます。"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "%@ を選択して現在のプランとその他の利用可能なプランを確認する。"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "%@ を選択してページリストを表示します。"; @@ -6744,10 +6591,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "サイトページ"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "サイトのセキュリティとパフォーマンスを\nポケットの中に"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "サイトのタイムゾーン (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6645,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "一部のデータを読み込めませんでした"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "アップロードに失敗したメディアがあります。この操作を行うと投稿から失敗したメディアを削除します。保存してもよいですか ?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "問題が発生しました"; @@ -7348,7 +7188,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "%1$@ のサイトは WordPress %2$@ を使っています。最新版または最低でも %3$@ に更新することをおすすめします。"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "このアドレスのサイトは WordPress のサイトではありません。接続するには、接続先のサイトが WordPress を使用している必要があります。"; /* Message shown when site deletion API failed */ @@ -7388,7 +7229,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "有効化したテーマ"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "テーマ"; @@ -7634,9 +7474,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "タイムゾーン"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "サイトの設定の最終段階です。チェックリストで次のステップの詳細をご覧ください。"; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "時間切れですがご心配は要りません。皆さまの安全が当社の最優先事項です。 もう一度お試しください。"; @@ -7688,9 +7525,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "サイト上で統計情報を使用するには、Jetpack プラグインをインストールする必要があります。"; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "%@ にこのアプリを使用するには、Jetpack プラグインをインストールして有効化する必要があります。"; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7545,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "番号なしリストスタイルを切り替える"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "ツール"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "上位コメント投稿者"; @@ -7721,8 +7552,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "トップレベル"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "トピック"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7630,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "もう一度お試しください"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "別のアカウントで試行"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "データ範囲フィルターを調整してみてください"; @@ -7882,9 +7709,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "サイトの名前を入力してください"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "入力してさらに候補を表示"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7990,12 +7814,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "1件の下書き投稿をアップロードできません"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "1件の下書き投稿、%ld個のファイルをアップロードできません"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "1件の下書き投稿、1個のファイルをアップロードできません"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "1件の投稿をアップロードできません"; @@ -8050,8 +7868,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "フォロー解除"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "%@ のフォロー解除"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7884,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "フォロー解除済みのサイト"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "ブログのフォローを解除します"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "ブログをフォロー解除します。"; @@ -8239,18 +8053,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "アップロード中…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "アップロード失敗"; - /* Use the current image */ "Use" = "使用"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "サイトやタグを探すには %@ を使います。"; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "サンドボックスストアを使用"; - /* The button's title text to use a security key. */ "Use a security key" = "セキュリティキーを使用"; @@ -8298,9 +8106,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "ログインの確認"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "メールアドレスを検証してください。指示が %@ に送信されました"; - /* Description for the version label in the What's new page. */ "Version " = "バージョン"; @@ -8506,9 +8311,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "バックアップを作成できませんでした。 後ほど、もう一度お試しください。"; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "入力された語句から利用可能なアドレスが見つかりませんでした。もう一度お試しください。"; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "このページを公開できませんでした。後ほど再実行します。"; @@ -8584,9 +8386,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "マジックリンクを次のアドレスに送信しました: "; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "ブロックエディターを大幅に改善しました。ぜひお試しください。\n\n新規投稿とページに対して有効化していますが、旧エディターに変更する場合は「自分のサイト」→「サイトの設定」に移動してください。"; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "%@の時点でのサイトのバックアップが正常に作成されました"; @@ -8596,9 +8395,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "サードパーティのものを含め、他の追跡ツールを使用します。それらについての詳細と設定方法についてお読みください。"; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "入力されたアドレスでは、WordPress サイトを検出できませんでした。 WordPress がインストールされていて、入手可能な最新のバージョンで実行されていることを確認してください。"; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "メールを送信できませんでした。後ほど、もう一度お試しください。"; @@ -8687,9 +8483,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "新しい WordPress.com アカウントを作成するための登録リンクをメールでお送りしました。 このデバイスでメールをチェックして、WordPress.com から届いたメールにあるリンクをタップしてください。"; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "サイトの主要ドメインの変更がうまくいきませんでしたが、ドメインの購入は正常に完了していますのでご心配なく。"; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Web アドレス"; @@ -8967,8 +8760,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "年"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "はい"; @@ -9067,9 +8859,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "非公開の WordPress サイトがひとつあります。"; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "このプランには、1年間の無料ドメイン登録が含まれています"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "サイトには有効なプレミアムアップグレードがあります。サイトを削除する前に、アップグレードをキャンセルしてください。"; @@ -9154,9 +8943,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "この投稿に保存されていない変更が加えられました"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "あなたのサイトドメイン"; - /* The item to select during a guided tour. */ "Your Site Icon" = "サイトアイコン"; @@ -9184,9 +8970,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "初回のバックアップは間もなく完了します"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "あなたの WordPress.com の無料アドレスは"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "新しいドメイン %@ の設定中です。 ドメインが使用可能になるまでに最大で30分かかる場合があります。"; @@ -9202,9 +8985,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "投稿、ページ、および設定は %@ にメールで送信されます。"; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "主要サイトのアドレスとは訪問者がサイトにアクセスした際にアドレスバーに表示されるアドレスのことです。"; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "復元に通常よりも時間がかかっています。数分後にもう一度ご確認ください。"; @@ -9262,12 +9042,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "この会話をフォロー中です。 新しいコメントが投稿されると、メールが届きます。"; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "新しいページにブロックエディターを使用できるようになりました。旧エディターに変更する場合は、「参加サイト」 > 「サイト設定」に移動します。"; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "新しい投稿にブロックエディターを使用できるようになりました。旧エディターに変更する場合は、「参加サイト」 > 「サイト設定」に移動します。"; - /* Comment Attachment Label */ "[COMMENT]" = "[COMMENT]"; @@ -9650,19 +9424,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "機能フラグ"; -/* General section title */ -"debugMenu.generalSectionTitle" = "一般"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "上書きした変数はチェックマークで表示されます。"; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "ここで新しい値を定義して選択した変数を上書きします。"; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "リモート値またはデフォルト値なし"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "リモート設定"; /* Remove current quick start tour menu item */ @@ -9810,7 +9573,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "詳細"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10222,9 +9984,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "スパムとしてマーク"; -/* Products header text in Me Screen. */ -"me.products.header" = "商品"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "メディアを同期できません"; @@ -10862,12 +10621,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "すべての回答を表示"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "「サイトの設定」に移動して表示をオンに戻す"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "ブログのプロンプトが非表示"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "閉じる"; @@ -11410,9 +11163,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "メール"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "WordPress フォーラム"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "WordPress ヘルプセンター"; @@ -11629,9 +11379,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "さらに詳しく"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "あなたのサイト"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Google アカウントでログイン。"; diff --git a/WordPress/Resources/ko.lproj/Localizable.strings b/WordPress/Resources/ko.lproj/Localizable.strings index 0d5a42f16621..fb74bd00e215 100644 --- a/WordPress/Resources/ko.lproj/Localizable.strings +++ b/WordPress/Resources/ko.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\n확인하려면 종료하기 전에 사용자명을 다시 입력하십시오.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/년"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "이미지 \"느리게 로드\""; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li 단어, %2$li 글자"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s 블록"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s 블록 옵션"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "토픽 추가하기"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "리더에서 부를 사용자 정의 CSS URL을 여기에 추가하세요. 자체적으로 칼립소를 실행하고 있다면 다음과 같이 할 수 있습니다: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "도메인 추가"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "모든 워드프레스닷컴 연간 요금제에는 사용자 정의 도메인 네임이 포함됩니다. 지금 무료 도메인을 등록하세요."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "모든 워드프레스닷컴 요금제에는 사용자 정의 도메인 네임이 포함됩니다. 지금 무료 프리미엄 도메인을 등록하세요."; - /* An option in a list. Automatically approve all comments */ "All comments" = "모든 댓글"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "이 사이트에서 자동으로 관리됨"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "자동 갱신 활성화됨"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "자동으로 승인"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "블록을 복제했습니다"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "블록 편집기 활성화됨"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "블록 그룹 지정됨"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "미디어를 기기 또는 카메라에서 사이트로 바로 가져오세요."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "모든 테마를 검색하여 어울리는 것을 찾으세요."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "무차별 공격 대입 보호"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "개설할 사이트 선택"; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "테마 선택"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "닫기"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "완료됨: 사이트 제목 확인"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "완료: 테마 선택"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "완료됨: 고유한 사이트 아이콘 선택"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "완료됨: 다른 사이트와 연결"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "완료: 사이트 설정 진행"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "완료: 사이트 만들기"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "완료: 요금제 살펴보기"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "완료: 글 게시"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Google로 계속하기"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "사이트 설정 진행"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Apple 로 계속하기"; @@ -1981,15 +1944,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "워드프레스 사이트에 연결할 수 없습니다. 이 주소에 유효한 워드프레스 사이트가 없습니다. 입력한 사이트 주소(URL)를 확인하세요."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "연결할 수 없습니다. 필수 XML-RPC 함수가 서버에 없습니다."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "연결할 수 없습니다. 사이트 XMLRPC 엔드포인트에 액세스하려고 할 때 403 오류가 발생했습니다. 사이트와 통신하려면 이 앱에 해당 요청이 필요합니다. 호스트에 문의하여 이 문제를 해결하세요."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "연결할 수 없습니다. 호스트에서 POST 요청을 차단하고 있으나 앱에서 회원님의 사이트와 통신하려면 이 요청이 필요합니다. 호스트에 문의하여 이 문제를 해결하세요."; - /* Error message when tag loading failed */ "Couldn't load tags." = "태그를 로드할 수 없었습니다."; @@ -2021,9 +1975,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "국가 코드"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "충돌 기록 중"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "충돌 보고서"; @@ -2039,9 +1990,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "새로 만들기"; -/* Title for the site creation flow. */ -"Create New Site" = "새 사이트 생성"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2176,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "디버그"; -/* Debug settings title */ -"Debug Settings" = "디버그 설정"; - /* Only December needs to be translated */ "December 17, 2017" = "2017년 12월 17일"; @@ -2252,9 +2197,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "기본 글 형식"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "기본 URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "새 글의 기본값"; @@ -2420,12 +2362,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "도메인"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "이 사이트에서 구매한 도메인은 %@(으)로 리디렉팅됨"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "이 사이트에서 구매한 도메인에서는 사용자가 다음 위치로 리디렉팅됨 "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "아직 계정이 없으신가요? _가입_"; @@ -2595,8 +2531,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "편집"; /* Title for the edit more button section */ @@ -2661,9 +2596,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "에디터"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "댓글 편집"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "댓글을 편집합니다."; @@ -2791,9 +2723,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "이 글을 보호하기 위한 암호를 입력하세요"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "위에 다른 단어를 입력하면 일치하는 주소를 찾겠습니다."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "비밀번호 입력"; @@ -2979,24 +2908,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "다른 메뉴 영역을 선택하도록 펼치기"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "만료됨"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "만료된 로그인 코드"; /* Title. Indicates an expiration date. */ "Expires on" = "만료 날짜"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "%@에 만료"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "이 사이트의 주제에 대해 설명하세요."; -/* Title of a Quick Start Tour */ -"Explore plans" = "요금제 살펴보기"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "콘텐츠 내보내기"; @@ -3182,8 +3102,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "팔로워"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "팔로잉"; @@ -3200,9 +3119,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "팔로우"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "블로그 팔로우"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "블로그를 팔로우합니다."; @@ -3242,9 +3158,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "무료 사진 라이브러리"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "첫해 무료 "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "임시 미디어 파일을 삭제하여 이 기기의 저장 공간을 확보합니다. 이 작업은 사이트의 미디어에는 영향을 주지 않습니다."; @@ -3333,9 +3246,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "앱 알아보기"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "도메인 가져오기"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "알림을 더 빨리 받기"; @@ -3360,9 +3270,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "지메일"; -/* No comment provided by engineer. */ -"Go back" = "뒤로 가기"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "팔로우 목록으로 이동"; @@ -3401,18 +3308,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "알림 확인 프로세스를 안내합니다."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "사이트의 테마를 선택하는 과정을 안내합니다."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "사이트의 새 페이지를 만드는 과정을 안내합니다."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "사이트를 만드는 과정을 안내합니다."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "사이트의 요금제를 탐색하는 과정을 안내합니다."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "다른 사이트를 팔로우하는 과정을 안내합니다."; @@ -3428,9 +3329,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "사이트의 제목을 설정하는 절차를 안내합니다."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "사이트 설정 과정을 안내합니다."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "사이트의 아이콘을 업로드하는 과정을 안내합니다."; @@ -3584,9 +3482,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "아이콘 업데이트 실패"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "이미 사이트가 있으면 무료 젯팩 플러그인을 설치하고 워드프레스닷컴 계정에 연결해야 합니다."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "이메일을 찾을 수 없으면 정크 또는 스팸 이메일 폴더를 확인해 보세요."; @@ -3996,9 +3891,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "새 댓글, 링크와 팔로우를 몇 초안에 받는 것에 대해 알아보세요."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "유료 요금제의 마케팅 및 SEO 도구에 대해 알아보세요."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4057,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "댓글 로드 중..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "도메인 로딩 중"; - /* Displayed while a call is loading the history. */ "Loading history..." = "기록 로드 중..."; @@ -4619,9 +4508,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "업데이트 필요"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "만료 기간 없음"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "신규"; @@ -4696,9 +4582,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "항목 없음"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "젯팩 사이트를 찾을 수 없음"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "메뉴 없음"; @@ -4915,9 +4798,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "업로드할 수 있는 충분한 공간이 없음"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "팔로우하지 않음"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4898,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5202,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "사용자명 선택"; -/* The item to select during a guided tour. */ -"Plan" = "요금제"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "요금제"; @@ -5642,9 +5518,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "기본 사이트"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "주요 사이트 주소"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "개인 정보"; @@ -5746,9 +5619,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "발행일자"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "다음으로 발행하기"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "페이지 발행 중..."; @@ -5770,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "iOS 설정에서 푸시 알림이 꺼졌습니다. 다시 활성화하려면 \"알림 허용\"을 토글하세요."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "퀵 스타트"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "평가하기"; @@ -5791,13 +5658,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "리더"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "리더 CSS URL"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "다른 사이트의 글 읽기"; @@ -5958,9 +5821,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "팔로워를 제거하면 회원님의 사이트에서 업데이트를 받지 못하게 됩니다. 팔로워 본인이 선택한 경우에는 회원님의 사이트를 방문하여 다시 팔로우할 수 있습니다."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "%@에 갱신"; - /* No comment provided by engineer. */ "Replace Current Block" = "현재 블록이 교체하기"; @@ -6093,7 +5953,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "재실행"; @@ -6315,9 +6174,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "모두 보기"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "지침 참조"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "댓글과 알림을 실시간으로 보세요."; @@ -6334,24 +6190,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "%@을(를) 선택하여 새 글 작성"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "%@을(를) 선택하여 새 테마 검색"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "다른 찾으려면 %@을(를) 선택하세요."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "사이트의 성과를 확인하려면 %@을(를) 선택합니다."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "%@을(를) 선택하여 체크리스트 보기"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "현재 라이브러리를 참조하려면 %@을(를) 선택하세요."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "현재 요금제 및 사용 가능한 다른 요금제를 보려면 %@을(를) 선택합니다."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "페이지 목록을 참조하려면 %@을(를) 선택하세요."; @@ -6744,10 +6591,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "사이트 페이지"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "사이트 보안 및 성능\n호주머니에서"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "사이트 시간대(UTC%1$@%2$d%3$@)"; @@ -6802,9 +6645,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "일부 데이터가 로드되지 않았습니다."; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "일부 미디어 업로드가 실패했습니다. 이 작업은 글에서 실패한 모든 미디어를 삭제할 것입니다.\n그래도 저장하시겠습니까?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "문제가 발생했습니다"; @@ -7348,7 +7188,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "%1$@의 사이트는 워드프레스 %2$@를 사용합니다. 최신 버전이나 최소한 %3$@으로 업데이트하기를 권장합니다. "; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "이 주소의 사이트는 워드프레스 사이트가 아닙니다. 연결하려면 사이트에서 워드프레스를 사용해야 합니다."; /* Message shown when site deletion API failed */ @@ -7388,7 +7229,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "테마 활성화됨"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "테마"; @@ -7634,9 +7474,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "시간대"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "사이트 설정을 완료할 시간입니다! 체크리스트가 다음 단계를 안내합니다."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "시간이 다 되었지만, 걱정하지 마세요. 보안이 무엇보다 중요합니다. 다시 시도해 보세요!"; @@ -7688,9 +7525,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "사이트에서 통계를 사용하려면 젯팩 플러그인을 설치해야 합니다."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "%@에 이 앱을 사용하려면 설치되고 활성화된 Jetpack 플러그인이 있어야 합니다."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7545,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "순서 없는 목록 스타일 전환"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "도구"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "상위 댓글 작성자"; @@ -7721,8 +7552,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "최상위"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "토픽"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7630,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "재시도"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "다른 계정으로 시도"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "날짜 범위 필터 조정 시도"; @@ -7882,9 +7709,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "사이트의 이름 입력"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "제안을 더 가져오려면 입력하세요."; - /* URL text field placeholder */ "URL" = "URL"; @@ -7990,12 +7814,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "1개 임시글을 업로드할 수 없음"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "1개 임시글, %ld개 파일을 업로드할 수 없음"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "1개 임시글, 1개 파일을 업로드할 수 없음"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "1개 글을 업로드할 수 없음"; @@ -8050,8 +7868,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "팔로우 취소"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "%@(을)를 팔로우 취소하기"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7884,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "팔로우 취소한 사이트"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "블로그 팔로우 취소"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "블로그 팔로우를 취소합니다."; @@ -8239,18 +8053,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "업로드 중..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "업로드 실패"; - /* Use the current image */ "Use" = "사용"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "사이트와 태그를 찾으려면 %@을(를) 사용하세요."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "샌드박스 스토어 사용"; - /* The button's title text to use a security key. */ "Use a security key" = "보안 키 사용"; @@ -8298,9 +8106,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "로그인 확인"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "이메일 주소 확인 - %@에 지침 전송"; - /* Description for the version label in the What's new page. */ "Version " = "버전"; @@ -8506,9 +8311,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "백업을 만들 수 없습니다. 나중에 다시 시도하세요."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "입력하신 단어로 된 유효한 주소를 찾을 수 없습니다. 다시 시도해주세요."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "이 페이지를 발행하지 못했지만 나중에 다시 시도하겠습니다."; @@ -8584,9 +8386,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "방금 다음으로 매직 링크를 보내드렸습니다."; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "블록 편집기를 크게 개선했습니다. 한 번 시도해 볼 가치가 있다고 생각합니다!\n\n새 글 및 페이지에서 사용하도록 설정했지만 클래식 편집기로 변경하려면 ‘내 사이트’ > ‘사이트 설정’으로 이동하세요."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "%@에 사이트 백업이 만들어졌습니다."; @@ -8596,9 +8395,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "워드프레스는 타사 제품을 포함한 다른 추적 도구를 사용합니다. 이 도구에 대해 읽고 제어하는 방법에 대해 알아보세요."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "입력하신 주소의 WordPress 사이트를 찾지 못했습니다. WordPress를 설치했고 사용 가능한 최신 버전을 실행 중인지 확인하세요."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "지금은 회원님에게 이메일을 보낼 수 없습니다. 나중에 다시 시도하세요."; @@ -8687,9 +8483,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "새 워드프레스닷컴 계정을 만드는 등록 링크를 이메일했습니다. 이 장치에서 이메일을 확인하고, 워드프레스닷컴에서 받은 이메일의 링크를 누르세요."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "사이트의 기본 도메인을 변경하는 데 문제가 있었지만 걱정하지 마세요. 도메인을 성공적으로 구입했습니다."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "웹 주소"; @@ -8967,8 +8760,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "연도"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "네"; @@ -9067,9 +8859,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "숨겨진 워드프레스 사이트가 하나 있습니다."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "이용 중인 요금제에 1년 무료 도메인 등록이 포함되어 있음"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "회원님의 사이트에서 프리미엄 업그레이드가 활성화되었습니다. 사이트를 삭제하기 전에 업그레이드를 취소하세요."; @@ -9154,9 +8943,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "이 글에 저장되지 않은 변경 사항이 있습니다."; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "사이트 도메인"; - /* The item to select during a guided tour. */ "Your Site Icon" = "사이트 아이콘"; @@ -9184,9 +8970,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "첫 번째 백업이 곧 준비됩니다"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "무료 워드프레스닷컴 주소:"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "새 도메인(%@)을 설정하는 중입니다. 도메인이 작동하기 시작하려면 30분 정도 걸릴 수 있습니다."; @@ -9202,9 +8985,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "글, 페이지 및 설정이 %@(으)로 메일로 전송됩니다."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "기본 사이트 주소는 방문자가 당신의 사이트에 방문할 때 브라우저의 주소창에 표시되는 주소입니다."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "복원은 평소보다 오래 걸립니다. 잠시 후에 다시 확인하세요."; @@ -9262,12 +9042,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "이 대화를 팔로우하는 중입니다. 새 댓글이 작성될 때마다 이메일이 수신됩니다."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "지금 새 페이지의 블록 편집기를 사용하고 있습니다. 잘하셨습니다! 구 버전 편집기로 변경하려면 '내 사이트'> '사이트 설정'으로 이동하세요."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "지금 새 글의 블록 편집기를 사용하고 있습니다. 잘하셨습니다! 구 버전 편집기로 변경하려면 '내 사이트'> '사이트 설정'으로 이동하세요."; - /* Comment Attachment Label */ "[COMMENT]" = "[댓글]"; @@ -9653,19 +9427,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "기능 플래그"; -/* General section title */ -"debugMenu.generalSectionTitle" = "일반"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "체크 표시가 재정의된 파라미터에 표시됩니다."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "선택한 파라미터를 여기에서 새 값을 정의하여 재정의하세요."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "원격 또는 기본 값 없음"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "원격 구성"; /* Remove current quick start tour menu item */ @@ -9813,7 +9576,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "더 보기"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10222,9 +9984,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "스팸으로 표시됨"; -/* Products header text in Me Screen. */ -"me.products.header" = "상품"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "미디어 동기화 불가"; @@ -10835,12 +10594,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "모든 응답 보기"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "사이트 설정으로 이동하여 다시 켜기"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "블로깅 프롬프트 숨김"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "해제"; @@ -11380,9 +11133,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "이메일"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "워드프레스 포럼"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "워드프레스 도움말 센터"; @@ -11599,9 +11349,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "더 알아보기"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "내 사이트"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Google로 로그인합니다."; diff --git a/WordPress/Resources/nb.lproj/Localizable.strings b/WordPress/Resources/nb.lproj/Localizable.strings index 5d63214c08dd..391395c7eeab 100644 --- a/WordPress/Resources/nb.lproj/Localizable.strings +++ b/WordPress/Resources/nb.lproj/Localizable.strings @@ -168,10 +168,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li ord, %2$li tegn"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s-blokk"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s blokk-alternativer"; @@ -445,10 +441,6 @@ translators: Block name. %s: The localized block name */ Title of the drafts filter. This filter shows a list of draft posts. */ "All" = "Alle"; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Alle WordPress.com-pakker inkluderer et eget domenenavn. Registrer ditt gratis premiumdomene nå."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Alle kommentarer"; @@ -771,9 +763,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Blokk duplisert"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Blokkredigering aktivert"; - /* Jetpack Settings: Block malicious login attempts */ "Block malicious login attempts" = "Blokker fiendtlige innloggingsforsøk"; @@ -824,9 +813,6 @@ translators: Block name. %s: The localized block name */ /* Text snippet summarizing what comment paging does. */ "Break comment threads into multiple pages." = "Del opp kommentar i flere sider."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Bla gjennom alle temaer for å finne din perfekte tilpasning."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Beskyttelse mot angrep med rå styrke"; @@ -1035,8 +1021,7 @@ translators: Block name. %s: The localized block name */ /* Label for Publish date picker */ "Choose a date" = "Velg en dato"; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Velg et tema"; /* No comment provided by engineer. */ @@ -1095,7 +1080,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Lukk"; @@ -1282,9 +1266,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Fortsett med Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Fortsett med nettsideoppsett"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Fortsetter med Apple"; @@ -1339,15 +1320,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Kunne ikke koble til WordPress-nettsiden. Det er ikke en gyldig WordPress-nettside på denne adressen. Sjekk adressen du skrev inn."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Kunne ikke koble til. Nødvendige XML-RPC-metoder mangler på serveren."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Kunne ikke koble til. Vi mottok en 403-feil når vi prøvde å koble til nettstedets XMLRPC-endepunkt. Appen trenger dette for å kommunisere med nettstedet ditt. Kontakt verten din for å løse dette problemet."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Kunne ikke koble til. Din vert blokkerer POST-forespørsler, og appen trenger dette for å kommunisere med nettsiden din. Kontakt verten din for å løse dette problemet."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Kunne ikke laste inn stikkord."; @@ -1367,9 +1339,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Landkode"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Krasjlogging"; - /* Accessibility label for create floating action button */ "Create" = "Opprett"; @@ -1379,9 +1348,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Opprett ny"; -/* Title for the site creation flow. */ -"Create New Site" = "Opprett en ny side"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -1499,9 +1465,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Feilsøking"; -/* Debug settings title */ -"Debug Settings" = "Innstillinger for feilsøking"; - /* Only December needs to be translated */ "December 17, 2017" = "Desember 17, 2017"; @@ -1745,8 +1708,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Rediger"; /* Title for the edit more button section */ @@ -1787,9 +1749,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Redigerer"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Redigerer en kommentar"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Redigerer kommentaren."; @@ -1872,9 +1831,6 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Enter a password" = "Skriv inn et passord"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Skriv inn forskjellige ord over, og vi vil se etter en adresse som matcher dem."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Skriv inn passord"; @@ -2012,9 +1968,6 @@ translators: Block name. %s: The localized block name */ /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Forklar hva siden er om."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Utforsk pakker"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Eksporter innhold"; @@ -2134,8 +2087,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Følgere"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Følger"; @@ -2143,9 +2095,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Følger"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Følger blogg"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Følger nettstedet."; @@ -2222,9 +2171,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Gå tilbake"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Gå til fulgte"; @@ -2250,18 +2196,12 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to customize their new website. */ "Grow Your Audience" = "Utvid ditt publikum"; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Hjelper deg gjennom prosessen med å velge et tema for siden din."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Hjelper deg gjennom prosessen med å opprette en ny side på nettsiden din."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Hjelper deg gjennom prosessen med å opprette siden din."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Hjelper deg gjennom prosessen med å utforske planer for siden din."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Hjelper deg gjennom prosessen med å følge andre sider."; @@ -2274,9 +2214,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing Stats on the user's site. */ "Guides you through the process of reviewing statistics for your site." = "Hjelper deg gjennom prosessen med å se gjennom statistikk for siden din."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Hjelper deg gjennom prosessen med å sette opp siden din."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Hjelper deg gjennom prosessen med å laste opp et ikon til nettsiden din."; @@ -2610,9 +2547,6 @@ translators: Block name. %s: The localized block name */ /* Title of a button. Tapping allows the user to learn more about the specific error. */ "Learn More" = "Lær mer"; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Lær mer om verktøyene for markedsføring og SEO som er inkludert i de betalte abonnementene våre."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -2736,9 +2670,6 @@ translators: Block name. %s: The localized block name */ /* Text displayed while loading the scan section for a site */ "Loading Scan..." = "Laster inn skanning…"; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Laster inn domener"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Laster historikk..."; @@ -3134,9 +3065,6 @@ translators: Block name. %s: The localized block name */ /* List Editor Empty State Message */ "No Items" = "Ingen objekter"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Ingen Jetpack-nettsteder funnet"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Ingen meny"; @@ -3290,9 +3218,6 @@ translators: Block name. %s: The localized block name */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Ikke nok lagringsplass for å laste opp"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Følger ikke"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -3360,7 +3285,6 @@ translators: Block name. %s: The localized block name */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -3590,9 +3514,6 @@ translators: Block name. %s: The localized block name */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Velg brukernavn"; -/* The item to select during a guided tour. */ -"Plan" = "Abonnementspakke"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Abonnementer"; @@ -3939,9 +3860,6 @@ translators: Block name. %s: The localized block name */ /* Published on [date] */ "Published on" = "Publisert"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publiserer til"; - /* A short message that informs the user a post is being published to the server from the share extension. */ "Publishing post..." = "Publiserer innlegg..."; @@ -3960,9 +3878,6 @@ translators: Block name. %s: The localized block name */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Push-varsler har blitt slått av i iOS-innstillingene. Skru på \"Tillat varslinger\" for å skru dem på igjen."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Hurtigstart"; - /* In the share extension, this is the text used right before attributing a quote to a website. Example: 'Read on www.site.com'. We are looking for the 'Read on' text in this situation. */ "Read on" = "Les på"; @@ -3978,8 +3893,7 @@ translators: Block name. %s: The localized block name */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Leser"; /* Text for the 'Reblog' button. */ @@ -4191,7 +4105,6 @@ translators: Block name. %s: The localized block name */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Prøv igjen"; @@ -4351,18 +4264,9 @@ translators: Block name. %s: The localized block name */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Trykk %@ for å opprette et nytt innlegg"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Trykk %@ for å oppdage nye temaer"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Trykk %@ for å se hvordan nettstedet opptrer."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Trykk %@ for å se din sjekkliste"; - -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Trykk %@ for å se gjeldende pakke og tilgjengelige pakker."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to set a new title." = "Velg %@ for å sette en ny tittel."; @@ -4694,9 +4598,6 @@ translators: Block name. %s: The localized block name */ Title of Stats section that shows social followers. */ "Social" = "Sosialt"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Noen medieopplastninger feilet. Denne handlingen vil fjerne alle feilede medier fra innlegget.\nLagre likevel?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Noe gikk galt"; @@ -5096,7 +4997,8 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Nettstedet på %1$@ bruker WordPress %2$@. Vi anbefaler å oppdatere til siste versjon, eller i det minste %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Nettstedet på den adressen er ikke et WordPress-nettsted. For at vi skal kunne koble til må nettstedet være WordPress."; /* Message shown when site deletion API failed */ @@ -5130,7 +5032,6 @@ translators: Block name. %s: The localized block name */ "Theme Activated" = "Tema aktivert"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Temaer"; @@ -5298,9 +5199,6 @@ translators: Block name. %s: The localized block name */ Title for the time zone selector */ "Time Zone" = "Tidssone"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "På tide å fullføre oppsettet av nettsiden din! Vår sjekkliste forklarer de neste trinnene."; - /* WordPress.com Marketing Footer Text */ "Tips for getting the most out of WordPress.com." = "Tips for å få mest mulig ut av WordPress.com"; @@ -5354,15 +5252,11 @@ translators: Block name. %s: The localized block name */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Justerer den usorterte listestilen"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Verktøy"; - /* Cell title for the Top Level option case Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Toppnivå"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Emne"; /* Used when a Reader Topic is not found for a specific id */ @@ -5431,9 +5325,6 @@ translators: Block name. %s: The localized block name */ Try to load the list of interests again. */ "Try Again" = "Prøv igjen"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Prøv med en annen konto"; - /* Button label for trying to retrieve the activities type again Button label for trying to retrieve the history again Button label for trying to retrieve the scan status again @@ -5471,9 +5362,6 @@ translators: Block name. %s: The localized block name */ /* A placeholder for the sharing label. */ "Type a label" = "Skriv inn en merkelapp"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Begynn å skrive for å få flere forslag"; - /* URL text field placeholder */ "URL" = "URL"; @@ -5528,12 +5416,6 @@ translators: Block name. %s: The localized block name */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Kunne ikke laste opp 1 kladd"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Kunne ikke laste opp 1 kladd, %ld filer"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Kunne ikke laste opp 1 kladd, 1 fil"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Kunne ikke laste opp 1 innlegg"; @@ -5582,8 +5464,7 @@ translators: Block name. %s: The localized block name */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Slutt å følge"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Avfølg %@"; /* Verb. An option to unfollow a site. */ @@ -5593,9 +5474,6 @@ translators: Block name. %s: The localized block name */ User unfollowed a site. */ "Unfollowed site" = "Sluttet å følge siden"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Slutter å følge bloggen"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Avfølger nettstedet."; @@ -5735,9 +5613,6 @@ translators: Block name. %s: The localized block name */ /* Label to show while uploading media to server */ "Uploading..." = "Laster opp..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Mislykkede opplastinger"; - /* Use the current image */ "Use" = "Bruk"; @@ -5776,9 +5651,6 @@ translators: Block name. %s: The localized block name */ /* Push Authentication Alert Title */ "Verify Log In" = "Bekreft innlogging"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Bekreft din e-postadresse - instruksjoner sendt til %@"; - /* Description for the version label in the What's new page. */ "Version " = "Versjon:"; @@ -5926,9 +5798,6 @@ translators: Block name. %s: The localized block name */ Text displayed after the app fails to upload a post, no new attempt will be made. */ "We couldn't complete this action." = "Vi kunne ikke fullføre denne handlingen."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Vi kunne ikke finne noen tilgjengelig adresse med ordene du skrev inn - la oss prøve igjen."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Vi kunne ikke publisere denne siden, men vi vil prøve igjen senere."; @@ -5986,9 +5855,6 @@ translators: Block name. %s: The localized block name */ /* Error message displayed when a refresh failed */ "We had trouble loading data" = "Vi hadde problemer med å laste inn data"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Vi har gjort store forbedringer i det blokkbaserte redigeringsverktøyet og vil gjerne at du skal prøve det!\n\nVi aktiverte det nye redigeringsverktøyet for nye innlegg og sider, men hvis du vil gå tilbake til det klassiske verktøyet kan du gjøre det under 'Mitt nettsted' > 'Innstillinger'."; - /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Vi bruker andre sporingsverktøy, inkludert noen fra tredjeparter. Les mer om disse og hvordan du kontrollerer dem."; @@ -6056,9 +5922,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown when having trouble connecting to a Jetpack site. */ "We're not able to connect to the Jetpack site at that URL. Contact us for assistance." = "Vi kunne ikke koble til Jetpack-siden på den URL-en. Kontakt oss for hjelp."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Vi hadde noen problemer med å endre hoveddomenet for nettstedet ditt — men ingen grunn til bekymring, domenet ble kjøpt."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Nettadresse"; @@ -6217,8 +6080,7 @@ translators: Block name. %s: The localized block name */ /* Title of Years stats filter. */ "Years" = "År"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Ja"; @@ -6397,12 +6259,6 @@ translators: Block name. %s: The localized block name */ /* The default Jetpack view message */ "Your website credentials will not be stored and are used only for the purpose of installing Jetpack." = "Brukernavn og passord til siden din blir ikke lagret, og brukes bare for å installere Jetpack."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Du bruker nå det blokkbaserte redigeringsverktøyet for nye sider — supert! Hvis du vil endre til det klassiske redigeringsverktøyet, gå til ‘Mitt nettsted’ > ‘Innstillinger for nettstedet’."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Du bruker nå det blokkbaserte redigeringsverktøyet for nye innlegg — supert! Hvis du vil endre til det klassiske redigeringsverktøyet, gå til ‘Mitt nettsted’ > ‘Innstillinger for nettstedet’."; - /* Comment Attachment Label */ "[COMMENT]" = "[KOMMENTAR]"; @@ -6434,7 +6290,6 @@ translators: Block name. %s: The localized block name */ "eg. 44" = "f.eks. 47"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -6507,9 +6362,6 @@ translators: Block name. %s: The localized block name */ /* This is a comma separated list of keywords used for spotlight indexing of the 'My Sites' tab. */ "wordpress, sites, site, blogs, blog" = "wordpress, sider, side, blogger, blogg"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "ditt nettsted"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Logg inn med Google."; diff --git a/WordPress/Resources/nl.lproj/Localizable.strings b/WordPress/Resources/nl.lproj/Localizable.strings index 0e51f31cf752..4d42499a897a 100644 --- a/WordPress/Resources/nl.lproj/Localizable.strings +++ b/WordPress/Resources/nl.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nOm te bevestigen, geef je gebruikersnaam opnieuw in voor het sluiten.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/ jaar"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "\"Lazy-load\" afbeeldingen"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li woorden, %2$li karakters"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s blok"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s blokopties"; @@ -502,9 +495,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Voeg een onderwerp toe"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Voeg een URL voor eigen CSS toe die geladen wordt in Lezer. Als je Calypso lokaal gebruikt, kan dit zoiets zijn: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Voeg een domein toe"; @@ -649,10 +639,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Alle jaarlijkse abonnementen van WordPress.com zijn inclusief aangepaste domeinnaam. Registreer nu je gratis domein."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Alle WordPress.com abonnementen zijn inclusief een aangepaste domeinnaam. Registreer je gratis domein nu."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Alle reacties"; @@ -972,9 +958,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Automatisch beheerd op deze site"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Automatisch verlengen ingeschakeld"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Automatisch goedkeuren"; @@ -1106,9 +1089,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Blok gedupliceerd"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Blok-editor ingeschakeld"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Blok gegroepeerd"; @@ -1198,9 +1178,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Upload media direct vanuit je apparaat of camera naar je site."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Blader door al onze thema's om het thema te vinden dat perfect bij je past."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Brute Force Attack bescherming"; @@ -1493,8 +1470,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Kies een site om te openen."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Kies een thema"; /* Select the site's intent. Subtitle */ @@ -1583,7 +1559,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Sluit"; @@ -1724,24 +1699,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Afgerond: bekijk je sitetitel"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Afgerond: kies een thema"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Afgerond: kies een unieke site pictogram"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Afgerond: maak verbinding met andere sites"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Afgerond: ga verder met de site setup"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Afgerond: maak je site"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Afgerond: bekijk abonnementen"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Afgerond: publiceer een bericht"; @@ -1879,9 +1845,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Doorgaan met Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Ga verder met het configureren van je site"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Ga verder met Apple"; @@ -1975,15 +1938,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Kan geen verbinding maken met de WordPress-site. Er is geen geldige WordPress-site op dit adres. Controleer of je het goede websiteadres (URL) hebt opgegeven."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Kan geen verbinding maken. Vereiste XML-RPC-methoden ontbreken op de server."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Kon geen verbinding maken. Er is een 403-fout opgetreden tijdens onze poging om het XMLRPC-eindpunt van je site te openen. De app heeft dat nodig om met je site te communiceren. Neem contact op met je host om dit probleem op te lossen."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Kan geen verbinding maken. Je host blokkeert POST-aanvragen. De app heeft deze nodig om te communiceren met je site. Neem contact op met je host om dit probleem op te lossen."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Kon tags niet laden."; @@ -2015,9 +1969,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Landcode"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Crash logging"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Crash-rapporten"; @@ -2033,9 +1984,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Nieuwe maken"; -/* Title for the site creation flow. */ -"Create New Site" = "Nieuwe site"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2222,9 +2170,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Debug"; -/* Debug settings title */ -"Debug Settings" = "Debug-instellingen"; - /* Only December needs to be translated */ "December 17, 2017" = "December 17, 2017"; @@ -2246,9 +2191,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Standaard post format"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "Standaard URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Standaardinstellingen voor nieuwe berichten"; @@ -2414,12 +2356,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domeinen"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domeinen aangeschaft op deze site, zullen gebruikers omleiden naar %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Domeinen aangeschaft op deze site, zullen gebruikers omleiden naar "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Heb je geen account? _Aanmelden_"; @@ -2589,8 +2525,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Bewerken"; /* Title for the edit more button section */ @@ -2655,9 +2590,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Bewerkt een reactie"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Wordt gebruikt om een reactie te bewerken."; @@ -2785,9 +2717,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Vul een wachtwoord in om dit bericht te beveiligen"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Voer hierboven andere woorden in, zodat wij op zoek kunnen gaan naar een adres dat overeenkomt."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Voer wachtwoord in"; @@ -2973,24 +2902,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Vouwt uit om een ander menugebied te selecteren"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Verlopen"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Verlopen inlogcode"; /* Title. Indicates an expiration date. */ "Expires on" = "Verloopt op"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Verloopt op %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Leg uit waarover deze site gaat."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Abonnementen verkennen"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Content exporteren"; @@ -3176,8 +3096,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Volgers"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Volgend"; @@ -3194,9 +3113,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Volgt"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Blog volgen"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Wordt gebruikt om de blog te volgen."; @@ -3236,9 +3152,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Gratis fotobibliotheek"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Gratis voor het eerste jaar "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Maak opslagruimte vrij op dit apparaat door tijdelijke mediabestanden te verwijderen. Dit heeft geen effect op de media van je site."; @@ -3327,9 +3240,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Leer de app kennen"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Krijg je domein"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Ontvang je berichten sneller"; @@ -3354,9 +3264,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Ga terug"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Ga naar Volgers"; @@ -3395,18 +3302,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Begeleidt je bij het proces voor het bekijken van je meldingen."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Begeleidt je bij het proces voor het kiezen van een thema voor je site."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Begeleidt je bij het proces voor het maken van een nieuwe pagina op je site."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Begeleidt je bij het proces voor het maken van je site."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Begeleidt je bij het proces voor het verkennen van abonnementen voor je site."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Begeleidt je bij het proces voor het volgen van andere sites."; @@ -3422,9 +3323,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Begeleid je door het proces van het instellen van de titel van je site."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Begeleidt je bij het proces voor het configureren van je site."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Begeleidt je bij het proces voor het uploaden van een pictogram voor je site."; @@ -3578,9 +3476,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Bijwerken van favicon mislukt"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Als je al een site hebt, zul je de gratis Jetpack plugin moeten installeren en deze verbinden met je WordPress.com account."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Als je de e-mail niet kunt vinden, controleer dan de spamfolder of de prullenbak van je inbox"; @@ -3990,9 +3885,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Lees meer over nieuwe reacties, vind-ik-leuks, en opvolgingen in seconden."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Bekijk meer informatie over de marketing- en SEO-tools van onze betaalde abonnementen."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4159,9 +4051,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Reactie laden..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Domeinen laden"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Geschiedenis laden..."; @@ -4613,9 +4502,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Heeft update nodig"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Verloopt nooit"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "Nieuw"; @@ -4690,9 +4576,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Geen items"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Geen Jetpack sites gevonden"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Geen menu"; @@ -4909,9 +4792,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Niet genoeg ruimte om te uploaden"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Niet volgend"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5012,7 +4892,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5314,9 +5193,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Kies een gebruikersnaam"; -/* The item to select during a guided tour. */ -"Plan" = "Abonnement"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Abonnementen"; @@ -5633,9 +5509,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Hoofdsite"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Primair site adres"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Privacy"; @@ -5737,9 +5610,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Gepubliceerd op"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publiceren naar"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Pagina aan het publiceren..."; @@ -5761,9 +5631,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Pushmeldingen zijn uitgeschakeld in iOS-instellingen. Selecteer 'Meldingen toestaan' om ze weer in te schakelen."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Snel start"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Waardeer ons"; @@ -5782,13 +5649,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Reader"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "Reader CSS URL"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Berichten van andere sites lezen"; @@ -5949,9 +5812,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Als je volgers verwijdert, ontvangen ze geen berichten meer vanuit je site. Als ze willen, kunnen ze je site nog altijd bezoeken en deze opnieuw volgen."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Verlengt op %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Vervang huidige blok"; @@ -6084,7 +5944,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Opnieuw proberen"; @@ -6306,9 +6165,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Toon alles"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Bekijk de instructies"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Lees opmerkingen en ontvang meldingen in realtime."; @@ -6325,24 +6181,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Selecteer %@ om een nieuw bericht op te stellen"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Selecteer %@ om nieuwe thema's te ontdekken"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Selecteer %@ om andere sites te zoeken."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Selecteer %@ om te zien hoe je site presteert."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Selecteer %@ om je checklist te bekijken"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Selecteer %@ om je huidige bibliotheek te bekijken."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Selecteer %@ om je huidige abonnement en andere beschikbare abonnementen in te zien."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Selecteer %@ om je paginalijst te zien."; @@ -6735,10 +6582,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Site-pagina"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Veiligheid en prestaties van de site\nvanuit je broekzak"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Site tijdzone (UTC%1$@%2$d%3$@)"; @@ -6793,9 +6636,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Niet alle gegevens zijn geladen"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Er zijn uploads van media mislukt. Door deze handeling worden alle mislukte media uit het bericht verwijderd.\nToch opslaan?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Er is iets fout gegaan"; @@ -7336,7 +7176,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "De site op %1$@ gebruikt WordPress %2$@. Wij raden aan om te updaten naar de laatste versie, of minimaal %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "De site op dit adres is geen WordPress site. Om door ons verbinding te kunnen maken, moet de site WordPress gebruiken."; /* Message shown when site deletion API failed */ @@ -7376,7 +7217,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Thema geactiveerd"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Thema's"; @@ -7622,9 +7462,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Tijdzone"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Tijd om je site af te ronden! Onze checklist leidt je door de volgende stappen."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "De tijd is om, maar maak je geen zorgen, jouw beveiliging is van het hoogste belang. Probeer het nog eens!"; @@ -7676,9 +7513,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Installeer de Jetpack-plugin om statistieken voor je site te gebruiken."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Om deze app te gebruiken voor %@, moet de Jetpack plugin geïnstalleerd en geactiveerd zijn."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7699,9 +7533,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Omschakelen naar ongeordende lijststijl"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Gereedschap"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Topreageerders"; @@ -7709,8 +7540,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Bovenste niveau"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Onderwerp"; /* Used when a Reader Topic is not found for a specific id */ @@ -7788,9 +7618,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Probeer opnieuw"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Probeer het met een ander account"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Probeer het met aanpassen van je datumbereik filter"; @@ -7870,9 +7697,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Geef een naam in voor je site"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Type om meer suggesties te zien"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7978,12 +7802,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Kon 1 conceptbericht niet uploaden"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Kon 1 conceptbericht niet uploaden, %ld bestanden"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Kon 1 conceptbericht niet uploaden, 1 bestand"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Niet kunnen uploaden 1 bericht"; @@ -8038,8 +7856,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Ontvolg"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Ontvolg %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8055,9 +7872,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Site die niet langer gevolgd wordt"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Stopt het volgen van de blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Wordt gebruikt om te stoppen met het volgen van een blog."; @@ -8227,18 +8041,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Uploaden..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Uploads mislukt"; - /* Use the current image */ "Use" = "Gebruik"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Gebruik %@ om sites en tags te zoeken."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Gebruik Sandbox Store"; - /* The button's title text to use a security key. */ "Use a security key" = "Beveiligingssleutel"; @@ -8286,9 +8094,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Controleer login"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Verifieer je e-mailadres - instructies verzonden aan %@"; - /* Description for the version label in the What's new page. */ "Version " = "Versie "; @@ -8490,9 +8295,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "We konden je back-up niet maken. Probeer het later nog een keer."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "We konden geen beschikbaar adres vinden met de woorden die je hebt ingevoerd. Laten we het nogmaals proberen."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "We konden deze pagina niet publiceren, maar we proberen het later nog eens."; @@ -8568,9 +8370,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "We hebben zojuist een magische link verstuurd naar"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "We hebben grote verbeteringen aan de blokeditor aangebracht en vinden het zeker de moeite waard!\n\nWe hebben deze ingeschakeld voor nieuwe berichten en pagina's, maar als je toch liever de klassieke editor gebruikt, ga naar 'Mijn site' > 'Site-instellingen'."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "We hebben met succes een back-up gemaakt van je site vanaf %@"; @@ -8580,9 +8379,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "We gebruiken ook andere tracking-tools, waaronder een aantal van derden. Bekijk meer informatie over deze tools en hoe je ze kunt beheren."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "We konden geen WordPress site vinden op het adres dat je hebt ingegeven. Zorg ervoor dat WordPress is geïnstalleerd en dat je beschikt over de meest recente versie."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "We konden je op dit moment geen e-mail sturen. Probeer het later nogmaals."; @@ -8671,9 +8467,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "We hebben je een inschrijf link gestuurd om je nieuwe WordPress.com account aan te maken. Controleer je e-mail op dit apparaat en tik op de link in de e-mail die je van WordPress.com ontvangt."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "We konden het primaire domein van je site niet wijzigen — maak je geen zorgen, je domein is succesvol aangeschaft."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Web adres"; @@ -8951,8 +8744,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Jaren"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Ja"; @@ -9051,9 +8843,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "Je hebt 1 verborgen WordPress-site."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "Je hebt een gratis één-jaar domein registratie met je abonnement"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Je hebt actieve premium upgrades op je site. Annuleer je upgrades voordat je je site verwijdert."; @@ -9138,9 +8927,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Je hebt niet-opgeslagen wijzigingen in dit bericht"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Je site domeinen"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Je site pictogram"; @@ -9168,9 +8954,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Je eerste back-up is binnenkort klaar"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Je gratis WordPress.com adres is"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Je nieuwe domein %@ wordt ingesteld. Het kan tot 30 minuten duren voor je domein werkend is."; @@ -9186,9 +8969,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Je berichten, pagina's en instellingen worden naar je gemaild via %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Je primaire site-adres is wat je bezoekers zien in hun adresbalk wanneer ze je website bezoeken."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Je herstel duurt langer dan normaal, controleer opnieuw over een paar minuten."; @@ -9246,12 +9026,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Je volgt deze conversatie. Je ontvangt een e-mail zodra er een nieuwe reactie is achtergelaten."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Je gebruikt nu de blokeditor voor nieuwe pagina's. Geweldig! Als je toch liever de klassieke editor gebruikt, ga dan naar 'Mijn site' > 'Site-instellingen'."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Je gebruikt nu de blokeditor voor nieuwe berichten. Geweldig! Als je toch liever de klassieke editor gebruikt, ga dan naar 'Mijn site' > 'Site-instellingen'."; - /* Comment Attachment Label */ "[COMMENT]" = "[REACTIE]"; @@ -9598,19 +9372,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "Functievlaggen"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Algemeen"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Overschreven parameters zijn gemarkeerd met een vinkje."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Overschrijf de gekozen parameters door hier een nieuwe waarde te definiëren."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Geen externe of standaardwaarde"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Externe configuratie"; /* Title for a menu action in the context menu on the Jetpack install card. */ @@ -9731,7 +9494,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Meer"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "voorbeeld.nl"; @@ -10578,12 +10340,6 @@ Example: 27 social shares remaining in the next 30 days */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Alle reacties bekijken"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Ga naar Site-instellingen om weer in te schakelen"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Blogmeldingen zijn verborgen"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Negeren"; @@ -11015,9 +10771,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "E-mail"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "WordPress-forums"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "WordPress Help Center"; @@ -11231,9 +10984,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Meer informatie"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "je site"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Inloggen met Google."; diff --git a/WordPress/Resources/pl.lproj/Localizable.strings b/WordPress/Resources/pl.lproj/Localizable.strings index b19beeff7982..0d75616bb1d8 100644 --- a/WordPress/Resources/pl.lproj/Localizable.strings +++ b/WordPress/Resources/pl.lproj/Localizable.strings @@ -3,9 +3,6 @@ /* Generator: GlotPress/4.0.0-alpha.11 */ /* Language: pl */ -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/ rocznie"; - /* Title of a list of buttons used for sharing content to other services. These buttons appear when the user taps a `More` button. */ "\"More\" Button" = "Przycisk „Więcej”"; @@ -538,8 +535,7 @@ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Wybierz witrynę, którą chcesz otworzyć."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Wybierz motyw"; /* Select the site's intent. Subtitle */ @@ -577,7 +573,6 @@ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Zamknij"; @@ -630,9 +625,6 @@ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Ukończono: sprawdzanie tytułu witryny"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Ukończono: kontynuuj ustawianie witryny"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: View your site" = "Ukończono: obejrzyj swoją stronę"; @@ -749,9 +741,6 @@ Register Domain - Domain contact information field Country */ "Country" = "Państwo"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Logowanie awarii"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Raporty o awariach"; @@ -767,9 +756,6 @@ /* Create New header text */ "Create New" = "Utwórz"; -/* Title for the site creation flow. */ -"Create New Site" = "Utwórz witrynę"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -985,8 +971,7 @@ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Edytuj"; /* Title for the edit more button section */ @@ -1202,8 +1187,7 @@ Label for number of followers. */ "Followers" = "Obserwujący"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Obserwujesz"; @@ -1922,7 +1906,6 @@ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -2230,9 +2213,6 @@ /* Published on [date] */ "Published on" = "Opublikowano dnia "; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publikowanie w "; - /* A short message that informs the user a post is being published to the server from the share extension. */ "Publishing post..." = "Publikowanie wpisu…"; @@ -2254,8 +2234,7 @@ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Czytnik"; /* Real Estate site intent topic */ @@ -2384,7 +2363,6 @@ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Ponów"; @@ -2856,7 +2834,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Motyw został włączony"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Motywy"; @@ -2926,9 +2903,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Notifications Today Section Header */ "Today" = "Dzisiaj"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Narzędzia"; - /* Topics Filter Tab Title */ "Topics" = "Tematy"; @@ -3015,8 +2989,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Przestań obserwować"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Przestań obserwować %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -3313,8 +3286,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Lata"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Tak"; @@ -3424,9 +3396,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Feature flags menu item */ "debugMenu.featureFlags" = "Flagi funkcji"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Ogólne"; - /* Register Domain - Address information field Number placeholder */ "eg. 1122334455" = "np. 1122334455"; @@ -3437,7 +3406,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "ellipsisButton.AccessibilityLabel" = "Więcej"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -3858,9 +3826,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of visitors label in today widget */ "widget.today.visitors.label" = "Odwiedzający"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "twoja witryna"; - /* Item 4 of delete screen section listing things that will be deleted. */ "• Domains" = "• Domeny"; diff --git a/WordPress/Resources/pt-BR.lproj/Localizable.strings b/WordPress/Resources/pt-BR.lproj/Localizable.strings index acdc95ebcd3a..271f0b74080b 100644 --- a/WordPress/Resources/pt-BR.lproj/Localizable.strings +++ b/WordPress/Resources/pt-BR.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nPara confirmar, digite novamente seu nome de usuário antes de encerrar.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/ ano"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Carregamento assíncrono de imagens"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li palavras, %2$li caracteres"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "Bloco %s"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "Opções do bloco %s"; @@ -496,9 +489,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Adicionar um tópico"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Adicione uma URL de CSS personalizada aqui para ser carregada no Leitor. Se você estiver rodando o Calypso localmente, pode ser algo como: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Adicionar um domínio"; @@ -631,10 +621,6 @@ translators: Block name. %s: The localized block name */ Title of the drafts filter. This filter shows a list of draft posts. */ "All" = "Tudo"; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Todos os planos do WordPress.com incluem um domínio personalizado. Registre seu domínio gratuito agora."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Todos os comentários"; @@ -948,9 +934,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Gerenciado automaticamente neste site"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Auto-renovação ativada"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Aprovar automaticamente"; @@ -1079,9 +1062,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Bloco duplicado"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "O editor de blocos está ativado"; - /* Jetpack Settings: Block malicious login attempts */ "Block malicious login attempts" = "Bloquear tentativas maliciosas de acesso"; @@ -1162,9 +1142,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Traga mídia diretamente do seu dispositivo ou câmera para o seu site."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Procurar em todos os nossos temas para encontrar um perfeito para você."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Proteção contra ataques por força bruta"; @@ -1454,8 +1431,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Escolha um site para abrir."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Escolha um tema"; /* Select the site's intent. Subtitle */ @@ -1544,7 +1520,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Fechar"; @@ -1685,24 +1660,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Concluído: Conferir o título do site"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Concluído: Escolher um tema"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Concluído: Escolher um ícone de site exclusivo"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Concluído: Conecte-se com outros sites"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Concluído: Continuar com as configurações do site"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Concluído: Criar um site"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Concluído: Explorar planos"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Concluído: Publicar um post"; @@ -1840,9 +1806,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Continuar com Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Continuar configurando o site"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Prosseguindo with Apple"; @@ -1936,15 +1899,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Não foi possível conectar ao site WordPress. Não nenhum site WordPress válido nesse endereço. Verifique o endereço do site (URL) informado."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Não foi possível conectar. Os métodos XML-RPC necessários não existem no servidor."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Não foi possível conectar. Recebemos um erro 403 ao tentar acessar o endpoint XMLRPC do seu site. O aplicativo precisa disso para se comunicar com o seu site. Entre em contato com sua hospedagem para resolver este problema."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Não foi possível conectar. Seu serviço de hospedagem está bloqueando solicitações POST e o aplicativo precisa delas para se comunicar com o seu site. Entre em contato com sua hospedagem para resolver este problema."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Não foi possível carregar tags."; @@ -1976,9 +1930,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Código do país"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Resumo de falhas"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Relatórios de falhas"; @@ -1994,9 +1945,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Criar novo"; -/* Title for the site creation flow. */ -"Create New Site" = "Criar novo site"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2183,9 +2131,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Depuração"; -/* Debug settings title */ -"Debug Settings" = "Configurações de depuração"; - /* Only December needs to be translated */ "December 17, 2017" = "Dezembro 17, 2017"; @@ -2204,9 +2149,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Formato de post padrão"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "URL padrão"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Padrões para novos posts"; @@ -2369,12 +2311,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domínios"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domínios comprados neste site redirecionarão para %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Domínios comprados neste site redirecionarão visitantes para "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Não tem uma conta? _Cadastre-se_"; @@ -2544,8 +2480,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Editar"; /* Title for the edit more button section */ @@ -2604,9 +2539,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Edita um comentário"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Edita o comentário."; @@ -2734,9 +2666,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Digite uma senha para proteger esse post"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Digite palavras diferentes das acima e tentaremos encontrar um endereço relacionado a elas."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Digite a senha"; @@ -2922,24 +2851,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Expande para selecionar uma área de menu diferente"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Expirado"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Código de login expirado"; /* Title. Indicates an expiration date. */ "Expires on" = "Expira em"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Expira em %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Explique sobre o que é este site;"; -/* Title of a Quick Start Tour */ -"Explore plans" = "Explore os planos"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Exportar conteúdo"; @@ -3125,8 +3045,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Seguidores"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Seguindo"; @@ -3143,9 +3062,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Seguidos"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Seguir blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Segue o blog."; @@ -3179,9 +3095,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Biblioteca gratuita de fotos"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Gratuito no primeiro ano "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Libere espaço de armazenamento nesse dispositivo apagando arquivos temporários. Isso não afetará os arquivos em seu site."; @@ -3270,9 +3183,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Saiba mais sobre o aplicativo"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Obtenha seu domínio"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Receba notificações rapidamente"; @@ -3297,9 +3207,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Voltar"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Ir para sites seguidos"; @@ -3338,18 +3245,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Orienta você pelo processo de verificação de suas notificações."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Te guiará pelo processo de escolha de um tema para o site."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Te guiará pelo processo de criação de uma nova página no site."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Te guiará pelo processo de criação do site."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Te guiará pelo processo de explorar planos para seu site."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Te guiará pelo processo necessário para seguir outros sites."; @@ -3365,9 +3266,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Ajuda durante o processo de definição de um título para seu site."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Te guiará pelo processo de configuração do site."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Te guiará pelo processo de envio do ícone para seu site."; @@ -3521,9 +3419,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "A atualização do ícone falhou"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Se você já tiver um site, precisará instalar o plugin gratuito Jetpack e conectá-lo à sua conta do WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Caso você não encontre o e-mail, verifique seu lixo eletrônico ou spam"; @@ -3921,9 +3816,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Receba informações sobre novos comentários, curtidas e seguidores em segundos."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Saiba mais sobre as ferramentas de marketing e SEO de seu plano pago."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4087,9 +3979,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Carregando comentário..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Carregando domínios"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Carregando histórico..."; @@ -4541,9 +4430,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Precisa de atualização"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Nunca expira"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "Novos"; @@ -4618,9 +4504,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Sem itens"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Nenhum site Jetpack foi encontrado"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Nenhum menu"; @@ -4831,9 +4714,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Não há espaço suficiente para enviar"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Não seguindo"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -4934,7 +4814,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5236,9 +5115,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Escolha seu nome de usuário"; -/* The item to select during a guided tour. */ -"Plan" = "Plano"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Planos"; @@ -5552,9 +5428,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Site principal"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Endereço do site primário"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Privacidade"; @@ -5656,9 +5529,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Publicado em"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publicando para"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Publicando página..."; @@ -5680,9 +5550,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "As notificações foram desativadas nas configurações do iOS. Toque em \"Permitir notificações\" para ativá-las novamente."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Início rápido"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Classifique-nos"; @@ -5701,13 +5568,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Leitor"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "URL de CSS do Leitor"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Lendo posts de outros sites"; @@ -5865,9 +5728,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Caso remova os seguidores, eles não receberão atualizações do seu site. Se eles quiserem, ainda poderão acessar seu site e voltar a segui-lo."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Renovação em %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Substituir o bloco atual"; @@ -6000,7 +5860,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Tentar novamente"; @@ -6222,9 +6081,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Ver todos"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Acessar as instruções"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Veja comentários e notificações em tempo real."; @@ -6241,24 +6097,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Toque em %@ para criar um novo post"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Toque em %@para descobrir novos temas"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Selecione %@ para encontrar outros sites."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Toque em %@ para ver o desempenho de seu site."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Toque em %@ para ver sua lista"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Selecione %@ para ver sua biblioteca atual."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Toque em %@ para ver seu plano atual e outros planos disponíveis."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Toque em %@ para ver sua lista de páginas."; @@ -6651,10 +6498,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Página do site"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Segurança e desempenho do site\ndiretamente em seu bolso"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Fuso horário do site (UTC%1$@%2$d%3$@)"; @@ -6709,9 +6552,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Parte dos dados não foram carregados"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Falha ao fazer upload de algumas mídias. Esta ação removerá todas as mídias que falharam do post.\nSalvar mesmo assim?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Algo deu errado"; @@ -7246,7 +7086,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "O site em %1$@ usa o WordPress %2$@. Recomendamos atualizar para a última versão, ou pelo menos a %3$@ "; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "O site publicado nesse endereço não é um site WordPress. Para que possamos nos conectar a ele, é necessário que o site tenha sido feito com WordPress."; /* Message shown when site deletion API failed */ @@ -7286,7 +7127,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Tema ativado"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Temas"; @@ -7532,9 +7372,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Fuso horário"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Está na hora de terminar de configurar seu site! Nossa lista te guiará pelos próximos passos."; - /* WordPress.com Marketing Footer Text */ "Tips for getting the most out of WordPress.com." = "Dicas para aproveitar o máximo do WordPress.com"; @@ -7583,9 +7420,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Para usar as estatísticas em seu site, é necessário instalar o plugin Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Para usar esse aplicativo com %@, é necessário ter o plugin do Jetpack instalado e ativo."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7606,9 +7440,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Alterna o estilo da lista não ordenadas"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Ferramentas"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Principais comentaristas"; @@ -7616,8 +7447,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Primeiro nível"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Tópico"; /* Used when a Reader Topic is not found for a specific id */ @@ -7692,9 +7522,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Tente novamente"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Tentar com outra conta"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Tente ajustar o intervalo de datas no filtro"; @@ -7774,9 +7601,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Digite um nome para o seu site"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Digite para mais sugestões"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7882,12 +7706,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Não foi possível enviar 1 rascunho de post"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Não foi possível enviar 1 rascunho de post e %ld arquivos"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Não foi possível enviar 1 rascunho de post e 1 arquivo"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Não foi possível enviar um post"; @@ -7942,8 +7760,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Deixar de seguir"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Deixar de seguir %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -7959,9 +7776,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Site que deixei de seguir"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Deixa de seguir o blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Deixar de seguir o blog."; @@ -8125,18 +7939,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Enviando…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Falha ao fazer uploads"; - /* Use the current image */ "Use" = "Usar"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Use %@ para encontrar sites e tags."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Usar loja sandbox"; - /* Option to enable the block editor for new posts */ "Use block editor" = "Usar o editor de blocos"; @@ -8181,9 +7989,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Verificar login"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Verifique seu endereço de e-mail. As instruções foram enviadas para %@"; - /* Description for the version label in the What's new page. */ "Version " = "Versão"; @@ -8385,9 +8190,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "Não foi possível criar seu backup. Tente novamente."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Não foi possível encontrar nenhum endereço disponível com as palavras digitadas. Vamos tentar de novo."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Não foi possível publicar essa página mas tentaremos novamente mais tarde."; @@ -8463,9 +8265,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Acabamos de enviar um link mágico para"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Fizemos grandes melhorias no editor de blocos e achamos que vale a pena testá-lo.\n\nO editor de blocos foi ativado para novos posts e páginas mas, caso você queira voltar ao editor clássico, é possível fazer a alteração em Meu site > Configurações do site."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "O backup do seu site foi criado com sucesso para %@"; @@ -8475,9 +8274,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Nós usamos outras ferramentas de acompanhamento, inclusive algumas de terceiros. Leia mais sobre elas e como controlá-las."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "Não foi possível detectar um site do WordPress no endereço inserido. Certifique-se de que o WordPress esteja instalado e a versão sendo executada seja a mais recente disponível."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "Não foi possível enviar um e-mail para você no momento. Tente novamente mais tarde."; @@ -8566,9 +8362,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Nós enviamos um link de cadastro por e-mail para criar sua nova conta no WordPress.com. Verifique sua caixa de e-mails neste dispositivo e clique no link enviado pelo WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Tivemos alguns problemas ao mudar o domínio principal de seu site. Não se preocupe, seu domínio foi registrado com sucesso."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Endereço da web"; @@ -8840,8 +8633,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Anos"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Sim"; @@ -8940,9 +8732,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "Você tem 1 site WordPress oculto."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "Você tem um registro de domínio gratuito por um ano com seu plano"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Você tem atualizações premium ativas em seu site. Cancele estas atualizações antes de apagar seu site."; @@ -9027,9 +8816,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Há alterações não salvas neste post"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Domínios do seu site"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Ícone do seu site"; @@ -9057,9 +8843,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Seu primeiro backup estará pronto em breve"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Seu endereço gratuito do WordPress.com é"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Seu novo domínio %@ está sendo configurado. O domínio pode levar até 30 minutos para começar a funcionar."; @@ -9075,9 +8858,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Seus posts, páginas e configurações serão enviadas a você para %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "O endereço principal do site é o que visitantes verão na barra de endereço do navegador ao acessar seu site."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "O retrocesso à versão anterior está demorando mais que o normal, verifique novamente em alguns minutos."; @@ -9135,12 +8915,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Você está seguindo esta conversa. Você receberá um e-mail sempre que um novo comentário for adicionado."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Agora você está usando o editor de blocos para novas páginas — ótimo! Se você quiser mudar para o editar clássico, acesse ‘Meu site’ > ‘Configurações do site’."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Agora você está usando o editor de blocos para novos posts — ótimo! Se você quiser mudar para o editar clássico, acesse ‘Meu site’ > ‘Configurações do site’."; - /* Comment Attachment Label */ "[COMMENT]" = "[COMENTÁRIO]"; @@ -9319,16 +9093,8 @@ Note that the word 'go' here should have a closer meaning to 'start' rather than /* Title of label marking a scheduled page */ "dashboardCard.pages.cell.status.schedule" = "Agendada"; -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Os parâmetros substituídos são indicados por uma marca de seleção."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Substitua o parâmetro escolhido definindo um novo valor aqui."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Nenhum valor remoto ou padrão"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Configurações remotas"; /* Title for a menu action in the context menu on the Jetpack install card. */ @@ -9347,7 +9113,6 @@ Note that the word 'go' here should have a closer meaning to 'start' rather than "ellipsisButton.AccessibilityLabel" = "Mais"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "exemplo.com"; @@ -9888,12 +9653,6 @@ Note that the word 'go' here should have a closer meaning to 'start' rather than /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Visualizar todas as respostas"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Vá às configurações do site para reativar"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Sugestões de publicação ocultas"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Dispensar"; @@ -10119,9 +9878,6 @@ Note that the word 'go' here should have a closer meaning to 'start' rather than /* Support email label. */ "support.row.email.title" = "E-mail"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "Fóruns do WordPress"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "Central de ajuda do WordPress"; @@ -10308,9 +10064,6 @@ Note that the word 'go' here should have a closer meaning to 'start' rather than /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Saiba mais"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "seu site"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Acessar com o Google."; diff --git a/WordPress/Resources/pt.lproj/Localizable.strings b/WordPress/Resources/pt.lproj/Localizable.strings index e7b06514311f..65745361ea42 100644 --- a/WordPress/Resources/pt.lproj/Localizable.strings +++ b/WordPress/Resources/pt.lproj/Localizable.strings @@ -513,7 +513,6 @@ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Fechar"; @@ -886,8 +885,7 @@ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Editar"; /* Title for the edit more button section */ @@ -910,9 +908,6 @@ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Edita um comentário"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Edita o comentário."; @@ -1074,8 +1069,7 @@ Label for number of followers. */ "Followers" = "Seguidores"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "A seguir"; @@ -1731,7 +1725,6 @@ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -2079,8 +2072,7 @@ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Leitor"; /* Text for the 'Reblog' button. */ @@ -2213,7 +2205,6 @@ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Tentar de novo"; @@ -2643,7 +2634,6 @@ "Theme Activated" = "Tema activado"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Temas"; @@ -2745,8 +2735,7 @@ /* Discoverability title for HTML keyboard shortcut. */ "Toggle HTML Source " = "Mudar para modo HTML"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Tópico"; /* Topics Filter Tab Title */ @@ -2948,9 +2937,6 @@ /* Label to show while uploading media to server */ "Uploading..." = "A carregar..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Carregamentos falharam"; - /* Use the current image */ "Use" = "Usar"; @@ -3148,8 +3134,7 @@ /* Title of Years stats filter. */ "Years" = "Anos"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Sim"; diff --git a/WordPress/Resources/ro.lproj/Localizable.strings b/WordPress/Resources/ro.lproj/Localizable.strings index 0880f032a6ed..8bab3a845820 100644 --- a/WordPress/Resources/ro.lproj/Localizable.strings +++ b/WordPress/Resources/ro.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2024-01-04 07:30:34+0000 */ +/* Translation-Revision-Date: 2024-01-08 17:56:46+0000 */ /* Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n == 0 || n % 100 >= 2 && n % 100 <= 19) ? 1 : 2); */ /* Generator: GlotPress/4.0.0-alpha.11 */ /* Language: ro */ @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nPentru a confirma, te rog ca înainte de a-l închide să introduci din nou numele de utilizator.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = "\/an"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Imagini „încărcate lent”"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li cuvinte, %2$li de caractere"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "Bloc %s"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "Opțiuni bloc %s"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Adaugă un subiect"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Adaugă aici URL-ul pentru CSS-ul personalizat care să fie încărcat în Cititor. Dacă rulezi Calypso local, ar trebuie să fi ceva de genul: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Adaugă un domeniu"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Toate planurile WordPress.com cu plată anuală includ un nume de domeniu personalizat. Înregistrează-ți domeniul gratuit acum."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Toate planurile WordPress.com includ un nume de domeniu personalizat. Înregistrează-ți domeniul premium gratuit acum."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Toate comentariile"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Administrat automat pe acest site"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Reînnoirea automată este activată"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Aprobă automat"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Bloc duplicat"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Editor de blocuri activat"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Bloc grupat"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Aduci elemente media pe site direct din dispozitiv sau cameră."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Răsfoiește toate temele pentru a o găsi pe cea care ți se potrivește perfect."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Protecție împotriva atacurilor cu forță-brută"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Alege un site pe care să îl deschizi."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Alege o temă"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Închidere"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Finalizat: verifică titlul site-ului"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Finalizat: alege o temă"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Finalizat: alege un icon unic pentru site"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Ai finalizat: conectează-te cu alte site-uri"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Finalizat: continuă cu inițializarea site-ului"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Finalizat: creează-ți site-ul"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Finalizat: explorează planurile"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Finalizat: publică un articol"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Continuă cu Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Continuă cu inițializarea site-ului"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Continui cu Apple"; @@ -1982,13 +1945,13 @@ translators: Block name. %s: The localized block name */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Nu am putut conecta site-ul WordPress. La această adresă nu există niciun site WordPress valid. Verifică adresa site-ului (URL) pe care ai introdus-o."; /* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Nu ne-am putut conecta. Metodele XML-RPC necesare lipsesc pe server."; +"Couldn't connect. Required XML-RPC methods are missing on the server. Please contact your hosting provider to solve this problem." = "Nu am putut face conexiunea. Metodele XML-RPC necesare lipsesc pe server. Te rog să contactezi furnizorul tău de găzduire pentru a rezolva această problemă."; /* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Nu l-am putut conecta. Am primit o eroare 403 când am încercat să accesăm punctul-final XMLRPC al site-ului tău. Aplicația are nevoie de el pentru a comunica cu site-ul tău. Contactează serviciul tău de găzduire pentru a rezolva această problemă."; +"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem." = "Nu am putut face conexiunea. Am primit o eroare 403 când am încercat să accesăm punctul-final XMLRPC al site-ului tău. Aplicația are nevoie de el pentru a comunica cu site-ul tău. Te rog să contactezi serviciul tău de găzduire pentru a rezolva această problemă."; /* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Nu l-am putut conecta. Gazda ta blochează cererile POST, dar aplicația are nevoie de ele pentru a comunica cu site-ul tău. Contactează serviciul tău de găzduire pentru a rezolva această problemă."; +"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem." = "Nu am putut face conexiunea. Gazda ta blochează cererile POST, dar aplicația are nevoie de ele pentru a comunica cu site-ul tău. Te rog să contactezi serviciul tău de găzduire pentru a rezolva această problemă."; /* Error message when tag loading failed */ "Couldn't load tags." = "Nu am putut încărca etichetele."; @@ -2021,9 +1984,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Cod de țară"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Jurnalizare erori fatale"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Rapoarte erori fatale"; @@ -2039,9 +1999,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Creează nou"; -/* Title for the site creation flow. */ -"Create New Site" = "Creează un site nou"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2185,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Depanare"; -/* Debug settings title */ -"Debug Settings" = "Setări depanare"; - /* Only December needs to be translated */ "December 17, 2017" = "17 decembrie 2017"; @@ -2252,9 +2206,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Format implicit pentru articole"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "URL implicit"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Implicite pentru articole noi"; @@ -2420,12 +2371,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domenii"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domeniile cumpărate pe acest site vor redirecționa la %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Domeniile cumpărate pentru acest site vor redirecționa utilizatorii la "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Nu ai un cont? _Sign up_"; @@ -2595,8 +2540,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Editare"; /* Title for the edit more button section */ @@ -2661,9 +2605,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Editează un comentariu"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Editează comentariul."; @@ -2791,9 +2732,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Introdu o parolă pentru a proteja acest articol"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Introdu cuvinte diferite mai sus și vom căuta o adresă care se potrivește cu ele."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Introdu parola"; @@ -2979,24 +2917,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Se extinde pentru a selecta o altă zonă din meniu"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Expirat"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Codul de autentificare a expirat"; /* Title. Indicates an expiration date. */ "Expires on" = "Expiră pe"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Expiră pe %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Descrie acest site."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Explorează planurile"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Exportă conținutul"; @@ -3095,6 +3024,9 @@ translators: Block name. %s: The localized block name */ /* Label for the file type (.JPG, .PNG, etc) for a media asset (image / video) */ "File type" = "Tip de fișier"; +/* No comment provided by engineer. */ +"File type not supported as a media file." = "Tipul de fișier nu este acceptat ca fișier media."; + /* Film & Television site intent topic */ "Film & Television" = "Film și televiziune"; @@ -3182,8 +3114,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Urmăritori"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Urmăresc"; @@ -3200,9 +3131,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Urmăriri"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Urmărește blogul"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Urmărește blogul."; @@ -3212,6 +3140,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Font Size" = "Dimensiune font"; +/* translators: %1$s: Font size name e.g. Small */ +"Font Size, %1$s" = "Dimensiune font, %1$s"; + /* Food site intent topic */ "Food" = "Mâncare"; @@ -3242,9 +3173,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Bibliotecă de fotografii gratuite"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Gratuit în primul an"; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Ștergând fișierele media temporare, eliberezi spațiul de stocare pe acest dispozitiv. Acest lucru nu va afecta fișierele media de pe site-ul tău."; @@ -3333,9 +3261,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Vezi ce face aplicația"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Ia-ți domeniul"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Primești notificările mai repede"; @@ -3360,9 +3285,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Du-te înapoi"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Du-te la urmărire"; @@ -3401,18 +3323,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Te îndrumă în procesul de verificare a notificărilor."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Te îndrumă în procesul de alegere a unei teme pentru site-ul tău."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Te îndrumă în procesul de creare a unei pagini noi pentru site-ul tău."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Te îndrumă în procesul de creare a site-ului tău."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Te îndrumă în procesul de explorare a planurilor pentru site-ul tău."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Te îndrumă în procesul de urmărire a altor site-uri."; @@ -3428,9 +3344,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Te îndrumă în procesul de setare a unui titlu pentru site-ul tău."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Te îndrumă în procesul de inițializare a site-ului tău."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Te îndrumă în procesul de încărcare a unui icon pentru site-ul tău."; @@ -3584,9 +3497,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Actualizare icon eșuată"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Dacă ai deja un site, va trebui să instalezi modulul gratuit Jetpack și să îl conectezi la contul tău WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Dacă nu ai găsit emailul, te rog să verifici și dosarele Junk și Spam"; @@ -3996,9 +3906,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Înveți despre comentarii noi, aprecieri și urmăriri în câteva secunde."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Află despre instrumentele SEO și de marketing din planurile nostre plătite."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4072,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Încarc comentariul..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Încarc domenii"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Încarc istoricul..."; @@ -4619,8 +4523,11 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Necesită actualizare"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Nu expiră niciodată"; +/* No comment provided by engineer. */ +"Network connection lost, working offline" = "Conexiune la rețea este pierdută, lucrează offline"; + +/* No comment provided by engineer. */ +"Network connection re-established" = "Conexiunea la rețea este restabilită"; /* Header of section in Plugin Directory showing newest plugins */ "New" = "Noi"; @@ -4696,9 +4603,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Nu sunt elemente"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Nu am găsit niciun site Jetpack"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Niciun meniu"; @@ -4915,9 +4819,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Nu există suficient spațiu pentru încărcare"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Nu urmăresc"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4919,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5223,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Alege numele de utilizator"; -/* The item to select during a guided tour. */ -"Plan" = "Plan"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Planuri"; @@ -5642,9 +5539,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Site principal"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Adresă principală site"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Confidențialitate"; @@ -5746,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Publicat la"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publicare în"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Public pagina..."; @@ -5770,9 +5661,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Notificările imediate au fost dezactivate în setările iOS. Comută pe „Permite notificări” pentru a le activa din nou."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Inițiere rapidă"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Evaluează-ne"; @@ -5791,13 +5679,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Cititor"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "URL CSS pentru Cititor"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Citirea articolelor de pe alte site-uri"; @@ -5958,9 +5842,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Dacă înlături urmăritorii, ei nu vor mai primi actualizări de la site-ul tău. Dacă vor, pot să-ți viziteze site-ul și să-l urmărească din nou."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Se reînnoiește la %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Înlocuiește blocul curent"; @@ -6093,7 +5974,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Reîncearcă"; @@ -6147,6 +6027,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button label to open web page in Safari */ "Safari" = "Safari"; +/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ +"Sandbox Store" = "Magazin Sandbox"; + /* Menus save button title Save Action Save button label (saving content, ex: Post, Page, Comment, Category). @@ -6315,9 +6198,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Vezi toate modulele"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Vezi instrucțiunile"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Vezi comentariile și notificările în timp real."; @@ -6334,24 +6214,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Selectează %@ pentru a crea un articol nou"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Selectează %@ pentru a descoperi teme noi"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Selectează %@ ca să găsești alte site-uri."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Selectează %@ pentru a vedea cum funcționează site-ul tău."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Selectează %@ pentru a vedea lista de verificări"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Selectează %@ pentru a vedea biblioteca actuală."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Selectează %@ pentru a vedea planul actual și alte planuri disponibile."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Selectează %@ pentru a vedea lista cu pagini."; @@ -6744,10 +6615,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Pagină site"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Securitate și performanță site\nle ai în buzunar"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Fus orar site (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6669,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Unele date nu au fost încărcate"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Unele încărcări media au eșuat. Această acțiune va înlătura toate elementele media din articol care au eșuat. Salvează oricum?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Ceva nu a mers bine"; @@ -7348,7 +7212,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Site-ul %1$@ folosește WordPress %2$@. Îți recomandăm să actualizezi la ultima versiune sau cel puțin la %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Site-ul de la această adresă nu este un site WordPress. Pentru a-l putea conecta, site-ul trebuie să folosească WordPress."; /* Message shown when site deletion API failed */ @@ -7388,7 +7253,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Tema a fost activată"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Teme"; @@ -7634,9 +7498,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Fus orar"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Este timpul să termini inițializarea site-ului! Lista noastră de verificări te ghidează prin pașii următori."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Timpul a expirat, dar nu îți face griji, securitatea ta este prioritatea noastră. Te rog să încerci din nou."; @@ -7688,9 +7549,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Pentru a folosi statisticile de pe site-ul tău, va trebui să instalezi modulul Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Ca să utilizezi această aplicație pentru %@, va trebui să ai instalat modulul Jetpack și să fie conectat la contul tău WordPress.com."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7569,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Comută stilul listei neordonate"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Unelte"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Cei mai activi comentatori"; @@ -7721,8 +7576,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Nivel superior"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Subiect"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7654,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Încearcă din nou"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Încearcă cu un alt cont"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Încearcă să ajustezi filtrul pentru intervalul de timp"; @@ -7882,9 +7733,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Scrie un nume pentru site-ul tău"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Tastează pentru a primi mai multe sugestii"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7990,12 +7838,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Nu pot încărca o ciornă de articol"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Nu pot încărca o ciornă de articol, %ld fișiere"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Nu pot încărca o ciornă de articol, un fișier"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Nu pot încărca un articol"; @@ -8050,8 +7892,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Anulează urmărirea"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Anulează urmărirea %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7908,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Nu urmăresc site-ul"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Blog neurmărit"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Anulează urmărirea blogului."; @@ -8239,18 +8077,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Încarc..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Încărcări eșuate"; - /* Use the current image */ "Use" = "Folosește"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Folosește %@ ca să găsești site-uri și etichete."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Folosește Sandbox Store"; - /* The button's title text to use a security key. */ "Use a security key" = "Folosește o cheie de securitate"; @@ -8298,9 +8130,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Confirmă autentificarea"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Confirmă-ți adresa de email - instrucțiunile au fost trimise la %@"; - /* Description for the version label in the What's new page. */ "Version " = "Versiune"; @@ -8509,9 +8338,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "Nu am putut să-ți creăm copia de siguranță. Te rog reîncearcă mai târziu."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Nu am putut găsi nicio adresă disponibilă cu cuvintele pe care le-ai introdus - hai să încercăm din nou."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Nu am putut publica această pagină, dar vom încerca din nou mai târziu."; @@ -8587,9 +8413,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Tocmai am trimis o legătură magică la"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Am făcut îmbunătățiri importante la editorul de blocuri și credem că merită să-l încerci!\n\nL-am activat pentru articole și pagini noi, dar dacă vrei să rămâi la editorul clasic mergi la „Site-ul meu” > „Setări site”."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "Am creat cu succes o copie de siguranță a site-ului tău la %@"; @@ -8599,9 +8422,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Folosim și alte instrumente de urmărire, inclusiv unele de la terți. Citește despre ele și despre cum le controlăm."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "Nu am putut detecta un site WordPress la adresa pe care ai introdus-o. Te rog asigură-te că WordPress este instalat și că rulează ultima versiune disponibilă."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "N-am putut să-ți trimitem un email acum. Te rog reîncearcă mai târziu."; @@ -8690,9 +8510,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Ți-am trimis prin email o legătură de înregistrare pentru a-ți crea noul cont WordPress.com. Verifică emailurile primite pe acest dispozitiv și atinge legătura din emailul primit de la WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Am avut probleme la modificarea domeniului principal pentru site-ul tău - dar nu-ți face griji, domeniul a fost cumpărat cu succes."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Adresă web"; @@ -8924,6 +8741,9 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of button that displays the Automattic Work With Us web page */ "Work With Us" = "Lucrează cu noi"; +/* No comment provided by engineer. */ +"Working Offline" = "Lucrează offline"; + /* Accessibility label for the Stats' world map. */ "World map showing views by country." = "Harta lumii care arată vizualizările pe țară."; @@ -8970,8 +8790,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Ani"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Da"; @@ -9071,7 +8890,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "You have 1 hidden WordPress site." = "Ai un site WordPress ascuns."; /* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "În planul tău ai o înregistrare gratuită pentru un domeniu în primul an"; +"You have a free one-year domain registration with your plan." = "În planul tău ai o înregistrare gratuită pentru un domeniu în primul an."; /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Ai actualizări premium active pe site. Te rog anulează actualizările înainte de a șterge site-ul."; @@ -9157,9 +8976,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Ai modificări nesalvate la acest articol"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Domeniile site-ului tău"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Iconul site-ului tău"; @@ -9187,9 +9003,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Prima copie de siguranță va fi gata în curând"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Adresa ta gratuită pentru WordPress.com este"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Noul tău domeniu %@ este în curs de inițializare. Poate dura până la 30 de minute înainte ca domeniul tău să fie funcțional."; @@ -9205,9 +9018,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Articolele, paginile și setările ți se vor trimite prin email la %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Adresa site-ului principal este ceea ce vor vedea vizitatorii în bara lor de adrese când îți vizitează site-ul."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Restaurarea ta durează mai mult decât de obicei, te rog verifică din nou în câteva minute."; @@ -9265,12 +9075,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Urmărești această conversație. Vei primi un email ori de câte ori apare un nou comentariu."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Acum folosești editorul de blocuri pentru pagini noi - foarte bine! Dacă vrei să treci la editorul clasic, mergi la „Site-ul meu > „Setări site”."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Acum folosești editorul de blocuri pentru articole noi - foarte bine! Dacă vrei să treci la editorul clasic, mergi la „Site-ul meu > „Setări site”."; - /* Comment Attachment Label */ "[COMMENT]" = "[COMENTARIU]"; @@ -9506,6 +9310,9 @@ Note that the word 'go' here should have a closer meaning to 'start' rather than /* Option for users to rate a chat bot answer as helpful. */ "chat.rateHelpful" = "Evaluează ca fiind util"; +/* Title for the checkout view */ +"checkout.title" = "Finalizare"; + /* Displayed in the confirmation alert when marking comment notifications as read. */ "comment" = "comentariu"; @@ -9656,27 +9463,58 @@ Example: Reply to Pamela Nguyen */ /* Title for the View stats button in the More menu */ "dashboardCard.stats.viewStats" = "Vezi statisticile"; +/* Debug menu item title */ +"debugMenu.analytics" = "Analytics"; + /* Feature flags menu item */ "debugMenu.featureFlags" = "Comutări funcționalități"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Generale"; +/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ +"debugMenu.readerCellTitle" = "URL CSS pentru Cititor"; + +/* Placeholder for the reader CSS URL */ +"debugMenu.readerDefaultURL" = "URL implicit"; + +/* Hint for the reader CSS URL field */ +"debugMenu.readerHit" = "Adaugă aici URL-ul pentru CSS-ul personalizat care să fie încărcat în Cititor. Dacă rulezi Calypso local, ar trebuie să fi ceva de genul: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; + +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.currentValue" = "Valoare curentă"; -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Parametrii contramandați sunt marcați cu o bifă."; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.defaultValue" = "Valoare implicită"; -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Contramandează parametrul ales prin definirea unei valori noi aici."; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.overridenValue" = "Configurare la distanță"; -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Nicio valoare implicită sau la distanță"; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.remoteConfigValue" = "Valoare pentru configurare la distanță"; -/* Remote Config debug menu title */ +/* Remote Config Debug Menu reset button title */ +"debugMenu.remoteConfig.reset" = "Resetează"; + +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Configurare la distanță"; /* Remove current quick start tour menu item */ "debugMenu.removeQuickStart" = "Înlătură turul curent"; +/* Debug Menu section title */ +"debugMenu.section.logging" = "Jurnalizare"; + +/* Debug Menu section title */ +"debugMenu.section.quickStart" = "Inițiere rapidă"; + +/* Debug Menu section title */ +"debugMenu.section.settings" = "Setări"; + +/* Title for debug menu screen */ +"debugMenu.title" = "Dezvoltator"; + +/* Weekly Roundup debug menu item */ +"debugMenu.weeklyRoundup" = "Rezumat săptămânal"; + /* Title for a menu action in the context menu on the Jetpack install card. */ "domain.dashboard.card.menu.hide" = "Ascunde asta"; @@ -9695,6 +9533,9 @@ Example: Reply to Pamela Nguyen */ /* The expired label of the domain card in All Domains screen. */ "domain.management.card.expired.label" = "Expirate"; +/* Label indicating that a domain name registration has no expiry date. */ +"domain.management.card.neverExpires.label" = "Nu expiră niciodată"; + /* The renews label of the domain card in All Domains screen. */ "domain.management.card.renews.label" = "Reînnoiri"; @@ -9788,6 +9629,15 @@ Example: Reply to Pamela Nguyen */ /* The text to display for paid domains in 'Site Creation > Choose a domain' screen */ "domain.suggestions.row.yearly" = "pe an"; +/* Help button */ +"domainSelection.helpButton.title" = "Ajutor"; + +/* Description for the first domain purchased with a free plan. */ +"domainSelection.redirectPrompt.title" = "Domeniile cumpărate pe acest site vor redirecționa la %1$@"; + +/* Search domain - Title for the Suggested domains screen */ +"domainSelection.search.title" = "Caută domenii"; + /* Title for the checkout screen. */ "domains.checkout.title" = "Finalizare"; @@ -9819,7 +9669,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Mai mult"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "exemplu.com"; @@ -10231,9 +10080,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "marcat ca spam"; -/* Products header text in Me Screen. */ -"me.products.header" = "Produse"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Nu pot să sincronizez elementele media"; @@ -10663,6 +10509,9 @@ Example: Reply to Pamela Nguyen */ /* Register Domain - Domain contact information field Phone */ "phone number" = "număr de telefon"; +/* Title for the plan selection view */ +"planSelection.title" = "Planuri"; + /* Post status and date for list cells with %@ a placeholder for the date. */ "post.createdTimeAgo" = "Creat %@"; @@ -10871,12 +10720,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Vezi toate răspunsurile"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Accesează Setări site pentru a le reactiva"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Îndemnuri pentru publicare ascunse"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Închide"; @@ -11101,6 +10944,30 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Site name that is placed in the tooltip view. */ "site.creation.domain.tooltip.site.name" = "numelesiteuluitau.com"; +/* Header of the secondary domains list section in the Domains Dashboard. %1$@ is the name of the site. */ +"site.domains.domainSection.title" = "Alte domenii pentru %1$@"; + +/* A section title which displays a row with a free WP.com domain */ +"site.domains.freeDomainSection.title" = "Domeniul tău gratuit WordPress.com"; + +/* Description for the first domain purchased with a paid plan. */ +"site.domains.freeDomainWithPaidPlan.description" = "Cu orice plan cu plată anuală, beneficiezi de înregistrarea gratuită a domeniului în primul an sau de transferul lui gratuit."; + +/* Title of the card that starts the purchase of the first domain with a paid plan. */ +"site.domains.freeDomainWithPaidPlan.title" = "Ia-ți domeniul"; + +/* Footer of the primary site section in the Domains Dashboard. */ +"site.domains.primaryDomain" = "Adresa site-ului principal este ceea ce vor vedea vizitatorii în bara lor de adrese când îți vizitează site-ul."; + +/* Primary domain label, used in the site address section of the Domains Dashboard. */ +"site.domains.primaryDomain.title" = "Domeniu principal"; + +/* Title for a button that opens domain purchasing flow. */ +"site.domains.purchaseDirectly.buttons.title" = "Caută pur și simplu un domeniu"; + +/* Title for a button that opens plan and domain purchasing flow. */ +"site.domains.purchaseWithPlan.buttons.title" = "Actualizează la un plan"; + /* Back button title shown in Site Creation flow to come back from Plan selection to Domain selection */ "siteCreation.domain.backButton.title" = "Domenii"; @@ -11422,9 +11289,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "Email"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "Forumuri WordPress"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "Centru de ajutor WordPress"; @@ -11617,6 +11481,9 @@ Example: given a notice format "Following %@" and empty site name, this will be /* This is a comma separated list of keywords used for spotlight indexing of the 'My Sites' tab. */ "wordpress, sites, site, blogs, blog" = "wordpress, site-uri, site, bloguri, blog"; +/* Error message that describes an unknown error had occured */ +"wordpress-api.error.unknown" = "Ceva nu a mers bine, te rog să reîncerci mai târziu."; + /* Jetpack Plugin Modal on WordPress primary button title */ "wordpress.jetpack.plugin.modal.primary.button.title" = "Comută la aplicația Jetpack"; @@ -11641,9 +11508,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Află mai multe"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "site-ul tău"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Autentifică-te cu Google."; diff --git a/WordPress/Resources/ru.lproj/Localizable.strings b/WordPress/Resources/ru.lproj/Localizable.strings index c10b87ebb087..f1138b556a30 100644 --- a/WordPress/Resources/ru.lproj/Localizable.strings +++ b/WordPress/Resources/ru.lproj/Localizable.strings @@ -1,4 +1,4 @@ -/* Translation-Revision-Date: 2024-01-03 14:54:09+0000 */ +/* Translation-Revision-Date: 2024-01-08 10:28:13+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/4.0.0-alpha.11 */ /* Language: ru */ @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nВведите ваше имя пользователя для подтверждения закрытия.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " в год"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "\"Ленивая загрузка\" изображений"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li слов, %2$li символов"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "Блок %s"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "настройки блока %s"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Добавить тему"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Добавьте URL пользовательской CSS для загрузки в Чтиве. Если вы используете локальную установку Calypso, то он может выглядеть примерно так: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Добавить домен"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Все годовые тарифные планы WordPress.com включают пользовательский домен. Зарегистрируйте ваш бесплатный домен."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Все тарифы WordPress.com включают возможность зарегистрировать пользовательское имя домена. Сделайте это сейчас."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Все комментарии"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Автоматически управляется на этом сайте"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Автоматическое продление включено"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Одобрять автоматически"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Блок продублирован"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Редактор блоков включен"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Блок сгруппирован"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Загрузка на сайт файлов с устройства или сделанных на камеру фото и видео."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Посмотрите все наши темы, чтобы найти свой идеал."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Защита от атак методом перебора"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Выберите сайт, чтобы открыть его."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Выберите тему"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Закрыть"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Готово: проверка названия сайта"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Готово: выбор темы"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Готово: Уникальный значок сайта выбран"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Завершено: подключение к другим сайтам"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Готово: продолжение настроек сайта"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Готово: создание сайта"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Готово: ознакомление с тарифами"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Готово: публикация записи"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Продолжить с Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Продолжить настройку сайта"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Продолжение через Apple"; @@ -1982,13 +1945,13 @@ translators: Block name. %s: The localized block name */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Невозможно подключиться к сайту WordPress. По этому адресу не обнаружена установка WordPress. Перепроверьте введенный адрес (URL)."; /* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Невозможно подключиться. Требуемые XML-RPC методы отсутствуют на сервере."; +"Couldn't connect. Required XML-RPC methods are missing on the server. Please contact your hosting provider to solve this problem." = "Не удалось подключиться. На сервере отсутствуют необходимые методы XML-RPC. Пожалуйста, свяжитесь с вашим хостинг-провайдером, чтобы решить эту проблему."; /* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Невозможно подключиться. Получена ошибка 403 при подключении к XMLRPC вашего сайта. Обратитесь в тех.поддержку хостинга."; +"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem." = "Невозможно подключиться. Получена ошибка 403 при подключении к XMLRPC вашего сайта. Обратитесь в тех.поддержку хостинга."; /* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Невозможно подключиться. Ваш хостинг блокирует POST-запросы XML-RPC, они требуются для обмена информацией с вашим сайтом. Обратитесь в тех. поддержку хостинга."; +"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Please contact your hosting provider to solve this problem." = "Невозможно подключиться. Ваш хостинг блокирует POST-запросы XML-RPC, они требуются для обмена информацией с вашим сайтом. Обратитесь в тех. поддержку хостинга."; /* Error message when tag loading failed */ "Couldn't load tags." = "Ошибка загрузки меток."; @@ -2021,9 +1984,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Код страны"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Журнал падений"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Отчеты о падениях"; @@ -2039,9 +1999,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Создать"; -/* Title for the site creation flow. */ -"Create New Site" = "Создать новый сайт"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2185,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Отладка"; -/* Debug settings title */ -"Debug Settings" = "Настройки отладки"; - /* Only December needs to be translated */ "December 17, 2017" = "Декабрь 17, 2017"; @@ -2252,9 +2206,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Основной формат записей"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "URL по умолчанию"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Параметры по умолчанию для новых записей"; @@ -2420,12 +2371,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Домены"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Домены зарегистрированные на этом сайте направят пользователей на %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Домены зарегистрированные на этом сайте направят пользователей на "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Нет учетной записи? _Зарегистрироваться_"; @@ -2595,8 +2540,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Изменить"; /* Title for the edit more button section */ @@ -2661,9 +2605,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Редактор"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Изменить комментарий"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Редактировать комментарий."; @@ -2791,9 +2732,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Введите пароль для защиты этой записи"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Введите другие слова выше и мы поищем адреса совпадающие с ними."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Введите пароль"; @@ -2979,24 +2917,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Разверните для выбора другой области меню"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Просрочено"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Истёк срок действия кода для входа"; /* Title. Indicates an expiration date. */ "Expires on" = "Истекает"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Истекает %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Объясните, о чём этот сайт."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Посмотрите тарифы"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Экспортировать содержимое"; @@ -3095,6 +3024,9 @@ translators: Block name. %s: The localized block name */ /* Label for the file type (.JPG, .PNG, etc) for a media asset (image / video) */ "File type" = "Тип файла"; +/* No comment provided by engineer. */ +"File type not supported as a media file." = "Тип файла не поддерживается в качестве медиафайла."; + /* Film & Television site intent topic */ "Film & Television" = "Кино и телевидение"; @@ -3182,8 +3114,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Читатели"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Наблюдается"; @@ -3200,9 +3131,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Читатели"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Подписка на блог"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Подписаться на блог."; @@ -3212,6 +3140,9 @@ translators: Block name. %s: The localized block name */ /* No comment provided by engineer. */ "Font Size" = "Размер шрифта"; +/* translators: %1$s: Font size name e.g. Small */ +"Font Size, %1$s" = "Размер шрифта: %1$s"; + /* Food site intent topic */ "Food" = "Еда"; @@ -3242,9 +3173,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Свободная фототека"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Бесплатно за первый год "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Освободите место на этом устройстве, удалив временные мультимедиа файлы. Это не затронет медиафайлы на вашем сайте."; @@ -3333,9 +3261,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Изучите приложение"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Получите собственный домен"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Получайте уведомления быстрее"; @@ -3360,9 +3285,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Назад"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Перейти к подписанным сайтам"; @@ -3401,18 +3323,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Руководство по проверке уведомлений."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Гид по процессу выбора темы для вашего сайта."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Гид по процессу создания новой страницы сайта."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Гид по процессу создания сайта."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Гид по тарифам для вашего сайта."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Гид по процессу подписки на другие сайты."; @@ -3428,9 +3344,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Гид по процессу установки названия вашего сайта."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Гид по процессу настройки сайта."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Гид по процессу загрузки значка для вашего сайта."; @@ -3584,9 +3497,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Не удалось обновить значок"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Если у вас уже есть сайт, вам необходимо установить бесплатный плагин Jetpack и подключить его к вашей учетной записи WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Если не удаётся найти письмо, проверьте папку спама или нежелательной почты."; @@ -3996,9 +3906,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Узнавайте о новых комментариях, отметках нравится и подписчиках за секунды."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Узнайте об инструментах маркетинга и SEO на платных тарифах."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4072,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Загрузка комментария..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Загрузка доменов"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Загрузка истории ..."; @@ -4619,8 +4523,11 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Требует обновления"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Бессрочно"; +/* No comment provided by engineer. */ +"Network connection lost, working offline" = "Сетевое соединение потеряно, работа в автономном режиме"; + +/* No comment provided by engineer. */ +"Network connection re-established" = "Сетевое соединение восстановлено"; /* Header of section in Plugin Directory showing newest plugins */ "New" = "Новые"; @@ -4696,9 +4603,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Нет элементов"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Нет сайтов с Jetpack"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Меню отсутствует"; @@ -4915,9 +4819,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Недостаточно места для загрузки"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Нет подписки"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4919,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5223,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Выберите имя пользователя"; -/* The item to select during a guided tour. */ -"Plan" = "Тариф"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Тарифные планы"; @@ -5642,9 +5539,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Основной сайт"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Основной адрес сайта"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Приватность"; @@ -5746,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Опубликовано"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Публикация на"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Публикация страницы..."; @@ -5770,9 +5661,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Push-уведомления отключены в настройках iOS. Включите \"Разрешить уведомления\"."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Быстрый старт"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Оцените нас"; @@ -5791,13 +5679,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Новости"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "URL CSS Чтива"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Чтение записей с других сайтов"; @@ -5958,9 +5842,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Если вы удалите подписчиков, они перестанут получать обновления с вашего сайта. При желании они по-прежнему смогут посещать ваш сайт и повторно подписаться на него."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Будет продлен %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Заменить текущий блок"; @@ -6093,7 +5974,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Повторить"; @@ -6147,6 +6027,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button label to open web page in Safari */ "Safari" = "Safari"; +/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ +"Sandbox Store" = "Магазин-песочница"; + /* Menus save button title Save Action Save button label (saving content, ex: Post, Page, Comment, Category). @@ -6315,9 +6198,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Посмотреть все"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "См. инструкции"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Следите в реальном времени за комментариями и уведомлениями."; @@ -6334,24 +6214,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Выберите %@ для создания новой записи"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Выберите %@ для поиска новых тем"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Нажмите %@, чтобы найти другие сайты."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Выберите %@ для просмотра статистики сайта."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Выберите %@ для просмотра списка"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Нажмите %@, чтобы открыть библиотеку."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Выберите %@ для просмотра вашего текущего тарифа и других доступных тарифов."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Выберите %@ для просмотра списка страниц."; @@ -6744,10 +6615,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Страница сайта"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Безопасность и производительность сайта\nв вашем кармане"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Часовой пояс сайта (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6669,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Некоторые данные не загружены"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Произошел сбой при загрузке некоторых медиафайлов. Это действие удалит из записи все медиафайлы, которые не удалось загрузить.\nВсе равно сохранить?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Что-то пошло не так..."; @@ -7348,7 +7212,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Сайт по адресу %1$@ использует WordPress %2$@. Рекомендуем обновить его до текущей версии или хотя бы до %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Сайт по этому адресу не является сайтом на WordPress. Мы не можем подключиться к нему."; /* Message shown when site deletion API failed */ @@ -7388,7 +7253,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Тема подключена"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Темы"; @@ -7634,9 +7498,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Часовой пояс"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Пора завершить настройки сайта! Наш список ведет вас к следующему шагу."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Время вышло, но не волнуйтесь, ваша безопасность — наш приоритет. Пожалуйста, попробуйте еще раз!"; @@ -7688,9 +7549,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Для сбора и просмотра статистики на сайте требуется установить плагин Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Чтобы использовать это приложение для %@, нужно установить и подключить плагин Jetpack."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7569,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Переход к неупорядоченному списку"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Инструменты"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Наиболее активные комментаторы"; @@ -7721,8 +7576,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Верхний уровень"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Тема"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7654,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Попробуйте еще раз."; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Использовать другую учётную запись"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Попробуйте задать иной диапазон дат"; @@ -7882,9 +7733,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Выберите название для вашего сайта"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Пишите для получения еще предложений"; - /* URL text field placeholder */ "URL" = "URL-адрес"; @@ -7990,12 +7838,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Невозможно загрузить 1 запись черновика"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Невозможно загрузить 1 запись черновика, %ld файлов"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Невозможно загрузить 1 запись черновика, 1 файл"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Невозможно загрузить 1 запись"; @@ -8050,8 +7892,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Отменить подписку"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Отписаться от %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7908,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Отписались от сайта"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Отписаться от блога"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Отписаться от блога."; @@ -8239,18 +8077,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Загрузка..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Сбой загрузок"; - /* Use the current image */ "Use" = "Использовать"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Используйте %@ для поиска сайтов и меток."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Использовать магазин-песочницу"; - /* The button's title text to use a security key. */ "Use a security key" = "Использовать ключ безопасности"; @@ -8298,9 +8130,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Проверка данных при входе"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Проверьте ваш адрес электронной почты, инструкции отосланы на %@"; - /* Description for the version label in the What's new page. */ "Version " = "Версия"; @@ -8509,9 +8338,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "Не удалось создать резервную копию. Попробуйте позже."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Мы не нашли доступных адресов с введенным ключевым словом, попробуйте еще."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Невозможно опубликовать страницу, но мы попробуем ещё раз позже."; @@ -8587,9 +8413,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Только что мы отправили специальную ссылку на"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Мы значительно улучшили редактор блоков. Вы должны его попробовать!\n\nМы включили редактор блоков для новых записей и страниц. Если вы захотите вернуться на классический редактор, то перейдите в 'Мой сайт' > 'Настройки сайта'."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "Мы создали резервную копию вашего сайта на %@"; @@ -8599,9 +8422,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Мы используем другие инструменты отслеживания, включая и инструменты третьих сторон. Прочитайте о них и как их контролировать."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "Мы не смогли найти сайт WordPress по указанному вами адресу. Убедитесь, что WordPress установлен и вы используете самую последнюю версию."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "Мы не смогли отправить вам сообщение по эл.почте. Попробуйте еще раз позже."; @@ -8690,9 +8510,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Мы отослали вам ссылку для создания учётной записи WordPress.com. Проверьте почту на вашем устройстве и нажмите на ссылку, полученную с WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Возникла проблема смены основного домена для вашего сайта, но не волнуйтесь, ваш домен был успешно зарегистрирован."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Веб-адрес"; @@ -8924,6 +8741,9 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of button that displays the Automattic Work With Us web page */ "Work With Us" = "Работа у нас"; +/* No comment provided by engineer. */ +"Working Offline" = "Автономная работа"; + /* Accessibility label for the Stats' world map. */ "World map showing views by country." = "Карта мира с представлением просмотров по странам."; @@ -8970,8 +8790,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Годы"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Да"; @@ -9071,7 +8890,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "You have 1 hidden WordPress site." = "У вас 1 скрытый сайт WordPress."; /* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "На вашем тарифе возможно зарегистрировать бесплатно домен сроком на 1 год"; +"You have a free one-year domain registration with your plan." = "На вашем тарифе возможно зарегистрировать бесплатно домен сроком на 1 год."; /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "На вашем сайте есть активные платные услуги. Если вы хотите удалить свой сайт, отключите платные услуги."; @@ -9157,9 +8976,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Вы внесли, но не сохранили изменения в эту запись"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Домены вашего сайта"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Значок вашего сайта"; @@ -9187,9 +9003,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Ваша первая резервная копия скоро будет готова"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Адрес вашего сайта (бесплатный) на WordPress.com -"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Ваш новый домен %@ настраивается, это может занять до 30 минут пока он станет доступен."; @@ -9205,9 +9018,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Ваши записи, страницы и настройки будут отправлены вам по электронной почте %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Основной домен — это адрес, который будут видеть пользователи в браузере при посещении вашего сайта."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Восстановление занимает больше времени чем обычно, проверьте снова через несколько минут."; @@ -9265,12 +9075,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Вы подписаны на эту беседу. Вы получите сообщение по Email при появлении новых комментариев."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Сейчас вы используете редактор блоков для новых страниц. Отлично! Если захотите изменить редактор на классический, то сделайте это в 'Мой сайт'>'Настройки сайта',"; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Сейчас вы используете редактор блоков для новых записей. Отлично! Если захотите изменить редактор на классический, то сделайте это в 'Мой сайт'>'Настройки сайта',"; - /* Comment Attachment Label */ "[COMMENT]" = "[COMMENT]"; @@ -9506,6 +9310,9 @@ Note that the word 'go' here should have a closer meaning to 'start' rather than /* Option for users to rate a chat bot answer as helpful. */ "chat.rateHelpful" = "Оценить как полезное"; +/* Title for the checkout view */ +"checkout.title" = "Оформление заказа"; + /* Displayed in the confirmation alert when marking comment notifications as read. */ "comment" = "комментарий"; @@ -9656,27 +9463,58 @@ Example: Reply to Pamela Nguyen */ /* Title for the View stats button in the More menu */ "dashboardCard.stats.viewStats" = "Просмотр статистики"; +/* Debug menu item title */ +"debugMenu.analytics" = "Аналитика"; + /* Feature flags menu item */ "debugMenu.featureFlags" = "Отметки возможностей"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Общее"; +/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ +"debugMenu.readerCellTitle" = "URL CSS Чтива"; + +/* Placeholder for the reader CSS URL */ +"debugMenu.readerDefaultURL" = "URL по умолчанию"; + +/* Hint for the reader CSS URL field */ +"debugMenu.readerHit" = "Добавьте сюда собственный URL-адрес CSS для загрузки в Чтиво. Если вы используете Calypso локально, это может выглядеть примерно так: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; + +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.currentValue" = "Текущее значение"; -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Переопределенные параметры обозначаются галочкой."; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.defaultValue" = "Значение по умолчанию"; -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Выберите новое значение здесь, чтобы переопределить выбранный параметр."; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.overridenValue" = "Удаленная конфигурация"; -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Нет удаленного значения или значения по умолчанию"; +/* Remote Config Debug Menu section title */ +"debugMenu.remoteConfig.remoteConfigValue" = "Удаленная конфигурация, значение"; -/* Remote Config debug menu title */ +/* Remote Config Debug Menu reset button title */ +"debugMenu.remoteConfig.reset" = "Сброс"; + +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Удаленная настройка"; /* Remove current quick start tour menu item */ "debugMenu.removeQuickStart" = "Удалить текущий тур"; +/* Debug Menu section title */ +"debugMenu.section.logging" = "Журналирование"; + +/* Debug Menu section title */ +"debugMenu.section.quickStart" = "Быстрый старт"; + +/* Debug Menu section title */ +"debugMenu.section.settings" = "Настройки"; + +/* Title for debug menu screen */ +"debugMenu.title" = "Разработчику"; + +/* Weekly Roundup debug menu item */ +"debugMenu.weeklyRoundup" = "За неделю"; + /* Title for a menu action in the context menu on the Jetpack install card. */ "domain.dashboard.card.menu.hide" = "Свернуть"; @@ -9695,6 +9533,9 @@ Example: Reply to Pamela Nguyen */ /* The expired label of the domain card in All Domains screen. */ "domain.management.card.expired.label" = "Срок истек"; +/* Label indicating that a domain name registration has no expiry date. */ +"domain.management.card.neverExpires.label" = "Бессрочно"; + /* The renews label of the domain card in All Domains screen. */ "domain.management.card.renews.label" = "Продление"; @@ -9788,6 +9629,15 @@ Example: Reply to Pamela Nguyen */ /* The text to display for paid domains in 'Site Creation > Choose a domain' screen */ "domain.suggestions.row.yearly" = "в год"; +/* Help button */ +"domainSelection.helpButton.title" = "Помощь"; + +/* Description for the first domain purchased with a free plan. */ +"domainSelection.redirectPrompt.title" = "Домены зарегистрированные на этом сайте направят пользователей на %1$@"; + +/* Search domain - Title for the Suggested domains screen */ +"domainSelection.search.title" = "Поиск доменов"; + /* Title for the checkout screen. */ "domains.checkout.title" = "Оформить"; @@ -9819,7 +9669,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Ещё"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10231,9 +10080,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "отмечено как спам"; -/* Products header text in Me Screen. */ -"me.products.header" = "Товары"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Невозможно синхронизировать медиа"; @@ -10663,6 +10509,9 @@ Example: Reply to Pamela Nguyen */ /* Register Domain - Domain contact information field Phone */ "phone number" = "номер телефона"; +/* Title for the plan selection view */ +"planSelection.title" = "Тарифы"; + /* Post status and date for list cells with %@ a placeholder for the date. */ "post.createdTimeAgo" = "Создана %@"; @@ -10871,12 +10720,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Посмотреть все ответы"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Посетите настройки сайта, чтобы снова включить"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Подсказки для ведения блога скрыты"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Закрыть"; @@ -11101,6 +10944,30 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Site name that is placed in the tooltip view. */ "site.creation.domain.tooltip.site.name" = "YourSiteName.com"; +/* Header of the secondary domains list section in the Domains Dashboard. %1$@ is the name of the site. */ +"site.domains.domainSection.title" = "Другие домены для %1$@"; + +/* A section title which displays a row with a free WP.com domain */ +"site.domains.freeDomainSection.title" = "Бесплатный домен WordPress.com"; + +/* Description for the first domain purchased with a paid plan. */ +"site.domains.freeDomainWithPaidPlan.description" = "Получите бесплатную регистрацию домена на один год или перенесите его с любым годовым платным планом."; + +/* Title of the card that starts the purchase of the first domain with a paid plan. */ +"site.domains.freeDomainWithPaidPlan.title" = "Получите собственный домен"; + +/* Footer of the primary site section in the Domains Dashboard. */ +"site.domains.primaryDomain" = "Основной домен — это адрес, который будут видеть пользователи в браузере при посещении вашего сайта."; + +/* Primary domain label, used in the site address section of the Domains Dashboard. */ +"site.domains.primaryDomain.title" = "Основной домен"; + +/* Title for a button that opens domain purchasing flow. */ +"site.domains.purchaseDirectly.buttons.title" = "Просто найти домен"; + +/* Title for a button that opens plan and domain purchasing flow. */ +"site.domains.purchaseWithPlan.buttons.title" = "Улучшение тарифа"; + /* Back button title shown in Site Creation flow to come back from Plan selection to Domain selection */ "siteCreation.domain.backButton.title" = "Домены"; @@ -11422,9 +11289,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "Электронная почта"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "Форумы WordPress"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "Помощь WordPress"; @@ -11617,6 +11481,9 @@ Example: given a notice format "Following %@" and empty site name, this will be /* This is a comma separated list of keywords used for spotlight indexing of the 'My Sites' tab. */ "wordpress, sites, site, blogs, blog" = "wordpress, сайты, сайт, блоги, блог"; +/* Error message that describes an unknown error had occured */ +"wordpress-api.error.unknown" = "Что-то пошло не так, пожалуйста, повторите попытку позже."; + /* Jetpack Plugin Modal on WordPress primary button title */ "wordpress.jetpack.plugin.modal.primary.button.title" = "Перейти в приложение Jetpack"; @@ -11641,9 +11508,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Подробнее"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "ваш сайт"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Войти через Google."; diff --git a/WordPress/Resources/sk.lproj/Localizable.strings b/WordPress/Resources/sk.lproj/Localizable.strings index 50bbd623fc27..8abae3ee0f03 100644 --- a/WordPress/Resources/sk.lproj/Localizable.strings +++ b/WordPress/Resources/sk.lproj/Localizable.strings @@ -519,9 +519,6 @@ /* Text snippet summarizing what comment paging does. */ "Break comment threads into multiple pages." = "Rozdeliť vlákna komentárov do viacej stránok."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Prehliadajte všetky naše témy, aby ste našli takú, ktorá sa vám perfektne hodí."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Ochrana pred útokom hrubou silou"; @@ -676,8 +673,7 @@ /* Overlay message displayed while checking if site has premium purchases */ "Checking purchases…" = "Kontrola nákupov"; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Vyberte tému"; /* Label for button that clears all media cache. */ @@ -706,7 +702,6 @@ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Zavrieť"; @@ -869,9 +864,6 @@ /* Part of a prompt suggesting that there is more content for the user to read. */ "Continue reading" = "Čítať ďalej"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Pokračovať s nastaveniami webovej stránky"; - /* Title of button that displays the WordPress.org contributor page */ "Contribute" = "Prispieť"; @@ -920,15 +912,6 @@ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Nepodarilo sa pripojiť k webovej stránke WordPress. Neexistuje žiadna platná webová stránka WordPress na tejto adrese. Skontrolujte adresu webovej stránky (URL), ktorú ste zadali. "; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Nepodarilo sa pripojiť. Požadované XML-RPC metódy chybájú na serveri. "; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Nepodarilo sa pripojiť. Vyskytla sa chyba 403 pri pokuse pripojiť sa na koncový bod webovej stránky XMLRPC. Aplikácia ho potrebuje na komunikáciu s webovou stránkou. Kontaktujte svojho poskytovateľa hostingu a vyriešte problém."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Nepodarilo sa pripojiť. Váš host blokuje žiadosti článku. Aplikácia žiadosti potrebuje na komunikáciu s webovou stránkou. Kontaktujte svojho hostiteľa a vyriešte problém."; - /* Error message when tag loading failed */ "Couldn't load tags. Tap to retry." = "Značky sa nepodarilo načítať. Ťuknutím to zopakujte."; @@ -945,9 +928,6 @@ /* The button title text for creating a new account. */ "Create Account" = "Vytvoriť účet"; -/* Title for the site creation flow. */ -"Create New Site" = "Vytvoriť novú webovú stránku"; - /* Button to progress to the next step Site creation. Step 1. Screen title Title for the button to progress with creating the site with the selected design. */ @@ -1171,8 +1151,7 @@ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Upraviť"; /* Title for the edit more button section */ @@ -1201,9 +1180,6 @@ /* Title for the editor settings section */ "Editor" = "Editor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Upraviť komentár"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Upravuje komentár."; @@ -1265,9 +1241,6 @@ /* No comment provided by engineer. */ "Enter a password" = "Zadajte heslo"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Zadajte rôzne slová a vyhľadáme adresu, ktorá sa zhoduje."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Vložte heslo"; @@ -1466,8 +1439,7 @@ Label for number of followers. */ "Followers" = "Odberatelia"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Nasledujúce"; @@ -1475,9 +1447,6 @@ /* Filters Follows Notifications */ "Follows" = "Odbery"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Sledovať blog"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Sledovať blog."; @@ -1521,9 +1490,6 @@ /* Cancel */ "Give Up" = "Vzdať sa"; -/* No comment provided by engineer. */ -"Go back" = "Späť"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Prejsť na nasledujúce"; @@ -1923,9 +1889,6 @@ /* Text displayed while loading the scan section for a site */ "Loading Scan..." = "Načítavanie štatistík..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Načítavajú sa domény"; - /* Menus label text displayed when a menu is loading. */ "Loading menu..." = "Načítanie menu..."; @@ -2340,9 +2303,6 @@ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Nedostatok miesta na nahranie"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Nesledované"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -2395,7 +2355,6 @@ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -2821,9 +2780,6 @@ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Push notifikácie boli vypnuté v iOS nastaveniach. Prepnite možnosť \"Povoliť upozornenia\" a zapnite ich späť."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Rýchly štart"; - /* In the share extension, this is the text used right before attributing a quote to a website. Example: 'Read on www.site.com'. We are looking for the 'Read on' text in this situation. */ "Read on" = "Prečítať na "; @@ -2839,8 +2795,7 @@ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Čítačka"; /* Title for a list of ssettings for editing a blog's Reblog and Like settings. */ @@ -3005,7 +2960,6 @@ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Obnoviť"; @@ -3132,12 +3086,6 @@ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Zvoľte %@ a vytvorte nový článok "; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Zvoľte %@ a objavte nové témy"; - -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Zvoľte %@ a zobrazte váš zoznam"; - /* Blog Picker's Title */ "Select Site" = "Vybrať webovú stránku"; @@ -3350,9 +3298,6 @@ /* Label for the slug field. Should be the same as WP core. */ "Slug" = "Slug"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Niektoré nahrávania súborov zlyhali. Táto akcia vymaže všetky neúspešne nahrané súbory. \nZachrániť niektoré?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Niečo sa pokazilo"; @@ -3695,7 +3640,6 @@ "Theme Activated" = "Téma aktivovaná"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Témy"; @@ -3838,9 +3782,6 @@ Title for the time zone selector */ "Time Zone" = "Časová zóna"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Čas na ukončenie nastavení webovej stránky. Zoznám vám ukáže ďalšie kroky."; - /* WordPress.com Marketing Footer Text */ "Tips for getting the most out of WordPress.com." = "Tipy ako využiť služby WordPress.com čo najlepšie."; @@ -3889,8 +3830,7 @@ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Najvyššia úroveň"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Téma"; /* Used when a Reader Topic is not found for a specific id */ @@ -4006,12 +3946,6 @@ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Nepodarilo sa nahrať 1 koncept príspevku"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Nepodarilo sa nahrať 1 koncept príspevku, %ld súborov"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Nepodarilo sa nahrať 1 koncept príspevku, 1 súbor"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Nepodarilo sa nahrať 1 článok"; @@ -4061,9 +3995,6 @@ User unfollowed a site. */ "Unfollowed site" = "Sledovanie webovej stránky zrušené"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Zrušiť sledovanie blogu"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Prestať sledovať tento blog."; @@ -4176,9 +4107,6 @@ /* Label to show while uploading media to server */ "Uploading..." = "Nahráva sa..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Nahrávanie zlyhalo"; - /* Use the current image */ "Use" = "Použiť"; @@ -4317,9 +4245,6 @@ /* Error message displayed when a refresh is taking longer than usual. The refresh hasn't failed and it might still succeed */ "We are having trouble loading data" = "Máme problémy s načítaním dát"; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Nevedeli sme nájsť žiadnu dostupnú adresu obsahujúca slová, ktoré ste zadali - skúste neskôr ešte raz."; - /* Message to show when Keyring connection synchronization failed. %@ is a service name like Facebook or Twitter */ "We had trouble loading connections for %@" = "Máme problém s načítavaním pripojenia pre %@"; @@ -4481,8 +4406,7 @@ /* Title of Years stats filter. */ "Years" = "Roky"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Áno"; diff --git a/WordPress/Resources/sq.lproj/Localizable.strings b/WordPress/Resources/sq.lproj/Localizable.strings index c9c4ffd4f5ed..bb7deb48fc64 100644 --- a/WordPress/Resources/sq.lproj/Localizable.strings +++ b/WordPress/Resources/sq.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nQë ta ripohoni, ju lutemi, rijepni emrin tuaj të përdoruesit para mbylljes.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/ vit"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Figura “Lazy-load”"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li fjalë, %2$li shenja"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "Bllok %s"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "Mundësi blloku %s"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Shtoni një temë"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Shtoni këtu një URL CSS-je vetjake që të ngarkohet në Lexues. Nëse xhironi Calypso-n lokalisht, kjo mund të ishte diçka si: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Shtoni përkatësi"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Krejt planet vjetore WordPress.com përmbajnë një emër përkatësie vetjake. Regjistrohuni që tani për të marrë falas përkatësinë tuaj."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Krejt planet WordPress.com përfshijnë një emër vetjak përkatësie. Regjistroni falas që tani përkatësinë tuaj."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Krejt komentet"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "E vetëadministruar në këtë sajt"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Vetërinovim i aktivizuar"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Miratoji Vetvetiu"; @@ -1109,9 +1092,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Blloku u përsëdyt"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Përpunuesi me blloqe i aktivizuar"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Blloku u grupua"; @@ -1201,9 +1181,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Sillni te sajti juaj media drejt e nga pajisja apo kamera juaj."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Shfletoni krejt temat tuaja që të gjeni përputhjen e përsosur."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Mbrojtje Nga Sulme Brute Force<\/em>"; @@ -1496,8 +1473,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Zgjidhni një sajt për hapje."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Zgjidhni një temë"; /* Select the site's intent. Subtitle */ @@ -1586,7 +1562,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Mbylle"; @@ -1727,24 +1702,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "E plotësuar: Kontrolloni titullin e sajtit tuaj"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "E plotësuar: Zgjidhni një temë"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "E plotësuar: Zgjidhni një ikonë sajti unike"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "I plotësuar: Lidhuni me sajte të tjerë"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "E plotësuar: Vazhdoni me rregullimin e sajtit"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "E plotësuar: Krijoni sajtin tuaj"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "E plotësuar: Eksploroni plane"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "E plotësuar: Botoni një postim"; @@ -1882,9 +1848,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Vazhdoni me Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Vazhdoni me rregullimin e sajtit"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Po vazhdohet me Apple"; @@ -1978,15 +1941,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "S’u lidh dot te sajt WordPress. S’ka sajt WordPress të vlefshëm në këtë adresë. Kontrolloni adresën (URL) të sajtit që dhatë."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "S’u lidh dot. Te shërbyesi mungojnë metodat e domosdoshme XML-RPC."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "S’u bë dot lidhja. Morëm një gabim 403, kur u provua të hyhej në pikëmbarim XMLRPC të sajtit tuaj. Kjo i duhet aplikacionit, që të mund të komunikojë me sajtin tuaj. Lidhuni me strehuesin tuaj që ta zgjidhni këtë problem."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "S’u bë dot lidhja. Strehuesi juaj i bllokon kërkesat POST, dhe aplikacionit i duhen që të mund të komunikojë me sajtin tuaj. Lidhuni me strehuesin tuaj që ta zgjidhni këtë problem."; - /* Error message when tag loading failed */ "Couldn't load tags." = "S’u ngarkuan dot etiketa."; @@ -2018,9 +1972,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Kod Vendi"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Regjistrim Vithisjesh"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Njoftime vithisjesh"; @@ -2036,9 +1987,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Krijoni të Ri"; -/* Title for the site creation flow. */ -"Create New Site" = "Krijoni Sajt të Ri"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2222,9 +2170,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Diagnostikim"; -/* Debug settings title */ -"Debug Settings" = "Rregullime Diagnostikimi"; - /* Only December needs to be translated */ "December 17, 2017" = "17 Dhjetor, 2017"; @@ -2246,9 +2191,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Format Parazgjedhje Postimesh"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "URL Parazgjedhje"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Parazgjedhje për Postime të Reja"; @@ -2411,12 +2353,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Përkatësi"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Përkatësitë e blera në këtë sajt do t’i ridrejtojnë vizitorët te %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Përkatësitë e blera në këtë sajt do t’i ridrejtojnë vizitorët te "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "S’keni llogari? _Regjistrohuni_"; @@ -2586,8 +2522,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Përpunoni"; /* Title for the edit more button section */ @@ -2652,9 +2587,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Redaktor"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Përpunon një koment"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Përpunon komentin."; @@ -2782,9 +2714,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Jepni një fjalëkalim për mbrojtjen e këtij postimi"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Jepni më sipër fjalë të ndryshme dhe do të kërkojmë për një adresë që ka të tilla."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Jepni fjalëkalim"; @@ -2970,24 +2899,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Zgjerohet për të përzgjedhur një zonë tjetër menuje"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "I skaduar"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Kod hyrjeje i skaduar"; /* Title. Indicates an expiration date. */ "Expires on" = "Skadon më"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Skadon më %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Shpjegoni se për çfarë është ky sajt."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Eksploroni plane"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Eksporto Lëndë"; @@ -3170,8 +3090,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Ndjekës"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "E ndiqni"; @@ -3188,9 +3107,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Ndiqet"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Ndjek blogun"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Ndjek blogun."; @@ -3230,9 +3146,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Fototekë e Lirë"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Falas për vitin e parë "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Lironi ca hapësirë depozitimi në këtë pajisje duke fshirë kartela të përkohshme mediash. Kjo nuk do të prekë mediat në sajtin tuaj."; @@ -3321,9 +3234,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Njihuni me aplikacionin"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Merrni përkatësinë tuaj"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Merrini më shpejtë njoftimet tuaja"; @@ -3348,9 +3258,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Shko mbrapsht"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Shko Te Vijuesja"; @@ -3389,18 +3296,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Ju udhëheq përmes procesit të parjes së njoftimeve tuaja."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Ju udhëheq përmes procesit të të zgjedhjes së një teme për sajtin tuaj."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Ju udhëheq përmes procesit të krijimit të një faqeje të re për sajtin tuaj."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Ju udhëheq përmes procesit të krijimit të sajtit tuaj."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Ju udhëheq përmes procesit të eksplorimit të planeve për sajtin tuaj."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Ju udhëheq përmes procesit të ndjekjes së sajteve të tjerë."; @@ -3416,9 +3317,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Ju udhëheq përmes procesit të ujdisjes së titullit të sajtit tuaj."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Ju udhëheq përmes procesit të ujdisjes së sajtit tuaj."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Ju udhëheq përmes procesit të ngarkimit të një ikone për sajtin tuaj."; @@ -3572,9 +3470,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Përditësimi i ikonës dështoi"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Keni tashmë një sajt, do t’ju duhet të instaloni shtojcën e lirë Jetpack dhe ta lidhni me llogarinë tuaj WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Nëse s’e gjeni dot email-in, ju lutemi, shihni te dosja juaj Hedhurina, ose ajo Të padëshiruar"; @@ -3984,9 +3879,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Mësoni brenda sekondash rreth komentesh, pëlqimesh dhe ndjekjesh të reja."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Mësoni rreth mjetesh marketingu dhe SEO në planet tona me pagesë."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4153,9 +4045,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Po ngarkohet koment…"; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Po ngarkohen përkatësi"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Po ngarkohet historiku…"; @@ -4607,9 +4496,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Lyp Përditësim"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Nuk skadon kurrë"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "E re"; @@ -4684,9 +4570,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "S’ka Objekte"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "S’u gjetën sajte Jetpack"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Pa Menu"; @@ -4903,9 +4786,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Hapësirë e pamjaftueshme për ngarkim"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Nuk e ndiqni"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5006,7 +4886,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5308,9 +5187,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Zgjidhni emër përdoruesi"; -/* The item to select during a guided tour. */ -"Plan" = "Plan"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Plane"; @@ -5627,9 +5503,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Sajti Parësor"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Adresë parësore sajti"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Privatësi"; @@ -5731,9 +5604,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Botuar më"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Botim Te"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Po botohet faqe…"; @@ -5755,9 +5625,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Njoftimet push janë çaktivizuar te rregullimet e iOS-it. Që t’i lejoni sërish, kaloni nën “Lejo Njoftime”."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Nisje e Shpejtë"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Vlerësonani"; @@ -5776,13 +5643,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Lexues"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "URL CSS-je Lexuesi"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Lexim postimesh nga sajte të tjerë"; @@ -5943,9 +5806,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Heqja e ndjekësve bën që ata të reshtin së marri përditësime nga sajti juaj. Nëse vendosin kështu, prapë mund të vizitojnë sajtin tuaj dhe ta ndjekin sërish."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Rinovohet më %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Zëvendëso Bllokun e Tanishëm"; @@ -6078,7 +5938,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Riprovo"; @@ -6300,9 +6159,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Shihini Krejt"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Shihni Udhëzimet"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Shihni aty për aty komente dhe njoftime."; @@ -6319,24 +6175,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Përzgjidhni %@ që të krijoni një postim të ri"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Përzgjidhni %@ që të zbuloni tema të reja"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Përzgjidhni %@ që të gjenden sajte të tjerë."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Përzgjidhni %@ që të shihni se si po ecën sajti juaj."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Përzgjidhni %@ që të shihni listën tuaj"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Përzgjidhni %@ që të shihni mediatekën tuaj të tanishme."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Përzgjidhni %@ që të shihni planin tuaj të tanishëm dhe të tjerë plane të mundshëm."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Përzgjidhni %@ që të shihni listën tuaj të faqeve."; @@ -6729,10 +6576,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Faqe sajti"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Siguri dhe funksionim sajti\nqë nga xhepi"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Zonë kohore e sajtit (UTC%1$@%2$d%3$@)"; @@ -6784,9 +6627,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "S’u ngarkuan ca të dhëna"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Ngarkimi i disa mediave dështoi. Ky veprim do të sjellë heqjen nga postimi të krejt mediave që dështuan.\nTë ruhet, sido qoftë?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Diç shkoi ters"; @@ -7330,7 +7170,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Sajti te %1$@ përdor %2$@. Këshillojmë ta përditësoni me versionin më të ri, ose të paktën %3$@"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Sajti në këtë adresë s’është sajt WordPress. Që të lidhemi me të, sajti duhet të përdorë WordPress."; /* Message shown when site deletion API failed */ @@ -7370,7 +7211,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Tema u Aktivizua"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Tema"; @@ -7616,9 +7456,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Zonë Kohore"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Erdhi koha të përfundohet rregullimi i sajtit tuaj! Lista jonë e hapave ju udhëheq nëpër ata vijuesit."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Po mbaron koha, por mos u bëni merak, siguria juaj është përparësia jonë. Ju lutemi, riprovoni!"; @@ -7670,9 +7507,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Që të shihni statistika në sajtin tuaj, do t;ju duhet të instaloni shtojcën Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Që të përdorni këtë aplikacion për %@ do t’ju duhet të keni të instaluar dhe të aktivizuar shtojcën Jetpack."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7693,9 +7527,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Aktivizon\/Çaktivizon stilin Listë e Parenditur"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Mjete"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Komentuesit Kryesues"; @@ -7703,8 +7534,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Shkalla e epërme"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Temë"; /* Used when a Reader Topic is not found for a specific id */ @@ -7782,9 +7612,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Riprovoni"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Provoni Me Tjetër Llogari"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Provoni të ndryshoni intervalin tuaj të datave"; @@ -7864,9 +7691,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Shtypni një emër për sajtin tuaj"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Shtypni që të merrni më tepër sugjerime"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7972,12 +7796,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "S’arrihet të ngarkohet 1 skicë postimi"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "S’arrihet të ngarkohet 1 skicë postimi, %ld kartela"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "S’arrihet të ngarkohet 1 skicë postimi, 1 kartelë"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "S’arrihet të ngarkohet 1 postim"; @@ -8032,8 +7850,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Mos e ndiq"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Hiqe ndjekjen e %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8049,9 +7866,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "U hoq ndjekje sajti"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "E ndal ndjekjen e blogut"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Ndal ndjekjen e blogut."; @@ -8221,18 +8035,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Po ngarkohet…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Ngarkimet dështuan"; - /* Use the current image */ "Use" = "Përdore"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Përdorni %@ që të gjeni sajte dhe etiketa."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Përdor Shitore Bankëprovë"; - /* The button's title text to use a security key. */ "Use a security key" = "Përdorni një kyç sigurie"; @@ -8280,9 +8088,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Verifiko Hyrjen"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Verifikoni adresën tuaj email - udhëzimet u dërguan te %@"; - /* Description for the version label in the What's new page. */ "Version " = "Version "; @@ -8491,9 +8296,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "S’e krijuam dot kopjeruajtjen tuaj. Ju lutemi, riprovoni më vonë."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "S’gjetëm dot ndonjë adresë të gatshme me fjalët që dhatë - le të riprovojmë."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "S’e botuam dot këtë faqe, por do të riprovojmë më vonë."; @@ -8569,9 +8371,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Sapo dërguam një lidhje magjike te"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Kemi bërë përmirësime të mëdha te përpunuesi me blloqe dhe mendojmë se ia vlen të provohet!\n\nE kemi aktivizuar për postime dhe faqe të reja, por nëse doni ta këmbeni me përpunuesin klasik, kaloni te 'Sajti Im' > 'Rregullime Sajti'."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "Krijuam me sukses një kopjeruajtje të sajtit tuaj, siç qe më %1$@"; @@ -8581,9 +8380,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Përdorim mjete të tjera gjurmimi, përfshi disa të tillë nga palë të treta. Lexoni rreth tyre dhe se si t’i mbani nën kontroll."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "S’qemë në gjendje të pikasim një sajt WordPress te adresa që dhatë. Ju lutemi, sigurohuni se WordPress-i është i instaluar dhe se po xhironi versionin më të ri në qarkullim."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "S’qemë në gjendje t’ju dërgonim një email këtë herë. Ju lutemi, riprovoni më vonë."; @@ -8672,9 +8468,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Ju dërguam me email një lidhje regjistrimi për të krijuar llogarinë tuaj të re WordPress.com. Kontrolloni email-et në këtë pajisje dhe prekni lidhjen te email-i i ardhur nga WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Patëm probleme me ndryshimin e përkatësisë parësore në sajtin tuaj — por mos u bëni merak, përkatësia juaj u ble me sukses."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Adresë Web"; @@ -8952,8 +8745,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Vite"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Po"; @@ -9052,9 +8844,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "Keni 1 sajt WordPress të fshehur."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "Me planin tuaj keni të përfshirë një regjistrim përkatësie falas për një vit"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Keni përmirësime me pagesë aktive në sajtin tuaj. Ju lutemi, para se të fshini sajtin, anulojini përmirësimet tuaja."; @@ -9139,9 +8928,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Keni bërë ndryshime të paruajtura në këtë postim"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Përkatësitë e Sajtit Tuaj"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Ikona e Sajtit Tuaj"; @@ -9169,9 +8955,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Kopjeruajtja juaj e parë do të jetë gati së shpejti"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Adresa juaj falas WordPress.com është"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Përkatësia juaj e re %@ po ujdiset. Mund të duhen deri në 30 minuta që përkatësia juaj të fillojë të funksionojë."; @@ -9187,9 +8970,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Postimet, faqet dhe rregullimet tuaja do t’ju dërgohen me email te %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Adresa juaj parësore e sajtit është ajo që vizitorët do të shohin në shtyllën e tyre të adresave, kur të vizitojnë sajtin tuaj."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Rikthimi juaj po zgjat më shumë se zakonisht, ju lutemi, rikontrolloni pas pak minutash."; @@ -9247,12 +9027,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Po e ndiqni këtë bisedë. Kurdo që bëhet një koment i ri, do të merrni një email."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Për faqe të reja tanimë po përdorni përpunuesin me blloqe — bukur! Nëse do të donit ta ndryshonit me përpunuesin klasik, shkoni te ‘Sajti Im’ > ‘Rregullime Sajti’."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Për postime të reja tanimë po përdorni përpunuesin me blloqe — bukur! Nëse do të donit ta ndryshonit me përpunuesin klasik, shkoni te ‘Sajti Im’ > ‘Rregullime Sajti’."; - /* Comment Attachment Label */ "[COMMENT]" = "[KOMENT]"; @@ -9638,19 +9412,8 @@ Example: Reply to Pamela Nguyen */ /* Title for the View stats button in the More menu */ "dashboardCard.stats.viewStats" = "Shihni statistika"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Të përgjithshme"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Parametrat e anashkaluar tregohen me një shenjë."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Anashkaloni parametrin e zgjedhur duke përcaktuar këtu një vlerë të re."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Pa vlerë të largët, apo fillestare"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Formësim Së Largëti"; /* Remove current quick start tour menu item */ @@ -9798,7 +9561,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Më tepër"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10207,9 +9969,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "iu vu shenjë si i padëshiruar"; -/* Products header text in Me Screen. */ -"me.products.header" = "Produkte"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "S’arrihet të njëkohësohet media"; @@ -10844,12 +10603,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Shihni krejt përgjigjet"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Për t’i aktivizuar, vizitoni Rregullime Sajti"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Cytje Blogimi të fshehura"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Hidhe tej"; @@ -11395,9 +11148,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "Email"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "Forume WordPress"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "Qendër Ndihme WordPress"; @@ -11614,9 +11364,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Mësoni më tepër"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "sajti juaj"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} të Bëni hyrjen me Google."; diff --git a/WordPress/Resources/sv.lproj/Localizable.strings b/WordPress/Resources/sv.lproj/Localizable.strings index 34b66ea1c16f..3759e4d6bb3c 100644 --- a/WordPress/Resources/sv.lproj/Localizable.strings +++ b/WordPress/Resources/sv.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nBekräfta genom att skriva in ditt användarnamn innan kontot avslutas.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/år"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Ladda bilder efterhand (”Lazy-load”)"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li ord, %2$li tecken"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "Block av typen %s"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "Inställningar för blocket %s"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Lägg till ett ämne"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Lägg till en anpassad CSS-URL här som ska hämtas i läsaren. Om du kör Calypso lokalt kan länken se ut ungefär så här: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Lägg till en domän"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Alla årliga WordPress.com-paket inkluderar ett anpassat domännamn. Registrera din gratis domän nu."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Nu innehåller alla prispaket hos WordPress.com ett anpassat domännamn. Registrera ditt fria domännamn nu."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Alla kommentarer"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Automatiskt hanterat på denna webbplats"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Automatisk förnyelse aktiverad"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Godkänn automatiskt"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Blocket har duplicerats"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Blockredigeraren är aktiverad"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Block grupperat"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Överför media till din webbplats direkt från din enhet eller kamera."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Bläddra bland alla teman för att hitta det som passar dig perfekt."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Skydd mot brute force-attacker"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Välj en webbplats att öppna."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Välj ett tema"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Stäng"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Klart: Kontrollera din webbplatsrubrik"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Slutförd: Välj ett tema"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Klart: Välj en unik webbplats-ikon"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Slutfört: Anslut till andra webbplatser"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Slutförd: Fortsätt med webbplatskonfigurationen"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Slutförd: Skapa din webbplats"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Slutförd: Utforska planer"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Slutförd: Publicera ett inlägg"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Fortsätt med Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Fortsätt att konfigurera webbplatsen"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Fortsätter med Apple"; @@ -1981,15 +1944,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "Det gick inte att ansluta till WordPress-webbplatsen. Det finns ingen giltig WordPress-webbplats på adressen. Kontrollera adressen (URL) du angav."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Det gick inte att ansluta. De nödvändiga metoderna i XML-RPC saknas på servern."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Det gick inte att ansluta. När vi försökte ansluta till XMLRPC-ändpunkten för din webbplats fick vi felkod 403. Appen behöver denna kanal för att kommunicera med webbplatsen. Kontakta webbhotellet för att lösa problemet."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Det gick inte att ansluta. Din webbserver blockerar POST-transaktioner, vilket appen behöver för att kommunicera med webbplatsen. Kontakta webbhotellet för att lösa problemet."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Det gick inte att ladda etiketterna."; @@ -2021,9 +1975,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Landskod"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Loggning av krascher"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Kraschrapporter"; @@ -2039,9 +1990,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Skapa ny"; -/* Title for the site creation flow. */ -"Create New Site" = "Skapa ny webbplats"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2176,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Felsök"; -/* Debug settings title */ -"Debug Settings" = "Inställningar för felsökning"; - /* Only December needs to be translated */ "December 17, 2017" = "December 17, 2017"; @@ -2252,9 +2197,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Standardinläggsformat"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "Standard-URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Standard för nya inlägg"; @@ -2420,12 +2362,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Domäner"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Domäner köpta på denna webbplats kommer omdirigeras till %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Domäner som är köpta på denna webbplats kommer att omdirigera användare till"; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Har du inget konto? _Registrera dig_"; @@ -2595,8 +2531,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Redigera"; /* Title for the edit more button section */ @@ -2661,9 +2596,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Redigerare"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Redigerar kommentaren"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Redigerar kommentaren."; @@ -2791,9 +2723,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Ange ett lösenord för att skydda detta inlägg"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Skriv in olika ord ovan så letar vi efter en adress som matchar dem."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Ange lösenord"; @@ -2979,24 +2908,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Öppnas för att man ska kunna välja ett annat menyområde"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Har löpt ut"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Utgången inloggningskod"; /* Title. Indicates an expiration date. */ "Expires on" = "Löper ut den"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Löper ut %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Förklara vad webbplatsen handlar om."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Utforska prispaketen"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "Exportera innehåll"; @@ -3182,8 +3102,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Följare"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Följer"; @@ -3200,9 +3119,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Följer"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Följer bloggen"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Följer bloggen."; @@ -3242,9 +3158,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Katalog med fria fotografier"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "Gratis första året"; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Frigör lagringsutrymme på din enhet genom att radera tillfälliga mediafiler. Detta påverkar inte mediafilerna på din webbplats."; @@ -3333,9 +3246,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Lär känna appen"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Skaffa din domän"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Få dina notiser snabbare"; @@ -3360,9 +3270,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Gå tillbaka"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Gå till följda webbplatser"; @@ -3401,18 +3308,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Guidar dig genom processen för att kolla dina notiser."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Guidar dig genom processen för att välja ett tema för din webbplats."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Guidar dig genom processen för att skapa en sida på din webbplats."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Guidar dig genom processen för att skapa din webbplats."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Guidar dig genom processen för att utforska olika paket för din webbplats."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Guidar dig genom processen för att följa andra webbplatser."; @@ -3428,9 +3329,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Guidar dig genom processen för att ange en rubrik för din webbplats."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Guidar dig genom processen för att konfigurera din webbplats."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Guidar dig genom processen för att ladda upp en ikon för din webbplats."; @@ -3584,9 +3482,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Uppladdning av ikon misslyckades"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Om du redan har en webbplats behöver du installera gratis-tillägget Jetpack och koppla det till ditt konto hos WordPress.com."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "Kolla i mappen för skräppost om du inte hittar meddelandet."; @@ -3996,9 +3891,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Få information om nya kommentarer, gilla-märkningar och följare på några sekunder."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Läs om verktygen för marknadsföring och sökmotoroptimering i våra betalpaket."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4057,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Laddar in kommentarer …"; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Laddar in domäner"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Laddar in historik …"; @@ -4619,9 +4508,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Uppdatering finns"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Löper aldrig ut"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "Nya"; @@ -4696,9 +4582,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Inga poster"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Inga Jetpack-webbplatser hittades"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Ingen meny"; @@ -4915,9 +4798,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Tillgängligt utrymme är inte tillräckligt för denna uppladdning"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Följer inte"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4898,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5202,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Välj användarnamn"; -/* The item to select during a guided tour. */ -"Plan" = "Paket"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Paket"; @@ -5642,9 +5518,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Primär webbplats"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Primär webbplatsadress"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Integritet"; @@ -5746,9 +5619,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Publicerad den"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Publicerar till"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Publicerar sida …"; @@ -5770,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Push-notiser är avstängda i inställningarna för iOS. Aktivera dem igen genom att åter välja ”Tillåt notis-meddelanden”."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Snabbstart"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Betygsätt oss"; @@ -5791,13 +5658,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Läsare"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "CSS-URL för läsaren"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Läsa inlägg från andra webbplatser"; @@ -5958,9 +5821,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Borttagning av följare gör att de slutar ta emot uppdateringar från din webbplats. Om de vill, kan de fortfarande besöka din webbplats och följa den igen."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Förnyas %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Ersätt aktuellt block"; @@ -6093,7 +5953,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Försök igen"; @@ -6315,9 +6174,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Se alla"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Se instruktionerna"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Se kommentarer och aviseringar i realtid."; @@ -6334,24 +6190,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Välj %@ för att skapa ett nytt inlägg"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Välj %@ för att upptäcka nya teman"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Välj %@ för att hitta andra webbplatser."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Välj %@ för att se hur det går för webbplatsen."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Välj %@ för att se din checklista"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Välj %@ för att se ditt nuvarande bibliotek."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Välj %@ för att visa ditt nuvarande paket och andra tillgängliga paket."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Välj %@ för att visa listan med dina sidor."; @@ -6744,10 +6591,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Webbplatssida"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Webbplatssäkerhet och prestanda\nfrån din ficka"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Webbplatsens tidszon (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6645,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Viss data kunde inte läsas in"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Uppladdning av vissa mediefiler misslyckades. Om du fortsätter med den här åtgärden kommer de mediefiler som inte laddats upp inte med i inlägget.\nSpara ändå?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Något gick fel"; @@ -7348,7 +7188,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Webbplatsen %1$@ använder WordPress %2$@. Vi rekommenderar att du uppdaterar till den senaste versionen, dock allra minst %3$@."; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Webbplatsen på den angivna adressen använder inte WordPress. För att du ska kunna ansluta en webbplats behöver den använda WordPress."; /* Message shown when site deletion API failed */ @@ -7388,7 +7229,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Tema aktiverat"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Teman"; @@ -7634,9 +7474,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Tidszon"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Nu är det dags för webbplatsens avslutande inställningar! Vår checklista visar vad du behöver göra."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Tiden är ute, men oroa dig inte, din säkerhet är vår prioritet. Försök igen!"; @@ -7688,9 +7525,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Du använder statistik på din webbplats. Du kommer att behöva installera tillägget Jetpack."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "För att använda denna app för %@ måste du ha tillägget Jetpack installerat och aktiverat."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7545,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Slå av eller på stilen för osorterad lista"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Verktyg"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "Toppkommenterare"; @@ -7721,8 +7552,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "Toppnivå"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Ämne"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7630,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Försök igen"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Prova med ett annat konto"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Försök att anpassa datumintervallet"; @@ -7882,9 +7709,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Skriv ett namn för din webbplats"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Fortsätt skriva för att få fler förslag."; - /* URL text field placeholder */ "URL" = "URL"; @@ -7990,12 +7814,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "Det gick inte att ladda upp utkast för 1 inlägg."; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "Kan inte ladda upp utkast för 1 inlägg, %ld filer"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "Kan inte ladda upp utkast för 1 inlägg, 1 fil"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "Det gick inte att ladda upp 1 inlägg"; @@ -8050,8 +7868,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Sluta följa"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "Sluta att följa %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7884,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Webbplats som slutat följas"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Slutar följa bloggen"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Sluta följ bloggen."; @@ -8239,18 +8053,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Laddar upp …"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Uppladdning misslyckades"; - /* Use the current image */ "Use" = "Använd"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Använd %@ för att hitta webbplatser och etiketter."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Använd sandlåde-lagring"; - /* The button's title text to use a security key. */ "Use a security key" = "Använd en säkerhetsnyckel"; @@ -8298,9 +8106,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Verifiera inloggning"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "Bekräfta din e-postadress – instruktioner har skickats till %@"; - /* Description for the version label in the What's new page. */ "Version " = "Version "; @@ -8509,9 +8314,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "Vi lyckades inte skapa en säkerhetskopia åt dig. Försök igen senare."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Vi hittade ingen tillgänglig adress med sökbegreppen du skrev in. Låt oss försöka en gång till."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Sidan gick inte att publicera, men vi försöker igen senare."; @@ -8587,9 +8389,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Vi har precis skickat en magisk länk till"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Vi har gjort stora förbättringar i blockredigeraren, ta och prova den!\n\nDen är aktiverad för nya inlägg och nya sidor. Om du vill ändra till den klassiska redigeraren kan du göra detta under ”Min webbplats” > ”Inställningar”."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "Vi har skapat en säkerhetskopia av din webbplats per %1$@."; @@ -8599,9 +8398,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Vi använder andra spårningsverktyg, inklusive verktyg från utomstående parter. Läs om dessa och hur vi kontrollerar dem."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "Vi kunde inte hitta någon WordPress-webbplats på adressen du angav. Kontrollera att WordPress är installerat och att du använder den senaste versionen av programvaran."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "Vi lyckades inte skicka dig något e-postmeddelande just nu. Försök igen senare."; @@ -8690,9 +8486,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Vi har skickat en registreringslänk som låter dig skapa ditt nya konto hos WordPress.com. Öppna e-posten på din enhet och tryck på länken i meddelandet du fått från WordPress.com."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Något gick fel när vi skulle ändra huvddomänen för din webbplats – men du behöver inte oroa dig, du har redan köpt domännamnet."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Webbadress"; @@ -8970,8 +8763,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "År"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Ja"; @@ -9070,9 +8862,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "Du har 1 dold WordPress-webbplats."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "Ditt paket inkluderar en gratis domännamnsregistrering i ett år"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Du har aktiva premium-uppgraderingar på din webbplats. Avbryt dina uppgraderingar innan du ta bort webbplatsen."; @@ -9157,9 +8946,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Du har gjort ändringar i detta inlägg som inte är sparade"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Domänerna för din webbplats"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Din webbplatsikon"; @@ -9187,9 +8973,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "Din första säkerhetskopia är snart klar"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Din gratisadress hos WordPress.com är"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Din nya domän %@ håller på att konfigureras. Det kan dröja upp till 30 minuter innan din domän börjar fungera."; @@ -9205,9 +8988,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Dina inlägg, sidor och inställningar kommer att skickas till dig på adressen %@."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Din primära webbplatsadress är vad besökarna kommer att se i sitt adressfält när de besöker din webbplats."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Din återställning tar längre tid än normalt. Kolla igen om några minuter."; @@ -9265,12 +9045,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Du följer denna konversation och får ett e-postmeddelande varje gång en ny kommentar publiceras."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Nu använder du blockredigeraren för nya sidor – utmärkt! Om du vill återgå till den klassiska redigeraren går du till ”Min webbplats” > ”Inställningar”."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Nu använder du blockredigeraren för nya inlägg – utmärkt! Om du vill återgå till den klassiska redigeraren går du till ”Min webbplats” > ”Inställningar”."; - /* Comment Attachment Label */ "[COMMENT]" = "[KOMMENTAR]"; @@ -9659,19 +9433,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "Funktionsflaggor"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Allmänt"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "Åsidosatta parametrar markeras med en bock."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Åsidosätt den valda parametern genom att definiera ett nytt värde här."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Inget fjärr- eller standardvärde"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Fjärrkonfiguration"; /* Remove current quick start tour menu item */ @@ -9819,7 +9582,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Mer"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10231,9 +9993,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "markerad som skräppost"; -/* Products header text in Me Screen. */ -"me.products.header" = "Produkter"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Det gick inte att synkronisera media"; @@ -10871,12 +10630,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Visa alla svar"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Gå till Webbplatsinställningar för att aktivera igen"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Bloggningsförslag dolt"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Avfärda"; @@ -11422,9 +11175,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "E-post"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "WordPress-forum"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "WordPress hjälpcenter"; @@ -11641,9 +11391,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Lär dig mer"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "din webbplats"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Logga in med Google."; diff --git a/WordPress/Resources/th.lproj/Localizable.strings b/WordPress/Resources/th.lproj/Localizable.strings index 48563a999685..a6b3795a7ce9 100644 --- a/WordPress/Resources/th.lproj/Localizable.strings +++ b/WordPress/Resources/th.lproj/Localizable.strings @@ -265,7 +265,6 @@ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "ปิด"; @@ -471,8 +470,7 @@ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "แก้ไข"; /* View title when editing a comment. */ @@ -587,8 +585,7 @@ Label for number of followers. */ "Followers" = "ผู้ติดตาม"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "กำลังติดตาม"; @@ -975,7 +972,6 @@ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -1201,8 +1197,7 @@ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "ผู้อ่าน"; /* Text for the 'Reblog' button. */ @@ -1295,7 +1290,6 @@ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "ลองใหม่"; @@ -1427,9 +1421,6 @@ Continue without making a selection. */ "Skip" = "ข้าม"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "การอัปโหลดไฟล์สื่อบางไฟล์ล้มเหลว การกระทำนี้จะลบไฟล์ที่ล้มเหลวทั้งหมดออกจากเรื่อง \nคุณต้องการจะบันทึกหรือไม่?"; - /* This error message occurs when a user tries to create a username that contains an invalid phrase for WordPress.com. The %@ may include the phrase in question if it was sent down by the API */ "Sorry, but your username contains an invalid phrase%@." = "ขอโทษครับ แต่ชื่อผู้ใช้ของคุณประกอบด้วยสัญญลักษณ์ที่ใช้งานไม่ได้ %@"; @@ -1603,7 +1594,6 @@ "Theme Activated" = "เปิดใช้งานธีมแล้ว"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Themes"; @@ -1662,8 +1652,7 @@ /* Insights Management 'Today's Stats' title */ "Today's Stats" = "สถิติวันนี้"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "กระทู้"; /* Topics Filter Tab Title */ @@ -1789,9 +1778,6 @@ /* Label to show while uploading media to server */ "Uploading..." = "กำลังอัปโหลด..."; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "การอัปโหลดล้มเหลว"; - /* A placeholder for the twitter username Accessibility label for the username text field in the self-hosted login page. Account Settings Username label @@ -1907,8 +1893,7 @@ /* Title of Years stats filter. */ "Years" = "ปี"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "ใช่"; diff --git a/WordPress/Resources/tr.lproj/Localizable.strings b/WordPress/Resources/tr.lproj/Localizable.strings index fff87e6c9bd8..47249f429a01 100644 --- a/WordPress/Resources/tr.lproj/Localizable.strings +++ b/WordPress/Resources/tr.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\nOnaylamak için lütfen kapatmadan önce kullanıcı adınızı tekrar girin.\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = "\/ yıl"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "Görselleri sonra yükle"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li kelime, %2$li karakter"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s blok"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s blok seçenekleri"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "Bir Konu ekle"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "Reader'a yüklenmek üzere buraya özel bir CSS URL'si ekleyin. Calypso'yu yerel olarak çalıştırıyorsanız şu şekilde olabilir: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "Alan adı ekle"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "Tüm WordPress.com yıllık paketleri kişisel bir alan adı içerir. Ücretsiz alan adınızı hemen kaydedin."; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "Tüm WordPress.com planları kişisel bir alan adı içerir. Ücretsiz premium alan adınızı hemen kaydedin."; - /* An option in a list. Automatically approve all comments */ "All comments" = "Tüm yorumlar"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "Bu sitede otomatik yönetiliyor"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "Otomatik yenileme etkin"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "Otomatik onayla"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "Blok çoğaltıldı"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "Blok düzenleyici etkinleştirildi"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "Blok gruplandı"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "Medyayı doğrudan cihazınızdan veya kameranızdan sitenize aktarın."; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "Size tam uyanı bulmak için tüm temalarımıza göz atın."; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "Deneme yanılma saldırılarına karşı koruma"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "Lütfen açmak için bir site seçin."; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "Bir tema seçin"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "Kapat"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "Tamamlandı: Sitenizin başlığını kontrol edin"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "Tamamlandı: Bir tema seçin"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "Tamamlandı: Benzersiz bir site simgesi seçin"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "Tamamlandı: Diğer sitelerle bağlantı kurun"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "Tamamlandı: Site kurulumuna devam edin"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "Tamamlandı: Sitenizi oluşturun"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "Tamamlandı: Planları keşfet"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "Tamamlandı: Bir yazı yayınlayın"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "Google ile devam et"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "Site kurulumuna devam edin"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "Apple ile devam ediliyor"; @@ -1981,15 +1944,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "WordPress siteye bağlanılamıyor. Bu adreste geçerli bir WordPress sitesi yok. Girdiğiniz site adresini (URL) kontrol edin."; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "Bağlanılamıyor. Gerekli XML-RPC yordamları sunucuda bulunmuyor."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "Bağlantı kurulamadı. Sitenizin XMLRPC uç noktasına erişmeye çalışırken 403 hatası aldık. Uygulama, sitenizle bağlantı kurabilmek için buna gereksinim duyuyor. Bu sorunu gidermek için sunucunuzla iletişim kurun."; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "Bağlantı kurulamadı. Sunucunuz POST isteklerini engelliyor ve uygulama sitenizle iletişim kurmak için buna gereksinim duyuyor. Bu sorunu gidermek için sunucunuzla iletişim kurun."; - /* Error message when tag loading failed */ "Couldn't load tags." = "Etiketler yüklenemedi."; @@ -2021,9 +1975,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "Ülke kodu"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "Kilitlenme günlüğü"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "Çökme raporları"; @@ -2039,9 +1990,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "Yeni oluştur"; -/* Title for the site creation flow. */ -"Create New Site" = "Yeni bir site oluştur"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2176,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "Hata ayıklama"; -/* Debug settings title */ -"Debug Settings" = "Hata Ayıklama Ayarları"; - /* Only December needs to be translated */ "December 17, 2017" = "Aralık 17, 2017"; @@ -2252,9 +2197,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "Varsayılan yazı biçimi"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "Varsayılan URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "Yeni yazılar için varsayılanlar"; @@ -2420,12 +2362,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "Alan adları"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "Bu siteden satın alınan alan adları %@ adresine yönlendirilecek"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "Bu site için satın alınmış alan adları kullanıcıları şuraya yönlendirecek"; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "Hesabınız yok mu? _Kaydol_"; @@ -2595,8 +2531,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "Düzenle"; /* Title for the edit more button section */ @@ -2661,9 +2596,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "Düzenleyici"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "Bir yorumu düzenler"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "Yorumu düzenler."; @@ -2791,9 +2723,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "Bu yazıyı korumak için bir parola girin"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "Yukarıya farklı sözcükler girin, girdiğiniz sözcüklerle eşleşen adres olup olmadığını arayalım."; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "Parola girin"; @@ -2979,24 +2908,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "Farklı bir menü alanı seçmek için genişler"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "Süresi doldu"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "Süresi dolmuş oturum açma kodu"; /* Title. Indicates an expiration date. */ "Expires on" = "Sona erme tarihi:"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "Sona erme tarihi: %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "Bu sitenin ne hakkında olduğunu açıklayın."; -/* Title of a Quick Start Tour */ -"Explore plans" = "Paketleri keşfedin"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "İçeriği dışa aktar"; @@ -3182,8 +3102,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "Takipçiler"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "Takip ediliyor"; @@ -3200,9 +3119,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "Takip edilenler"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "Blogu takip ediyor"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "Blogu takip eder."; @@ -3242,9 +3158,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "Ücretsiz fotoğraf kütüphanesi"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "İlk yıl ücretsiz "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "Geçici ortam dosyalarını silerek bu cihazda depolama alanı boşaltın. Bu, sitenizdeki ortam dosyalarını etkilemez."; @@ -3333,9 +3246,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "Uygulamayı tanıyın"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "Alan adınızı alın"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "Bildirimlerinizi daha hızlı alın"; @@ -3360,9 +3270,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "Geri dön"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "Takip edilenlere git"; @@ -3401,18 +3308,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "Bildirimlerinizi kontrol etme sürecinde size rehberlik eder."; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "Siteniz için bir tema seçme işlemine yönlendirir."; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "Siteniz için yeni bir sayfa oluşturma işlemine yönlendirir."; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "Sitenizin oluşturulması işlemine yönlendirir."; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "Sitenizle ilgili planları inceleme işlemine yönlendirir."; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "Diğer siteleri takip etme işlemine yönlendirir."; @@ -3428,9 +3329,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "Siteniz için bir başlık ayarlama sürecinde size rehberlik eder."; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "Sitenizin ayarlarını düzenlemeye yönlendirir."; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "Siteniz için bir simge yükleme işlemine yönlendirir."; @@ -3584,9 +3482,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "Simge güncelleme başarısız oldu"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "Zaten bir siteniz varsa, ücretsiz Jetpack eklentisini yüklemeniz ve WordPress.com hesabınıza bağlamanız gerekir."; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "E-postayı bulamıyorsanız, lütfen önemsiz veya istenmeyen e-posta klasörünüzü kontrol edin."; @@ -3996,9 +3891,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "Yeni yorumlar, beğeniler ve takipler hakkında bilgileri saniyeler içinde edinin."; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "Ücretli paketlerimizdeki pazarlama ve SEO araçları hakkında bilgi edinin."; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4165,9 +4057,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "Yorum yükleniyor..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "Eklentiler yükleniyor"; - /* Displayed while a call is loading the history. */ "Loading history..." = "Geçmiş yükleniyor..."; @@ -4619,9 +4508,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "Güncellenmesi gerekiyor"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "Asla hizmet dışı kalmaz"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "Yeni"; @@ -4696,9 +4582,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "Öge yok"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "Hiçbir Jetpack sitesi bulunamadı"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "Menü yok"; @@ -4915,9 +4798,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "Karşıya yükleme işlemi için yeterli alan yok"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "Takip etmiyor"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5018,7 +4898,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5323,9 +5202,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "Kullanıcı adı seçin"; -/* The item to select during a guided tour. */ -"Plan" = "Paket"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "Paketler"; @@ -5642,9 +5518,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "Birincil site"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "Birincil site adresi"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "Gizlilik"; @@ -5746,9 +5619,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "Yayın tarihi"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "Yayımlanıyor"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "Sayfa yayımlanıyor..."; @@ -5770,9 +5640,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "Anında iletme bildirimleri iOS ayarlarında kapatıldı. Yeniden açmak için seçimi \"Bildirimlere İzin Ver\" olarak değiştirin."; -/* The menu item to select during a guided tour. */ -"Quick Start" = "Hızlı başla"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "Bizi Değerlendirin"; @@ -5791,13 +5658,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "Okuyucu"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "Okuyucu CSS URLsi"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "Diğer sitelerin gönderilerini okumak"; @@ -5958,9 +5821,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "Takipçileri takipten çıkarırsanız sitenizden güncelleme alamazlar. İsterlerse sitenizi yine ziyaret edip takip edebilirler."; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "Yenilenme tarihi: %@"; - /* No comment provided by engineer. */ "Replace Current Block" = "Mevcut bloğu değiştir"; @@ -6093,7 +5953,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "Tekrar"; @@ -6315,9 +6174,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "Tümünü gör"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "Talimatlara bakın"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "Yorumları ve bildirimleri gerçek zamanlı olarak görün."; @@ -6334,24 +6190,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "Yeni yazı oluşturmak için %@ seçin"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "Yeni temaları keşfetmek için %@ seçin"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "Diğer siteleri bulmak için %@ öğesini seçin."; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "Sitenizin performansını görmek için %@ seçin."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "Kontrol listenizi görmek için %@ seçin"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "Geçerli kitaplığınızı görmek için %@ öğesini seçin."; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "Mevcut paketi ve kullanılabilecek diğer paketleri görmek için %@ seçin."; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "Sayfa listenizi görmek için seçin: %@"; @@ -6744,10 +6591,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "Site sayfası"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "Site güvenliği ve performansı\ncebinizden"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "Site saat dilimi (UTC%1$@%2$d%3$@)"; @@ -6802,9 +6645,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "Bazı veriler yüklenmedi"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "Bazı görsel yüklemeleri başarısız oldu. Bu eylem, başarısız olan görsellerin tümünü gönderiden kaldıracak.\nYine de kaydedilsin mi?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "Bir şeyler yanlış gitti"; @@ -7348,7 +7188,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "Bu site %1$@ konumunda WordPress %2$@ kullanıyor. En son sürüme ya da en azından %3$@ sürümüne yükseltmenizi öneririz."; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "Bu adresteki site bir WordPress sitesi değil. Siteyle bağlantı kurabilmemiz için sitede WordPress kullanılmalıdır."; /* Message shown when site deletion API failed */ @@ -7388,7 +7229,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "Tema etkinleştirildi"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "Temalar"; @@ -7634,9 +7474,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "Saat dilimi"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "Site kurulumunuzu tamamlamanın zamanı geldi! Listemiz bir sonraki adımları size açıklar."; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "Süre doldu, ancak endişelenmenize gerek yok. Güvenliğiniz önceliğimizdir. Lütfen yeniden deneyin!"; @@ -7688,9 +7525,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "Sitenizde istatistikleri kullanmak için Jetpack eklentisini yüklemelisiniz."; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "Bu uygulamayı %@ için kullanabilmek istiyorsanız Jetpack eklentisini yükleyip etkinleştirmeniz gerekir."; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7711,9 +7545,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "Sıralanmamış liste biçimini değiştirir"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "Araçlar"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "En iyi yorumcular"; @@ -7721,8 +7552,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "En üst seviye"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "Konu"; /* Used when a Reader Topic is not found for a specific id */ @@ -7800,9 +7630,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "Tekrar deneyin"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "Başka Bir Hesapla Deneyin"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "Tarih aralığı filtrenizi ayarlamayı deneyin"; @@ -7882,9 +7709,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "Siteniz için bir ad yazın"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "Daha fazla tavsiye için yazın"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7990,12 +7814,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "1 taslak yazı yüklenemedi"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "1 taslak yazı ve %ld dosya yüklenemedi"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "1 taslak yazı ve 1 dosya yüklenemedi"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "1 yazı karşıya yüklenemedi"; @@ -8050,8 +7868,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "Takibi bırak"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "%@ takibini bırak"; /* Title for a button that unsubscribes the user from the post. */ @@ -8067,9 +7884,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "Takibi bırakılan site"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "Blogu takibi bırakır"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "Blogu takip etmeyi bırakır."; @@ -8239,18 +8053,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "Yükleniyor…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "Yüklemeler başarısız"; - /* Use the current image */ "Use" = "Kullan"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "Siteleri ve etiketleri bulmak için %@ kullanın."; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "Sandbox Store'u kullanın"; - /* The button's title text to use a security key. */ "Use a security key" = "Bir güvenlik anahtarı kullanın"; @@ -8298,9 +8106,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "Girişi doğrula"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "E-posta adresinizi doğrulayın - Talimatlar %@ adresinde gönderildi"; - /* Description for the version label in the What's new page. */ "Version " = "Sürüm "; @@ -8509,9 +8314,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "Yedeğiniz oluşturulmadı. Lütfen daha sonra tekrar deneyin."; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "Girdiğiniz sözcüklerle eşleşen adres bulamadık, tekrar deneyelim."; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "Bu sayfayı yayımlayamadık ama daha sonra tekrar deneyeceğiz."; @@ -8587,9 +8389,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "Az önce size sihirli bir bağlantı gönderdik"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "Blok düzenleyicide büyük iyileştirmeler yaptık ve denemeye değer olduğunu düşünüyoruz!\n\nYeni yazılar ve sayfalar için etkinleştirdik, ancak klasik düzenleyiciye geçmek isterseniz, 'Sitem'> 'Site Ayarları'na gidin."; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "%@ itibarıyla sitenizin yedeği başarıyla oluşturuldu"; @@ -8599,9 +8398,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "Üçüncü taraflara ait olanlar dahil diğer izleme araçlarını kullanıyoruz. Bunlar ve nasıl kontrol edilecekleri hakkında bilgi alın."; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "Girdiğiniz adreste bir WordPress sitesi tespit edemedik. Lütfen WordPress'in kurulu olduğundan ve mevcut en son sürümü çalıştırdığınızdan emin olun."; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "Size şu anda e-posta gönderemedik. Lütfen daha sonra tekrar deneyin."; @@ -8690,9 +8486,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "Yeni WordPress.com hesabınızı oluşturmanız için size e-postayla bir kayıt bağlantısı gönderdik. Bu cihazda e-postanızı kontrol edin ve WordPress.com'dan aldığınız e-postadaki bağlantıya dokunun."; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "Sitenizdeki birincil alan adını değiştirirken sorunlar yaşadık; ancak merak etmeyin, alan adınız başarıyla satın alındı."; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "Web adresi"; @@ -8970,8 +8763,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "Yıl"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "Evet"; @@ -9070,9 +8862,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "1 gizli WordPress siteniz mevcut."; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "Planınıza ücretsiz bir yıllık alan adı kaydı dahildir"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "Sitenizde premium yükseltmeleri etkinleştirdiniz. Sitenizi silmeden önce yükseltmelerinizi iptal edin."; @@ -9157,9 +8946,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "Bu iletide kaydedilmeyen değişiklikler yaptınız"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "Site alan adlarınız"; - /* The item to select during a guided tour. */ "Your Site Icon" = "Site simgeniz"; @@ -9187,9 +8973,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "İlk yedeğiniz az sonra hazır olacak"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "Ücretsiz WordPress.com adresiniz"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "Yeni alan adınız %@ ayarlanıyor. Alan adınızın çalışmaya başlaması 30 dakika kadar sürebilir."; @@ -9205,9 +8988,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "Yazılarınız, sayfalarınız ve ayarlarınız %@ adresine e-posta ile gönderilecek."; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "Birincil site adresiniz, web sitenizi ziyaret edenlerin adres çubuğunda görecekleri adrestir."; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "Geri yüklemeniz normalden uzun sürüyor, lütfen birkaç dakika sonra tekrar kontrol edin."; @@ -9265,12 +9045,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "Bu konuşmayı takip ediyorsunuz. Yeni bir yorum yapıldığında e-posta alacaksınız."; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Şimdi yeni sayfalar için blok düzenleyiciyi kullanıyorsunuz, harika! Klasik düzenleyicide değişiklik yapmak istiyorsanız, Sitem > Site Ayarları'na gidin."; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "Şimdi yeni yazılar için blok düzenleyiciyi kullanıyorsunuz, harika! Klasik düzenleyicide değişiklik yapmak istiyorsanız, Sitem > Site Ayarları'na gidin."; - /* Comment Attachment Label */ "[COMMENT]" = "[YORUM]"; @@ -9659,19 +9433,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "Özellik bayrakları"; -/* General section title */ -"debugMenu.generalSectionTitle" = "Genel"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "İptal edilen parametreler bir onay işareti ile gösterilir."; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "Buradan yeni bir değer girerek seçili parametreyi iptal edin."; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "Uzaktan ya da varsayılan değer yok"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "Uzaktan Yapılandırma"; /* Remove current quick start tour menu item */ @@ -9819,7 +9582,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "Daha fazla"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10231,9 +9993,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "spam olarak işaretlendi"; -/* Products header text in Me Screen. */ -"me.products.header" = "Ürünler"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "Ortam senkronize edilemiyor"; @@ -10871,12 +10630,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "Tüm yanıtları görüntüle"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "Tekrar açmak için Site Ayarlarını ziyaret edin"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "Blog Talepleri gizlendi"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "Kapat"; @@ -11422,9 +11175,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "E-posta"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "WordPress forumları"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "WordPress yardım merkezi"; @@ -11641,9 +11391,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "Daha fazlasını öğren"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "siteniz"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} Google ile giriş yap."; diff --git a/WordPress/Resources/zh-Hans.lproj/Localizable.strings b/WordPress/Resources/zh-Hans.lproj/Localizable.strings index fa4934032067..8ada6e779065 100644 --- a/WordPress/Resources/zh-Hans.lproj/Localizable.strings +++ b/WordPress/Resources/zh-Hans.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\n如果您确认关闭账户,请在关闭之前重新输入您的用户名。\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/年"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "“延迟加载”图片"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li 个字词,%2$li 个字符"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s 区块"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s区块选项"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "添加主题"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "在此处添加自定义 CSS URL 以将其加载到阅读器中。 如果您在本地运行 Calypso,则可能类似于:http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "添加域"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "所有 WordPress.com 年度套餐均包含一个自定义域名。 立即注册您的免费域名。"; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "全部 WordPress.com 套餐包含自定义域名。立即注册您的免费高级域。"; - /* An option in a list. Automatically approve all comments */ "All comments" = "所有评论"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "已自动托管在此站点上"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "已启用自动续订"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "自动审核"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "区块已复制"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "已启用区块编辑器"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "已分组区块"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "将媒体直接从您的设备或照相机中传输到站点。"; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "浏览我们所有的主题,寻找最适合您的主题。"; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "防范暴力攻击"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "选择要打开的站点。"; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "选择主题"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "关闭"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "已完成:检查您的站点标题"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "已完成:选择主题"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "已完成:选择唯一站点图标"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "已完成:连接其他站点"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "已完成:继续设置站点"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "已完成:创建您的站点"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "已完成:了解套餐"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "已完成:发布文章"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "继续使用 Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "继续设置站点"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "继续使用 Apple"; @@ -1981,15 +1944,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "无法连接到 WordPress 站点。此地址下没有任何有效的 WordPress 站点。请检查您输入的站点地址 (URL)。"; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "无法连接。服务器上没有所需的 XML-RPC 方法。"; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "无法连接。尝试访问您站点的 XMLRPC 终端时收到 403 错误。与您的站点进行通信所需要的应用程序。请联系您的托管服务提供商以解决此问题。"; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "无法连接。您的主机会阻止 POST 请求,而应用程序需要通过该请求与您的站点通信。请联系您的托管服务提供商以解决此问题。"; - /* Error message when tag loading failed */ "Couldn't load tags." = "无法加载标签。"; @@ -2021,9 +1975,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "国家\/地区代码"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "崩溃记录"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "崩溃报告"; @@ -2039,9 +1990,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "新建"; -/* Title for the site creation flow. */ -"Create New Site" = "创建新站点"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2176,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "调试"; -/* Debug settings title */ -"Debug Settings" = "调试设置"; - /* Only December needs to be translated */ "December 17, 2017" = "2017 年 12 月 17 日"; @@ -2252,9 +2197,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "默认文章形式"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "默认 URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "新文章的默认设置"; @@ -2420,12 +2362,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "域"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "在此站点上购买的域会将用户重定向至 %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "在此站点上购买的域名会将用户重定向至 "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "还没有账户?_注册_"; @@ -2595,8 +2531,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "编辑"; /* Title for the edit more button section */ @@ -2658,9 +2593,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "编辑器"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "编辑评论"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "编辑该评论。"; @@ -2788,9 +2720,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "输入密码以保护这篇文章"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "在上面输入不同的字词,我们会查找与其相符的地址。"; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "输入密码"; @@ -2976,24 +2905,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "展开以选择其他菜单区域"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "已到期"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "登录代码已过期"; /* Title. Indicates an expiration date. */ "Expires on" = "到期日期"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "到期 %@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "描述该站点。"; -/* Title of a Quick Start Tour */ -"Explore plans" = "了解各个套餐"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "导出内容"; @@ -3179,8 +3099,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "粉丝"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "关注中"; @@ -3197,9 +3116,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "关注"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "关注博客"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "关注博客。"; @@ -3239,9 +3155,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "免费照片库"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "第一年免费 "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "删除临时媒体文件,释放此设备的存储空间。此操作不会影响您站点上的媒体。"; @@ -3330,9 +3243,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "了解此应用程序"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "获取您的域名"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "更快收到通知"; @@ -3357,9 +3267,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "返回"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "前往关注的站点"; @@ -3398,18 +3305,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "指导您检查通知。"; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "指导您完成为站点选择主题的流程。"; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "指导您完成为站点创建新页面的流程。"; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "指导您完成创建站点的流程。"; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "指导您完成探索站点套餐的流程。"; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "指导您完成关注其他站点的流程。"; @@ -3425,9 +3326,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "指导您完成设置站点标题的流程。"; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "指导您完成设置站点的流程。"; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "指导您完成为站点上传图标的流程。"; @@ -3581,9 +3479,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "图标更新失败"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "如果您已经拥有一个站点,则需要安装免费的 Jetpack 插件并将其连接到您的 WordPress.com 账户。"; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "如果您找不到该电子邮件,请检查您的垃圾邮件文件夹"; @@ -3993,9 +3888,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "详细了解新的评论、赞,并快速关注。"; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "了解付费套餐中的营销和 SEO 工具。"; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4162,9 +4054,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "正在加载评论..."; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "正在加载域"; - /* Displayed while a call is loading the history. */ "Loading history..." = "正在加载历史记录..."; @@ -4616,9 +4505,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "需要更新"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "永不到期"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "新"; @@ -4693,9 +4579,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "没有条目"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "未找到Jetpack站点"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "无菜单"; @@ -4912,9 +4795,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "空间不足,无法上传"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "不关注"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5015,7 +4895,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5320,9 +5199,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "选择用户名"; -/* The item to select during a guided tour. */ -"Plan" = "套餐"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "套餐"; @@ -5639,9 +5515,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "主站点"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "主站点地址"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "隐私"; @@ -5743,9 +5616,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "发布于"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "发布位置"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "正在发布页面..."; @@ -5767,9 +5637,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "推送通知功能已在 iOS 设置中关闭。切换“允许接收通知”以开启此功能。"; -/* The menu item to select during a guided tour. */ -"Quick Start" = "快速启动"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "给我们评分"; @@ -5788,13 +5655,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "读者"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "阅读器 CSS URL"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "阅读其他站点的文章"; @@ -5955,9 +5818,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "删除粉丝后,他们将不再接收来自您站点的更新。 但他们仍然可以访问您的站点,也可以再次关注站点。"; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "续订日期:%@"; - /* No comment provided by engineer. */ "Replace Current Block" = "替换现有区块"; @@ -6090,7 +5950,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "重试"; @@ -6312,9 +6171,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "查看全部"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "请参阅说明"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "实时查看评论和通知。"; @@ -6331,24 +6187,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "选择“%@”,撰写一篇新文章"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "选择“%@”,发现新的主题"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "选择“%@”,查找其他站点。"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "选择“%@”,查看您站点的效果。"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "选择“%@”,查看您的清单"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "选择 %@ 以查看您当前的库。"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "选择“%@”,查看您的当前套餐和其他可用套餐。"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "选择“%@”以查看您的页面列表。"; @@ -6741,10 +6588,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "站点页面"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "站点安全和性能\n一切在您的口袋中掌握"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "站点时区 (UTC%1$@%2$d%3$@)"; @@ -6799,9 +6642,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "有些数据尚未加载"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "部分媒体上传失败。该操作将从文章中删除所有失败的媒体。\n仍要保存?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "出错了"; @@ -7345,7 +7185,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "这个网站%1$@使用WordPress%2$@。我们推荐升级到最新版本,或者%3$@以上版本"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "此地址下的站点不是 WordPress 站点。站点必须使用 WordPress,我们才能建立连接。"; /* Message shown when site deletion API failed */ @@ -7385,7 +7226,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "主题已激活"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "主题"; @@ -7631,9 +7471,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "时区"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "是时候完成站点设置了!我们的清单将指引您进入下一步。"; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "时间到了,请别担心,我们会优先保证您的安全。 请重试!"; @@ -7685,9 +7522,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "要在您的网站上使用“统计”功能,您需要安装Jetpack插件。"; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "要将此应用用于 %@,您需要安装并启用 Jetpack 插件。"; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7708,9 +7542,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "切换无序的列表样式"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "工具"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "热门评论者"; @@ -7718,8 +7549,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "最上级"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "主题"; /* Used when a Reader Topic is not found for a specific id */ @@ -7797,9 +7627,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "重试"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "使用其他账户尝试"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "尝试调整您的时间范围过滤器。"; @@ -7879,9 +7706,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "为您的站点输入名称"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "输入以获取更多建议"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7987,12 +7811,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "1 篇草稿文章上传失败"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "1 篇草稿文章、%ld 个文件上传失败"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "1 篇草稿文章、1 个文件上传失败"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "无法上传 1 篇文章"; @@ -8047,8 +7865,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "取消关注"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "取消关注 %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8064,9 +7881,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "已取消关注的站点"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "取消关注博客"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "取消关注该博客。"; @@ -8236,18 +8050,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "正在上传…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "上传失败"; - /* Use the current image */ "Use" = "使用"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "使用“%@”查找站点和标签。"; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "使用沙盒商店"; - /* The button's title text to use a security key. */ "Use a security key" = "使用安全密钥"; @@ -8295,9 +8103,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "验证登录"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "请验证您的电子邮件地址(说明已发送至 %@)"; - /* Description for the version label in the What's new page. */ "Version " = "版本"; @@ -8506,9 +8311,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "我们无法创建备份,请稍后重试。"; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "我们未找到任何与您输入的字词相关的可用地址 - 请重试。"; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "我们无法发布此页面,但我们稍后会重试。"; @@ -8584,9 +8386,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "我们刚刚发送了一个免密链接至"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "我们对区块编辑器进行了重大改进,绝对值得一试!\n\n我们已为新文章和页面启用该编辑器,但是,如果您想改用经典编辑器,请转到“我的站点”>“站点设置”。"; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "我们已成功在 %@ 前为您的站点创建备份"; @@ -8596,9 +8395,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "我们使用其他跟踪工具,其中包括来自第三方的工具。了解这些工具及其使用方法。"; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "我们无法通过您输入的地址检测到 WordPress 站点。请确认 WordPress 已安装且运行的是最新的可用版本。"; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "此时,我们无法向您发送电子邮件。请稍后重试。"; @@ -8687,9 +8483,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "我们已通过电子邮件向您发送了注册链接,供您创建新的 WordPress.com 账户。 请在此设备上查看电子邮件,并轻点您从 WordPress.com 收到的电子邮件中的链接。"; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "在您的站点上更改主域名时出现问题,但不必担心,您已成功购买域。"; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "网页地址"; @@ -8967,8 +8760,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "年"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "是"; @@ -9067,9 +8859,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "您有 1 个隐藏的 WordPress 站点。"; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "您的套餐中包括为期一年的免费域名注册"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "您的站点上具有活动的高级套餐升级。在删除站点前,请先取消升级。"; @@ -9154,9 +8943,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "您对此文章所做的更改未保存"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "您的站点域名"; - /* The item to select during a guided tour. */ "Your Site Icon" = "您的站点图标"; @@ -9184,9 +8970,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "您的第一个备份即将准备就绪"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "您的免费 WordPress.com 地址是"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "您的新域 %@ 正在设置中。 最多可能需花费 30 分钟时间,您的域才能开始运行。"; @@ -9202,9 +8985,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "文章、页面和设置将通过邮件发送给您(地址为:%@)。"; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "主域名是访客访问您的站点时,其浏览器中所显示的地址。"; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "您的恢复时间比平时要长,请几分钟后再次检查。"; @@ -9262,12 +9042,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "您已关注此对话。当有新评论时,您将会收到电子邮件。"; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "您现在正在使用区块编辑器创建新页面,太棒了!如果您想要改为使用经典编辑器,请转至“我的站点”>“站点设置”。"; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "您现在正在使用区块编辑器发布新文章-太好了! 如果您想更改为经典编辑器,请转到“我的网站”>“网站设置”。"; - /* Comment Attachment Label */ "[COMMENT]" = "[评论]"; @@ -9650,19 +9424,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "功能标志"; -/* General section title */ -"debugMenu.generalSectionTitle" = "常规"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "覆盖的参数由复选标记表示。"; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "通过在此处定义新值来覆盖所选参数。"; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "没有远程或默认值"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "远程配置"; /* Remove current quick start tour menu item */ @@ -9810,7 +9573,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "更多"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10222,9 +9984,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "标记为垃圾内容"; -/* Products header text in Me Screen. */ -"me.products.header" = "产品"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "无法同步媒体"; @@ -10862,12 +10621,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "查看所有回复"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "访问“站点设置”以重新打开"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "已隐藏博客提示"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "忽略"; @@ -11413,9 +11166,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "电子邮件"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "WordPress 论坛"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "WordPress 帮助中心"; @@ -11632,9 +11382,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "详细了解"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "您的站点"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} 使用 Google 登录。"; diff --git a/WordPress/Resources/zh-Hant.lproj/Localizable.strings b/WordPress/Resources/zh-Hant.lproj/Localizable.strings index 0007f3b3cc7f..190b4a0f25e9 100644 --- a/WordPress/Resources/zh-Hant.lproj/Localizable.strings +++ b/WordPress/Resources/zh-Hant.lproj/Localizable.strings @@ -15,9 +15,6 @@ /* Message of Close Account confirmation alert */ "\nTo confirm, please re-enter your username before closing.\n\n" = "\n為進行確認,請在關閉前重新輸入你的使用者名稱。\n\n"; -/* Per-year postfix shown after a domain's cost. */ -" \/ year" = " \/年"; - /* Title for the lazy load images setting */ "\"Lazy-load\" images" = "「延遲載入」圖片"; @@ -228,10 +225,6 @@ /* Displays the number of words and characters in text */ "%li words, %li characters" = "%1$li 個字、%2$li 個字元"; -/* translators: %s: Block name e.g. \"Image block\" -translators: Block name. %s: The localized block name */ -"%s block" = "%s 區塊"; - /* translators: %s: block title e.g: \"Paragraph\". */ "%s block options" = "%s 區塊選項"; @@ -505,9 +498,6 @@ translators: Block name. %s: The localized block name */ /* Title of a feature to add a new topic to the topics subscribed by the user. */ "Add a Topic" = "新增主題"; -/* Hint for the reader CSS URL field */ -"Add a custom CSS URL here to be loaded in Reader. If you're running Calypso locally this can be something like: http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css" = "在此新增要在讀取器中載入的自訂 CSS URL。 若你在本機執行 Calypso,可能會看到類似以下格式的 URL:http:\/\/192.168.15.23:3000\/calypso\/reader-mobile.css"; - /* Label of the button that starts the purchase of an additional redirected domain in the Domains Dashboard. */ "Add a domain" = "新增網域"; @@ -652,10 +642,6 @@ translators: Block name. %s: The localized block name */ /* Information about redeeming domain credit on site dashboard. */ "All WordPress.com annual plans include a custom domain name. Register your free domain now." = "所有 WordPress.com 年繳方案皆隨附一個自訂網域名稱。 立即註冊你的免費網域。"; -/* Footer of the free domain registration section for a paid plan. - Information about redeeming domain credit on site dashboard. */ -"All WordPress.com plans include a custom domain name. Register your free premium domain now." = "所有 WordPress.com 方案都包含一個自訂網域名稱。立即註冊你的免費進階網域。"; - /* An option in a list. Automatically approve all comments */ "All comments" = "所有留言"; @@ -978,9 +964,6 @@ translators: Block name. %s: The localized block name */ /* The plugin can not be manually updated or deactivated */ "Auto-managed on this site" = "在此網站上自動管理"; -/* Label indicating that a domain name registration will automatically renew */ -"Auto-renew enabled" = "已啟用自動續訂"; - /* Discussion Settings Title Settings: Comments Approval settings */ "Automatically Approve" = "自動核准"; @@ -1112,9 +1095,6 @@ translators: Block name. %s: The localized block name */ /* translators: displayed right after the block is duplicated. */ "Block duplicated" = "已重複區塊"; -/* Popup title about why this post is being opened in block editor */ -"Block editor enabled" = "已啟用區塊編輯器"; - /* translators: displayed right after the block is grouped */ "Block grouped" = "已將區塊設為群組"; @@ -1204,9 +1184,6 @@ translators: Block name. %s: The localized block name */ /* Description of a Quick Start Tour */ "Bring media straight from your device or camera to your site." = "從你的裝置或相機將媒體直接傳送到網站上。"; -/* Description of a Quick Start Tour */ -"Browse all our themes to find your perfect fit." = "瀏覽所有佈景主題,尋找最適合你的一個。"; - /* Jetpack Settings: Brute Force Attack Protection Section */ "Brute Force Attack Protection" = "蠻力攻擊防護"; @@ -1499,8 +1476,7 @@ translators: Block name. %s: The localized block name */ /* A text for title label on Login epilogue screen */ "Choose a site to open." = "選擇要開啟的網站。"; -/* Title for the screen to pick a theme and homepage for a site. - Title of a Quick Start Tour */ +/* Title for the screen to pick a theme and homepage for a site. */ "Choose a theme" = "選擇佈景主題"; /* Select the site's intent. Subtitle */ @@ -1589,7 +1565,6 @@ translators: Block name. %s: The localized block name */ Action button to close edior and cancel changes or insertion of post Action button to close the editor Dismiss the current view - Dismiss the media picker for Stock Photos Dismisses the current screen Voiceover accessibility label informing the user that this button dismiss the current view */ "Close" = "關閉"; @@ -1730,24 +1705,15 @@ translators: Block name. %s: The localized block name */ /* The Quick Start Tour title after the user finished the step. */ "Completed: Check your site title" = "完成:確認網站標題"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Choose a theme" = "已完成:選擇佈景主題"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Choose a unique site icon" = "完成:選擇專屬網站圖示"; /* The Quick Start Tour title after the user finished the step. */ "Completed: Connect with other sites" = "已完成:連結其他網站"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Continue with site setup" = "已完成:繼續設定網站"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Create your site" = "已完成:建立網站"; -/* The Quick Start Tour title after the user finished the step. */ -"Completed: Explore plans" = "已完成:探索方案"; - /* The Quick Start Tour title after the user finished the step. */ "Completed: Publish a post" = "已完成:發表文章"; @@ -1885,9 +1851,6 @@ translators: Block name. %s: The localized block name */ /* Button title. Tapping begins log in using Google. */ "Continue with Google" = "繼續使用 Google"; -/* Title of a Quick Start Tour */ -"Continue with site setup" = "繼續網站設定作業"; - /* Shown while logging in with Apple and the app waits for the site creation process to complete. */ "Continuing with Apple" = "繼續使用 Apple"; @@ -1981,15 +1944,6 @@ translators: Block name. %s: The localized block name */ /* Error message shown a URL points to a valid site but not a WordPress site. */ "Couldn't connect to the WordPress site. There is no valid WordPress site at this address. Check the site address (URL) you entered." = "無法連線至 WordPress 網站。此地址沒有有效的 WordPress 網站。請檢查你輸入的網站地址 (URL)。"; -/* Message to show to user when he tries to add a self-hosted site with RSD link present, but xmlrpc is missing. */ -"Couldn't connect. Required XML-RPC methods are missing on the server." = "無法連結。伺服器缺少必要的 XML-RPC 方式。"; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 403 error, meaning that the access to the /xmlrpc.php file is forbidden. */ -"Couldn't connect. We received a 403 error when trying to access your site's XMLRPC endpoint. The app needs that in order to communicate with your site. Contact your host to solve this problem." = "無法連線。嘗試存取網站的 XMLRPC 終端時發生 403 錯誤。此應用程式需要 XMLRPC 終端才能與你的網站通訊。請聯絡你的主機服務提供者,以解決此問題。"; - -/* Message to show to user when he tries to add a self-hosted site but the host returned a 405 error, meaning that the host is blocking POST requests on /xmlrpc.php file. */ -"Couldn't connect. Your host is blocking POST requests, and the app needs that in order to communicate with your site. Contact your host to solve this problem." = "無法連結。你的主機服務提供者封鎖了 POST 請求,但此應用程式需要使用 POST 請求才能與你的網站通訊。請聯絡你的主機服務提供者,以解決此問題。"; - /* Error message when tag loading failed */ "Couldn't load tags." = "無法載入標籤。"; @@ -2021,9 +1975,6 @@ translators: Block name. %s: The localized block name */ /* Register Domain - Address information field Country Code */ "Country Code" = "國家\/地區代碼"; -/* Title of a section on the debug screen that shows a list of actions related to crash logging */ -"Crash Logging" = "故障記錄"; - /* Label for switch to turn on/off sending crashes info */ "Crash reports" = "當機報告"; @@ -2039,9 +1990,6 @@ translators: Block name. %s: The localized block name */ /* Create New header text */ "Create New" = "新增"; -/* Title for the site creation flow. */ -"Create New Site" = "建立新網站"; - /* Button for selecting the current page template. Button title, encourages users to create their first page on their blog. Title for button to make a page with the contents of the selected layout */ @@ -2228,9 +2176,6 @@ translators: Block name. %s: The localized block name */ /* Navigates to debug menu only available in development builds */ "Debug" = "偵錯"; -/* Debug settings title */ -"Debug Settings" = "除錯設定"; - /* Only December needs to be translated */ "December 17, 2017" = "2017 年 12 月 17 日"; @@ -2252,9 +2197,6 @@ translators: Block name. %s: The localized block name */ Title for screen to select a default post format for a blog */ "Default Post Format" = "預設文章格式"; -/* Placeholder for the reader CSS URL */ -"Default URL" = "預設 URL"; - /* Discussion Settings: Posts Section */ "Defaults for New Posts" = "新文章預設值"; @@ -2420,12 +2362,6 @@ translators: Block name. %s: The localized block name */ /* Noun. Title. Links to the Domains screen. */ "Domains" = "網域"; -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect to %@" = "此網站購買的網域將重新導向至 %@"; - -/* Description for the first domain purchased with a free plan. */ -"Domains purchased on this site will redirect users to " = "在本網站購買的網域會將使用者重新導向至 "; - /* Label for button to log in using your site address. The underscores _..._ denote underline */ "Don't have an account? _Sign up_" = "還沒有帳號?_註冊_"; @@ -2595,8 +2531,7 @@ translators: Block name. %s: The localized block name */ /* Editing GIF alert default action button. Edits a Comment Edits the comment - User action to edit media details. - Verb, edit a comment */ + User action to edit media details. */ "Edit" = "編輯"; /* Title for the edit more button section */ @@ -2658,9 +2593,6 @@ translators: Block name. %s: The localized block name */ /* Title for the editor settings section */ "Editor" = "編輯器"; -/* Edit Action Spoken hint. */ -"Edits a comment" = "編輯留言"; - /* VoiceOver accessibility hint, informing the user the button can be used to Edit the Comment. */ "Edits the comment." = "編輯留言。"; @@ -2788,9 +2720,6 @@ translators: Block name. %s: The localized block name */ /* Message explaining why the user might enter a password. */ "Enter a password to protect this post" = "輸入密碼保護這篇文章"; -/* Secondary message shown when there are no domains that match the user entered text. */ -"Enter different words above and we'll look for an address that matches it." = "請在上方輸入其他文字,我們會尋找與其相符的地址。"; - /* (placeholder) Help enter WordPress password Placeholder of a field to type a password to protect the post. */ "Enter password" = "輸入密碼"; @@ -2976,24 +2905,15 @@ translators: Block name. %s: The localized block name */ /* Screen reader hint (non-imperative) about what does the site menu area selector button do. */ "Expands to select a different menu area" = "展開以選取其他選單區域"; -/* Label indicating that a domain name registration has expired. */ -"Expired" = "已到期"; - /* Title for the error view when the user scanned an expired log in code */ "Expired log in code" = "過期登入碼"; /* Title. Indicates an expiration date. */ "Expires on" = "到期日:"; -/* Label indicating the date on which a domain name registration will expire. The %@ placeholder will be replaced with a date at runtime. */ -"Expires on %@" = "到期日:%@"; - /* Placeholder text for the tagline of a site */ "Explain what this site is about." = "說明此網站的內容。"; -/* Title of a Quick Start Tour */ -"Explore plans" = "探索各種方案"; - /* Export Content confirmation action title Label for selecting the Export Content Settings item */ "Export Content" = "匯出內容"; @@ -3179,8 +3099,7 @@ translators: Block name. %s: The localized block name */ Label for number of followers. */ "Followers" = "追隨者"; -/* Accessibility label for following buttons. - Title of the Following Reader tab +/* Title of the Following Reader tab User is following the blog. Verb. Button title. The user is following a blog. */ "Following" = "關注中"; @@ -3197,9 +3116,6 @@ translators: Block name. %s: The localized block name */ /* Filters Follows Notifications */ "Follows" = "關注"; -/* Spoken hint describing action for unselected following buttons. */ -"Follows blog" = "關注部落格"; - /* VoiceOver accessibility hint, informing the user the button can be used to follow a blog. */ "Follows the blog." = "關注網誌。"; @@ -3239,9 +3155,6 @@ translators: Block name. %s: The localized block name */ /* One of the options when selecting More in the Post Editor's format bar */ "Free Photo Library" = "免費相片圖庫"; -/* Label shown for domains that will be free for the first year due to the user having a premium plan with available domain credit. */ -"Free for the first year " = "第一年免費 "; - /* Explanatory text for clearing device media cache. */ "Free up storage space on this device by deleting temporary media files. This will not affect the media on your site." = "刪除暫存媒體檔案,即可釋放此裝置的儲存空間。這不會影響你網站上的媒體。"; @@ -3330,9 +3243,6 @@ translators: Block name. %s: The localized block name */ /* Name of the Quick Start list that guides users through a few tasks to explore the WordPress/Jetpack app. */ "Get to know the app" = "開始瞭解應用程式"; -/* Title of the card that starts the purchase of the first redirected domain in the Domains Dashboard. */ -"Get your domain" = "取得你的網域名稱"; - /* Title of the second alert preparing users to grant permission for us to send them push notifications. */ "Get your notifications faster" = "更快收到通知"; @@ -3357,9 +3267,6 @@ translators: Block name. %s: The localized block name */ /* Option to select the Gmail app when logging in with magic links */ "Gmail" = "Gmail"; -/* No comment provided by engineer. */ -"Go back" = "返回"; - /* Button title. Tapping lets the user view the sites they follow. */ "Go to Following" = "前往關注"; @@ -3398,18 +3305,12 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for viewing the user's notifications. */ "Guides you through the process of checking your notifications." = "引導你完成查看通知設定的流程。"; -/* This value is used to set the accessibility hint text for choosing a theme for the user's site. */ -"Guides you through the process of choosing a theme for your site." = "引導你完成選擇網站佈景主題的流程。"; - /* This value is used to set the accessibility hint text for creating a new page for the user's site. */ "Guides you through the process of creating a new page for your site." = "引導你完成在網站上建立新頁面的流程。"; /* This value is used to set the accessibility hint text for creating the user's site. */ "Guides you through the process of creating your site." = "引導你完成網站建立流程。"; -/* This value is used to set the accessibility hint text for exploring plans on the user's site. */ -"Guides you through the process of exploring plans for your site." = "引導你完成瀏覽網站方案的流程。"; - /* This value is used to set the accessibility hint text for following the sites of other users. */ "Guides you through the process of following other sites." = "引導你完成追蹤其他網站的流程。"; @@ -3425,9 +3326,6 @@ translators: Block name. %s: The localized block name */ /* This value is used to set the accessibility hint text for setting the site title. */ "Guides you through the process of setting a title for your site." = "引導你完成設定網站標題的流程。"; -/* This value is used to set the accessibility hint text for setting up the user's site. */ -"Guides you through the process of setting up your site." = "引導你完成網站設定流程。"; - /* This value is used to set the accessibility hint text for uploading a site icon. */ "Guides you through the process of uploading an icon for your site." = "引導你完成將圖示上傳至網站的流程。"; @@ -3581,9 +3479,6 @@ translators: Block name. %s: The localized block name */ /* Message to show when site icon update failed */ "Icon update failed" = "圖示更新失敗"; -/* Message explaining that they will need to install Jetpack on one of their sites. */ -"If you already have a site, you’ll need to install the free Jetpack plugin and connect it to your WordPress.com account." = "若你已擁有網站,則需要安裝免費 Jetpack 外掛程式,並連結你的 WordPress.com 帳號。"; - /* The instructions text about not being able to find the magic link email. */ "If you can’t find the email, please check your junk or spam email folder" = "若找不到此封電子郵件,請檢查你的垃圾郵件資料夾"; @@ -3993,9 +3888,6 @@ translators: Block name. %s: The localized block name */ /* Body text of the first alert preparing users to grant permission for us to send them push notifications. */ "Learn about new comments, likes, and follows in seconds." = "迅速瞭解新留言、按讚和關注情況。"; -/* Description of a Quick Start Tour */ -"Learn about the marketing and SEO tools in our paid plans." = "深入瞭解付費專案中的行銷和 SEO 工具。"; - /* A button title. Link to cookie policy Menu title to show the prompts feature introduction modal. @@ -4162,9 +4054,6 @@ translators: Block name. %s: The localized block name */ /* Displayed while a comment is being loaded. */ "Loading comment..." = "載入留言中…"; -/* Shown while the app waits for the domain suggestions web service to return during the site creation process. */ -"Loading domains" = "正在載入網域"; - /* Displayed while a call is loading the history. */ "Loading history..." = "正在載入記錄…"; @@ -4616,9 +4505,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Describes a status of a plugin */ "Needs Update" = "需要更新"; -/* Label indicating that a domain name registration has no expiry date. */ -"Never expires" = "永不過期"; - /* Header of section in Plugin Directory showing newest plugins */ "New" = "新增"; @@ -4693,9 +4579,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* List Editor Empty State Message */ "No Items" = "無項目"; -/* Title when users have no Jetpack sites. */ -"No Jetpack sites found" = "找不到任何 Jetpack 網站"; - /* Menus selection title for setting a location to not use a menu. */ "No Menu" = "無選單"; @@ -4912,9 +4795,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Error message to show to users when trying to upload a media object with file size is larger than the available site disk quota */ "Not enough space to upload" = "上傳空間不足"; -/* Accessibility label for unselected following buttons. */ -"Not following" = "未關注"; - /* Button label for denying our request to allow push notifications Not now button title shown in alert preparing users to grant permission for us to send them push notifications. Phrase displayed to dismiss a quick start tour suggestion. */ @@ -5015,7 +4895,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Ok button for dismissing alert helping users understand their site address OK button title for the warning shown to the user when the app realizes there should be an auth token but there isn't one. OK Button title shown in alert informing users about the Reader Save for Later feature. - OK button to close the informative dialog on Gutenberg editor Submit button on prompt for user information. Title of a button that dismisses a prompt Title of an OK button. Pressing the button acknowledges and dismisses a prompt. @@ -5320,9 +5199,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Title for selecting a new username in the site creation flow. */ "Pick username" = "挑選使用者名稱"; -/* The item to select during a guided tour. */ -"Plan" = "方案"; - /* Action title. Noun. Links to a blog's Plans screen. Title for the plan selector */ "Plans" = "方案"; @@ -5639,9 +5515,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Primary Web Site */ "Primary Site" = "主網站"; -/* Primary site address label, used in the site address section of the Domains Dashboard. */ -"Primary site address" = "網站主要網址"; - /* Label for the privacy setting Privacy settings section header */ "Privacy" = "隱私"; @@ -5743,9 +5616,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Published on [date] */ "Published on" = "發佈於"; -/* Label that describes in which blog the user is publishing to */ -"Publishing To" = "發表到"; - /* A short message that informs the user a page is being published to the server from the share extension. */ "Publishing page..." = "正在張貼頁面…"; @@ -5767,9 +5637,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* This is the string we display when asking the user to approve push notifications in the settings app after previously having denied them. */ "Push notifications have been turned off in iOS settings. Toggle “Allow Notifications” to turn them back on." = "已於「iOS 設定」中關閉推播通知。切換至「允許通知」,重新開啟此功能。"; -/* The menu item to select during a guided tour. */ -"Quick Start" = "快速入門"; - /* Title for button allowing users to rate the app in the App Store */ "Rate Us" = "為我們評分"; @@ -5788,13 +5655,9 @@ translators: %s: Select control button label e.g. \"Button width\" */ The accessibility value of the reader tab. The default title of the Reader The menu item to select during a guided tour. - Title of the 'Reader' tab - used for spotlight indexing on iOS. - Title of the Reader section of the debug screen used in debug builds of the app */ + Title of the 'Reader' tab - used for spotlight indexing on iOS. */ "Reader" = "閱覽"; -/* Title of the screen that allows the user to change the Reader CSS URL for debug builds */ -"Reader CSS URL" = "讀取器 CSS URL"; - /* Title of button that asks the users if they'd like to focus on checking their sites stats */ "Reading posts from other sites" = "閱讀其他網站的文章"; @@ -5955,9 +5818,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ First line of remove follower warning in confirmation dialog. */ "Removing followers makes them stop receiving updates from your site. If they choose to, they can still visit your site, and follow it again." = "移除追蹤者,使其停止接收網站的更新內容。 如果他們願意,仍可造訪你的網站並再次追蹤。"; -/* Label indicating the date on which a domain name registration will be renewed. The %@ placeholder will be replaced with a date at runtime. */ -"Renews on %@" = "更新時間:%@"; - /* No comment provided by engineer. */ "Replace Current Block" = "取代目前區塊"; @@ -6090,7 +5950,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ Retry. Verb – retry a failed media upload. The Jetpack view button title used when an error occurred Title for accessory view in the empty state table view cell in the Verticals step of Enhanced Site Creation - title for action that tries to connect to the reader after a loading error. User action to retry media upload. */ "Retry" = "重試"; @@ -6312,9 +6171,6 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* Button in Plugin Directory letting users see more plugins */ "See All" = "查看全部"; -/* Action button linking to instructions for installing Jetpack.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"See Instructions" = "查看說明"; - /* Caption displayed in promotional screens shown during the login flow. */ "See comments and notifications in real time." = "即時查看留言和通知。"; @@ -6331,24 +6187,15 @@ translators: %s: Select control button label e.g. \"Button width\" */ /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to create a new post" = "選取 %@ 以建立新文章"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to discover new themes" = "選取 %@ 以探索新佈景主題"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to find other sites." = "選取「%@」以尋找其他網站。"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see how your site is performing." = "選取 %@ 以查看網站成效。"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your checklist" = "選取 %@ 以查看你的檢查清單"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your current library." = "選取%@以查看你目前的媒體庫"; -/* A step in a guided tour for quick start. %@ will be the name of the item to select. */ -"Select %@ to see your current plan and other available plans." = "選取 %@ 以查看你目前的方案和其他可用方案。"; - /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Select %@ to see your page list." = "選取 %@ 以檢視頁面清單。"; @@ -6741,10 +6588,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Create new Site Page button title */ "Site page" = "網頁"; -/* Prologue title label, the - force splits it into 2 lines. */ -"Site security and performance\nfrom your pocket" = "網站安全性和效能\n從你的口袋"; - /* Site timezone offset from UTC. The first %@ is plus or minus. %d is the number of hours. The last %@ is minutes, where applicable. Examples: `Site timezone (UTC+10:30)`, `Site timezone (UTC-8)`. */ "Site timezone (UTC%@%d%@)" = "網站時區 (UTC%1$@%2$d%3$@)"; @@ -6799,9 +6642,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title shown on the dashboard when it fails to load */ "Some data wasn't loaded" = "部分資料未載入"; -/* Confirms with the user if they save the post all media that failed to upload will be removed from it. */ -"Some media uploads failed. This action will remove all failed media from the post.\nSave anyway?" = "部分媒體上傳失敗。此動作將移除文章中所有上傳失敗的媒體。\n是否仍要儲存?"; - /* Title for a label that appears when the scan failed Title for the error view when the scan start has failed */ "Something went wrong" = "發生錯誤"; @@ -7345,7 +7185,8 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "The site at %@ uses WordPress %@. We recommend to update to the latest version, or at least %@" = "網誌 %1$@ 使用 WordPress 版本 %2$@。我們建議升級至最新版本,至少使用 %3$@ 以上的版本。"; -/* Error message shown a URL does not point to an existing site. */ +/* Error message shown a URL does not point to an existing site. + Error message shown when a URL does not point to an existing site. */ "The site at this address is not a WordPress site. For us to connect to it, the site must use WordPress." = "此地址的網站不是 WordPress 網站。該網站必須使用 WordPress,我們才能與其連結。"; /* Message shown when site deletion API failed */ @@ -7385,7 +7226,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ "Theme Activated" = "已啟用佈景主題"; /* Noun. Name of the Themes feature - The menu item to select during a guided tour. Themes option in the blog details Title of Themes browser page */ "Themes" = "佈景主題"; @@ -7631,9 +7471,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Title for the time zone selector */ "Time Zone" = "時區"; -/* Description of a Quick Start Tour */ -"Time to finish setting up your site! Our checklist walks you through the next steps." = "完成你的網站設定的時候到了!我們的檢查清單會引導你完成後續步驟。"; - /* Error when the uses takes more than 1 minute to submit a security key. */ "Time's up, but don't worry, your security is our priority. Please try again!" = "優惠已到期,但別擔心,你的安全是我們的第一要務。 請再試一次!"; @@ -7685,9 +7522,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message asking the user if they want to set up Jetpack from stats */ "To use stats on your site, you'll need to install the Jetpack plugin." = "若要使用網站的「統計」功能,必須安裝 Jetpack 外掛程式。"; -/* Message explaining that Jetpack needs to be installed for a particular site. Reads like 'To use this app for example.com you'll need to have... */ -"To use this app for %@ you'll need to have the Jetpack plugin installed and activated." = "若要將此應用程式用於 %@,你需要安裝並啟用 Jetpack 外掛程式。"; - /* Comments Today Section Header Insights 'Today' header Notifications Today Section Header */ @@ -7708,9 +7542,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Accessibility Identifier for the Aztec Unordered List Style */ "Toggles the unordered list style" = "切換至未排序清單樣式"; -/* Title of the Tools section of the debug screen used in debug builds of the app */ -"Tools" = "工具"; - /* Insights 'Top Commenters' header */ "Top Commenters" = "踴躍回應者"; @@ -7718,8 +7549,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Screen reader text expressing the menu item is at the top level and has no parent. */ "Top level" = "最上層"; -/* Shortened version of the main title to be used in back navigation - Topic page title */ +/* Shortened version of the main title to be used in back navigation */ "Topic" = "主題"; /* Used when a Reader Topic is not found for a specific id */ @@ -7797,9 +7627,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ Try to load the list of interests again. */ "Try Again" = "再試一次"; -/* Action button that will restart the login flow.Presented when logging in with a site address that does not have a valid Jetpack installation */ -"Try With Another Account" = "嘗試其他帳號"; - /* Text displayed in the view when there aren't any backups to display for a given filter. */ "Try adjusting your date range filter" = "請嘗試調整你的日期範圍篩選條件"; @@ -7879,9 +7706,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Site creation. Seelect a domain, search field placeholder */ "Type a name for your site" = "輸入網站的名稱"; -/* Register domain - Search field placeholder for the Suggested Domain screen */ -"Type to get more suggestions" = "請輸入以獲得更多建議"; - /* URL text field placeholder */ "URL" = "URL"; @@ -7987,12 +7811,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 draft post" = "無法上傳 1 篇文章草稿"; -/* Alert displayed to the user when a single post and multiple files have failed to upload. */ -"Unable to upload 1 draft post, %ld files" = "無法上傳 1 篇文章草稿、%ld 個檔案"; - -/* Alert displayed to the user when a single post and 1 file has failed to upload. */ -"Unable to upload 1 draft post, 1 file" = "無法上傳 1 篇文章草稿、1 個檔案"; - /* Alert displayed to the user when a single post has failed to upload. */ "Unable to upload 1 post" = "無法上傳 1 篇文章"; @@ -8047,8 +7865,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Label of the table view cell's delete button, when unfollowing a site. */ "Unfollow" = "取消關注"; -/* Accessibility label for unfollowing a site - Accessibility label for unfollowing a tag */ +/* Accessibility label for unfollowing a tag */ "Unfollow %@" = "取消關注 %@"; /* Title for a button that unsubscribes the user from the post. */ @@ -8064,9 +7881,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ User unfollowed a site. */ "Unfollowed site" = "已取消關注網站"; -/* Spoken hint describing action for selected following buttons. */ -"Unfollows blog" = "取消關注網誌"; - /* VoiceOver accessibility hint, informing the user the button can be used to unfollow a blog. */ "Unfollows the blog." = "取消關注此網誌。"; @@ -8236,18 +8050,12 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* No comment provided by engineer. */ "Uploading…" = "上傳中…"; -/* Title for alert when trying to save post with failed media items */ -"Uploads failed" = "上傳失敗"; - /* Use the current image */ "Use" = "使用"; /* A step in a guided tour for quick start. %@ will be the name of the item to select. */ "Use %@ to find sites and tags." = "使用「%@」來尋找網站和標籤。"; -/* Title of a row displayed on the debug screen used to configure the sandbox store use in the App. */ -"Use Sandbox Store" = "使用沙盒商店"; - /* The button's title text to use a security key. */ "Use a security key" = "使用安全性金鑰"; @@ -8295,9 +8103,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Push Authentication Alert Title */ "Verify Log In" = "驗證登入"; -/* Notice displayed after domain credit redemption success. */ -"Verify your email address - instructions sent to %@" = "驗證你的電子郵件地址 - 已將說明傳送至 %@"; - /* Description for the version label in the What's new page. */ "Version " = "版本"; @@ -8503,9 +8308,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message for error displayed when preparing a backup fails. */ "We couldn't create your backup. Please try again later." = "我們無法建立你的備份。 請稍後再試一次。"; -/* Primary message shown when there are no domains that match the user entered text. */ -"We couldn't find any available address with the words you entered - let's try again." = "我們找不到任何與你輸入文字相關的可用地址,請再試一次。"; - /* Text displayed in notice after the app fails to upload a page, it will attempt to upload it later. */ "We couldn't publish this page, but we'll try again later." = "我們無法發表此私密頁面,但稍後會再試一次。"; @@ -8581,9 +8383,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* The subtitle text on the magic link requested screen followed by the email address. */ "We just sent a magic link to" = "我們剛將神奇連結傳送至:"; -/* Popup content about why this post is being opened in block editor */ -"We made big improvements to the block editor and think it's worth a try!\n\nWe enabled it for new posts and pages but if you'd like to change to the classic editor, go to 'My Site' > 'Site Settings'." = "我們在「區塊編輯器」上進行了重大更新,我們也強力推薦您可以嘗試使用它!\n\n我們已為您在您之日後的「新文章」或「新頁面」中啟用它,若您仍較偏好「傳統編輯器」,請到 「我的網站」》「網站設定」中進行變更。"; - /* Message displayed when a backup has finished */ "We successfully created a backup of your site as of %@" = "我們已成功建立截至 %@ 為止的網站備份"; @@ -8593,9 +8392,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Informational text about link to other tracking tools */ "We use other tracking tools, including some from third parties. Read about these and how to control them." = "我們會使用其他的追蹤工具,包括由第三方所提供的追蹤工具。瞭解相關資訊及其控制方式。"; -/* Message explaining that WordPress was not detected. */ -"We were not able to detect a WordPress site at the address you entered. Please make sure WordPress is installed and that you are running the latest available version." = "我們在你輸入的位址偵測不到 WordPress 網站。 請確認已安裝 WordPress,而且正在執行最新的可用版本。"; - /* Error message displayed when an error occurred sending the magic link email. */ "We were unable to send you an email at this time. Please try again later." = "我們目前無法寄送電子郵件給你。請稍後再試一次。"; @@ -8684,9 +8480,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Instruction text after a signup Magic Link was requested. */ "We've emailed you a signup link to create your new WordPress.com account. Check your email on this device, and tap the link in the email you receive from WordPress.com." = "我們已透過電子郵件傳送註冊連結給你,使用此連結即可建立新的 WordPress.com 帳號。 請使用此裝置查看電子郵件,並點選 WordPress.com 所傳送電子郵件中的連結。"; -/* Register Domain - error displayed when a domain was purchased succesfully, but there was a problem setting it to a primary domain for the site */ -"We've had problems changing the primary domain on your site — but don't worry, your domain was successfully purchased." = "變更網站的主要網域時發生問題。不過別擔心,你已成功購買網域。"; - /* Account Settings Web Address label Header for a comment author's web address, shown when editing a comment. */ "Web Address" = "網站位址"; @@ -8964,8 +8757,7 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title of Years stats filter. */ "Years" = "年"; -/* Accept Action - Button title. Confirms that the user wants to proceed with a pending action. +/* Button title. Confirms that the user wants to proceed with a pending action. Label for a button that clears all old activity logs Yes */ "Yes" = "好"; @@ -9064,9 +8856,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message informing the user that all of their sites are currently hidden (singular) */ "You have 1 hidden WordPress site." = "你有 1 個隱藏的 WordPress 網站。"; -/* Description for the first domain purchased with a paid plan. */ -"You have a free one-year domain registration with your plan" = "你的方案已包含一年免費網域註冊"; - /* Message alert when attempting to delete site with purchases */ "You have active premium upgrades on your site. Please cancel your upgrades prior to deleting your site." = "你的網站已啟用進階版升級服務。刪除網站前,請先取消升級。"; @@ -9151,9 +8940,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message displayed on a post's card when the post has unsaved changes */ "You've made unsaved changes to this post" = "這篇文章有未儲存的變更"; -/* Header of the domains list section in the Domains Dashboard. */ -"Your Site Domains" = "你的網站網域"; - /* The item to select during a guided tour. */ "Your Site Icon" = "你的網站圖示"; @@ -9181,9 +8967,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Title for the view when there aren't any Backups to display */ "Your first backup will be ready soon" = "第一次備份即將準備就緒"; -/* Title of the site address section in the Domains Dashboard. */ -"Your free WordPress.com address is" = "你的 WordPress.com 免費位址是"; - /* Details about recently acquired domain on domain credit redemption success screen */ "Your new domain %@ is being set up. It may take up to 30 minutes for your domain to start working." = "正在設定你的新網域 %@。 你的網域最多可能需要 30 分鐘才能開始運作。"; @@ -9199,9 +8982,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Message of Export Content confirmation alert; substitution is user's email address */ "Your posts, pages, and settings will be mailed to you at %@." = "我們會將你的文章、網頁與設定透過電子郵件傳送至 %@。"; -/* Footer of the primary site section in the Domains Dashboard. */ -"Your primary site address is what visitors will see in their address bar when visiting your website." = "你的主要網站位址,是訪客造訪你的網站時在瀏覽器上看到的位址。"; - /* Text displayed when a site restore takes too long. */ "Your restore is taking longer than usual, please check again in a few minutes." = "還原的時間比平常更長,請在數分鐘後再返回查看。"; @@ -9259,12 +9039,6 @@ translators: %s: Select control option value e.g: \"Auto, 25%\". */ /* Describes the expected behavior when the user enables in-app notifications in Reader Comments. */ "You’re following this conversation. You will receive an email whenever a new comment is made." = "你正在追蹤此討論。 有新評論時,你會收到電子郵件。"; -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new pages — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "你正在使用區塊編輯器編輯新頁面,太棒了!若你想改用傳統編輯器,請前往「我的網站」>「網站設定」。"; - -/* Popup content about why this post is being opened in block editor */ -"You’re now using the block editor for new posts — great! If you’d like to change to the classic editor, go to ‘My Site’ > ‘Site Settings’." = "你正在使用區塊編輯器編輯新文章,太棒了!若你想改用傳統編輯器,請前往「我的網站」>「網站設定」。"; - /* Comment Attachment Label */ "[COMMENT]" = "[留言]"; @@ -9650,19 +9424,8 @@ Example: Reply to Pamela Nguyen */ /* Feature flags menu item */ "debugMenu.featureFlags" = "功能旗標"; -/* General section title */ -"debugMenu.generalSectionTitle" = "一般"; - -/* Remote config params debug menu footer explaining the meaning of a cell with a checkmark. */ -"debugMenu.remoteConfig.footer" = "覆寫的參數會以核取記號表示。"; - -/* Hint for overriding remote config params */ -"debugMenu.remoteConfig.hint" = "請在此處定義新值,以覆寫所選參數。"; - -/* Placeholder for overriding remote config params */ -"debugMenu.remoteConfig.placeholder" = "沒有遠端或預設值"; - -/* Remote Config debug menu title */ +/* Remote Config Debug Menu screen title + Remote Config debug menu title */ "debugMenu.remoteConfig.title" = "遠端設定"; /* Remove current quick start tour menu item */ @@ -9810,7 +9573,6 @@ Example: Reply to Pamela Nguyen */ "ellipsisButton.AccessibilityLabel" = "更多"; /* Placeholder for the site url textfield. - Provides a sample of what a domain name looks like. Site Address placeholder */ "example.com" = "example.com"; @@ -10222,9 +9984,6 @@ Example: Reply to Pamela Nguyen */ /* Indicating that referrer was marked as spam */ "marked as spam" = "已標示為垃圾訊息"; -/* Products header text in Me Screen. */ -"me.products.header" = "產品"; - /* Title of error prompt shown when a sync fails. */ "media.syncFailed" = "無法同步媒體"; @@ -10862,12 +10621,6 @@ Tapping on this row allows the user to edit the sharing message. */ /* Title for a tappable string that opens the reader with a prompts tag */ "prompts.card.viewprompts.title" = "檢視所有回應"; -/* Subtitle of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.subtitle" = "前往「網站設定」以重新啟用"; - -/* Title of the notification when prompts are hidden from the dashboard card */ -"prompts.notification.removed.title" = "已隱藏網誌提示"; - /* Button label that dismisses the qr log in flow and returns the user back to the previous screen */ "qrLoginVerifyAuthorization.completedInstructions.dismiss" = "關閉"; @@ -11413,9 +11166,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Support email label. */ "support.row.email.title" = "電子郵件"; -/* Option in Support view to view the Forums. */ -"support.row.forums.title" = "WordPress 論壇"; - /* Option in Support view to launch the Help Center. */ "support.row.helpCenter.title" = "WordPress 說明中心"; @@ -11632,9 +11382,6 @@ Example: given a notice format "Following %@" and empty site name, this will be /* Title of a button that displays a blog post in a web view. */ "wp.migration.successCard.learnMore" = "深入瞭解"; -/* Placeholder for site url, if the url is unknown.Presented when logging in with a site address that does not have a valid Jetpack installation.The error would read: to use this app for your site you'll need... */ -"your site" = "你的網站"; - /* Label for button to log in using Google. The {G} will be replaced with the Google logo. */ "{G} Log in with Google." = "{G} 透過 Google 登入。"; From 6196bb749aeb45f1260cb0f204ba559ba54bc077 Mon Sep 17 00:00:00 2001 From: Automattic Release Bot Date: Mon, 8 Jan 2024 23:57:42 -0800 Subject: [PATCH 26/28] Update WordPress metadata translations --- fastlane/metadata/ar-SA/release_notes.txt | 5 ----- fastlane/metadata/de-DE/release_notes.txt | 5 ----- fastlane/metadata/default/release_notes.txt | 17 +++++++++++++---- fastlane/metadata/en-AU/release_notes.txt | 5 ----- fastlane/metadata/en-GB/release_notes.txt | 5 ----- fastlane/metadata/es-ES/release_notes.txt | 5 ----- fastlane/metadata/fr-FR/release_notes.txt | 5 ----- fastlane/metadata/he/release_notes.txt | 5 ----- fastlane/metadata/id/release_notes.txt | 5 ----- fastlane/metadata/it/release_notes.txt | 5 ----- fastlane/metadata/ko/release_notes.txt | 5 ----- fastlane/metadata/nl-NL/release_notes.txt | 5 ----- fastlane/metadata/ru/release_notes.txt | 5 ----- fastlane/metadata/sv/release_notes.txt | 5 ----- fastlane/metadata/tr/release_notes.txt | 5 ----- fastlane/metadata/zh-Hans/release_notes.txt | 5 ----- fastlane/metadata/zh-Hant/release_notes.txt | 5 ----- 17 files changed, 13 insertions(+), 84 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/en-AU/release_notes.txt delete mode 100644 fastlane/metadata/en-GB/release_notes.txt delete mode 100644 fastlane/metadata/es-ES/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/ko/release_notes.txt delete mode 100644 fastlane/metadata/nl-NL/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 0de2faa4c735..000000000000 --- a/fastlane/metadata/ar-SA/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -قمنا بتحديث المحرر التقليدي من خلال أدوات انتقاء الوسائط الجديد في الصور ووسائط الموقع. لا داعي للقلق، لا يزال بإمكانك رفع الوسائط والفيديوهات والمزيد إلى موقعك. - -عند الحديث عن أنواع الوسائط، أصبح بإمكانك الآن إضافة عوامل تصفية الوسائط إلى شاشة وسائط الموقع. إذا كنت تستخدم iPhone، فستلاحظ وضع نسبة الارتفاع إلى العرض الجديد كذلك. يتوافر كلا الخيارين عند النقر على قائمة العنوان. - -أخيرًا، أصلحنا النافذة المنبثقة للامتثال المعطّلة التي تظهر في أثناء التحقق من الإحصاءات خلال عملية الإعداد. رائع. diff --git a/fastlane/metadata/de-DE/release_notes.txt b/fastlane/metadata/de-DE/release_notes.txt deleted file mode 100644 index e69829d872ee..000000000000 --- a/fastlane/metadata/de-DE/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Der klassische Editor wurde mit neuen Medienauswahlen für Fotos und Website-Medien ersetzt. Keine Sorge: Du kannst weiterhin Bilder, Videos und mehr auf deine Website hochladen. - -Apropos Medientypen: Ab sofort kannst du Medienfilter zum Bildschirm für Website-Medien hinzufügen. iPhone-Benutzern wird auch der neue Modus für das Bildformat auffallen. Beide Optionen sind verfügbar, wenn du auf das Titelmenü tippst. - -Außerdem haben wir das fehlerhafte Compliance-Pop-up korrigiert, das angezeigt wurde, wenn du Statistiken während des Onboarding-Prozesses überprüft hast. Das ist doch super. diff --git a/fastlane/metadata/default/release_notes.txt b/fastlane/metadata/default/release_notes.txt index 50f66336896a..52afb2999ddb 100644 --- a/fastlane/metadata/default/release_notes.txt +++ b/fastlane/metadata/default/release_notes.txt @@ -1,5 +1,14 @@ -We updated the classic editor with new media pickers for Photos and Site Media. Don’t worry, you can still upload images, videos, and more to your site. +* [**] [internal] A minor refactor in authentication flow, including but not limited to social sign-in and two factor authentication. [#22086] +* [**] [internal] Refactor domain selection flows to use the same domain selection UI. [22254] +* [**] Re-enable the support for using Security Keys as a second factor during login [#22258] +* [*] Fix crash in editor that sometimes happens after modifying tags or categories [#22265] +* [*] Add defensive code to make sure the retain cycles in the editor don't lead to crashes [#22252] +* [**] [internal] Add support for the Phase One Fast Media Uploads banner [#22330] +* [*] [internal] Remove personalizeHomeTab feature flag [#22280] +* [*] Fix a rare crash in post search related to tags [#22275] +* [*] Fix a rare crash when deleting posts [#22277] +* [*] Fix a rare crash in Site Media prefetching cancellation [#22278] +* [*] Fix an issue with BlogDashboardPersonalizationService being used on the background thread [#22335] +* [***] Block Editor: Avoid keyboard dismiss when interacting with text blocks [https://github.com/WordPress/gutenberg/pull/57070] +* [**] Block Editor: Auto-scroll upon block insertion [https://github.com/WordPress/gutenberg/pull/57273] -Speaking of media types—you can now add media filters to the Site Media screen. If you’re using an iPhone, you’ll notice the new aspect ratio mode, too. Both options are available when you tap the title menu. - -Finally, we fixed the broken compliance pop-up that appears while you’re checking stats during the onboarding process. Sweet. diff --git a/fastlane/metadata/en-AU/release_notes.txt b/fastlane/metadata/en-AU/release_notes.txt deleted file mode 100644 index 50f66336896a..000000000000 --- a/fastlane/metadata/en-AU/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -We updated the classic editor with new media pickers for Photos and Site Media. Don’t worry, you can still upload images, videos, and more to your site. - -Speaking of media types—you can now add media filters to the Site Media screen. If you’re using an iPhone, you’ll notice the new aspect ratio mode, too. Both options are available when you tap the title menu. - -Finally, we fixed the broken compliance pop-up that appears while you’re checking stats during the onboarding process. Sweet. diff --git a/fastlane/metadata/en-GB/release_notes.txt b/fastlane/metadata/en-GB/release_notes.txt deleted file mode 100644 index fcebbfb1a1a7..000000000000 --- a/fastlane/metadata/en-GB/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -We updated the Classic Editor with new media pickers for Photos and Site Media. Don’t worry, you can still upload images, videos, and more to your site. - -Speaking of media types – you can now add media filters to the Site Media screen. If you’re using an iPhone, you’ll notice the new aspect ratio mode, too. Both options are available when you tap the title menu. - -Finally, we fixed the broken compliance pop-up that appears while you’re checking stats during the onboarding process. Sweet. diff --git a/fastlane/metadata/es-ES/release_notes.txt b/fastlane/metadata/es-ES/release_notes.txt deleted file mode 100644 index 1cf99dfd4cb9..000000000000 --- a/fastlane/metadata/es-ES/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Hemos actualizado el editor clásico con nuevos selectores de medios para fotos y medios del sitio. No te preocupes, puedes seguir subiendo imágenes, vídeos y mucho más a tu sitio. - -Hablando de tipos de medios—ahora puedes añadir filtros de medios a la pantalla de medios del sitio. Si utilizas un iPhone, también notarás el nuevo modo de relación de aspecto. Ambas opciones están disponibles cuando tocas el menú del título. - -Por último, hemos arreglado la ventana emergente de cumplimiento que aparece mientras compruebas las estadísticas durante el proceso de puesta en marcha. ¡Genial! diff --git a/fastlane/metadata/fr-FR/release_notes.txt b/fastlane/metadata/fr-FR/release_notes.txt deleted file mode 100644 index 1ec1eeeefecb..000000000000 --- a/fastlane/metadata/fr-FR/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Nous avons mis à jour l’éditeur classique avec de nouveaux sélecteurs de médias pour les photos et les médias du site. Pas d’inquiétude, vous pouvez toujours mettre en ligne des images, des vidéos, et plus encore sur votre site. - -En parlant de types de médias : vous pouvez désormais ajouter des filtres médias à l’écran Médias du site. Si vous utilisez un iPhone, vous remarquerez également le nouveau mode Proportions. Les deux options sont disponibles lorsque vous appuyez sur le menu Titre. - -Enfin, nous avons réparé la pop-up qui apparaît lorsque vous consultez les statistiques à l’occasion du processus de configuration. Pas mal. diff --git a/fastlane/metadata/he/release_notes.txt b/fastlane/metadata/he/release_notes.txt deleted file mode 100644 index 234f1b5315d1..000000000000 --- a/fastlane/metadata/he/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -עדכנו את העורך הקלאסי בבוררי מדיה חדשים לתמונות מצולמות ולמדיה באתר. לא לדאוג – אין בעיה להמשיך להעלות לאתר תמונות, סרטונים ועוד. - -ואם כבר מדברים על סוגי מדיה – מעכשיו אפשר להוסיף מסנני מדיה למסך 'מדיה באתר'. משתמשי iPhone יבחינו גם במצב יחס תצוגה חדש. שתי האפשרויות זמינות בהקשה על תפריט שם האתר. - -ולבסוף, תוקנו החלונות הקופצים השבורים של התאמה לדרישות, שצצו תוך כדי בדיקת נתונים סטטיסטיים בתהליך ההצטרפות. נחמד. diff --git a/fastlane/metadata/id/release_notes.txt b/fastlane/metadata/id/release_notes.txt deleted file mode 100644 index a37afdb01a63..000000000000 --- a/fastlane/metadata/id/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Kami memperbarui editor klasik dengan pemilih media baru untuk Foto dan Media Situs. Namun, Anda masih dapat mengunggah gambar, video, dan lain-lain ke situs Anda. - -Terkait dengan tipe media, kini Anda dapat menambahkan filter media ke layar Media Situs. Jika menggunakan iPhone, Anda pasti juga akan melihat mode rasio aspek yang baru. Kedua pilihan tersedia jika Anda mengetuk menu judul. - -Terakhir, kami memperbaiki kerusakan pop-up kepatuhan yang muncul ketika Anda memeriksa statistik selama proses penyiapan. Mantap. diff --git a/fastlane/metadata/it/release_notes.txt b/fastlane/metadata/it/release_notes.txt deleted file mode 100644 index 4cdd5e40584e..000000000000 --- a/fastlane/metadata/it/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Abbiamo aggiornato l'editor classico con nuovi contenuti multimediali per Foto e Media sito. Non preoccuparti, puoi ancora caricare immagini, video e altro sul tuo sito. - -A proposito di tipi di media, ora puoi aggiungere filtri per i contenuti multimediali nella schermata Media sito. Se usi un iPhone, noterai anche la nuova modalità di rapporto d'aspetto. Entrambe le opzioni sono disponibili quando clicchi sul titolo del menu. - -Infine, abbiamo sistemato il pop-up di conformità non funzionante che appare mentre si controllano le statistiche durante il processo di onboarding. Carino. diff --git a/fastlane/metadata/ko/release_notes.txt b/fastlane/metadata/ko/release_notes.txt deleted file mode 100644 index d70ab53a6fc7..000000000000 --- a/fastlane/metadata/ko/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -사진 및 사이트 미디어에 대한 새로운 미디어 선택기로 구 버전 편집기를 업데이트했습니다. 걱정하지 마세요. 여전히 사이트에 이미지, 비디오 등을 업로드할 수 있습니다. - -미디어 유형의 경우 이제 사이트 미디어 화면에 미디어 필터를 추가할 수 있습니다. iPhone을 사용하는 경우 새로운 화면 비율 모드도 표시됩니다. 두 가지 옵션 모두 제목 메뉴를 눌러서 이용할 수 있습니다. - -마지막으로, 온보딩 프로세스 도중에 통계를 확인하는 동안 나타나는 손상된 규정 준수 팝업을 해결했습니다. 상쾌합니다. diff --git a/fastlane/metadata/nl-NL/release_notes.txt b/fastlane/metadata/nl-NL/release_notes.txt deleted file mode 100644 index 95f6dd24cb65..000000000000 --- a/fastlane/metadata/nl-NL/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -We hebben de klassieke editor bijgewerkt met nieuwe mediakiezers voor foto's en sitemedia. Geen zorgen, je kan nog steeds afbeeldingen, video's en meer uploaden naar je site. - -Over mediatypen gesproken: je kan nu mediafilters toevoegen aan het scherm Sitemedia. Als je een iPhone gebruikt, zie je ook de nieuwe modus voor beeldverhouding. Beide opties zijn beschikbaar als je op het titelmenu tikt. - -Tot slot hebben we de defecte pop-up voor naleving gemaakt die verschijnt als je statistieken bekijkt tijdens het onboardingproces. Handig, toch? diff --git a/fastlane/metadata/ru/release_notes.txt b/fastlane/metadata/ru/release_notes.txt deleted file mode 100644 index 1cb58413a4ad..000000000000 --- a/fastlane/metadata/ru/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Мы обновили классический редактор, добавив новые инструменты выбора медиафайлов в разделы «Фотографии» и «Медиафайлы сайта». Не беспокойтесь, вы по-прежнему можете загружать на свой сайт изображения, видео и всё остальное. - -Что касается типов медиафайлов, теперь можно добавлять их фильтры на экран «Медиафайлы сайта». Если вы пользуетесь iPhone, вы также заметите новый режим соотношения сторон. Доступ к обеим опциям открывается при нажатии меню заголовка. - -Ну и наконец, мы исправили сбой всплывающего окна с предупреждением о соответствии требованиям, которое появляется, когда вы проверяете статистику в процессе регистрации. Отлично. diff --git a/fastlane/metadata/sv/release_notes.txt b/fastlane/metadata/sv/release_notes.txt deleted file mode 100644 index 8fe0309fd6e2..000000000000 --- a/fastlane/metadata/sv/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Vi har uppdaterat den klassiska redigeraren med nya mediaväljare för foton och webbplatsmedia. Oroa dig inte, du kan fortfarande ladda upp bilder, videoklipp och annat till din webbplats. - -På tal om olika typer av media – du kan nu lägga till mediafilter på skärmen Webbplatsmedia. Om du använder en iPhone kommer du även att märka det nya bildförhållandeläget. Båda alternativen är tillgängliga när du trycker på rubrikmenyn. - -Slutligen har vi åtgärdat det trasiga popup-fönstret rörande efterlevnad som visas när man kollar statistik under onboardingprocessen. Perfekt. diff --git a/fastlane/metadata/tr/release_notes.txt b/fastlane/metadata/tr/release_notes.txt deleted file mode 100644 index 2b3b1733658f..000000000000 --- a/fastlane/metadata/tr/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Klasik düzenleyiciyi, Fotoğraflar ve Site ortamı için yeni medya seçicilerle güncelledik. Endişelenmeyin; yine de sitenize resim, video ve daha fazlasını yükleyebilirsiniz. - -Medya türlerinden bahsetmişken, artık Site ortamı ekranına medya filtreleri ekleyebilirsiniz. iPhone kullanıyorsanız yeni en-boy oranı modunu da fark edeceksiniz. Başlık menüsüne dokunduğunuzda her iki seçenek de kullanılabilir. - -Son olarak, katılım süreci sırasında istatistikleri kontrol ederken görünen bozuk uyumluluk açılır penceresini düzelttik. Tatlı. diff --git a/fastlane/metadata/zh-Hans/release_notes.txt b/fastlane/metadata/zh-Hans/release_notes.txt deleted file mode 100644 index cdcfcd2ae1b1..000000000000 --- a/fastlane/metadata/zh-Hans/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -我们更新了经典编辑器,添加了用于照片和站点媒体的新媒体选择器。 别担心,您仍然可以将图片、视频等内容上传至您的站点。 - -至于媒体类型,您现在可以在“站点媒体”屏幕上添加媒体过滤器。 如果您使用的是 iPhone,您还会注意到新的宽高比模式。 轻点标题菜单,即可在两个选项中进行切换。 - -最后,我们修复了在入门流程中查看统计信息时出现的合规性弹窗不完整的问题。 很贴心。 diff --git a/fastlane/metadata/zh-Hant/release_notes.txt b/fastlane/metadata/zh-Hant/release_notes.txt deleted file mode 100644 index 500df5b1ae76..000000000000 --- a/fastlane/metadata/zh-Hant/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -我們更新了傳統編輯器,為照片和網站媒體加入全新的媒體選擇器。 別擔心,你仍可以上傳圖片、影片和更多內容到網站上。 - -說到媒體類型,你現在可以在「網站媒體」畫面新增媒體篩選條件。 若你使用 iPhone,也會注意到新加入的畫面比例模式。 點選標題選單時,會出現兩種選項。 - -最後,我們修復了在新手體驗流程中,當你在查看統計資料時,會出現的故障合規快顯視窗。 真是太棒了。 From 31bd35464f4a8caa9bd18bde1a4483212541b9ed Mon Sep 17 00:00:00 2001 From: Automattic Release Bot Date: Mon, 8 Jan 2024 23:57:45 -0800 Subject: [PATCH 27/28] Update Jetpack metadata translations --- .../jetpack_metadata/ar-SA/release_notes.txt | 5 ----- .../jetpack_metadata/de-DE/release_notes.txt | 5 ----- .../default/release_notes.txt | 21 +++++++++++++++---- .../jetpack_metadata/es-ES/release_notes.txt | 5 ----- .../jetpack_metadata/fr-FR/release_notes.txt | 5 ----- .../jetpack_metadata/he/release_notes.txt | 5 ----- .../jetpack_metadata/id/release_notes.txt | 5 ----- .../jetpack_metadata/it/release_notes.txt | 5 ----- .../jetpack_metadata/ja/release_notes.txt | 5 ----- .../jetpack_metadata/ko/release_notes.txt | 5 ----- .../jetpack_metadata/nl-NL/release_notes.txt | 5 ----- .../jetpack_metadata/pt-BR/release_notes.txt | 5 ----- .../jetpack_metadata/ru/release_notes.txt | 5 ----- .../jetpack_metadata/sv/release_notes.txt | 5 ----- .../jetpack_metadata/tr/release_notes.txt | 5 ----- .../zh-Hans/release_notes.txt | 5 ----- .../zh-Hant/release_notes.txt | 5 ----- 17 files changed, 17 insertions(+), 84 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 bbce8b261bff..000000000000 --- a/fastlane/jetpack_metadata/ar-SA/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -قمنا بتحديث المحرر التقليدي من خلال أدوات انتقاء الوسائط الجديدة في الصور ووسائط الموقع. لا داعي للقلق، لا يزال بإمكانك رفع الوسائط والفيديوهات والمزيد إلى موقعك. - -عند الحديث عن أنواع الوسائط، أصبح بإمكانك الآن إضافة عوامل تصفية الوسائط إلى شاشة وسائط الموقع. إذا كنت تستخدم iPhone، فستلاحظ وضع نسبة الارتفاع إلى العرض الجديد كذلك. يتوافر كلا الخيارين عند النقر على قائمة العنوان. - -أخيرًا، أصلحنا النافذة المنبثقة للامتثال المعطّلة التي تظهر في أثناء التحقق من الإحصاءات خلال عملية الإعداد. أصلحنا أيضًا عطلاً نادرًا حدث في أثناء تسجيل الخروج. رائع. 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 876e13b36c82..000000000000 --- a/fastlane/jetpack_metadata/de-DE/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Der klassische Editor wurde mit neuen Medienauswahlen für Fotos und Website-Medien ersetzt. Keine Sorge: Du kannst weiterhin Bilder, Videos und mehr auf deine Website hochladen. - -Apropos Medientypen: Ab sofort kannst du Medienfilter zum Bildschirm für Website-Medien hinzufügen. iPhone-Benutzern wird auch der neue Modus für das Bildformat auffallen. Beide Optionen sind verfügbar, wenn du auf das Titelmenü tippst. - -Außerdem haben wir das fehlerhafte Compliance-Pop-up korrigiert, das angezeigt wurde, wenn du Statistiken während des Onboarding-Prozesses überprüft hast. Zu guter Letzt wurde ein seltener Fehler während der Abmeldung behoben. Das ist doch super. diff --git a/fastlane/jetpack_metadata/default/release_notes.txt b/fastlane/jetpack_metadata/default/release_notes.txt index 93a123fb2d20..c2c9251550cf 100644 --- a/fastlane/jetpack_metadata/default/release_notes.txt +++ b/fastlane/jetpack_metadata/default/release_notes.txt @@ -1,5 +1,18 @@ -We updated the classic editor with new media pickers for Photos and Site Media. Don’t worry, you can still upload images, videos, and more to your site. +* [**] [internal] A minor refactor in authentication flow, including but not limited to social sign-in and two factor authentication. [#22086] +* [***] Plans: Upgrade to a WPCOM plan from domains dashboard in Jetpack app. [#22261] +* [**] [internal] Refactor domain selection flows to use the same domain selection UI. [22254] +* [**] Re-enable the support for using Security Keys as a second factor during login [#22258] +* [*] Fix crash in editor that sometimes happens after modifying tags or categories [#22265] +* [**] Updated login screen's colors to highlight WordPress - Jetpack brand relationship +* [*] Add defensive code to make sure the retain cycles in the editor don't lead to crashes [#22252] +* [*] Updated Site Domains screen to make domains management more convenient [#22294, #22311] +* [**] [internal] Adds support for dynamic dashboard cards driven by the backend [#22326] +* [**] [internal] Add support for the Phase One Fast Media Uploads banner [#22330] +* [*] [internal] Remove personalizeHomeTab feature flag [#22280] +* [*] Fix a rare crash in post search related to tags [#22275] +* [*] Fix a rare crash when deleting posts [#22277] +* [*] Fix a rare crash in Site Media prefetching cancellation [#22278] +* [*] Fix an issue with BlogDashboardPersonalizationService being used on the background thread [#22335] +* [***] Block Editor: Avoid keyboard dismiss when interacting with text blocks [https://github.com/WordPress/gutenberg/pull/57070] +* [**] Block Editor: Auto-scroll upon block insertion [https://github.com/WordPress/gutenberg/pull/57273] -Speaking of media types—you can now add media filters to the Site Media screen. If you’re using an iPhone, you’ll notice the new aspect ratio mode, too. Both options are available when you tap the title menu. - -Finally, we fixed the broken compliance pop-up that appears while you’re checking stats during the onboarding process. We also fixed a rare crash that happened while logging out. Sweet. 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 6239cda1574f..000000000000 --- a/fastlane/jetpack_metadata/es-ES/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Hemos actualizado el editor clásico con nuevos selectores de medios para fotos y medios del sitio. No te preocupes: puedes seguir subiendo imágenes, vídeos y mucho más a tu sitio. - -Hablando de tipos de medios: ahora puedes añadir filtros de medios a la pantalla de medios del sitio. Si usas un iPhone, también notarás el nuevo modo de relación de aspecto. Ambas opciones están disponibles al tocar el menú de títulos. - -Por último, hemos corregido la ventana emergente de cumplimiento que aparecía mientras comprobabas las estadísticas durante el proceso de incorporación. También hemos corregido un fallo poco frecuente que se producía al salir de la sesión. Perfecto. 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 745c60cdc32d..000000000000 --- a/fastlane/jetpack_metadata/fr-FR/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Nous avons mis à jour l’éditeur classique avec de nouveaux sélecteurs de médias pour les photos et les médias du site. Pas d’inquiétude, vous pouvez toujours mettre en ligne des images, des vidéos, et plus encore sur votre site. - -En parlant de types de médias : vous pouvez désormais ajouter des filtres médias à l’écran Médias du site. Si vous utilisez un iPhone, vous remarquerez également le nouveau mode Proportions. Les deux options sont disponibles lorsque vous appuyez sur le menu Titre. - -Enfin, nous avons réparé la pop-up qui apparaît lorsque vous consultez les statistiques à l’occasion du processus de configuration. Nous avons par ailleurs corrigé un incident rare qui se produisait lors de la déconnexion. Pas mal. diff --git a/fastlane/jetpack_metadata/he/release_notes.txt b/fastlane/jetpack_metadata/he/release_notes.txt deleted file mode 100644 index 81455740c244..000000000000 --- a/fastlane/jetpack_metadata/he/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -עדכנו את העורך הקלאסי בבוררי מדיה חדשים לתמונות מצולמות ולמדיה באתר. לא לדאוג – אין בעיה להמשיך להעלות לאתר תמונות, סרטונים ועוד. - -ואם כבר מדברים על סוגי מדיה – מעכשיו אפשר להוסיף מסנני מדיה למסך 'מדיה באתר'. משתמשי iPhone יבחינו גם במצב יחס תצוגה חדש. שתי האפשרויות זמינות בהקשה על תפריט שם האתר. - -ולבסוף, תוקנו החלונות הקופצים השבורים של התאמה לדרישות, שצצו תוך כדי בדיקת נתונים סטטיסטיים בתהליך ההצטרפות. תיקנו גם בעיית קריסה נדירה שהייתה מתרחשת בעת התנתקות. נחמד. diff --git a/fastlane/jetpack_metadata/id/release_notes.txt b/fastlane/jetpack_metadata/id/release_notes.txt deleted file mode 100644 index 17aa0e3eaa84..000000000000 --- a/fastlane/jetpack_metadata/id/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Kami memperbarui editor klasik dengan pemilih media baru untuk Foto dan Media Situs. Namun, Anda masih dapat mengunggah gambar, video, dan lain-lain ke situs Anda. - -Terkait dengan tipe media, kini Anda dapat menambahkan filter media ke layar Media Situs. Jika menggunakan iPhone, Anda pasti juga akan melihat mode rasio aspek yang baru. Kedua pilihan tersedia jika Anda mengetuk menu judul. - -Kami telah memperbaiki kerusakan pop-up kepatuhan yang muncul ketika Anda memeriksa statistik selama proses penyiapan. Kami juga memperbaiki crash yang jarang terjadi selama logout. Mantap. diff --git a/fastlane/jetpack_metadata/it/release_notes.txt b/fastlane/jetpack_metadata/it/release_notes.txt deleted file mode 100644 index 51e7377b14b1..000000000000 --- a/fastlane/jetpack_metadata/it/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Abbiamo aggiornato l'editor classico con nuovi contenuti multimediali per Foto e Media sito. Non preoccuparti, puoi ancora caricare immagini, video e altro sul tuo sito. - -A proposito di tipi di media, ora puoi aggiungere filtri per i contenuti multimediali nella schermata Media sito. Se usi un iPhone, noterai anche la nuova modalità di rapporto d'aspetto. Entrambe le opzioni sono disponibili quando clicchi sul titolo del menu. - -Infine, abbiamo sistemato il pop-up di conformità non funzionante che appare mentre si controllano le statistiche durante il processo di onboarding. Abbiamo anche risolto un raro crash che si verificava durante la disconnessione. Carino. diff --git a/fastlane/jetpack_metadata/ja/release_notes.txt b/fastlane/jetpack_metadata/ja/release_notes.txt deleted file mode 100644 index 23b58dafb7dd..000000000000 --- a/fastlane/jetpack_metadata/ja/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -クラシックエディターを更新し、写真とサイトメディア用の新しいメディアピッカーを追加しました。 引き続き、画像や動画などをサイトにアップロードできます。 - -メディアタイプでは、サイトメディア画面にメディアフィルターを追加できるようになりました。 iPhone を使用している場合、新しい縦横比モードでも表示されます。 タイトルメニューをタップすると、両方のオプションが利用可能になります。 - -ようやく、オンボーディングプロセス中に統計情報を確認しているときに表示される、機能しないコンプライアンスポップアップを修正しました。 ログアウト中にまれに発生するクラッシュも修正されました。 ぜひ活用してください。 diff --git a/fastlane/jetpack_metadata/ko/release_notes.txt b/fastlane/jetpack_metadata/ko/release_notes.txt deleted file mode 100644 index d123967af569..000000000000 --- a/fastlane/jetpack_metadata/ko/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -사진 및 사이트 미디어에 대한 새로운 미디어 선택기로 구 버전 편집기를 업데이트했습니다. 걱정하지 마세요. 여전히 사이트에 이미지, 비디오 등을 업로드할 수 있습니다. - -미디어 유형의 경우 이제 사이트 미디어 화면에 미디어 필터를 추가할 수 있습니다. iPhone을 사용하는 경우 새로운 화면 비율 모드도 표시됩니다. 두 가지 옵션 모두 제목 메뉴를 눌러서 이용할 수 있습니다. - -마지막으로, 온보딩 프로세스 도중에 통계를 확인하는 동안 나타나는 손상된 규정 준수 팝업을 해결했습니다. 로그아웃하는 동안 드물게 발생하는 충돌도 해결했습니다. 상쾌합니다. 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 1d6040799515..000000000000 --- a/fastlane/jetpack_metadata/nl-NL/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -We hebben de klassieke editor bijgewerkt met nieuwe mediakiezers voor foto's en sitemedia. Geen zorgen, je kan nog steeds afbeeldingen, video's en meer uploaden naar je site. - -Over mediatypen gesproken: je kan nu mediafilters toevoegen aan het scherm Sitemedia. Als je een iPhone gebruikt, zie je ook de nieuwe modus voor beeldverhouding. Beide opties zijn beschikbaar als je op het titelmenu tikt. - -Tot slot hebben we de defecte pop-up voor naleving gemaakt die verschijnt als je statistieken bekijkt tijdens het onboardingproces. We hebben ook een zeldzame crash bij het uitloggen opgelost. Handig, toch? 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 6cee530ca0bd..000000000000 --- a/fastlane/jetpack_metadata/pt-BR/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Atualizamos o editor clássico com novos seletores de mídia para Mídia do site e Fotos. Não se preocupe, você ainda pode fazer upload de imagens, vídeos e muito mais no seu site. - -E por falar nisso, agora é possível adicionar filtros de mídia à tela Mídia do site. Se você estiver usando um iPhone, notará um novo modo de proporção de tela também. Ambas as opções estão disponíveis ao tocar no menu de título. - -Por fim, corrigimos o pop-up de conformidade corrompido que aparece ao verificar as estatísticas durante o processo de integração. Também corrigimos uma falha rara que ocorria ao fazer logout. Incrível. diff --git a/fastlane/jetpack_metadata/ru/release_notes.txt b/fastlane/jetpack_metadata/ru/release_notes.txt deleted file mode 100644 index 835ef24019ec..000000000000 --- a/fastlane/jetpack_metadata/ru/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Мы обновили классический редактор, добавив новые инструменты выбора медиафайлов в разделы «Фотографии» и «Медиафайлы сайта». Не беспокойтесь, вы по-прежнему можете загружать на свой сайт изображения, видео и всё остальное. - -Что касается типов медиафайлов, теперь можно добавлять их фильтры на экран «Медиафайлы сайта». Если вы пользуетесь iPhone, вы также заметите новый режим соотношения сторон. Доступ к обеим опциям открывается при нажатии меню заголовка. - -Ну и наконец, мы исправили сбой всплывающего окна с предупреждением о соответствии требованиям, которое появляется, когда вы проверяете статистику в процессе регистрации. Мы также устранили ошибку, которая иногда приводила к аварийному завершению работы при выходе из системы. Отлично. diff --git a/fastlane/jetpack_metadata/sv/release_notes.txt b/fastlane/jetpack_metadata/sv/release_notes.txt deleted file mode 100644 index 9fbb706f3d2a..000000000000 --- a/fastlane/jetpack_metadata/sv/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Vi har uppdaterat den klassiska redigeraren med nya mediaväljare för foton och webbplatsmedia. Oroa dig inte, du kan fortfarande ladda upp bilder, videoklipp och annat till din webbplats. - -På tal om olika typer av media – du kan nu lägga till mediafilter på skärmen Webbplatsmedia. Om du använder en iPhone kommer du även att märka det nya bildförhållandeläget. Båda alternativen är tillgängliga när du trycker på rubrikmenyn. - -Slutligen har vi åtgärdat det trasiga popup-fönstret rörande efterlevnad som visas när man kollar statistik under onboardingprocessen. Vi har också åtgärdat en sällsynt krasch som kunde uppstå vid utloggning. Perfekt. diff --git a/fastlane/jetpack_metadata/tr/release_notes.txt b/fastlane/jetpack_metadata/tr/release_notes.txt deleted file mode 100644 index b13e1ca5241b..000000000000 --- a/fastlane/jetpack_metadata/tr/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -Fotoğraflar ve Site Ortamı için yeni ortam seçicilerle klasik düzenleyiciyi güncelledik. Endişelenmeyin; görselleri, videoları ve dahasını sitenize yüklemeye devam edebilirsiniz. - -Ortam türleriyle ilgili konuşuyorken artık Site Ortamı ekranına ortam filtreleri ekleyebileceğinizi de paylaşmak isteriz. iPhone kullanıyorsanız yeni en boy oranı modunu da fark edeceksiniz. Başlık menüsüne dokunduğunuzda iki seçenek de kullanılabilir. - -Son olarak, siz hazırlık süreci sırasında istatistikleri kontrol ederken görünen bozuk uyumluluk açılır penceresini düzelttik. Ayrıca oturum kapatılırken gerçekleşen nadir bir kilitlenme sorununu da düzelttik. Çok hoş. 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 ffd34b42f11c..000000000000 --- a/fastlane/jetpack_metadata/zh-Hans/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -我们更新了经典编辑器,添加了用于照片和站点媒体的新媒体选择器。 别担心,您仍然可以将图片、视频等内容上传至您的站点。 - -至于媒体类型,您现在可以在“站点媒体”屏幕上添加媒体过滤器。 如果您使用的是 iPhone,您还会注意到新的宽高比模式。 轻点标题菜单,即可在两个选项中进行切换。 - -最后,我们修复了在入门流程中查看统计信息时出现的合规性弹窗不完整的问题。 我们还修复了一个在注销时极少出现的崩溃问题。 很贴心。 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 24003017c2a2..000000000000 --- a/fastlane/jetpack_metadata/zh-Hant/release_notes.txt +++ /dev/null @@ -1,5 +0,0 @@ -我們更新了傳統編輯器,為照片和網站媒體加入全新的媒體選擇器。 別擔心,你仍可以上傳圖片、影片和更多內容到網站上。 - -說到媒體類型,你現在可以在「網站媒體」畫面新增媒體篩選條件。 若你使用 iPhone,也會注意到新加入的畫面比例模式。 點選標題選單時,會出現兩種選項。 - -最後,我們修復了在新手體驗流程中,當你在查看統計資料時,會出現的故障合規快顯視窗。 我們也修正了登出時偶爾會出現的當機問題。 真是太棒了。 From 0e5cf7d66c0c6067b322b8f98f06b7e1f4ea9088 Mon Sep 17 00:00:00 2001 From: Automattic Release Bot Date: Mon, 8 Jan 2024 23:57:58 -0800 Subject: [PATCH 28/28] Bump version number --- config/Version.public.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/Version.public.xcconfig b/config/Version.public.xcconfig index 1636e87e6260..54432d4d2dc4 100644 --- a/config/Version.public.xcconfig +++ b/config/Version.public.xcconfig @@ -1,2 +1,2 @@ -VERSION_LONG = 24.0.0.0 +VERSION_LONG = 24.0.0.1 VERSION_SHORT = 24.0