translate back button ionic 2

前端 未结 4 2184
后悔当初
后悔当初 2021-02-14 20:00

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\',         


        
4条回答
  •  野的像风
    2021-02-14 20:44

    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);
      });
    });

提交回复
热议问题