Meteor accounts.ui localization

后端 未结 2 802
北恋
北恋 2021-02-07 16:30

I\'m learning to use meteor.

Is it possible to easily localize accounts.ui components?

2条回答
  •  隐瞒了意图╮
    2021-02-07 17:13

    Here is a trick I have used. Simple, but works:

    Template.header.rendered = function() {
      $('#login-sign-in-link').text('Přihlásit se ▾');
      $('.login-close-text').text('Zavřít nabídku');
      $('.sign-in-text-google').text('Přihlásit se přes Google');
      $('.sign-in-text-facebook').text('Přihlásit se přes FB');
      //etc...
    };
    

提交回复
热议问题