nslocalizedstring with variable swift code example
Example: localized string format swift
// you should have "account.by_user" = "by %@ and %@"; and take this:
let localizedString = NSLocalizedString("account.by_user", comment: "any comment")
let wantedString = String(format: localizedString, "Peter","Larry")