From 434a00b55f8ba2a38043d3c61a211c688465927e Mon Sep 17 00:00:00 2001 From: Ulices Date: Fri, 5 May 2023 16:38:48 -0600 Subject: [PATCH] fix caluclations->calculations (#4774) --- InvenTree/common/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InvenTree/common/models.py b/InvenTree/common/models.py index d53992245e..2a035ddc80 100644 --- a/InvenTree/common/models.py +++ b/InvenTree/common/models.py @@ -964,7 +964,7 @@ class InvenTreeSetting(BaseInvenTreeSetting): 'INVENTREE_DEFAULT_CURRENCY': { 'name': _('Default Currency'), - 'description': _('Select base currency for pricing caluclations'), + 'description': _('Select base currency for pricing calculations'), 'default': 'USD', 'choices': CURRENCY_CHOICES, 'after_save': update_exchange_rates,