pricing: Replace "Zulip Standard" with "Zulip Cloud Standard".

Case sensitive replace.
This commit is contained in:
Aman Agrawal 2022-02-05 07:29:54 +00:00 committed by Tim Abbott
parent 7a2bbc54a8
commit 7614f2203a
295 changed files with 57 additions and 56 deletions

View File

@ -103,7 +103,7 @@ class TestSupportEndpoint(ZulipTestCase):
'<option value="deactivated" >Deactivated</option>',
'scrub-realm-button">',
'data-string-id="lear"',
"<b>Name</b>: Zulip Standard",
"<b>Name</b>: Zulip Cloud Standard",
"<b>Status</b>: Active",
"<b>Billing schedule</b>: Annual",
"<b>Licenses</b>: 2/10 (Manual)",

View File

@ -720,7 +720,7 @@ def process_initial_upgrade(
stripe.InvoiceItem.create(
currency="usd",
customer=customer.stripe_customer_id,
description="Zulip Standard",
description="Zulip Cloud Standard",
discountable=False,
period={
"start": datetime_to_timestamp(billing_cycle_anchor),
@ -742,7 +742,7 @@ def process_initial_upgrade(
collection_method=collection_method,
customer=customer.stripe_customer_id,
days_until_due=days_until_due,
statement_descriptor="Zulip Standard",
statement_descriptor="Zulip Cloud Standard",
)
stripe.Invoice.finalize_invoice(stripe_invoice)

View File

@ -143,7 +143,7 @@ def handle_payment_intent_succeeded_event(
collection_method="charge_automatically",
customer=stripe_payment_intent.customer,
days_until_due=None,
statement_descriptor="Zulip Standard Credit",
statement_descriptor="Zulip Cloud Standard Credit",
)
stripe.Invoice.finalize_invoice(stripe_invoice)
raise e

View File

@ -273,7 +273,7 @@ class CustomerPlan(models.Model):
@property
def name(self) -> str:
return {
CustomerPlan.STANDARD: "Zulip Standard",
CustomerPlan.STANDARD: "Zulip Cloud Standard",
CustomerPlan.PLUS: "Zulip Plus",
CustomerPlan.ENTERPRISE: "Zulip Enterprise",
}[self.tier]

Some files were not shown because too many files have changed in this diff Show More