Created
September 20, 2017 19:48
-
-
Save AquaGeek/1e00901a3d9e4c50e0d329a4697231be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct L10n { | |
struct Login { | |
static func welcomeMessage(placeholder: String) -> String { | |
return String.localizedStringWithFormat( | |
NSLocalizedString("login.welcome_message", "Greeting to show users upon successful login"), | |
placeholder | |
) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment