use existing translation for subscribe button instead of custom key

pull/1/head
ansuz 2021-02-17 17:30:58 +05:30
parent fb8704ae1f
commit d719f4def7
2 changed files with 3 additions and 3 deletions

View File

@ -181,11 +181,11 @@ define([
Pages.subscribeButton = function (onClick) {
var _link = h('a', {
href: "/accounts/",
href: AppConfig.upgradeURL || "/accounts/",
});
var subscribe = h('button', [
Msg.subscribe_button
Msg.features_f_subscribe,
]);
$(subscribe).click(function () {

View File

@ -74,7 +74,7 @@ define([
var subscribeButton;
/* Display a subscribe button if they are enabled and the button's translation key exists */
if (Config.allowSubscriptions && Msg.subscribe_button) {
if (Config.allowSubscriptions) {
subscribeButton = Pages.subscribeButton(function () {
Feedback.send('HOME_SUBSCRIBE_CRYPTPAD');
});