// Generated from Strings-Stringium at 2022-03-07 11:02:15 +0000 import UIKit fileprivate let kStringsFileName = "sampleStrings" extension String { // MARK: - Webservice /// Translation in en : /// en static var param_lang: String { NSLocalizedString("param_lang", tableName: kStringsFileName, bundle: Bundle.main, value: "en", comment: "") } // MARK: - Generic /// Translation in en : /// Back static var generic_back: String { NSLocalizedString("generic_back", tableName: kStringsFileName, bundle: Bundle.main, value: "Back", comment: "") } /// Translation in en : /// Loading data... static var generic_loading_data: String { NSLocalizedString("generic_loading_data", tableName: kStringsFileName, bundle: Bundle.main, value: "Loading data...", comment: "") } /// Translation in en : /// Welcome \"%@\" ! static var generic_welcome_firstname_format: String { NSLocalizedString("generic_welcome_firstname_format", tableName: kStringsFileName, bundle: Bundle.main, value: "Welcome \"%@\" !", comment: "") } /// Translation in en : /// Welcome \"%@\" ! static func generic_welcome_firstname_format(arg0: String) -> String { String(format: Self.generic_welcome_firstname_format, arg0) } // MARK: - Placeholders /// Translation in en : /// You %%: %2$@ %1$@ Age: %3$d static var placeholders_test_one: String { NSLocalizedString("placeholders_test_one", tableName: kStringsFileName, bundle: Bundle.main, value: "You %%: %2$@ %1$@ Age: %3$d", comment: "") } /// Translation in en : /// You %%: %2$@ %1$@ Age: %3$d static func placeholders_test_one(arg0: String, arg1: String, arg2: Int) -> String { String(format: Self.placeholders_test_one, arg0, arg1, arg2) } }