diff --git a/Sources/TranslateKitBusinessLite/Localizable.xcstrings b/Sources/TranslateKitBusinessLite/Localizable.xcstrings index e3bbabe..a054be8 100644 --- a/Sources/TranslateKitBusinessLite/Localizable.xcstrings +++ b/Sources/TranslateKitBusinessLite/Localizable.xcstrings @@ -15312,6 +15312,24 @@ } } }, + "TK.Label.ordered" : { + "comment" : "Use for showing an order's status", + "extractionState" : "extracted_with_value", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "new", + "value" : "Ordered" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Commandé" + } + } + } + }, "TK.Label.organization" : { "comment" : "Use for company or group organization details", "localizations" : { @@ -16818,6 +16836,24 @@ } } }, + "TK.Label.validated" : { + "comment" : "Use for showing a validated status", + "extractionState" : "extracted_with_value", + "localizations" : { + "en" : { + "stringUnit" : { + "state" : "new", + "value" : "Validated" + } + }, + "fr" : { + "stringUnit" : { + "state" : "translated", + "value" : "Validé" + } + } + } + }, "TK.Label.vendor" : { "comment" : "Use for referring to a supplier or service provider", "localizations" : { diff --git a/Sources/TranslateKitBusinessLite/TK+Label.swift b/Sources/TranslateKitBusinessLite/TK+Label.swift index 5e10caf..59d2f14 100644 --- a/Sources/TranslateKitBusinessLite/TK+Label.swift +++ b/Sources/TranslateKitBusinessLite/TK+Label.swift @@ -187,6 +187,16 @@ extension TK.Label { String(localized: "TK.Label.meeting", defaultValue: "Meeting", bundle: .module, comment: "Use for a scheduled business meeting or appointment") } + /// "Ordered" - Use for showing an order's status + public static var ordered: String { + String( + localized: "TK.Label.ordered", + defaultValue: "Ordered", + bundle: .module, + comment: "Use for showing an order's status" + ) + } + /// "Organization" - Use for company or group organization details public static var organization: String { String( @@ -247,6 +257,16 @@ extension TK.Label { ) } + /// "Validated" - Use for showing a validated status + public static var validated: String { + String( + localized: "TK.Label.validated", + defaultValue: "Validated", + bundle: .module, + comment: "Use for showing a validated status" + ) + } + /// "Vendor" - Use for referring to a supplier or service provider public static var vendor: String { String(localized: "TK.Label.vendor", defaultValue: "Vendor", bundle: .module, comment: "Use for referring to a supplier or service provider")