I changed the name of the Back button in ionic 2 but does somebody know how you can translate this button with ng2-translate?
this.config.set(\'backButtonText\',
I had to use it like this (in app.component.ts)
this.platform.ready().then(() => { this.translate.get('GENERIC.BACK').subscribe(backLabel => { this.config.set('ios', 'backButtonText', backLabel); }); });