From d162eb367c37b84424953c4d9a691140235374fb Mon Sep 17 00:00:00 2001 From: Robert Kirschner Date: Thu, 23 Mar 2017 12:18:24 +0100 Subject: [PATCH] [minor] fix translation strings in cart web view --- erpnext/templates/includes/cart/cart_address.html | 2 +- erpnext/templates/pages/cart.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/templates/includes/cart/cart_address.html b/erpnext/templates/includes/cart/cart_address.html index d83f6092a1..7bd92562e2 100644 --- a/erpnext/templates/includes/cart/cart_address.html +++ b/erpnext/templates/includes/cart/cart_address.html @@ -15,7 +15,7 @@ {{ _("Manage Addresses") }}
-
Billing Address
+
{{ _("Billing Address") }}
{% for address in billing_addresses %} diff --git a/erpnext/templates/pages/cart.html b/erpnext/templates/pages/cart.html index 7f6bf01d2b..6cff5b13e2 100644 --- a/erpnext/templates/pages/cart.html +++ b/erpnext/templates/pages/cart.html @@ -1,6 +1,6 @@ {% extends "templates/web.html" %} -{% block title %} {{ "Shopping Cart" }} {% endblock %} +{% block title %} {{ _("Shopping Cart") }} {% endblock %} {% block header %}

{{ _("My Cart") }}

{% endblock %}