I want to localize my application; I am using Swift 2. I followed this tutorial but I experience 2 issues.
In the Localizable.strings for English and German you have missed the semi-colon at the end of statement.
Localizable.strings
It should be like :
"buttonTitle" = "MyButton"; and
"buttonTitle" = "MyButton";
"buttonTitle" = "MeinButton";
You can refer Apple docs for this.