3

我有一个 helpers/config.js

Accounts.ui.config({

});

在玩了几个小时并搜索之后,我一直无法找到一种方法来更改顶部引导导航中生成的 tex SIGNIN/JOIN。

我该如何以正确的方式做到这一点?

4

1 回答 1

2

该软件包的使用anti:i18n如下所示:

https://github.com/ianmartorell/meteor-accounts-ui-bootstrap-3/blob/master/package.js#L15

所以你可以做的只是覆盖那里声明的默认 i18n 字符串:

https://github.com/ianmartorell/meteor-accounts-ui-bootstrap-3/blob/master/i18n/en.i18n.js#L25

我从未使用过anti:i18n,但我认为在您的应用程序中抛出此代码应该可以解决问题:

i18n.map("en",{
  loginButtonsLoggedOutDropdown: {
    signIn: "YOUR SIGN IN TEXT",
    up: "YOUR JOIN TEXT"
  }
});

您还需要使用以下命令将包添加到您的应用程序:

meteor add anti:i18n

这是因为即使包是 的依赖项ian:accounts-ui-bootstrap-3,您也不允许在您的应用程序中访问它,您必须明确将其列为您的应用程序的依赖项。

于 2015-02-26T14:44:11.337 回答