Localization in Swift 2
In the Localizable.strings
for English and German you have missed the semi-colon at the end of statement.
It should be like :
"buttonTitle" = "MyButton";
and
"buttonTitle" = "MeinButton";
You can refer Apple docs for this.
- I think you have missed the semi-colon on the Localizable.strings after each key-value pair.