From 36725b2b055aa29bb32bae75c168e5b7dbacdbe7 Mon Sep 17 00:00:00 2001 From: Tristan Date: Thu, 28 Jun 2018 15:05:44 -0500 Subject: [PATCH] Add USD to billing amounts --- app/views/subscriptions/information.html.erb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/views/subscriptions/information.html.erb b/app/views/subscriptions/information.html.erb index 3c157ebfe..44232562c 100644 --- a/app/views/subscriptions/information.html.erb +++ b/app/views/subscriptions/information.html.erb @@ -26,7 +26,7 @@

You are signing up for Notebook.ai's <%= @selected_plan.name %> plan. - You will be charged <%= number_to_currency(cents_due_now / 100.0) %> now + You will be charged <%= number_to_currency(cents_due_now / 100.0) %> USD now for <%= service_length %> of membership, renewing every <%= bill_frequency %>.

@@ -135,7 +135,7 @@

<% elsif @selected_plan.stripe_plan_id == 'premium' %>

- You will be charged <%= number_to_currency(@selected_plan.monthly_cents / 100) %> immediately, renewing + You will be charged <%= number_to_currency(@selected_plan.monthly_cents / 100) %> USD immediately, renewing monthly.

@@ -143,14 +143,14 @@

<% elsif @selected_plan.stripe_plan_id == 'premium-trio' %>

- You will be charged $25.00 immediately, renewing every three months. + You will be charged $25.00 USD immediately, renewing every three months.

Of course, you can cancel at any time.

<% elsif @selected_plan.stripe_plan_id == 'premium-annual' %>

- You will be charged <%= number_to_currency(@selected_plan.monthly_cents * 12 / 100) %> immediately, renewing + You will be charged <%= number_to_currency(@selected_plan.monthly_cents * 12 / 100) %> USD immediately, renewing annually.