Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions Sources/TranslateKitBusinessLite/Localizable.xcstrings
Original file line number Diff line number Diff line change
Expand Up @@ -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" : {
Expand Down Expand Up @@ -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" : {
Expand Down
20 changes: 20 additions & 0 deletions Sources/TranslateKitBusinessLite/TK+Label.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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")
Expand Down