| 123456789101112131415161718192021 |
- //
- // LocalizedString.swift
- // G7SensorKitUI
- //
- // Created by Pete Schwamb on 3/20/23.
- //
- import Foundation
- internal class FrameworkBundle {
- static let main = Bundle(for: FrameworkBundle.self)
- }
- func LocalizedString(_ key: String, tableName: String? = nil, value: String? = nil, comment: String) -> String {
- if let value = value {
- return NSLocalizedString(key, tableName: tableName, bundle: FrameworkBundle.main, value: value, comment: comment)
- } else {
- return NSLocalizedString(key, tableName: tableName, bundle: FrameworkBundle.main, comment: comment)
- }
- }
|