Skip to content

Instantly share code, notes, and snippets.

@clmntcrl
Created July 16, 2015 17:01
Show Gist options
  • Save clmntcrl/df9343a42263fda192bb to your computer and use it in GitHub Desktop.
Save clmntcrl/df9343a42263fda192bb to your computer and use it in GitHub Desktop.
LocalizedString
// LocalizedString by Clément Cyril - @clmntcrl - http://clmntcrl.io/
// Copyright 2015 Clément Cyril.
import Foundation
func localizedString(string: String, comment: String = "") -> String {
return String(NSLocalizedString(string, comment: comment))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment