From b88d57643141d00c97f3ccf4bad3a5fd33d3639a Mon Sep 17 00:00:00 2001 From: Satindar Dhillon Date: Thu, 19 Jan 2023 17:02:15 -0800 Subject: [PATCH] add local text for new strings --- .../OmnivoreKit/Sources/Views/LocalText.swift | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/apple/OmnivoreKit/Sources/Views/LocalText.swift b/apple/OmnivoreKit/Sources/Views/LocalText.swift index 9b9b3b17f..deb55f220 100644 --- a/apple/OmnivoreKit/Sources/Views/LocalText.swift +++ b/apple/OmnivoreKit/Sources/Views/LocalText.swift @@ -20,4 +20,32 @@ public enum LocalText { static let usernameValidationErrorInvalid = localText(key: "username.validation.error.invalidPattern") static let usernameValidationErrorTooShort = localText(key: "username.validation.error.tooshort") static let usernameValidationErrorTooLong = localText(key: "username.validation.error.toolong") + + static let labelsGeneric = localText(key: "labels.generic") + static let emailsGeneric = localText(key: "emails.generic") + static let subscriptionsGeneric = localText(key: "subscriptions.generic") + static let textToSpeechGeneric = localText(key: "textToSpeech.generic") + static let privacyPolicyGeneric = localText(key: "privacy.policy.generic") + static let termsAndConditionsGeneric = localText(key: "termsAndConditions.generic") + static let feedbackGeneric = localText(key: "feedback.generic") + static let manageAccountGeneric = localText(key: "manageAccount.generic") + static let logoutGeneric = localText(key: "logout.generic") + static let doneGeneric = localText(key: "done.generic") + static let cancelGeneric = localText(key: "cancel.generic") + static let inboxGeneric = localText(key: "inbox.generic") + static let readLaterGeneric = localText(key: "readLater.generic") + static let newslettersGeneric = localText(key: "newsletters.generic") + static let allGeneric = localText(key: "all.generic") + static let archivedGeneric = localText(key: "archived.generic") + static let highlightedGeneric = localText(key: "highlighted.generic") + static let filesGeneric = localText(key: "files.generic") + static let newestGeneric = localText(key: "newest.generic") + static let oldestGeneric = localText(key: "oldest.generic") + static let recentlyReadGeneric = localText(key: "recentlyRead.generic") + static let recentlyPublishedGeneric = localText(key: "recentlyPublished.generic") + static let createLabelMessage = localText(key: "create.label.message") + static let createNewEmailMessage = localText(key: "create.new.email.message") + static let newslettersDescription = localText(key: "newsletters.description") + static let labelsPurposeDescription = localText(key: "labels.purpose.description") + static let noCurrentSubscriptionsMessage = localText(key: "no.current.subscriptions.message") }