mirror of
https://github.com/discourse/discourse-subscriptions.git
synced 2025-03-06 09:39:51 +00:00
wrapping with longer names
This commit is contained in:
parent
95a263535e
commit
49591130a5
@ -12,7 +12,9 @@ export default Ember.Controller.extend({
|
|||||||
},
|
},
|
||||||
|
|
||||||
paymentSuccessHandler(/* paymentIntentId */) {
|
paymentSuccessHandler(/* paymentIntentId */) {
|
||||||
bootbox.alert(I18n.t("discourse_subscriptions.transactions.payment.success"));
|
bootbox.alert(
|
||||||
|
I18n.t("discourse_subscriptions.transactions.payment.success")
|
||||||
|
);
|
||||||
this.transitionToRoute(
|
this.transitionToRoute(
|
||||||
"user.billing",
|
"user.billing",
|
||||||
Discourse.User.current().username.toLowerCase()
|
Discourse.User.current().username.toLowerCase()
|
||||||
|
@ -8,7 +8,9 @@ export default Discourse.Route.extend({
|
|||||||
actions: {
|
actions: {
|
||||||
destroyProduct(product) {
|
destroyProduct(product) {
|
||||||
bootbox.confirm(
|
bootbox.confirm(
|
||||||
I18n.t("discourse_subscriptions.admin.products.operations.destroy.confirm"),
|
I18n.t(
|
||||||
|
"discourse_subscriptions.admin.products.operations.destroy.confirm"
|
||||||
|
),
|
||||||
I18n.t("no_value"),
|
I18n.t("no_value"),
|
||||||
I18n.t("yes_value"),
|
I18n.t("yes_value"),
|
||||||
confirmed => {
|
confirmed => {
|
||||||
|
@ -20,7 +20,9 @@ export default Discourse.Route.extend({
|
|||||||
actions: {
|
actions: {
|
||||||
destroyPlan(plan) {
|
destroyPlan(plan) {
|
||||||
bootbox.confirm(
|
bootbox.confirm(
|
||||||
I18n.t("discourse_subscriptions.admin.plans.operations.destroy.confirm"),
|
I18n.t(
|
||||||
|
"discourse_subscriptions.admin.plans.operations.destroy.confirm"
|
||||||
|
),
|
||||||
I18n.t("no_value"),
|
I18n.t("no_value"),
|
||||||
I18n.t("yes_value"),
|
I18n.t("yes_value"),
|
||||||
confirmed => {
|
confirmed => {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user